From 0ee82f691d2bce381e2b3b75502969d2bf32e9a6 Mon Sep 17 00:00:00 2001 From: Andrea Aquino Date: Thu, 21 Mar 2024 15:35:09 +0000 Subject: [PATCH] Add support for internal visibility modifier Summary: Modern Hacklang introduced modules and the internal visibility modifier to mark methods and functions as only accessible from within the current module. The Hacklang treesitter grammar doesn't support the internal visibility modifier yet. This diff addresses it. Test Plan: Grammar tests pass: ``` tree-sitter generate tree-sitter test ``` Reviewers: Subscribers: Tasks: Tags: --- grammar.js | 2 +- src/grammar.json | 4 + src/node-types.json | 8 +- src/parser.c | 390026 ++++++++++++++++---------------- test/corpus/declarations.txt | 7 + 5 files changed, 191881 insertions(+), 198166 deletions(-) diff --git a/grammar.js b/grammar.js index 06df702..7e60c7e 100644 --- a/grammar.js +++ b/grammar.js @@ -1091,7 +1091,7 @@ const rules = { static_modifier: $ => 'static', - visibility_modifier: $ => choice('public', 'protected', 'private'), + visibility_modifier: $ => choice('public', 'protected', 'private', 'internal'), attribute_modifier: $ => seq('<<', com($.qualified_identifier, opt($.arguments), ','), '>>'), diff --git a/src/grammar.json b/src/grammar.json index b421995..0182b1e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -7803,6 +7803,10 @@ { "type": "STRING", "value": "private" + }, + { + "type": "STRING", + "value": "internal" } ] }, diff --git a/src/node-types.json b/src/node-types.json index cfa8ed7..0198ceb 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4622,6 +4622,10 @@ "type": "interface", "named": false }, + { + "type": "internal", + "named": false + }, { "type": "is", "named": false @@ -4748,11 +4752,11 @@ }, { "type": "string", - "named": true + "named": false }, { "type": "string", - "named": false + "named": true }, { "type": "super", diff --git a/src/parser.c b/src/parser.c index 575bd6d..17365ca 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,12 +5,12 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 +#define LANGUAGE_VERSION 13 #define STATE_COUNT 6464 #define LARGE_STATE_COUNT 1778 -#define SYMBOL_COUNT 367 +#define SYMBOL_COUNT 368 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 187 +#define TOKEN_COUNT 188 #define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 30 #define MAX_ALIAS_SEQUENCE_LENGTH 15 @@ -183,214 +183,215 @@ enum { anon_sym_public = 164, anon_sym_protected = 165, anon_sym_private = 166, - sym_inout_modifier = 167, - sym_xhp_identifier = 168, - sym_xhp_class_identifier = 169, - sym_xhp_category_identifier = 170, - sym_xhp_comment = 171, - sym_xhp_string = 172, - anon_sym_SLASH_GT = 173, - anon_sym_LT_SLASH = 174, - anon_sym_attribute = 175, - anon_sym_ATrequired = 176, - anon_sym_ATlateinit = 177, - sym_comment = 178, - anon_sym_children = 179, - anon_sym_category = 180, - sym__heredoc_start = 181, - sym__heredoc_start_newline = 182, - sym__heredoc_body = 183, - sym__heredoc_end_newline = 184, - sym__heredoc_end = 185, - sym__embedded_opening_brace = 186, - sym_script = 187, - sym_qualified_identifier = 188, - sym_scoped_identifier = 189, - sym_scope_identifier = 190, - sym_module_attribute = 191, - sym_heredoc = 192, - sym_embedded_braced_expression = 193, - sym_braced_expression = 194, - sym__expression = 195, - sym_empty_statement = 196, - sym_expression_statement = 197, - sym_compound_statement = 198, - sym_return_statement = 199, - sym_break_statement = 200, - sym_continue_statement = 201, - sym_throw_statement = 202, - sym_echo_statement = 203, - sym_unset_statement = 204, - sym_concurrent_statement = 205, - sym_use_statement = 206, - sym_use_type = 207, - sym_use_clause = 208, - sym__namespace_identifier = 209, - sym_if_statement = 210, - sym_switch_statement = 211, - sym_switch_case = 212, - sym_switch_default = 213, - sym_foreach_statement = 214, - sym_while_statement = 215, - sym_do_statement = 216, - sym_for_statement = 217, - sym_try_statement = 218, - sym_catch_clause = 219, - sym_finally_clause = 220, - sym_using_statement = 221, - sym_true = 222, - sym_false = 223, - sym_null = 224, - sym_expression_tree = 225, - sym_prefixed_string = 226, - sym_type_specifier = 227, - sym__type_modifier = 228, - sym_tuple_type_specifier = 229, - sym_function_type_specifier = 230, - sym_shape_type_specifier = 231, - sym_field_specifier = 232, - sym_type_constant = 233, - sym__type_constant = 234, - sym_type_arguments = 235, - sym_type_parameters = 236, - sym_type_parameter = 237, - sym_where_clause = 238, - sym_where_constraint = 239, - sym_array = 240, - sym_element_initializer = 241, - sym_tuple = 242, - sym_shape = 243, - sym_field_initializer = 244, - sym_collection = 245, - sym_include_expression = 246, - sym_require_expression = 247, - sym_parenthesized_expression = 248, - sym_subscript_expression = 249, - sym_list_expression = 250, - sym_binary_expression = 251, - sym_prefix_unary_expression = 252, - sym_postfix_unary_expression = 253, - sym_is_expression = 254, - sym_as_expression = 255, - sym_awaitable_expression = 256, - sym_yield_expression = 257, - sym_cast_expression = 258, - sym_ternary_expression = 259, - sym_lambda_expression = 260, - sym__single_parameter_parameters = 261, - sym__single_parameter = 262, - sym_call_expression = 263, - sym_new_expression = 264, - sym_arguments = 265, - sym_argument = 266, - sym_selection_expression = 267, - sym_alias_declaration = 268, - sym_function_declaration = 269, - sym__function_declaration_header = 270, - sym_capability_list = 271, - sym_capability = 272, - sym_parameters = 273, - sym_parameter = 274, - sym_trait_declaration = 275, - sym_interface_declaration = 276, - sym_class_declaration = 277, - sym_member_declarations = 278, - sym_trait_use_clause = 279, - sym_trait_select_clause = 280, - sym_trait_alias_clause = 281, - sym_extends_clause = 282, - sym_implements_clause = 283, - sym_require_extends_clause = 284, - sym_require_implements_clause = 285, - sym_method_declaration = 286, - sym__class_const_declaration = 287, - sym__class_const_declarator = 288, - sym_type_const_declaration = 289, - sym_context_const_declaration = 290, - sym_const_declaration = 291, - sym_const_declarator = 292, - sym_property_declaration = 293, - sym_property_declarator = 294, - sym_enum_declaration = 295, - sym_abstract_enum_class_declaration = 296, - sym_enum_class_declaration = 297, - sym_enum_class_label = 298, - sym_enumerator = 299, - sym_typed_enumerator = 300, - sym_namespace_declaration = 301, - sym__member_modifier = 302, - sym_abstract_modifier = 303, - sym_static_modifier = 304, - sym_visibility_modifier = 305, - sym_attribute_modifier = 306, - sym_variadic_modifier = 307, - sym_async_modifier = 308, - sym_await_modifier = 309, - sym_xhp_expression = 310, - sym_xhp_open = 311, - sym_xhp_open_close = 312, - sym_xhp_close = 313, - sym_xhp_attribute = 314, - sym_xhp_spread_expression = 315, - sym_xhp_attribute_declaration = 316, - sym_xhp_class_attribute = 317, - sym_xhp_enum_type = 318, - sym_function_pointer = 319, - sym_anonymous_function_expression = 320, - sym__anonymous_function_use_clause = 321, - sym_xhp_children_declaration = 322, - sym_xhp_category_declaration = 323, - sym__xhp_binary_expression = 324, - sym__xhp_postfix_unary_expression = 325, - sym__xhp_parenthesized_expression = 326, - aux_sym_script_repeat1 = 327, - aux_sym_qualified_identifier_repeat1 = 328, - aux_sym_module_attribute_repeat1 = 329, - aux_sym_heredoc_repeat1 = 330, - aux_sym_echo_statement_repeat1 = 331, - aux_sym_unset_statement_repeat1 = 332, - aux_sym_use_statement_repeat1 = 333, - aux_sym_if_statement_repeat1 = 334, - aux_sym_switch_statement_repeat1 = 335, - aux_sym_try_statement_repeat1 = 336, - aux_sym_type_specifier_repeat1 = 337, - aux_sym_tuple_type_specifier_repeat1 = 338, - aux_sym_function_type_specifier_repeat1 = 339, - aux_sym_shape_type_specifier_repeat1 = 340, - aux_sym_type_parameters_repeat1 = 341, - aux_sym_type_parameter_repeat1 = 342, - aux_sym_where_clause_repeat1 = 343, - aux_sym_array_repeat1 = 344, - aux_sym_shape_repeat1 = 345, - aux_sym_list_expression_repeat1 = 346, - aux_sym_arguments_repeat1 = 347, - aux_sym_capability_list_repeat1 = 348, - aux_sym_parameters_repeat1 = 349, - aux_sym_member_declarations_repeat1 = 350, - aux_sym_trait_use_clause_repeat1 = 351, - aux_sym_trait_select_clause_repeat1 = 352, - aux_sym_method_declaration_repeat1 = 353, - aux_sym__class_const_declaration_repeat1 = 354, - aux_sym_const_declaration_repeat1 = 355, - aux_sym_property_declaration_repeat1 = 356, - aux_sym_enum_declaration_repeat1 = 357, - aux_sym_abstract_enum_class_declaration_repeat1 = 358, - aux_sym_enum_class_declaration_repeat1 = 359, - aux_sym_xhp_expression_repeat1 = 360, - aux_sym_xhp_open_repeat1 = 361, - aux_sym_xhp_attribute_declaration_repeat1 = 362, - aux_sym_xhp_enum_type_repeat1 = 363, - aux_sym__anonymous_function_use_clause_repeat1 = 364, - aux_sym_xhp_children_declaration_repeat1 = 365, - aux_sym_xhp_category_declaration_repeat1 = 366, - alias_sym_array_type = 367, - alias_sym_contravariant_modifier = 368, - alias_sym_covariant_modifier = 369, - alias_sym_like_modifier = 370, - alias_sym_nullable_modifier = 371, - alias_sym_open_modifier = 372, - alias_sym_optional_modifier = 373, - alias_sym_soft_modifier = 374, + anon_sym_internal = 167, + sym_inout_modifier = 168, + sym_xhp_identifier = 169, + sym_xhp_class_identifier = 170, + sym_xhp_category_identifier = 171, + sym_xhp_comment = 172, + sym_xhp_string = 173, + anon_sym_SLASH_GT = 174, + anon_sym_LT_SLASH = 175, + anon_sym_attribute = 176, + anon_sym_ATrequired = 177, + anon_sym_ATlateinit = 178, + sym_comment = 179, + anon_sym_children = 180, + anon_sym_category = 181, + sym__heredoc_start = 182, + sym__heredoc_start_newline = 183, + sym__heredoc_body = 184, + sym__heredoc_end_newline = 185, + sym__heredoc_end = 186, + sym__embedded_opening_brace = 187, + sym_script = 188, + sym_qualified_identifier = 189, + sym_scoped_identifier = 190, + sym_scope_identifier = 191, + sym_module_attribute = 192, + sym_heredoc = 193, + sym_embedded_braced_expression = 194, + sym_braced_expression = 195, + sym__expression = 196, + sym_empty_statement = 197, + sym_expression_statement = 198, + sym_compound_statement = 199, + sym_return_statement = 200, + sym_break_statement = 201, + sym_continue_statement = 202, + sym_throw_statement = 203, + sym_echo_statement = 204, + sym_unset_statement = 205, + sym_concurrent_statement = 206, + sym_use_statement = 207, + sym_use_type = 208, + sym_use_clause = 209, + sym__namespace_identifier = 210, + sym_if_statement = 211, + sym_switch_statement = 212, + sym_switch_case = 213, + sym_switch_default = 214, + sym_foreach_statement = 215, + sym_while_statement = 216, + sym_do_statement = 217, + sym_for_statement = 218, + sym_try_statement = 219, + sym_catch_clause = 220, + sym_finally_clause = 221, + sym_using_statement = 222, + sym_true = 223, + sym_false = 224, + sym_null = 225, + sym_expression_tree = 226, + sym_prefixed_string = 227, + sym_type_specifier = 228, + sym__type_modifier = 229, + sym_tuple_type_specifier = 230, + sym_function_type_specifier = 231, + sym_shape_type_specifier = 232, + sym_field_specifier = 233, + sym_type_constant = 234, + sym__type_constant = 235, + sym_type_arguments = 236, + sym_type_parameters = 237, + sym_type_parameter = 238, + sym_where_clause = 239, + sym_where_constraint = 240, + sym_array = 241, + sym_element_initializer = 242, + sym_tuple = 243, + sym_shape = 244, + sym_field_initializer = 245, + sym_collection = 246, + sym_include_expression = 247, + sym_require_expression = 248, + sym_parenthesized_expression = 249, + sym_subscript_expression = 250, + sym_list_expression = 251, + sym_binary_expression = 252, + sym_prefix_unary_expression = 253, + sym_postfix_unary_expression = 254, + sym_is_expression = 255, + sym_as_expression = 256, + sym_awaitable_expression = 257, + sym_yield_expression = 258, + sym_cast_expression = 259, + sym_ternary_expression = 260, + sym_lambda_expression = 261, + sym__single_parameter_parameters = 262, + sym__single_parameter = 263, + sym_call_expression = 264, + sym_new_expression = 265, + sym_arguments = 266, + sym_argument = 267, + sym_selection_expression = 268, + sym_alias_declaration = 269, + sym_function_declaration = 270, + sym__function_declaration_header = 271, + sym_capability_list = 272, + sym_capability = 273, + sym_parameters = 274, + sym_parameter = 275, + sym_trait_declaration = 276, + sym_interface_declaration = 277, + sym_class_declaration = 278, + sym_member_declarations = 279, + sym_trait_use_clause = 280, + sym_trait_select_clause = 281, + sym_trait_alias_clause = 282, + sym_extends_clause = 283, + sym_implements_clause = 284, + sym_require_extends_clause = 285, + sym_require_implements_clause = 286, + sym_method_declaration = 287, + sym__class_const_declaration = 288, + sym__class_const_declarator = 289, + sym_type_const_declaration = 290, + sym_context_const_declaration = 291, + sym_const_declaration = 292, + sym_const_declarator = 293, + sym_property_declaration = 294, + sym_property_declarator = 295, + sym_enum_declaration = 296, + sym_abstract_enum_class_declaration = 297, + sym_enum_class_declaration = 298, + sym_enum_class_label = 299, + sym_enumerator = 300, + sym_typed_enumerator = 301, + sym_namespace_declaration = 302, + sym__member_modifier = 303, + sym_abstract_modifier = 304, + sym_static_modifier = 305, + sym_visibility_modifier = 306, + sym_attribute_modifier = 307, + sym_variadic_modifier = 308, + sym_async_modifier = 309, + sym_await_modifier = 310, + sym_xhp_expression = 311, + sym_xhp_open = 312, + sym_xhp_open_close = 313, + sym_xhp_close = 314, + sym_xhp_attribute = 315, + sym_xhp_spread_expression = 316, + sym_xhp_attribute_declaration = 317, + sym_xhp_class_attribute = 318, + sym_xhp_enum_type = 319, + sym_function_pointer = 320, + sym_anonymous_function_expression = 321, + sym__anonymous_function_use_clause = 322, + sym_xhp_children_declaration = 323, + sym_xhp_category_declaration = 324, + sym__xhp_binary_expression = 325, + sym__xhp_postfix_unary_expression = 326, + sym__xhp_parenthesized_expression = 327, + aux_sym_script_repeat1 = 328, + aux_sym_qualified_identifier_repeat1 = 329, + aux_sym_module_attribute_repeat1 = 330, + aux_sym_heredoc_repeat1 = 331, + aux_sym_echo_statement_repeat1 = 332, + aux_sym_unset_statement_repeat1 = 333, + aux_sym_use_statement_repeat1 = 334, + aux_sym_if_statement_repeat1 = 335, + aux_sym_switch_statement_repeat1 = 336, + aux_sym_try_statement_repeat1 = 337, + aux_sym_type_specifier_repeat1 = 338, + aux_sym_tuple_type_specifier_repeat1 = 339, + aux_sym_function_type_specifier_repeat1 = 340, + aux_sym_shape_type_specifier_repeat1 = 341, + aux_sym_type_parameters_repeat1 = 342, + aux_sym_type_parameter_repeat1 = 343, + aux_sym_where_clause_repeat1 = 344, + aux_sym_array_repeat1 = 345, + aux_sym_shape_repeat1 = 346, + aux_sym_list_expression_repeat1 = 347, + aux_sym_arguments_repeat1 = 348, + aux_sym_capability_list_repeat1 = 349, + aux_sym_parameters_repeat1 = 350, + aux_sym_member_declarations_repeat1 = 351, + aux_sym_trait_use_clause_repeat1 = 352, + aux_sym_trait_select_clause_repeat1 = 353, + aux_sym_method_declaration_repeat1 = 354, + aux_sym__class_const_declaration_repeat1 = 355, + aux_sym_const_declaration_repeat1 = 356, + aux_sym_property_declaration_repeat1 = 357, + aux_sym_enum_declaration_repeat1 = 358, + aux_sym_abstract_enum_class_declaration_repeat1 = 359, + aux_sym_enum_class_declaration_repeat1 = 360, + aux_sym_xhp_expression_repeat1 = 361, + aux_sym_xhp_open_repeat1 = 362, + aux_sym_xhp_attribute_declaration_repeat1 = 363, + aux_sym_xhp_enum_type_repeat1 = 364, + aux_sym__anonymous_function_use_clause_repeat1 = 365, + aux_sym_xhp_children_declaration_repeat1 = 366, + aux_sym_xhp_category_declaration_repeat1 = 367, + alias_sym_array_type = 368, + alias_sym_contravariant_modifier = 369, + alias_sym_covariant_modifier = 370, + alias_sym_like_modifier = 371, + alias_sym_nullable_modifier = 372, + alias_sym_open_modifier = 373, + alias_sym_optional_modifier = 374, + alias_sym_soft_modifier = 375, }; static const char * const ts_symbol_names[] = { @@ -561,6 +562,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_public] = "public", [anon_sym_protected] = "protected", [anon_sym_private] = "private", + [anon_sym_internal] = "internal", [sym_inout_modifier] = "inout_modifier", [sym_xhp_identifier] = "xhp_identifier", [sym_xhp_class_identifier] = "xhp_class_identifier", @@ -939,6 +941,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_public] = anon_sym_public, [anon_sym_protected] = anon_sym_protected, [anon_sym_private] = anon_sym_private, + [anon_sym_internal] = anon_sym_internal, [sym_inout_modifier] = sym_inout_modifier, [sym_xhp_identifier] = sym_xhp_identifier, [sym_xhp_class_identifier] = sym_xhp_class_identifier, @@ -1818,6 +1821,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_internal] = { + .visible = true, + .named = false, + }, [sym_inout_modifier] = { .visible = true, .named = true, @@ -3575,6473 +3582,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 7, - [8] = 7, - [9] = 7, - [10] = 10, - [11] = 10, - [12] = 7, - [13] = 10, - [14] = 7, - [15] = 10, - [16] = 7, - [17] = 10, - [18] = 7, - [19] = 10, - [20] = 10, - [21] = 7, - [22] = 10, - [23] = 23, - [24] = 10, - [25] = 10, - [26] = 7, - [27] = 10, - [28] = 7, - [29] = 7, - [30] = 10, - [31] = 10, - [32] = 7, - [33] = 10, - [34] = 7, - [35] = 7, - [36] = 10, - [37] = 2, - [38] = 38, - [39] = 2, - [40] = 40, - [41] = 7, - [42] = 42, - [43] = 43, - [44] = 44, - [45] = 45, - [46] = 46, - [47] = 44, - [48] = 48, - [49] = 49, - [50] = 50, - [51] = 43, - [52] = 52, - [53] = 46, - [54] = 54, - [55] = 42, - [56] = 56, - [57] = 57, - [58] = 58, - [59] = 59, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 45, - [64] = 62, - [65] = 46, - [66] = 44, - [67] = 44, - [68] = 48, - [69] = 49, - [70] = 50, - [71] = 43, - [72] = 52, - [73] = 48, - [74] = 46, - [75] = 54, - [76] = 42, - [77] = 57, - [78] = 49, - [79] = 58, - [80] = 59, - [81] = 60, - [82] = 45, - [83] = 50, - [84] = 60, - [85] = 43, - [86] = 60, - [87] = 52, - [88] = 59, - [89] = 58, - [90] = 42, - [91] = 62, - [92] = 45, - [93] = 54, - [94] = 46, - [95] = 44, - [96] = 48, - [97] = 49, - [98] = 50, - [99] = 43, - [100] = 52, - [101] = 42, - [102] = 57, - [103] = 58, - [104] = 59, - [105] = 62, - [106] = 60, - [107] = 57, - [108] = 57, - [109] = 42, - [110] = 56, - [111] = 61, - [112] = 58, - [113] = 59, - [114] = 56, - [115] = 62, - [116] = 116, - [117] = 59, - [118] = 52, - [119] = 60, - [120] = 59, - [121] = 58, - [122] = 58, - [123] = 45, - [124] = 61, - [125] = 57, - [126] = 43, - [127] = 54, - [128] = 56, - [129] = 46, - [130] = 61, - [131] = 60, - [132] = 52, - [133] = 43, - [134] = 50, - [135] = 49, - [136] = 48, - [137] = 44, - [138] = 44, - [139] = 48, - [140] = 46, - [141] = 45, - [142] = 62, - [143] = 60, - [144] = 59, - [145] = 58, - [146] = 57, - [147] = 42, - [148] = 52, - [149] = 62, - [150] = 50, - [151] = 49, - [152] = 48, - [153] = 44, - [154] = 46, - [155] = 45, - [156] = 45, - [157] = 157, - [158] = 54, - [159] = 61, - [160] = 56, - [161] = 49, - [162] = 50, - [163] = 157, - [164] = 116, - [165] = 61, - [166] = 54, - [167] = 116, - [168] = 61, - [169] = 56, - [170] = 56, - [171] = 62, - [172] = 157, - [173] = 43, - [174] = 52, - [175] = 50, - [176] = 49, - [177] = 54, - [178] = 57, - [179] = 42, - [180] = 61, - [181] = 48, - [182] = 157, - [183] = 56, - [184] = 116, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 189, - [190] = 189, - [191] = 188, - [192] = 187, - [193] = 186, - [194] = 185, - [195] = 189, - [196] = 188, - [197] = 187, - [198] = 186, - [199] = 185, - [200] = 200, - [201] = 200, - [202] = 202, - [203] = 203, - [204] = 203, - [205] = 205, - [206] = 205, - [207] = 203, - [208] = 202, - [209] = 203, - [210] = 205, - [211] = 200, - [212] = 200, - [213] = 205, - [214] = 202, - [215] = 202, - [216] = 203, - [217] = 205, - [218] = 200, - [219] = 200, - [220] = 205, - [221] = 205, - [222] = 200, - [223] = 223, - [224] = 223, - [225] = 223, - [226] = 223, - [227] = 227, - [228] = 227, - [229] = 227, - [230] = 230, - [231] = 230, - [232] = 232, - [233] = 230, - [234] = 232, - [235] = 232, - [236] = 232, - [237] = 230, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 238, - [243] = 240, - [244] = 240, - [245] = 241, - [246] = 238, - [247] = 239, - [248] = 238, - [249] = 241, - [250] = 239, - [251] = 239, - [252] = 241, - [253] = 240, - [254] = 241, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 259, - [262] = 258, - [263] = 256, - [264] = 264, - [265] = 265, - [266] = 264, - [267] = 260, - [268] = 255, - [269] = 269, - [270] = 264, - [271] = 257, - [272] = 265, - [273] = 264, - [274] = 265, - [275] = 257, - [276] = 260, - [277] = 256, - [278] = 259, - [279] = 258, - [280] = 258, - [281] = 259, - [282] = 257, - [283] = 269, - [284] = 260, - [285] = 265, - [286] = 256, - [287] = 255, - [288] = 258, - [289] = 255, - [290] = 269, - [291] = 269, - [292] = 256, - [293] = 259, - [294] = 260, - [295] = 257, - [296] = 255, - [297] = 269, - [298] = 260, - [299] = 259, - [300] = 257, - [301] = 258, - [302] = 259, - [303] = 258, - [304] = 256, - [305] = 256, - [306] = 265, - [307] = 269, - [308] = 257, - [309] = 309, - [310] = 265, - [311] = 264, - [312] = 264, - [313] = 255, - [314] = 264, - [315] = 265, - [316] = 260, - [317] = 255, - [318] = 269, - [319] = 319, - [320] = 319, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 325, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 322, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 322, - [339] = 333, - [340] = 340, - [341] = 322, - [342] = 342, - [343] = 334, - [344] = 333, - [345] = 337, - [346] = 346, - [347] = 334, - [348] = 337, - [349] = 346, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 340, - [354] = 346, - [355] = 350, - [356] = 346, - [357] = 337, - [358] = 327, - [359] = 350, - [360] = 329, - [361] = 342, - [362] = 362, - [363] = 362, - [364] = 350, - [365] = 342, - [366] = 336, - [367] = 333, - [368] = 326, - [369] = 324, - [370] = 370, - [371] = 335, - [372] = 323, - [373] = 334, - [374] = 342, - [375] = 330, - [376] = 351, - [377] = 370, - [378] = 370, - [379] = 370, - [380] = 331, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 383, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 384, - [393] = 390, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 391, - [398] = 398, - [399] = 399, - [400] = 390, - [401] = 401, - [402] = 398, - [403] = 382, - [404] = 383, - [405] = 381, - [406] = 389, - [407] = 396, - [408] = 387, - [409] = 394, - [410] = 388, - [411] = 385, - [412] = 383, - [413] = 383, - [414] = 382, - [415] = 415, - [416] = 391, - [417] = 382, - [418] = 391, - [419] = 419, - [420] = 390, - [421] = 384, - [422] = 415, - [423] = 423, - [424] = 384, - [425] = 389, - [426] = 415, - [427] = 382, - [428] = 391, - [429] = 429, - [430] = 385, - [431] = 388, - [432] = 432, - [433] = 384, - [434] = 384, - [435] = 435, - [436] = 384, - [437] = 399, - [438] = 401, - [439] = 381, - [440] = 394, - [441] = 385, - [442] = 396, - [443] = 385, - [444] = 388, - [445] = 419, - [446] = 399, - [447] = 394, - [448] = 396, - [449] = 398, - [450] = 387, - [451] = 423, - [452] = 398, - [453] = 415, - [454] = 396, - [455] = 394, - [456] = 388, - [457] = 398, - [458] = 399, - [459] = 432, - [460] = 387, - [461] = 390, - [462] = 383, - [463] = 415, - [464] = 399, - [465] = 399, - [466] = 466, - [467] = 387, - [468] = 389, - [469] = 389, - [470] = 415, - [471] = 381, - [472] = 387, - [473] = 387, - [474] = 398, - [475] = 383, - [476] = 381, - [477] = 389, - [478] = 399, - [479] = 387, - [480] = 390, - [481] = 382, - [482] = 398, - [483] = 396, - [484] = 396, - [485] = 381, - [486] = 390, - [487] = 394, - [488] = 391, - [489] = 385, - [490] = 389, - [491] = 383, - [492] = 382, - [493] = 388, - [494] = 394, - [495] = 391, - [496] = 388, - [497] = 432, - [498] = 385, - [499] = 429, - [500] = 385, - [501] = 381, - [502] = 381, - [503] = 389, - [504] = 391, - [505] = 390, - [506] = 384, - [507] = 415, - [508] = 432, - [509] = 382, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 513, - [516] = 516, - [517] = 517, - [518] = 518, - [519] = 510, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 513, - [530] = 524, - [531] = 513, - [532] = 532, - [533] = 526, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 534, - [539] = 513, - [540] = 540, - [541] = 520, - [542] = 520, - [543] = 513, - [544] = 536, - [545] = 520, - [546] = 546, - [547] = 513, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 536, - [552] = 534, - [553] = 511, - [554] = 537, - [555] = 550, - [556] = 549, - [557] = 557, - [558] = 557, - [559] = 536, - [560] = 536, - [561] = 534, - [562] = 528, - [563] = 527, - [564] = 523, - [565] = 522, - [566] = 516, - [567] = 537, - [568] = 534, - [569] = 569, - [570] = 570, - [571] = 557, - [572] = 572, - [573] = 517, - [574] = 526, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 532, - [579] = 548, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 521, - [585] = 585, - [586] = 532, - [587] = 536, - [588] = 532, - [589] = 534, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 537, - [594] = 594, - [595] = 557, - [596] = 514, - [597] = 526, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 599, - [602] = 532, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 577, - [607] = 607, - [608] = 532, - [609] = 609, - [610] = 605, - [611] = 511, - [612] = 609, - [613] = 577, - [614] = 570, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 526, - [619] = 619, - [620] = 620, - [621] = 521, - [622] = 622, - [623] = 581, - [624] = 582, - [625] = 591, - [626] = 537, - [627] = 616, - [628] = 521, - [629] = 616, - [630] = 607, - [631] = 631, - [632] = 600, - [633] = 600, - [634] = 594, - [635] = 594, - [636] = 592, - [637] = 591, - [638] = 592, - [639] = 591, - [640] = 582, - [641] = 605, - [642] = 642, - [643] = 582, - [644] = 550, - [645] = 581, - [646] = 570, - [647] = 592, - [648] = 510, - [649] = 511, - [650] = 609, - [651] = 581, - [652] = 514, - [653] = 517, - [654] = 513, - [655] = 510, - [656] = 524, - [657] = 657, - [658] = 532, - [659] = 659, - [660] = 570, - [661] = 661, - [662] = 549, - [663] = 528, - [664] = 607, - [665] = 577, - [666] = 599, - [667] = 605, - [668] = 527, - [669] = 523, - [670] = 616, - [671] = 516, - [672] = 532, - [673] = 537, - [674] = 557, - [675] = 599, - [676] = 526, - [677] = 548, - [678] = 526, - [679] = 557, - [680] = 609, - [681] = 514, - [682] = 517, - [683] = 683, - [684] = 590, - [685] = 537, - [686] = 607, - [687] = 590, - [688] = 534, - [689] = 537, - [690] = 600, - [691] = 691, - [692] = 557, - [693] = 594, - [694] = 526, - [695] = 516, - [696] = 523, - [697] = 697, - [698] = 527, - [699] = 528, - [700] = 549, - [701] = 550, - [702] = 536, - [703] = 524, - [704] = 548, - [705] = 557, - [706] = 691, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 707, - [715] = 707, - [716] = 713, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 707, - [721] = 718, - [722] = 719, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 711, - [744] = 710, - [745] = 745, - [746] = 711, - [747] = 711, - [748] = 710, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 711, - [759] = 759, - [760] = 710, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 708, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 709, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 710, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 708, - [864] = 709, - [865] = 865, - [866] = 712, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 708, - [872] = 872, - [873] = 873, - [874] = 709, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 712, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 712, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 718, - [905] = 713, - [906] = 717, - [907] = 718, - [908] = 719, - [909] = 719, - [910] = 707, - [911] = 713, - [912] = 718, - [913] = 717, - [914] = 719, - [915] = 713, - [916] = 713, - [917] = 718, - [918] = 719, - [919] = 707, - [920] = 761, - [921] = 796, - [922] = 712, - [923] = 754, - [924] = 710, - [925] = 855, - [926] = 708, - [927] = 753, - [928] = 751, - [929] = 708, - [930] = 749, - [931] = 735, - [932] = 854, - [933] = 850, - [934] = 846, - [935] = 842, - [936] = 841, - [937] = 733, - [938] = 838, - [939] = 831, - [940] = 829, - [941] = 732, - [942] = 825, - [943] = 726, - [944] = 730, - [945] = 811, - [946] = 729, - [947] = 818, - [948] = 815, - [949] = 728, - [950] = 806, - [951] = 727, - [952] = 740, - [953] = 798, - [954] = 823, - [955] = 725, - [956] = 798, - [957] = 754, - [958] = 753, - [959] = 806, - [960] = 822, - [961] = 815, - [962] = 751, - [963] = 749, - [964] = 809, - [965] = 818, - [966] = 735, - [967] = 733, - [968] = 732, - [969] = 873, - [970] = 730, - [971] = 729, - [972] = 752, - [973] = 811, - [974] = 728, - [975] = 727, - [976] = 823, - [977] = 725, - [978] = 822, - [979] = 809, - [980] = 731, - [981] = 726, - [982] = 825, - [983] = 873, - [984] = 829, - [985] = 881, - [986] = 881, - [987] = 891, - [988] = 891, - [989] = 757, - [990] = 745, - [991] = 757, - [992] = 742, - [993] = 739, - [994] = 745, - [995] = 742, - [996] = 739, - [997] = 734, - [998] = 734, - [999] = 870, - [1000] = 875, - [1001] = 870, - [1002] = 875, - [1003] = 737, - [1004] = 805, - [1005] = 877, - [1006] = 869, - [1007] = 900, - [1008] = 831, - [1009] = 764, - [1010] = 838, - [1011] = 841, - [1012] = 755, - [1013] = 773, - [1014] = 756, - [1015] = 777, - [1016] = 842, - [1017] = 787, - [1018] = 846, - [1019] = 821, - [1020] = 824, - [1021] = 850, - [1022] = 837, - [1023] = 847, - [1024] = 887, - [1025] = 814, - [1026] = 792, - [1027] = 738, - [1028] = 741, - [1029] = 750, - [1030] = 786, - [1031] = 796, - [1032] = 854, - [1033] = 855, - [1034] = 801, - [1035] = 802, - [1036] = 804, - [1037] = 737, - [1038] = 816, - [1039] = 869, - [1040] = 900, - [1041] = 764, - [1042] = 773, - [1043] = 777, - [1044] = 787, - [1045] = 826, - [1046] = 824, - [1047] = 827, - [1048] = 837, - [1049] = 759, - [1050] = 847, - [1051] = 845, - [1052] = 853, - [1053] = 887, - [1054] = 857, - [1055] = 903, - [1056] = 902, - [1057] = 901, - [1058] = 899, - [1059] = 898, - [1060] = 897, - [1061] = 792, - [1062] = 738, - [1063] = 896, - [1064] = 741, - [1065] = 750, - [1066] = 786, - [1067] = 796, - [1068] = 801, - [1069] = 802, - [1070] = 804, - [1071] = 826, - [1072] = 827, - [1073] = 845, - [1074] = 853, - [1075] = 857, - [1076] = 903, - [1077] = 902, - [1078] = 894, - [1079] = 901, - [1080] = 899, - [1081] = 898, - [1082] = 897, - [1083] = 896, - [1084] = 894, - [1085] = 893, - [1086] = 892, - [1087] = 888, - [1088] = 886, - [1089] = 885, - [1090] = 884, - [1091] = 883, - [1092] = 882, - [1093] = 880, - [1094] = 879, - [1095] = 878, - [1096] = 876, - [1097] = 872, - [1098] = 868, - [1099] = 867, - [1100] = 865, - [1101] = 862, - [1102] = 861, - [1103] = 860, - [1104] = 859, - [1105] = 858, - [1106] = 856, - [1107] = 893, - [1108] = 892, - [1109] = 852, - [1110] = 851, - [1111] = 849, - [1112] = 848, - [1113] = 844, - [1114] = 843, - [1115] = 840, - [1116] = 888, - [1117] = 886, - [1118] = 885, - [1119] = 763, - [1120] = 835, - [1121] = 884, - [1122] = 834, - [1123] = 883, - [1124] = 833, - [1125] = 832, - [1126] = 830, - [1127] = 882, - [1128] = 709, - [1129] = 880, - [1130] = 828, - [1131] = 736, - [1132] = 879, - [1133] = 819, - [1134] = 817, - [1135] = 723, - [1136] = 813, - [1137] = 878, - [1138] = 812, - [1139] = 724, - [1140] = 876, - [1141] = 810, - [1142] = 808, - [1143] = 872, - [1144] = 807, - [1145] = 803, - [1146] = 868, - [1147] = 800, - [1148] = 867, - [1149] = 797, - [1150] = 795, - [1151] = 794, - [1152] = 793, - [1153] = 865, - [1154] = 784, - [1155] = 791, - [1156] = 790, - [1157] = 789, - [1158] = 862, - [1159] = 861, - [1160] = 788, - [1161] = 710, - [1162] = 860, - [1163] = 859, - [1164] = 785, - [1165] = 858, - [1166] = 762, - [1167] = 856, - [1168] = 783, - [1169] = 852, - [1170] = 782, - [1171] = 781, - [1172] = 780, - [1173] = 851, - [1174] = 849, - [1175] = 779, - [1176] = 848, - [1177] = 778, - [1178] = 844, - [1179] = 776, - [1180] = 775, - [1181] = 711, - [1182] = 843, - [1183] = 840, - [1184] = 774, - [1185] = 763, - [1186] = 835, - [1187] = 834, - [1188] = 833, - [1189] = 772, - [1190] = 832, - [1191] = 830, - [1192] = 756, - [1193] = 755, - [1194] = 752, - [1195] = 828, - [1196] = 740, - [1197] = 736, - [1198] = 731, - [1199] = 819, - [1200] = 817, - [1201] = 805, - [1202] = 723, - [1203] = 761, - [1204] = 821, - [1205] = 814, - [1206] = 816, - [1207] = 813, - [1208] = 759, - [1209] = 812, - [1210] = 724, - [1211] = 810, - [1212] = 836, - [1213] = 808, - [1214] = 765, - [1215] = 766, - [1216] = 767, - [1217] = 768, - [1218] = 769, - [1219] = 807, - [1220] = 803, - [1221] = 800, - [1222] = 797, - [1223] = 770, - [1224] = 771, - [1225] = 772, - [1226] = 774, - [1227] = 775, - [1228] = 795, - [1229] = 776, - [1230] = 877, - [1231] = 778, - [1232] = 794, - [1233] = 793, - [1234] = 779, - [1235] = 784, - [1236] = 780, - [1237] = 791, - [1238] = 781, - [1239] = 782, - [1240] = 783, - [1241] = 762, - [1242] = 785, - [1243] = 788, - [1244] = 789, - [1245] = 790, - [1246] = 791, - [1247] = 784, - [1248] = 790, - [1249] = 793, - [1250] = 794, - [1251] = 795, - [1252] = 797, - [1253] = 800, - [1254] = 803, - [1255] = 807, - [1256] = 789, - [1257] = 808, - [1258] = 810, - [1259] = 724, - [1260] = 812, - [1261] = 813, - [1262] = 723, - [1263] = 817, - [1264] = 819, - [1265] = 709, - [1266] = 736, - [1267] = 828, - [1268] = 830, - [1269] = 788, - [1270] = 832, - [1271] = 785, - [1272] = 833, - [1273] = 834, - [1274] = 835, - [1275] = 763, - [1276] = 840, - [1277] = 843, - [1278] = 844, - [1279] = 848, - [1280] = 849, - [1281] = 851, - [1282] = 852, - [1283] = 762, - [1284] = 783, - [1285] = 856, - [1286] = 782, - [1287] = 781, - [1288] = 858, - [1289] = 836, - [1290] = 780, - [1291] = 859, - [1292] = 860, - [1293] = 861, - [1294] = 862, - [1295] = 779, - [1296] = 865, - [1297] = 765, - [1298] = 867, - [1299] = 868, - [1300] = 872, - [1301] = 778, - [1302] = 876, - [1303] = 878, - [1304] = 711, - [1305] = 879, - [1306] = 776, - [1307] = 775, - [1308] = 774, - [1309] = 772, - [1310] = 880, - [1311] = 882, - [1312] = 883, - [1313] = 884, - [1314] = 885, - [1315] = 886, - [1316] = 888, - [1317] = 892, - [1318] = 771, - [1319] = 893, - [1320] = 894, - [1321] = 896, - [1322] = 770, - [1323] = 897, - [1324] = 898, - [1325] = 899, - [1326] = 901, - [1327] = 902, - [1328] = 903, - [1329] = 769, - [1330] = 857, - [1331] = 768, - [1332] = 767, - [1333] = 766, - [1334] = 765, - [1335] = 853, - [1336] = 836, - [1337] = 845, - [1338] = 759, - [1339] = 827, - [1340] = 826, - [1341] = 771, - [1342] = 804, - [1343] = 802, - [1344] = 801, - [1345] = 816, - [1346] = 786, - [1347] = 750, - [1348] = 741, - [1349] = 738, - [1350] = 792, - [1351] = 814, - [1352] = 887, - [1353] = 821, - [1354] = 847, - [1355] = 761, - [1356] = 837, - [1357] = 824, - [1358] = 805, - [1359] = 731, - [1360] = 787, - [1361] = 777, - [1362] = 773, - [1363] = 764, - [1364] = 770, - [1365] = 740, - [1366] = 900, - [1367] = 869, - [1368] = 737, - [1369] = 875, - [1370] = 712, - [1371] = 752, - [1372] = 755, - [1373] = 756, - [1374] = 870, - [1375] = 734, - [1376] = 739, - [1377] = 742, - [1378] = 745, - [1379] = 855, - [1380] = 757, - [1381] = 890, - [1382] = 891, - [1383] = 881, - [1384] = 766, - [1385] = 873, - [1386] = 809, - [1387] = 822, - [1388] = 854, - [1389] = 725, - [1390] = 711, - [1391] = 823, - [1392] = 769, - [1393] = 727, - [1394] = 728, - [1395] = 729, - [1396] = 850, - [1397] = 730, - [1398] = 732, - [1399] = 846, - [1400] = 733, - [1401] = 842, - [1402] = 767, - [1403] = 841, - [1404] = 890, - [1405] = 735, - [1406] = 749, - [1407] = 710, - [1408] = 711, - [1409] = 710, - [1410] = 751, - [1411] = 838, - [1412] = 711, - [1413] = 753, - [1414] = 831, - [1415] = 829, - [1416] = 754, - [1417] = 825, - [1418] = 798, - [1419] = 806, - [1420] = 815, - [1421] = 726, - [1422] = 811, - [1423] = 818, - [1424] = 768, - [1425] = 710, - [1426] = 885, - [1427] = 787, - [1428] = 762, - [1429] = 789, - [1430] = 783, - [1431] = 786, - [1432] = 737, - [1433] = 785, - [1434] = 875, - [1435] = 790, - [1436] = 782, - [1437] = 780, - [1438] = 750, - [1439] = 791, - [1440] = 741, - [1441] = 784, - [1442] = 836, - [1443] = 793, - [1444] = 738, - [1445] = 779, - [1446] = 792, - [1447] = 778, - [1448] = 781, - [1449] = 794, - [1450] = 887, - [1451] = 782, - [1452] = 776, - [1453] = 869, - [1454] = 775, - [1455] = 796, - [1456] = 835, - [1457] = 781, - [1458] = 774, - [1459] = 798, - [1460] = 780, - [1461] = 870, - [1462] = 779, - [1463] = 801, - [1464] = 847, - [1465] = 854, - [1466] = 837, - [1467] = 824, - [1468] = 753, - [1469] = 783, - [1470] = 772, - [1471] = 734, - [1472] = 762, - [1473] = 900, - [1474] = 739, - [1475] = 787, - [1476] = 777, - [1477] = 742, - [1478] = 793, - [1479] = 771, - [1480] = 794, - [1481] = 785, - [1482] = 770, - [1483] = 735, - [1484] = 802, - [1485] = 788, - [1486] = 795, - [1487] = 733, - [1488] = 815, - [1489] = 773, - [1490] = 795, - [1491] = 764, - [1492] = 769, - [1493] = 797, - [1494] = 800, - [1495] = 803, - [1496] = 768, - [1497] = 745, - [1498] = 789, - [1499] = 804, - [1500] = 807, - [1501] = 778, - [1502] = 776, - [1503] = 808, - [1504] = 775, - [1505] = 810, - [1506] = 774, - [1507] = 724, - [1508] = 772, - [1509] = 771, - [1510] = 764, - [1511] = 770, - [1512] = 769, - [1513] = 812, - [1514] = 768, - [1515] = 767, - [1516] = 767, - [1517] = 813, - [1518] = 723, - [1519] = 766, - [1520] = 766, - [1521] = 817, - [1522] = 900, - [1523] = 806, - [1524] = 818, - [1525] = 819, - [1526] = 765, - [1527] = 790, - [1528] = 869, - [1529] = 836, - [1530] = 736, - [1531] = 828, - [1532] = 749, - [1533] = 710, - [1534] = 826, - [1535] = 757, - [1536] = 765, - [1537] = 891, - [1538] = 773, - [1539] = 811, - [1540] = 829, - [1541] = 825, - [1542] = 726, - [1543] = 881, - [1544] = 827, - [1545] = 737, - [1546] = 791, - [1547] = 873, - [1548] = 797, - [1549] = 875, - [1550] = 809, - [1551] = 845, - [1552] = 759, - [1553] = 816, - [1554] = 853, - [1555] = 814, - [1556] = 830, - [1557] = 777, - [1558] = 821, - [1559] = 838, - [1560] = 832, - [1561] = 822, - [1562] = 855, - [1563] = 761, - [1564] = 759, - [1565] = 816, - [1566] = 814, - [1567] = 821, - [1568] = 761, - [1569] = 805, - [1570] = 751, - [1571] = 731, - [1572] = 857, - [1573] = 742, - [1574] = 824, - [1575] = 833, - [1576] = 903, - [1577] = 902, - [1578] = 901, - [1579] = 837, - [1580] = 740, - [1581] = 899, - [1582] = 898, - [1583] = 870, - [1584] = 734, - [1585] = 739, - [1586] = 751, - [1587] = 897, - [1588] = 896, - [1589] = 847, - [1590] = 894, - [1591] = 893, - [1592] = 892, - [1593] = 888, - [1594] = 725, - [1595] = 823, - [1596] = 834, - [1597] = 886, - [1598] = 841, - [1599] = 788, - [1600] = 754, - [1601] = 745, - [1602] = 752, - [1603] = 755, - [1604] = 884, - [1605] = 805, - [1606] = 883, - [1607] = 731, - [1608] = 740, - [1609] = 756, - [1610] = 882, - [1611] = 752, - [1612] = 800, - [1613] = 880, - [1614] = 879, - [1615] = 757, - [1616] = 763, - [1617] = 840, - [1618] = 727, - [1619] = 878, - [1620] = 728, - [1621] = 729, - [1622] = 876, - [1623] = 843, - [1624] = 844, - [1625] = 872, - [1626] = 848, - [1627] = 868, - [1628] = 891, - [1629] = 881, - [1630] = 753, - [1631] = 849, - [1632] = 851, - [1633] = 852, - [1634] = 856, - [1635] = 867, - [1636] = 865, - [1637] = 862, - [1638] = 861, - [1639] = 803, - [1640] = 860, - [1641] = 859, - [1642] = 858, - [1643] = 755, - [1644] = 856, - [1645] = 858, - [1646] = 887, - [1647] = 735, - [1648] = 873, - [1649] = 852, - [1650] = 851, - [1651] = 859, - [1652] = 855, - [1653] = 809, - [1654] = 756, - [1655] = 822, - [1656] = 725, - [1657] = 849, - [1658] = 848, - [1659] = 860, - [1660] = 823, - [1661] = 861, - [1662] = 862, - [1663] = 865, - [1664] = 867, - [1665] = 868, - [1666] = 872, - [1667] = 749, - [1668] = 876, - [1669] = 878, - [1670] = 879, - [1671] = 880, - [1672] = 727, - [1673] = 854, - [1674] = 882, - [1675] = 883, - [1676] = 728, - [1677] = 711, - [1678] = 850, - [1679] = 846, - [1680] = 842, - [1681] = 884, - [1682] = 729, - [1683] = 885, - [1684] = 886, - [1685] = 888, - [1686] = 892, - [1687] = 893, - [1688] = 894, - [1689] = 896, - [1690] = 897, - [1691] = 841, - [1692] = 898, - [1693] = 842, - [1694] = 838, - [1695] = 899, - [1696] = 901, - [1697] = 902, - [1698] = 903, - [1699] = 857, - [1700] = 853, - [1701] = 845, - [1702] = 792, - [1703] = 844, - [1704] = 843, - [1705] = 840, - [1706] = 763, - [1707] = 831, - [1708] = 835, - [1709] = 827, - [1710] = 738, - [1711] = 730, - [1712] = 754, - [1713] = 834, - [1714] = 741, - [1715] = 732, - [1716] = 733, - [1717] = 798, - [1718] = 833, - [1719] = 806, - [1720] = 815, - [1721] = 750, - [1722] = 818, - [1723] = 832, - [1724] = 801, - [1725] = 784, - [1726] = 829, - [1727] = 825, - [1728] = 830, - [1729] = 846, - [1730] = 786, - [1731] = 828, - [1732] = 796, - [1733] = 826, - [1734] = 736, - [1735] = 730, - [1736] = 732, - [1737] = 819, - [1738] = 850, - [1739] = 711, - [1740] = 804, - [1741] = 817, - [1742] = 723, - [1743] = 802, - [1744] = 813, - [1745] = 812, - [1746] = 724, - [1747] = 831, - [1748] = 810, - [1749] = 726, - [1750] = 811, - [1751] = 808, - [1752] = 807, - [1753] = 710, - [1754] = 1754, - [1755] = 1755, - [1756] = 1756, - [1757] = 1756, - [1758] = 1755, - [1759] = 1755, - [1760] = 1760, - [1761] = 1756, - [1762] = 1755, - [1763] = 1755, - [1764] = 1756, - [1765] = 1756, - [1766] = 1755, - [1767] = 1756, - [1768] = 1755, - [1769] = 1756, - [1770] = 1770, - [1771] = 1771, - [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 1777, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 710, - [1782] = 711, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1787, - [1788] = 1770, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1770, - [1795] = 1786, - [1796] = 1776, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1780, - [1803] = 1754, - [1804] = 1770, - [1805] = 1805, - [1806] = 1777, - [1807] = 1807, - [1808] = 1772, - [1809] = 1809, - [1810] = 1772, - [1811] = 1786, - [1812] = 1812, - [1813] = 1813, - [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1790, - [1818] = 1818, - [1819] = 1819, - [1820] = 1820, - [1821] = 1777, - [1822] = 1822, - [1823] = 1823, - [1824] = 1824, - [1825] = 1825, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1773, - [1830] = 1830, - [1831] = 1831, - [1832] = 1832, - [1833] = 1776, - [1834] = 1834, - [1835] = 1835, - [1836] = 1836, - [1837] = 1837, - [1838] = 1778, - [1839] = 1839, - [1840] = 1772, - [1841] = 1777, - [1842] = 1842, - [1843] = 1843, - [1844] = 1775, - [1845] = 1785, - [1846] = 1774, - [1847] = 1847, - [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1771, - [1855] = 1855, - [1856] = 1776, - [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 1862, - [1863] = 1863, - [1864] = 1789, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1870, - [1871] = 1871, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1801, - [1876] = 1876, - [1877] = 1797, - [1878] = 1878, - [1879] = 1852, - [1880] = 1880, - [1881] = 1786, - [1882] = 1805, - [1883] = 1786, - [1884] = 1798, - [1885] = 1809, - [1886] = 1778, - [1887] = 1786, - [1888] = 1778, - [1889] = 1815, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1900, - [1901] = 1863, - [1902] = 1902, - [1903] = 1903, - [1904] = 1826, - [1905] = 1905, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1914, - [1915] = 1820, - [1916] = 1847, - [1917] = 1831, - [1918] = 1832, - [1919] = 1919, - [1920] = 1861, - [1921] = 1898, - [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 1925, - [1926] = 1926, - [1927] = 1815, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 1868, - [1932] = 1898, - [1933] = 1933, - [1934] = 1862, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1871, - [1939] = 1939, - [1940] = 1835, - [1941] = 1941, - [1942] = 1942, - [1943] = 1898, - [1944] = 1944, - [1945] = 1945, - [1946] = 1839, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1873, - [1952] = 1952, - [1953] = 1869, - [1954] = 1822, - [1955] = 1858, - [1956] = 1870, - [1957] = 1790, - [1958] = 1958, - [1959] = 1866, - [1960] = 1898, - [1961] = 1961, - [1962] = 1962, - [1963] = 1963, - [1964] = 1874, - [1965] = 1965, - [1966] = 1966, - [1967] = 1848, - [1968] = 1849, - [1969] = 1850, - [1970] = 1851, - [1971] = 1898, - [1972] = 1836, - [1973] = 1973, - [1974] = 1898, - [1975] = 1975, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1982, - [1983] = 1816, - [1984] = 1984, - [1985] = 1827, - [1986] = 1867, - [1987] = 1987, - [1988] = 1855, - [1989] = 1857, - [1990] = 1779, - [1991] = 1991, - [1992] = 1813, - [1993] = 1823, - [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1996, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 2002, - [2003] = 1997, - [2004] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 2005, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 2023, - [2024] = 2024, - [2025] = 2025, - [2026] = 2026, - [2027] = 2000, - [2028] = 1997, - [2029] = 2001, - [2030] = 2030, - [2031] = 2014, - [2032] = 1815, - [2033] = 2012, - [2034] = 1997, - [2035] = 2013, - [2036] = 2036, - [2037] = 2016, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 2005, - [2042] = 2042, - [2043] = 2043, - [2044] = 2025, - [2045] = 1815, - [2046] = 2024, - [2047] = 2047, - [2048] = 2005, - [2049] = 1999, - [2050] = 2023, - [2051] = 2022, - [2052] = 2002, - [2053] = 2008, - [2054] = 2021, - [2055] = 2020, - [2056] = 2047, - [2057] = 2018, - [2058] = 2017, - [2059] = 1997, - [2060] = 2060, - [2061] = 2036, - [2062] = 1995, - [2063] = 2026, - [2064] = 2064, - [2065] = 2042, - [2066] = 1997, - [2067] = 2038, - [2068] = 2015, - [2069] = 2006, - [2070] = 1899, - [2071] = 2019, - [2072] = 1994, - [2073] = 2005, - [2074] = 2005, - [2075] = 2007, - [2076] = 2039, - [2077] = 1780, - [2078] = 2010, - [2079] = 1997, - [2080] = 2080, - [2081] = 2004, - [2082] = 1876, - [2083] = 1815, - [2084] = 1878, - [2085] = 2085, - [2086] = 2005, - [2087] = 2011, - [2088] = 2005, - [2089] = 1894, - [2090] = 2064, - [2091] = 2080, - [2092] = 1997, - [2093] = 2010, - [2094] = 2011, - [2095] = 2095, - [2096] = 2096, - [2097] = 2095, - [2098] = 2098, - [2099] = 2015, - [2100] = 2095, - [2101] = 1776, - [2102] = 2002, - [2103] = 2098, - [2104] = 2104, - [2105] = 2017, - [2106] = 2018, - [2107] = 2047, - [2108] = 1892, - [2109] = 2020, - [2110] = 2110, - [2111] = 2021, - [2112] = 1999, - [2113] = 2113, - [2114] = 1852, - [2115] = 1852, - [2116] = 2116, - [2117] = 2022, - [2118] = 1852, - [2119] = 1996, - [2120] = 2104, - [2121] = 2023, - [2122] = 2024, - [2123] = 2104, - [2124] = 2025, - [2125] = 2026, - [2126] = 2000, - [2127] = 2104, - [2128] = 2001, - [2129] = 2104, - [2130] = 2012, - [2131] = 2013, - [2132] = 2036, - [2133] = 2133, - [2134] = 1785, - [2135] = 2016, - [2136] = 1789, - [2137] = 2095, - [2138] = 2104, - [2139] = 2095, - [2140] = 1784, - [2141] = 2060, - [2142] = 1793, - [2143] = 1792, - [2144] = 1995, - [2145] = 2133, - [2146] = 2064, - [2147] = 2042, - [2148] = 2038, - [2149] = 2019, - [2150] = 1994, - [2151] = 2039, - [2152] = 2007, - [2153] = 2080, - [2154] = 2095, - [2155] = 2098, - [2156] = 2014, - [2157] = 2098, - [2158] = 2098, - [2159] = 2095, - [2160] = 2098, - [2161] = 2008, - [2162] = 2006, - [2163] = 2098, - [2164] = 2098, - [2165] = 2104, - [2166] = 1826, - [2167] = 2095, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 2171, - [2172] = 2170, - [2173] = 2173, - [2174] = 2169, - [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 2175, - [2179] = 2179, - [2180] = 2180, - [2181] = 2169, - [2182] = 1776, - [2183] = 2169, - [2184] = 2170, - [2185] = 1780, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2175, - [2190] = 2190, - [2191] = 2187, - [2192] = 2170, - [2193] = 1809, - [2194] = 2175, - [2195] = 1805, - [2196] = 1876, - [2197] = 2173, - [2198] = 2198, - [2199] = 2199, - [2200] = 1799, - [2201] = 2170, - [2202] = 1798, - [2203] = 1797, - [2204] = 1807, - [2205] = 2173, - [2206] = 2173, - [2207] = 2180, - [2208] = 2198, - [2209] = 1878, - [2210] = 2169, - [2211] = 2198, - [2212] = 2175, - [2213] = 2175, - [2214] = 2188, - [2215] = 1772, - [2216] = 1800, - [2217] = 1801, - [2218] = 1777, - [2219] = 1778, - [2220] = 2177, - [2221] = 1772, - [2222] = 2222, - [2223] = 1777, - [2224] = 2173, - [2225] = 2175, - [2226] = 2170, - [2227] = 2175, - [2228] = 2169, - [2229] = 2179, - [2230] = 2186, - [2231] = 2170, - [2232] = 2198, - [2233] = 2169, - [2234] = 2198, - [2235] = 2173, - [2236] = 2198, - [2237] = 2170, - [2238] = 2198, - [2239] = 2173, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 1822, - [2247] = 1775, - [2248] = 2248, - [2249] = 2249, - [2250] = 2250, - [2251] = 1771, - [2252] = 2252, - [2253] = 1823, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 2243, - [2258] = 2013, - [2259] = 2259, - [2260] = 1771, - [2261] = 1843, - [2262] = 1812, - [2263] = 2263, - [2264] = 2249, - [2265] = 1754, - [2266] = 2244, - [2267] = 2244, - [2268] = 2241, - [2269] = 2249, - [2270] = 2245, - [2271] = 2016, - [2272] = 2036, - [2273] = 1855, - [2274] = 2012, - [2275] = 1834, - [2276] = 2001, - [2277] = 2277, - [2278] = 2249, - [2279] = 1774, - [2280] = 2255, - [2281] = 2249, - [2282] = 2282, - [2283] = 2282, - [2284] = 2242, - [2285] = 2242, - [2286] = 2282, - [2287] = 2255, - [2288] = 2255, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2244, - [2294] = 2241, - [2295] = 2242, - [2296] = 2277, - [2297] = 2297, - [2298] = 2245, - [2299] = 1816, - [2300] = 2282, - [2301] = 2256, - [2302] = 2254, - [2303] = 1827, - [2304] = 1813, - [2305] = 2305, - [2306] = 2255, - [2307] = 2000, - [2308] = 2241, - [2309] = 2309, - [2310] = 2248, - [2311] = 2026, - [2312] = 2025, - [2313] = 2024, - [2314] = 2259, - [2315] = 2023, - [2316] = 2245, - [2317] = 2317, - [2318] = 2277, - [2319] = 2022, - [2320] = 2021, - [2321] = 2297, - [2322] = 2020, - [2323] = 1894, - [2324] = 2305, - [2325] = 2259, - [2326] = 2289, - [2327] = 2292, - [2328] = 2292, - [2329] = 2291, - [2330] = 2047, - [2331] = 2242, - [2332] = 2256, - [2333] = 2254, - [2334] = 2289, - [2335] = 2263, - [2336] = 2289, - [2337] = 1773, - [2338] = 2292, - [2339] = 1775, - [2340] = 2018, - [2341] = 1848, - [2342] = 1837, - [2343] = 2017, - [2344] = 2309, - [2345] = 1842, - [2346] = 2248, - [2347] = 2292, - [2348] = 1849, - [2349] = 1850, - [2350] = 2259, - [2351] = 1851, - [2352] = 1835, - [2353] = 1819, - [2354] = 1789, - [2355] = 2244, - [2356] = 2290, - [2357] = 1899, - [2358] = 2317, - [2359] = 2245, - [2360] = 2263, - [2361] = 2243, - [2362] = 2263, - [2363] = 2277, - [2364] = 1839, - [2365] = 2317, - [2366] = 2297, - [2367] = 2297, - [2368] = 2263, - [2369] = 2255, - [2370] = 1820, - [2371] = 2305, - [2372] = 1818, - [2373] = 1785, - [2374] = 1858, - [2375] = 2305, - [2376] = 1899, - [2377] = 2015, - [2378] = 2291, - [2379] = 2317, - [2380] = 1847, - [2381] = 2244, - [2382] = 1871, - [2383] = 2282, - [2384] = 2291, - [2385] = 2290, - [2386] = 2259, - [2387] = 1773, - [2388] = 2291, - [2389] = 2289, - [2390] = 2259, - [2391] = 1771, - [2392] = 2242, - [2393] = 1831, - [2394] = 1872, - [2395] = 2011, - [2396] = 2396, - [2397] = 2289, - [2398] = 1861, - [2399] = 2399, - [2400] = 2282, - [2401] = 2249, - [2402] = 1832, - [2403] = 1859, - [2404] = 2248, - [2405] = 1780, - [2406] = 2263, - [2407] = 1899, - [2408] = 1867, - [2409] = 2255, - [2410] = 2010, - [2411] = 1830, - [2412] = 2290, - [2413] = 2006, - [2414] = 2290, - [2415] = 2289, - [2416] = 1860, - [2417] = 2292, - [2418] = 2292, - [2419] = 2317, - [2420] = 2309, - [2421] = 2242, - [2422] = 1857, - [2423] = 1828, - [2424] = 1894, - [2425] = 1892, - [2426] = 2305, - [2427] = 2256, - [2428] = 2241, - [2429] = 2317, - [2430] = 2241, - [2431] = 2244, - [2432] = 1865, - [2433] = 2254, - [2434] = 2297, - [2435] = 2290, - [2436] = 2240, - [2437] = 2277, - [2438] = 2317, - [2439] = 2277, - [2440] = 2297, - [2441] = 1773, - [2442] = 2244, - [2443] = 2305, - [2444] = 2255, - [2445] = 2445, - [2446] = 2317, - [2447] = 2080, - [2448] = 2289, - [2449] = 1825, - [2450] = 2292, - [2451] = 2007, - [2452] = 2452, - [2453] = 2263, - [2454] = 2396, - [2455] = 1994, - [2456] = 2243, - [2457] = 2309, - [2458] = 2019, - [2459] = 2399, - [2460] = 1863, - [2461] = 2002, - [2462] = 2256, - [2463] = 1999, - [2464] = 1774, - [2465] = 2245, - [2466] = 2039, - [2467] = 1996, - [2468] = 2259, - [2469] = 1836, - [2470] = 2309, - [2471] = 2248, - [2472] = 2290, - [2473] = 2254, - [2474] = 2309, - [2475] = 1774, - [2476] = 2291, - [2477] = 2243, - [2478] = 2249, - [2479] = 2256, - [2480] = 2254, - [2481] = 1874, - [2482] = 2291, - [2483] = 2249, - [2484] = 2254, - [2485] = 1862, - [2486] = 1853, - [2487] = 2309, - [2488] = 1778, - [2489] = 2254, - [2490] = 1894, - [2491] = 2305, - [2492] = 2256, - [2493] = 2256, - [2494] = 2309, - [2495] = 1873, - [2496] = 1869, - [2497] = 2241, - [2498] = 2038, - [2499] = 2305, - [2500] = 2008, - [2501] = 2297, - [2502] = 2277, - [2503] = 2248, - [2504] = 1824, - [2505] = 2297, - [2506] = 2042, - [2507] = 2277, - [2508] = 1870, - [2509] = 2248, - [2510] = 2259, - [2511] = 1814, - [2512] = 1866, - [2513] = 2014, - [2514] = 1868, - [2515] = 2243, - [2516] = 2245, - [2517] = 2064, - [2518] = 2243, - [2519] = 2282, - [2520] = 2248, - [2521] = 1995, - [2522] = 2245, - [2523] = 1775, - [2524] = 2263, - [2525] = 2525, - [2526] = 2526, - [2527] = 2527, - [2528] = 2526, - [2529] = 2529, - [2530] = 2530, - [2531] = 2531, - [2532] = 2532, - [2533] = 2531, - [2534] = 2534, - [2535] = 2535, - [2536] = 2536, - [2537] = 2529, - [2538] = 2538, - [2539] = 2539, - [2540] = 2535, - [2541] = 2531, - [2542] = 2542, - [2543] = 2543, - [2544] = 2535, - [2545] = 2545, - [2546] = 2534, - [2547] = 2547, - [2548] = 2534, - [2549] = 2531, - [2550] = 2060, - [2551] = 2526, - [2552] = 2529, - [2553] = 2553, - [2554] = 1880, - [2555] = 2527, - [2556] = 2529, - [2557] = 2534, - [2558] = 2527, - [2559] = 2526, - [2560] = 2535, - [2561] = 2535, - [2562] = 2534, - [2563] = 2535, - [2564] = 2564, - [2565] = 1861, - [2566] = 2534, - [2567] = 2529, - [2568] = 2568, - [2569] = 2060, - [2570] = 2526, - [2571] = 2571, - [2572] = 2572, - [2573] = 2573, - [2574] = 2574, - [2575] = 2575, - [2576] = 2576, - [2577] = 2527, - [2578] = 2531, - [2579] = 2526, - [2580] = 2580, - [2581] = 2531, - [2582] = 2582, - [2583] = 1861, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2534, - [2588] = 2535, - [2589] = 2529, - [2590] = 2527, - [2591] = 2531, - [2592] = 2526, - [2593] = 1805, - [2594] = 2527, - [2595] = 2529, - [2596] = 1809, - [2597] = 2527, - [2598] = 2535, - [2599] = 2529, - [2600] = 2527, - [2601] = 2530, - [2602] = 2060, - [2603] = 2532, - [2604] = 2604, - [2605] = 1797, - [2606] = 1801, - [2607] = 1798, - [2608] = 2534, - [2609] = 2531, - [2610] = 2610, - [2611] = 2526, - [2612] = 2612, - [2613] = 2613, - [2614] = 2612, - [2615] = 2615, - [2616] = 1857, - [2617] = 2617, - [2618] = 1816, - [2619] = 1827, - [2620] = 1813, - [2621] = 2621, - [2622] = 2622, - [2623] = 2615, - [2624] = 2624, - [2625] = 2612, - [2626] = 2626, - [2627] = 2622, - [2628] = 2626, - [2629] = 2621, - [2630] = 2624, - [2631] = 2615, - [2632] = 2617, - [2633] = 2622, - [2634] = 2621, - [2635] = 1862, - [2636] = 1944, - [2637] = 1835, - [2638] = 1839, - [2639] = 2617, - [2640] = 1858, - [2641] = 1952, - [2642] = 2617, - [2643] = 2621, - [2644] = 2622, - [2645] = 2624, - [2646] = 1926, - [2647] = 2647, - [2648] = 710, - [2649] = 711, - [2650] = 1867, - [2651] = 1897, - [2652] = 2652, - [2653] = 1805, - [2654] = 2654, - [2655] = 2612, - [2656] = 1868, - [2657] = 2612, - [2658] = 2615, - [2659] = 2624, - [2660] = 2626, - [2661] = 1911, - [2662] = 1851, - [2663] = 1924, - [2664] = 2654, - [2665] = 1866, - [2666] = 1942, - [2667] = 1870, - [2668] = 2668, - [2669] = 1869, - [2670] = 2612, - [2671] = 1873, - [2672] = 2622, - [2673] = 1871, - [2674] = 1939, - [2675] = 1850, - [2676] = 1801, - [2677] = 1820, - [2678] = 1945, - [2679] = 2679, - [2680] = 1893, - [2681] = 1855, - [2682] = 1847, - [2683] = 2654, - [2684] = 2613, - [2685] = 2652, - [2686] = 1962, - [2687] = 1849, - [2688] = 1965, - [2689] = 1848, - [2690] = 2690, - [2691] = 2691, - [2692] = 2654, - [2693] = 1929, - [2694] = 1908, - [2695] = 1831, - [2696] = 1922, - [2697] = 1832, - [2698] = 2647, - [2699] = 2613, - [2700] = 2612, - [2701] = 2654, - [2702] = 1900, - [2703] = 2613, - [2704] = 1981, - [2705] = 2624, - [2706] = 2615, - [2707] = 2691, - [2708] = 2617, - [2709] = 1874, - [2710] = 2612, - [2711] = 1976, - [2712] = 1949, - [2713] = 2652, - [2714] = 1961, - [2715] = 2647, - [2716] = 1902, - [2717] = 2654, - [2718] = 1984, - [2719] = 2621, - [2720] = 2622, - [2721] = 1936, - [2722] = 1980, - [2723] = 2621, - [2724] = 1933, - [2725] = 1948, - [2726] = 1947, - [2727] = 1937, - [2728] = 1975, - [2729] = 2729, - [2730] = 1919, - [2731] = 1913, - [2732] = 1982, - [2733] = 1963, - [2734] = 1958, - [2735] = 2735, - [2736] = 1978, - [2737] = 1973, - [2738] = 1935, - [2739] = 1890, - [2740] = 1928, - [2741] = 2617, - [2742] = 2621, - [2743] = 2622, - [2744] = 2615, - [2745] = 2624, - [2746] = 1914, - [2747] = 1912, - [2748] = 1930, - [2749] = 1861, - [2750] = 1950, - [2751] = 2652, - [2752] = 1910, - [2753] = 1823, - [2754] = 1979, - [2755] = 1903, - [2756] = 2654, - [2757] = 1905, - [2758] = 1991, - [2759] = 2654, - [2760] = 1836, - [2761] = 1941, - [2762] = 1966, - [2763] = 1822, - [2764] = 1863, - [2765] = 2765, - [2766] = 1906, - [2767] = 2615, - [2768] = 1896, - [2769] = 1907, - [2770] = 1909, - [2771] = 1895, - [2772] = 1923, - [2773] = 1987, - [2774] = 1925, - [2775] = 1891, - [2776] = 2624, - [2777] = 1797, - [2778] = 2617, - [2779] = 1977, - [2780] = 1851, - [2781] = 1827, - [2782] = 1820, - [2783] = 1850, - [2784] = 1868, - [2785] = 1832, - [2786] = 1867, - [2787] = 1849, - [2788] = 1839, - [2789] = 1866, - [2790] = 1870, - [2791] = 1869, - [2792] = 1873, - [2793] = 1871, - [2794] = 1847, - [2795] = 1816, - [2796] = 1831, - [2797] = 1835, - [2798] = 2798, - [2799] = 1874, - [2800] = 1855, - [2801] = 1857, - [2802] = 2802, - [2803] = 1813, - [2804] = 1863, - [2805] = 1858, - [2806] = 1892, - [2807] = 2798, - [2808] = 2802, - [2809] = 1848, - [2810] = 2810, - [2811] = 2811, - [2812] = 2812, - [2813] = 2813, - [2814] = 2814, - [2815] = 2815, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [2822] = 2822, - [2823] = 2823, - [2824] = 711, - [2825] = 2825, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, - [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, - [2838] = 2838, - [2839] = 2839, - [2840] = 2840, - [2841] = 710, - [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2845, - [2846] = 2846, - [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2850, - [2851] = 2851, - [2852] = 2852, - [2853] = 2843, - [2854] = 2854, - [2855] = 2855, - [2856] = 2856, - [2857] = 2857, - [2858] = 2858, - [2859] = 2859, - [2860] = 2860, - [2861] = 2861, - [2862] = 2862, - [2863] = 2863, - [2864] = 2864, - [2865] = 2865, - [2866] = 2866, - [2867] = 2867, - [2868] = 2868, - [2869] = 2869, - [2870] = 2870, - [2871] = 2871, - [2872] = 2872, - [2873] = 2873, - [2874] = 2874, - [2875] = 2875, - [2876] = 2876, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2883, - [2884] = 2884, - [2885] = 2885, - [2886] = 2886, - [2887] = 2887, - [2888] = 2888, - [2889] = 2889, - [2890] = 2890, - [2891] = 2891, - [2892] = 2892, - [2893] = 2893, - [2894] = 2894, - [2895] = 2895, - [2896] = 2896, - [2897] = 2897, - [2898] = 2896, - [2899] = 2899, - [2900] = 2900, - [2901] = 2900, - [2902] = 2899, - [2903] = 2903, - [2904] = 2900, - [2905] = 2905, - [2906] = 2903, - [2907] = 2897, - [2908] = 2899, - [2909] = 2899, - [2910] = 2910, - [2911] = 2905, - [2912] = 2897, - [2913] = 2910, - [2914] = 2910, - [2915] = 2905, - [2916] = 2916, - [2917] = 2917, - [2918] = 2903, - [2919] = 2910, - [2920] = 2896, - [2921] = 2897, - [2922] = 2917, - [2923] = 2899, - [2924] = 2900, - [2925] = 2900, - [2926] = 2900, - [2927] = 2917, - [2928] = 2910, - [2929] = 2910, - [2930] = 2897, - [2931] = 2896, - [2932] = 2903, - [2933] = 2899, - [2934] = 2903, - [2935] = 2897, - [2936] = 2896, - [2937] = 2896, - [2938] = 2938, - [2939] = 2905, - [2940] = 2905, - [2941] = 2905, - [2942] = 2917, - [2943] = 2943, - [2944] = 2917, - [2945] = 2903, - [2946] = 2910, - [2947] = 2905, - [2948] = 2896, - [2949] = 2897, - [2950] = 2950, - [2951] = 2951, - [2952] = 2917, - [2953] = 2917, - [2954] = 2903, - [2955] = 2900, - [2956] = 2899, - [2957] = 2957, - [2958] = 2958, - [2959] = 2959, - [2960] = 2960, - [2961] = 2961, - [2962] = 2962, - [2963] = 2961, - [2964] = 2964, - [2965] = 2964, - [2966] = 2966, - [2967] = 2966, - [2968] = 2961, - [2969] = 2966, - [2970] = 2966, - [2971] = 2971, - [2972] = 2972, - [2973] = 2964, - [2974] = 2974, - [2975] = 2964, - [2976] = 2958, - [2977] = 2958, - [2978] = 2961, - [2979] = 2972, - [2980] = 2966, - [2981] = 2966, - [2982] = 2958, - [2983] = 2983, - [2984] = 2959, - [2985] = 2972, - [2986] = 2962, - [2987] = 2964, - [2988] = 2988, - [2989] = 2959, - [2990] = 2974, - [2991] = 2959, - [2992] = 2961, - [2993] = 2972, - [2994] = 2994, - [2995] = 2959, - [2996] = 2958, - [2997] = 2974, - [2998] = 2974, - [2999] = 2962, - [3000] = 2974, - [3001] = 2959, - [3002] = 2974, - [3003] = 2964, - [3004] = 2972, - [3005] = 2961, - [3006] = 2958, - [3007] = 2972, - [3008] = 2974, - [3009] = 2959, - [3010] = 2958, - [3011] = 2972, - [3012] = 2962, - [3013] = 3013, - [3014] = 2962, - [3015] = 2962, - [3016] = 2966, - [3017] = 2961, - [3018] = 2964, - [3019] = 2962, - [3020] = 3020, - [3021] = 3021, - [3022] = 3020, - [3023] = 3023, - [3024] = 3023, - [3025] = 3025, - [3026] = 3026, - [3027] = 3021, - [3028] = 3021, - [3029] = 3020, - [3030] = 3030, - [3031] = 3031, - [3032] = 3032, - [3033] = 3023, - [3034] = 3034, - [3035] = 3020, - [3036] = 3036, - [3037] = 3037, - [3038] = 3025, - [3039] = 3021, - [3040] = 3030, - [3041] = 3025, - [3042] = 3031, - [3043] = 3020, - [3044] = 3032, - [3045] = 3023, - [3046] = 3034, - [3047] = 3036, - [3048] = 3036, - [3049] = 3034, - [3050] = 3032, - [3051] = 3031, - [3052] = 3030, - [3053] = 3030, - [3054] = 3036, - [3055] = 3032, - [3056] = 3056, - [3057] = 3023, - [3058] = 3031, - [3059] = 3025, - [3060] = 3060, - [3061] = 3032, - [3062] = 3020, - [3063] = 3021, - [3064] = 3030, - [3065] = 3031, - [3066] = 3066, - [3067] = 3020, - [3068] = 3032, - [3069] = 3034, - [3070] = 3025, - [3071] = 3036, - [3072] = 3023, - [3073] = 3034, - [3074] = 3023, - [3075] = 3036, - [3076] = 3025, - [3077] = 3034, - [3078] = 3032, - [3079] = 3031, - [3080] = 3030, - [3081] = 3021, - [3082] = 3021, - [3083] = 3083, - [3084] = 3030, - [3085] = 3031, - [3086] = 3086, - [3087] = 3025, - [3088] = 3036, - [3089] = 3034, - [3090] = 3090, - [3091] = 3091, - [3092] = 3092, - [3093] = 3093, - [3094] = 3094, - [3095] = 3095, - [3096] = 3096, - [3097] = 3093, - [3098] = 3095, - [3099] = 3095, - [3100] = 3090, - [3101] = 3096, - [3102] = 3096, - [3103] = 3091, - [3104] = 3091, - [3105] = 3090, - [3106] = 3106, - [3107] = 3106, - [3108] = 3091, - [3109] = 3094, - [3110] = 3110, - [3111] = 1789, - [3112] = 3092, - [3113] = 3090, - [3114] = 3095, - [3115] = 3094, - [3116] = 3092, - [3117] = 3090, - [3118] = 3093, - [3119] = 3091, - [3120] = 3093, - [3121] = 3092, - [3122] = 3093, - [3123] = 3106, - [3124] = 3093, - [3125] = 1785, - [3126] = 3096, - [3127] = 3093, - [3128] = 3094, - [3129] = 3092, - [3130] = 3096, - [3131] = 3092, - [3132] = 3094, - [3133] = 3094, - [3134] = 3091, - [3135] = 3106, - [3136] = 3093, - [3137] = 3091, - [3138] = 3106, - [3139] = 3092, - [3140] = 3094, - [3141] = 3106, - [3142] = 3090, - [3143] = 3106, - [3144] = 3096, - [3145] = 3091, - [3146] = 3090, - [3147] = 3106, - [3148] = 3095, - [3149] = 3095, - [3150] = 3095, - [3151] = 3096, - [3152] = 3152, - [3153] = 3153, - [3154] = 3154, - [3155] = 3155, - [3156] = 3156, - [3157] = 3157, - [3158] = 3158, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3162, - [3163] = 3163, - [3164] = 3164, - [3165] = 3153, - [3166] = 3166, - [3167] = 3167, - [3168] = 3168, - [3169] = 3157, - [3170] = 3170, - [3171] = 3159, - [3172] = 3172, - [3173] = 3157, - [3174] = 3174, - [3175] = 3175, - [3176] = 3176, - [3177] = 3154, - [3178] = 3155, - [3179] = 3156, - [3180] = 3180, - [3181] = 3181, - [3182] = 3160, - [3183] = 3161, - [3184] = 3162, - [3185] = 3185, - [3186] = 3186, - [3187] = 3166, - [3188] = 3188, - [3189] = 3162, - [3190] = 3190, - [3191] = 3175, - [3192] = 3192, - [3193] = 3193, - [3194] = 3159, - [3195] = 3152, - [3196] = 3154, - [3197] = 3155, - [3198] = 3156, - [3199] = 3152, - [3200] = 3176, - [3201] = 3160, - [3202] = 3166, - [3203] = 3157, - [3204] = 3161, - [3205] = 3205, - [3206] = 3175, - [3207] = 3162, - [3208] = 3163, - [3209] = 3205, - [3210] = 3210, - [3211] = 3211, - [3212] = 3159, - [3213] = 3157, - [3214] = 3214, - [3215] = 3215, - [3216] = 3159, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 3210, - [3221] = 3166, - [3222] = 3205, - [3223] = 3157, - [3224] = 3210, - [3225] = 3225, - [3226] = 3161, - [3227] = 3159, - [3228] = 3158, - [3229] = 3229, - [3230] = 3163, - [3231] = 3176, - [3232] = 3175, - [3233] = 3152, - [3234] = 3234, - [3235] = 3154, - [3236] = 3236, - [3237] = 3155, - [3238] = 3156, - [3239] = 1771, - [3240] = 3240, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3164, - [3245] = 3160, - [3246] = 3161, - [3247] = 3162, - [3248] = 3158, - [3249] = 3249, - [3250] = 3250, - [3251] = 3160, - [3252] = 3193, - [3253] = 3253, - [3254] = 3229, - [3255] = 3192, - [3256] = 3256, - [3257] = 3193, - [3258] = 3166, - [3259] = 3153, - [3260] = 3185, - [3261] = 3261, - [3262] = 3170, - [3263] = 3172, - [3264] = 3188, - [3265] = 3174, - [3266] = 1773, - [3267] = 3267, - [3268] = 3188, - [3269] = 3192, - [3270] = 3253, - [3271] = 3193, - [3272] = 3152, - [3273] = 3176, - [3274] = 3163, - [3275] = 3243, - [3276] = 3174, - [3277] = 3205, - [3278] = 3210, - [3279] = 3229, - [3280] = 3256, - [3281] = 3172, - [3282] = 3185, - [3283] = 3170, - [3284] = 1774, - [3285] = 3158, - [3286] = 3153, - [3287] = 3153, - [3288] = 3253, - [3289] = 3289, - [3290] = 3290, - [3291] = 3159, - [3292] = 3292, - [3293] = 3164, - [3294] = 3253, - [3295] = 3234, - [3296] = 3296, - [3297] = 3297, - [3298] = 3170, - [3299] = 3299, - [3300] = 3300, - [3301] = 3229, - [3302] = 3241, - [3303] = 3256, - [3304] = 3170, - [3305] = 3185, - [3306] = 3172, - [3307] = 3174, - [3308] = 3229, - [3309] = 3309, - [3310] = 3310, - [3311] = 3311, - [3312] = 3188, - [3313] = 3175, - [3314] = 3162, - [3315] = 3154, - [3316] = 3155, - [3317] = 3156, - [3318] = 3192, - [3319] = 3243, - [3320] = 3253, - [3321] = 3193, - [3322] = 3229, - [3323] = 3160, - [3324] = 3161, - [3325] = 3152, - [3326] = 3176, - [3327] = 3162, - [3328] = 3256, - [3329] = 3163, - [3330] = 3205, - [3331] = 3210, - [3332] = 3164, - [3333] = 3185, - [3334] = 3158, - [3335] = 3166, - [3336] = 3158, - [3337] = 3161, - [3338] = 3338, - [3339] = 3339, - [3340] = 3157, - [3341] = 3160, - [3342] = 3342, - [3343] = 3156, - [3344] = 3156, - [3345] = 3345, - [3346] = 1809, - [3347] = 3250, - [3348] = 3155, - [3349] = 3154, - [3350] = 1775, - [3351] = 3175, - [3352] = 3172, - [3353] = 3174, - [3354] = 3188, - [3355] = 3355, - [3356] = 3253, - [3357] = 3234, - [3358] = 3164, - [3359] = 3359, - [3360] = 3185, - [3361] = 3361, - [3362] = 3158, - [3363] = 3256, - [3364] = 3229, - [3365] = 3256, - [3366] = 3155, - [3367] = 3249, - [3368] = 1798, - [3369] = 3249, - [3370] = 3175, - [3371] = 3299, - [3372] = 3229, - [3373] = 3253, - [3374] = 3290, - [3375] = 3355, - [3376] = 3361, - [3377] = 3164, - [3378] = 3166, - [3379] = 3310, - [3380] = 3380, - [3381] = 3256, - [3382] = 3249, - [3383] = 3383, - [3384] = 3153, - [3385] = 3164, - [3386] = 3170, - [3387] = 3355, - [3388] = 3154, - [3389] = 3355, - [3390] = 3380, - [3391] = 3172, - [3392] = 3153, - [3393] = 3361, - [3394] = 3174, - [3395] = 3192, - [3396] = 3361, - [3397] = 3185, - [3398] = 3398, - [3399] = 3210, - [3400] = 3210, - [3401] = 3205, - [3402] = 3188, - [3403] = 3163, - [3404] = 3176, - [3405] = 3152, - [3406] = 3193, - [3407] = 3192, - [3408] = 3192, - [3409] = 3193, - [3410] = 3188, - [3411] = 3205, - [3412] = 3412, - [3413] = 3174, - [3414] = 3414, - [3415] = 3163, - [3416] = 3234, - [3417] = 3170, - [3418] = 3176, - [3419] = 3172, - [3420] = 3420, - [3421] = 3421, - [3422] = 3422, - [3423] = 3423, - [3424] = 3424, - [3425] = 3425, - [3426] = 3426, - [3427] = 3427, - [3428] = 3428, - [3429] = 3429, - [3430] = 3430, - [3431] = 3428, - [3432] = 3424, - [3433] = 3427, - [3434] = 3423, - [3435] = 1772, - [3436] = 3428, - [3437] = 3437, - [3438] = 1776, - [3439] = 3437, - [3440] = 1785, - [3441] = 3441, - [3442] = 3424, - [3443] = 3437, - [3444] = 3437, - [3445] = 3437, - [3446] = 1780, - [3447] = 3427, - [3448] = 1777, - [3449] = 3437, - [3450] = 3437, - [3451] = 3437, - [3452] = 3437, - [3453] = 1789, - [3454] = 3423, - [3455] = 3437, - [3456] = 3456, - [3457] = 3456, - [3458] = 3458, - [3459] = 3459, - [3460] = 3456, - [3461] = 3456, - [3462] = 3456, - [3463] = 3463, - [3464] = 3456, - [3465] = 3465, - [3466] = 1778, - [3467] = 3456, - [3468] = 1809, - [3469] = 1798, - [3470] = 1861, - [3471] = 1801, - [3472] = 1797, - [3473] = 1805, - [3474] = 1827, - [3475] = 1850, - [3476] = 1867, - [3477] = 1832, - [3478] = 1816, - [3479] = 1847, - [3480] = 1831, - [3481] = 1848, - [3482] = 1874, - [3483] = 1771, - [3484] = 1863, - [3485] = 1813, - [3486] = 1858, - [3487] = 1773, - [3488] = 1868, - [3489] = 1774, - [3490] = 1849, - [3491] = 1839, - [3492] = 3492, - [3493] = 1820, - [3494] = 1775, - [3495] = 1835, - [3496] = 1871, - [3497] = 1857, - [3498] = 1855, - [3499] = 1873, - [3500] = 3426, - [3501] = 1869, - [3502] = 1870, - [3503] = 3503, - [3504] = 1866, - [3505] = 1851, - [3506] = 3506, - [3507] = 3507, - [3508] = 3508, - [3509] = 3509, - [3510] = 3510, - [3511] = 3511, - [3512] = 3512, - [3513] = 3513, - [3514] = 3508, - [3515] = 3512, - [3516] = 3516, - [3517] = 3423, - [3518] = 3427, - [3519] = 3424, - [3520] = 3520, - [3521] = 3521, - [3522] = 3428, - [3523] = 3523, - [3524] = 3524, - [3525] = 3524, - [3526] = 3524, - [3527] = 3524, - [3528] = 3524, - [3529] = 3524, - [3530] = 3524, - [3531] = 3531, - [3532] = 3424, - [3533] = 3423, - [3534] = 3534, - [3535] = 3427, - [3536] = 3536, - [3537] = 3531, - [3538] = 3536, - [3539] = 3534, - [3540] = 3540, - [3541] = 3428, - [3542] = 3542, - [3543] = 3543, - [3544] = 1789, - [3545] = 1785, - [3546] = 1809, - [3547] = 1798, - [3548] = 3548, - [3549] = 3548, - [3550] = 3550, - [3551] = 3551, - [3552] = 3552, - [3553] = 3548, - [3554] = 3551, - [3555] = 3551, - [3556] = 3550, - [3557] = 3552, - [3558] = 3550, - [3559] = 3552, - [3560] = 3552, - [3561] = 3561, - [3562] = 3561, - [3563] = 3550, - [3564] = 3552, - [3565] = 3548, - [3566] = 3552, - [3567] = 3548, - [3568] = 3551, - [3569] = 3551, - [3570] = 3561, - [3571] = 3551, - [3572] = 3550, - [3573] = 3561, - [3574] = 3548, - [3575] = 3552, - [3576] = 3551, - [3577] = 3550, - [3578] = 3548, - [3579] = 3561, - [3580] = 3561, - [3581] = 3550, - [3582] = 3561, - [3583] = 3583, - [3584] = 3584, - [3585] = 3584, - [3586] = 3586, - [3587] = 3583, - [3588] = 3583, - [3589] = 3586, - [3590] = 3590, - [3591] = 3591, - [3592] = 3583, - [3593] = 3583, - [3594] = 3586, - [3595] = 3586, - [3596] = 3590, - [3597] = 3597, - [3598] = 3586, - [3599] = 3584, - [3600] = 3583, - [3601] = 3586, - [3602] = 3583, - [3603] = 3584, - [3604] = 3584, - [3605] = 3590, - [3606] = 3584, - [3607] = 3591, - [3608] = 3586, - [3609] = 3584, - [3610] = 3591, - [3611] = 3611, - [3612] = 1772, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3614, - [3619] = 3616, - [3620] = 3620, - [3621] = 3616, - [3622] = 3614, - [3623] = 3614, - [3624] = 3611, - [3625] = 3614, - [3626] = 3611, - [3627] = 3611, - [3628] = 3611, - [3629] = 3615, - [3630] = 3617, - [3631] = 3611, - [3632] = 3615, - [3633] = 3633, - [3634] = 3634, - [3635] = 1780, - [3636] = 3617, - [3637] = 3617, - [3638] = 3616, - [3639] = 3614, - [3640] = 3615, - [3641] = 3616, - [3642] = 3611, - [3643] = 3615, - [3644] = 1777, - [3645] = 3617, - [3646] = 3616, - [3647] = 3617, - [3648] = 3614, - [3649] = 707, - [3650] = 3617, - [3651] = 3615, - [3652] = 3616, - [3653] = 3615, - [3654] = 1776, - [3655] = 3655, - [3656] = 3656, - [3657] = 3657, - [3658] = 3658, - [3659] = 1785, - [3660] = 3658, - [3661] = 1789, - [3662] = 3662, - [3663] = 3663, - [3664] = 3658, - [3665] = 1778, - [3666] = 3666, - [3667] = 3658, - [3668] = 3668, - [3669] = 3669, - [3670] = 3670, - [3671] = 3671, - [3672] = 3669, - [3673] = 3673, - [3674] = 3673, - [3675] = 3675, - [3676] = 3668, - [3677] = 3673, - [3678] = 3668, - [3679] = 3679, - [3680] = 3680, - [3681] = 3671, - [3682] = 3671, - [3683] = 3673, - [3684] = 3671, - [3685] = 3685, - [3686] = 1780, - [3687] = 707, - [3688] = 3688, - [3689] = 3669, - [3690] = 3670, - [3691] = 3691, - [3692] = 3692, - [3693] = 3693, - [3694] = 3694, - [3695] = 3679, - [3696] = 3673, - [3697] = 3668, - [3698] = 3691, - [3699] = 3692, - [3700] = 3694, - [3701] = 3670, - [3702] = 3679, - [3703] = 3692, - [3704] = 3704, - [3705] = 3692, - [3706] = 3706, - [3707] = 3707, - [3708] = 3679, - [3709] = 1798, - [3710] = 3670, - [3711] = 3694, - [3712] = 1809, - [3713] = 3669, - [3714] = 3694, - [3715] = 3679, - [3716] = 3691, - [3717] = 3670, - [3718] = 3718, - [3719] = 3673, - [3720] = 3706, - [3721] = 3706, - [3722] = 3668, - [3723] = 3692, - [3724] = 3669, - [3725] = 3692, - [3726] = 3691, - [3727] = 3668, - [3728] = 3671, - [3729] = 3668, - [3730] = 3671, - [3731] = 3694, - [3732] = 3679, - [3733] = 1780, - [3734] = 3691, - [3735] = 3675, - [3736] = 3679, - [3737] = 3704, - [3738] = 3671, - [3739] = 3692, - [3740] = 3673, - [3741] = 3694, - [3742] = 3691, - [3743] = 3670, - [3744] = 3744, - [3745] = 3704, - [3746] = 3670, - [3747] = 3691, - [3748] = 3669, - [3749] = 3669, - [3750] = 3694, - [3751] = 3751, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, - [3755] = 3755, - [3756] = 3756, - [3757] = 3757, - [3758] = 1797, - [3759] = 3759, - [3760] = 1801, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 3756, - [3766] = 3766, - [3767] = 3767, - [3768] = 3768, - [3769] = 3769, - [3770] = 3666, - [3771] = 1805, - [3772] = 3772, - [3773] = 3773, - [3774] = 3666, - [3775] = 1789, - [3776] = 3776, - [3777] = 3777, - [3778] = 3778, - [3779] = 3772, - [3780] = 3777, - [3781] = 3781, - [3782] = 3782, - [3783] = 1780, - [3784] = 3784, - [3785] = 3781, - [3786] = 3786, - [3787] = 1777, - [3788] = 1772, - [3789] = 1861, - [3790] = 3790, - [3791] = 3756, - [3792] = 3756, - [3793] = 1785, - [3794] = 3794, - [3795] = 3795, - [3796] = 3516, - [3797] = 3759, - [3798] = 3507, - [3799] = 3799, - [3800] = 3786, - [3801] = 3801, - [3802] = 3802, - [3803] = 3803, - [3804] = 3804, - [3805] = 3805, - [3806] = 3806, - [3807] = 3807, - [3808] = 3808, - [3809] = 3809, - [3810] = 3805, - [3811] = 3811, - [3812] = 3812, - [3813] = 3813, - [3814] = 3805, - [3815] = 3813, - [3816] = 3816, - [3817] = 3817, - [3818] = 3806, - [3819] = 3806, - [3820] = 3806, - [3821] = 3806, - [3822] = 3806, - [3823] = 1867, - [3824] = 3824, - [3825] = 3801, - [3826] = 3826, - [3827] = 1809, - [3828] = 3824, - [3829] = 3812, - [3830] = 3806, - [3831] = 3831, - [3832] = 3832, - [3833] = 3833, - [3834] = 1858, - [3835] = 3803, - [3836] = 1839, - [3837] = 3811, - [3838] = 3838, - [3839] = 1835, - [3840] = 3840, - [3841] = 3841, - [3842] = 3802, - [3843] = 3843, - [3844] = 3844, - [3845] = 3845, - [3846] = 3843, - [3847] = 3847, - [3848] = 3832, - [3849] = 3849, - [3850] = 3850, - [3851] = 3849, - [3852] = 3850, - [3853] = 3816, - [3854] = 3845, - [3855] = 3841, - [3856] = 3847, - [3857] = 3802, - [3858] = 3831, - [3859] = 3844, - [3860] = 3826, - [3861] = 3826, - [3862] = 3862, - [3863] = 1813, - [3864] = 3833, - [3865] = 3862, - [3866] = 3841, - [3867] = 3838, - [3868] = 3838, - [3869] = 3833, - [3870] = 3845, - [3871] = 3816, - [3872] = 3813, - [3873] = 3832, - [3874] = 3802, - [3875] = 3803, - [3876] = 3849, - [3877] = 3877, - [3878] = 3843, - [3879] = 3843, - [3880] = 3802, - [3881] = 3850, - [3882] = 3838, - [3883] = 3883, - [3884] = 3847, - [3885] = 1816, - [3886] = 3886, - [3887] = 3833, - [3888] = 3811, - [3889] = 3832, - [3890] = 3831, - [3891] = 3831, - [3892] = 3833, - [3893] = 3811, - [3894] = 3809, - [3895] = 1820, - [3896] = 3831, - [3897] = 1847, - [3898] = 1831, - [3899] = 3824, - [3900] = 1832, - [3901] = 3813, - [3902] = 3805, - [3903] = 3824, - [3904] = 3812, - [3905] = 3905, - [3906] = 1798, - [3907] = 3826, - [3908] = 3817, - [3909] = 1827, - [3910] = 1848, - [3911] = 1849, - [3912] = 1850, - [3913] = 1851, - [3914] = 3801, - [3915] = 3877, - [3916] = 3844, - [3917] = 3847, - [3918] = 3809, - [3919] = 3862, - [3920] = 3803, - [3921] = 3809, - [3922] = 3803, - [3923] = 3809, - [3924] = 1855, - [3925] = 3844, - [3926] = 1857, - [3927] = 3813, - [3928] = 3812, - [3929] = 3805, - [3930] = 3813, - [3931] = 3805, - [3932] = 3877, - [3933] = 3817, - [3934] = 3817, - [3935] = 3850, - [3936] = 1863, - [3937] = 3849, - [3938] = 1874, - [3939] = 3824, - [3940] = 3824, - [3941] = 3847, - [3942] = 3812, - [3943] = 3832, - [3944] = 3812, - [3945] = 1868, - [3946] = 3801, - [3947] = 3831, - [3948] = 3833, - [3949] = 3862, - [3950] = 3845, - [3951] = 3817, - [3952] = 1871, - [3953] = 1873, - [3954] = 3877, - [3955] = 3838, - [3956] = 3956, - [3957] = 3802, - [3958] = 1869, - [3959] = 3843, - [3960] = 3817, - [3961] = 3841, - [3962] = 3801, - [3963] = 3803, - [3964] = 3832, - [3965] = 1870, - [3966] = 3844, - [3967] = 1866, - [3968] = 3847, - [3969] = 3809, - [3970] = 3826, - [3971] = 3850, - [3972] = 3849, - [3973] = 3845, - [3974] = 3841, - [3975] = 3826, - [3976] = 3841, - [3977] = 3845, - [3978] = 3826, - [3979] = 3816, - [3980] = 3849, - [3981] = 3850, - [3982] = 3847, - [3983] = 3816, - [3984] = 3838, - [3985] = 3832, - [3986] = 3843, - [3987] = 3801, - [3988] = 3802, - [3989] = 3841, - [3990] = 3833, - [3991] = 3838, - [3992] = 3831, - [3993] = 3803, - [3994] = 1771, - [3995] = 1775, - [3996] = 3996, - [3997] = 3817, - [3998] = 1774, - [3999] = 3999, - [4000] = 3805, - [4001] = 3809, - [4002] = 3824, - [4003] = 3849, - [4004] = 3843, - [4005] = 3845, - [4006] = 4006, - [4007] = 3811, - [4008] = 3813, - [4009] = 3801, - [4010] = 3850, - [4011] = 1773, - [4012] = 3812, - [4013] = 4013, - [4014] = 4014, - [4015] = 4015, - [4016] = 4016, - [4017] = 4017, - [4018] = 4015, - [4019] = 4017, - [4020] = 4015, - [4021] = 4017, - [4022] = 4022, - [4023] = 4015, - [4024] = 4017, - [4025] = 4025, - [4026] = 4026, - [4027] = 4015, - [4028] = 4013, - [4029] = 4016, - [4030] = 4017, - [4031] = 4031, - [4032] = 4032, - [4033] = 4015, - [4034] = 4034, - [4035] = 4035, - [4036] = 4036, - [4037] = 4037, - [4038] = 4022, - [4039] = 4039, - [4040] = 4040, - [4041] = 4013, - [4042] = 4035, - [4043] = 4043, - [4044] = 4022, - [4045] = 712, - [4046] = 3680, - [4047] = 4031, - [4048] = 4048, - [4049] = 4032, - [4050] = 4031, - [4051] = 3509, - [4052] = 4016, - [4053] = 4022, - [4054] = 4054, - [4055] = 4055, - [4056] = 4034, - [4057] = 4031, - [4058] = 1930, - [4059] = 4026, - [4060] = 4026, - [4061] = 4048, - [4062] = 4032, - [4063] = 4063, - [4064] = 4055, - [4065] = 4034, - [4066] = 4034, - [4067] = 4017, - [4068] = 4034, - [4069] = 1973, - [4070] = 4016, - [4071] = 1936, - [4072] = 4026, - [4073] = 4013, - [4074] = 4035, - [4075] = 4040, - [4076] = 4013, - [4077] = 1975, - [4078] = 4078, - [4079] = 4034, - [4080] = 4080, - [4081] = 4013, - [4082] = 4034, - [4083] = 4014, - [4084] = 4084, - [4085] = 4026, - [4086] = 4086, - [4087] = 1860, - [4088] = 4014, - [4089] = 4048, - [4090] = 4090, - [4091] = 4091, - [4092] = 4032, - [4093] = 4055, - [4094] = 4048, - [4095] = 1902, - [4096] = 4043, - [4097] = 4022, - [4098] = 4055, - [4099] = 1933, - [4100] = 4031, - [4101] = 4040, - [4102] = 4102, - [4103] = 4103, - [4104] = 4104, - [4105] = 4105, - [4106] = 4014, - [4107] = 4048, - [4108] = 4032, - [4109] = 4109, - [4110] = 4055, - [4111] = 4022, - [4112] = 4112, - [4113] = 4048, - [4114] = 4032, - [4115] = 4055, - [4116] = 4043, - [4117] = 4063, - [4118] = 4118, - [4119] = 4119, - [4120] = 4035, - [4121] = 4035, - [4122] = 4122, - [4123] = 4031, - [4124] = 4015, - [4125] = 4040, - [4126] = 4126, - [4127] = 4016, - [4128] = 4026, - [4129] = 4026, - [4130] = 4130, - [4131] = 4014, - [4132] = 4013, - [4133] = 4084, - [4134] = 709, - [4135] = 4016, - [4136] = 4048, - [4137] = 4032, - [4138] = 4014, - [4139] = 4139, - [4140] = 4055, - [4141] = 4141, - [4142] = 4142, - [4143] = 4143, - [4144] = 4034, - [4145] = 4022, - [4146] = 4146, - [4147] = 4147, - [4148] = 708, - [4149] = 4149, - [4150] = 4150, - [4151] = 4031, - [4152] = 4043, - [4153] = 4109, - [4154] = 4105, - [4155] = 4155, - [4156] = 4156, - [4157] = 4157, - [4158] = 4014, - [4159] = 4031, - [4160] = 4160, - [4161] = 3511, - [4162] = 4016, - [4163] = 4163, - [4164] = 4017, - [4165] = 4040, - [4166] = 4166, - [4167] = 4167, - [4168] = 4168, - [4169] = 4169, - [4170] = 717, - [4171] = 4171, - [4172] = 4172, - [4173] = 4173, - [4174] = 4169, - [4175] = 713, - [4176] = 4176, - [4177] = 4177, - [4178] = 4178, - [4179] = 4179, - [4180] = 4180, - [4181] = 718, - [4182] = 4182, - [4183] = 4183, - [4184] = 4184, - [4185] = 4185, - [4186] = 4186, - [4187] = 4187, - [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 4167, - [4192] = 4192, - [4193] = 4167, - [4194] = 4194, - [4195] = 4195, - [4196] = 4196, - [4197] = 4197, - [4198] = 4198, - [4199] = 4199, - [4200] = 4173, - [4201] = 4172, - [4202] = 4182, - [4203] = 4203, - [4204] = 4204, - [4205] = 4203, - [4206] = 4206, - [4207] = 4207, - [4208] = 719, - [4209] = 4184, - [4210] = 4187, - [4211] = 4211, - [4212] = 4212, - [4213] = 4189, - [4214] = 4194, - [4215] = 4215, - [4216] = 4216, - [4217] = 4187, - [4218] = 4218, - [4219] = 4211, - [4220] = 4220, - [4221] = 4221, - [4222] = 4222, - [4223] = 4223, - [4224] = 4168, - [4225] = 4220, - [4226] = 4185, - [4227] = 4173, - [4228] = 4222, - [4229] = 4168, - [4230] = 4230, - [4231] = 4177, - [4232] = 4232, - [4233] = 4188, - [4234] = 4223, - [4235] = 4168, - [4236] = 4222, - [4237] = 4186, - [4238] = 4223, - [4239] = 4172, - [4240] = 4195, - [4241] = 4223, - [4242] = 4220, - [4243] = 4196, - [4244] = 4189, - [4245] = 4216, - [4246] = 4189, - [4247] = 4183, - [4248] = 4173, - [4249] = 4178, - [4250] = 4211, - [4251] = 4203, - [4252] = 4172, - [4253] = 4172, - [4254] = 4173, - [4255] = 4184, - [4256] = 4211, - [4257] = 4206, - [4258] = 4197, - [4259] = 4259, - [4260] = 4187, - [4261] = 4185, - [4262] = 4180, - [4263] = 4203, - [4264] = 4184, - [4265] = 4232, - [4266] = 4184, - [4267] = 4267, - [4268] = 4186, - [4269] = 4186, - [4270] = 4232, - [4271] = 4169, - [4272] = 4272, - [4273] = 4182, - [4274] = 4196, - [4275] = 4198, - [4276] = 4267, - [4277] = 4169, - [4278] = 4194, - [4279] = 4169, - [4280] = 4179, - [4281] = 4203, - [4282] = 4188, - [4283] = 4283, - [4284] = 4206, - [4285] = 4171, - [4286] = 4286, - [4287] = 4287, - [4288] = 4288, - [4289] = 4283, - [4290] = 4283, - [4291] = 4171, - [4292] = 4292, - [4293] = 4220, - [4294] = 4177, - [4295] = 4176, - [4296] = 4171, - [4297] = 4223, - [4298] = 4298, - [4299] = 4207, - [4300] = 4179, - [4301] = 4301, - [4302] = 4176, - [4303] = 4180, - [4304] = 4178, - [4305] = 4189, - [4306] = 4306, - [4307] = 4168, - [4308] = 4185, - [4309] = 4176, - [4310] = 4180, - [4311] = 4199, - [4312] = 4183, - [4313] = 4195, - [4314] = 4198, - [4315] = 4196, - [4316] = 4189, - [4317] = 4216, - [4318] = 4203, - [4319] = 4222, - [4320] = 4199, - [4321] = 1860, - [4322] = 4196, - [4323] = 4199, - [4324] = 4195, - [4325] = 4177, - [4326] = 4221, - [4327] = 4179, - [4328] = 4328, - [4329] = 4183, - [4330] = 4218, - [4331] = 4221, - [4332] = 4332, - [4333] = 4221, - [4334] = 4334, - [4335] = 4232, - [4336] = 4218, - [4337] = 4177, - [4338] = 4220, - [4339] = 4283, - [4340] = 4197, - [4341] = 4178, - [4342] = 4218, - [4343] = 4172, - [4344] = 4344, - [4345] = 4345, - [4346] = 4206, - [4347] = 4199, - [4348] = 4185, - [4349] = 4232, - [4350] = 4206, - [4351] = 4186, - [4352] = 4352, - [4353] = 4173, - [4354] = 4179, - [4355] = 4272, - [4356] = 4188, - [4357] = 4357, - [4358] = 4358, - [4359] = 4187, - [4360] = 4196, - [4361] = 4176, - [4362] = 4186, - [4363] = 4179, - [4364] = 4232, - [4365] = 4207, - [4366] = 4366, - [4367] = 4206, - [4368] = 4211, - [4369] = 4176, - [4370] = 4180, - [4371] = 4178, - [4372] = 4372, - [4373] = 4195, - [4374] = 4177, - [4375] = 4183, - [4376] = 4183, - [4377] = 4377, - [4378] = 4195, - [4379] = 4379, - [4380] = 4380, - [4381] = 4221, - [4382] = 4218, - [4383] = 4178, - [4384] = 4218, - [4385] = 4203, - [4386] = 4220, - [4387] = 4185, - [4388] = 4206, - [4389] = 4171, - [4390] = 4283, - [4391] = 4232, - [4392] = 4392, - [4393] = 4393, - [4394] = 4199, - [4395] = 4195, - [4396] = 4171, - [4397] = 719, - [4398] = 4186, - [4399] = 4399, - [4400] = 4259, - [4401] = 718, - [4402] = 4221, - [4403] = 713, - [4404] = 4404, - [4405] = 4405, - [4406] = 4199, - [4407] = 4185, - [4408] = 4216, - [4409] = 4183, - [4410] = 4179, - [4411] = 4167, - [4412] = 4222, - [4413] = 4188, - [4414] = 4176, - [4415] = 4167, - [4416] = 4416, - [4417] = 4171, - [4418] = 4194, - [4419] = 4283, - [4420] = 4177, - [4421] = 4421, - [4422] = 4207, - [4423] = 4423, - [4424] = 4169, - [4425] = 4286, - [4426] = 4216, - [4427] = 4259, - [4428] = 4167, - [4429] = 4198, - [4430] = 4182, - [4431] = 4184, - [4432] = 4197, - [4433] = 4187, - [4434] = 4434, - [4435] = 4188, - [4436] = 4182, - [4437] = 4218, - [4438] = 4173, - [4439] = 4439, - [4440] = 4172, - [4441] = 4188, - [4442] = 4178, - [4443] = 4211, - [4444] = 4167, - [4445] = 4180, - [4446] = 4446, - [4447] = 4194, - [4448] = 4220, - [4449] = 4259, - [4450] = 4222, - [4451] = 4198, - [4452] = 4189, - [4453] = 4453, - [4454] = 4168, - [4455] = 4182, - [4456] = 4283, - [4457] = 4169, - [4458] = 4216, - [4459] = 4459, - [4460] = 4223, - [4461] = 4184, - [4462] = 4194, - [4463] = 4180, - [4464] = 4198, - [4465] = 4221, - [4466] = 4198, - [4467] = 4194, - [4468] = 4168, - [4469] = 4222, - [4470] = 4182, - [4471] = 4196, - [4472] = 4211, - [4473] = 4223, - [4474] = 4187, - [4475] = 4216, - [4476] = 4476, - [4477] = 4477, - [4478] = 814, - [4479] = 821, - [4480] = 761, - [4481] = 805, - [4482] = 4482, - [4483] = 4483, - [4484] = 4484, - [4485] = 731, - [4486] = 4486, - [4487] = 740, - [4488] = 752, - [4489] = 755, - [4490] = 756, - [4491] = 4491, - [4492] = 840, - [4493] = 836, - [4494] = 765, - [4495] = 4495, - [4496] = 4477, - [4497] = 766, - [4498] = 767, - [4499] = 768, - [4500] = 769, - [4501] = 770, - [4502] = 771, - [4503] = 772, - [4504] = 774, - [4505] = 775, - [4506] = 776, - [4507] = 4507, - [4508] = 4508, - [4509] = 778, - [4510] = 779, - [4511] = 780, - [4512] = 781, - [4513] = 782, - [4514] = 4514, - [4515] = 4515, - [4516] = 4516, - [4517] = 783, - [4518] = 4518, - [4519] = 4519, - [4520] = 762, - [4521] = 4521, - [4522] = 785, - [4523] = 4523, - [4524] = 788, - [4525] = 4525, - [4526] = 4526, - [4527] = 789, - [4528] = 790, - [4529] = 791, - [4530] = 4530, - [4531] = 784, - [4532] = 4532, - [4533] = 4533, - [4534] = 4534, - [4535] = 793, - [4536] = 816, - [4537] = 4537, - [4538] = 4538, - [4539] = 795, - [4540] = 4540, - [4541] = 4476, - [4542] = 4542, - [4543] = 797, - [4544] = 4544, - [4545] = 4545, - [4546] = 4546, - [4547] = 4547, - [4548] = 800, - [4549] = 4549, - [4550] = 803, - [4551] = 4551, - [4552] = 4552, - [4553] = 4553, - [4554] = 807, - [4555] = 4526, - [4556] = 808, - [4557] = 810, - [4558] = 724, - [4559] = 4559, - [4560] = 812, - [4561] = 4561, - [4562] = 813, - [4563] = 723, - [4564] = 817, - [4565] = 4565, - [4566] = 4566, - [4567] = 4567, - [4568] = 4568, - [4569] = 4569, - [4570] = 4570, - [4571] = 819, - [4572] = 4572, - [4573] = 4573, - [4574] = 4553, - [4575] = 4575, - [4576] = 736, - [4577] = 4577, - [4578] = 4530, - [4579] = 828, - [4580] = 4580, - [4581] = 4581, - [4582] = 4532, - [4583] = 4533, - [4584] = 830, - [4585] = 832, - [4586] = 4537, - [4587] = 4538, - [4588] = 833, - [4589] = 4540, - [4590] = 4476, - [4591] = 4591, - [4592] = 4592, - [4593] = 834, - [4594] = 4546, - [4595] = 835, - [4596] = 4596, - [4597] = 4597, - [4598] = 4598, - [4599] = 4599, - [4600] = 763, - [4601] = 903, - [4602] = 4602, - [4603] = 843, - [4604] = 4599, - [4605] = 844, - [4606] = 848, - [4607] = 4598, - [4608] = 849, - [4609] = 4596, - [4610] = 851, - [4611] = 852, - [4612] = 4592, - [4613] = 4591, - [4614] = 856, - [4615] = 858, - [4616] = 4616, - [4617] = 859, - [4618] = 860, - [4619] = 4530, - [4620] = 861, - [4621] = 4532, - [4622] = 4533, - [4623] = 4573, - [4624] = 862, - [4625] = 865, - [4626] = 4581, - [4627] = 4580, - [4628] = 4537, - [4629] = 4569, - [4630] = 4577, - [4631] = 4568, - [4632] = 4575, - [4633] = 4567, - [4634] = 4553, - [4635] = 4572, - [4636] = 4570, - [4637] = 4538, - [4638] = 4565, - [4639] = 867, - [4640] = 4540, - [4641] = 4641, - [4642] = 4476, - [4643] = 868, - [4644] = 872, - [4645] = 4526, - [4646] = 4561, - [4647] = 876, - [4648] = 878, - [4649] = 879, - [4650] = 4650, - [4651] = 4651, - [4652] = 880, - [4653] = 4559, - [4654] = 4552, - [4655] = 4551, - [4656] = 882, - [4657] = 883, - [4658] = 4658, - [4659] = 4659, - [4660] = 884, - [4661] = 4544, - [4662] = 885, - [4663] = 886, - [4664] = 4542, - [4665] = 888, - [4666] = 892, - [4667] = 4534, - [4668] = 4668, - [4669] = 4669, - [4670] = 4570, - [4671] = 4523, - [4672] = 4521, - [4673] = 4530, - [4674] = 893, - [4675] = 4532, - [4676] = 4572, - [4677] = 4677, - [4678] = 4533, - [4679] = 4679, - [4680] = 894, - [4681] = 4508, - [4682] = 896, - [4683] = 4683, - [4684] = 4537, - [4685] = 4538, - [4686] = 897, - [4687] = 4540, - [4688] = 4476, - [4689] = 898, - [4690] = 899, - [4691] = 901, - [4692] = 902, - [4693] = 855, - [4694] = 857, - [4695] = 853, - [4696] = 845, - [4697] = 827, - [4698] = 826, - [4699] = 794, - [4700] = 4525, - [4701] = 4477, - [4702] = 804, - [4703] = 4703, - [4704] = 801, - [4705] = 4705, - [4706] = 796, - [4707] = 4530, - [4708] = 4514, - [4709] = 786, - [4710] = 4532, - [4711] = 4575, - [4712] = 4483, - [4713] = 4533, - [4714] = 4577, - [4715] = 750, - [4716] = 741, - [4717] = 4537, - [4718] = 4538, - [4719] = 4719, - [4720] = 738, - [4721] = 4540, - [4722] = 4495, - [4723] = 4476, - [4724] = 792, - [4725] = 887, - [4726] = 847, - [4727] = 837, - [4728] = 824, - [4729] = 787, - [4730] = 777, - [4731] = 773, - [4732] = 764, - [4733] = 900, - [4734] = 4734, - [4735] = 869, - [4736] = 737, - [4737] = 875, - [4738] = 870, - [4739] = 4495, - [4740] = 734, - [4741] = 4483, - [4742] = 4742, - [4743] = 739, - [4744] = 742, - [4745] = 745, - [4746] = 757, - [4747] = 891, - [4748] = 4477, - [4749] = 4530, - [4750] = 881, - [4751] = 4532, - [4752] = 4533, - [4753] = 873, - [4754] = 809, - [4755] = 4537, - [4756] = 4538, - [4757] = 822, - [4758] = 4514, - [4759] = 4540, - [4760] = 4476, - [4761] = 725, - [4762] = 823, - [4763] = 4508, - [4764] = 4764, - [4765] = 727, - [4766] = 728, - [4767] = 4521, - [4768] = 729, - [4769] = 4525, - [4770] = 4523, - [4771] = 730, - [4772] = 732, - [4773] = 733, - [4774] = 735, - [4775] = 749, - [4776] = 751, - [4777] = 753, - [4778] = 4580, - [4779] = 4581, - [4780] = 4534, - [4781] = 4781, - [4782] = 754, - [4783] = 798, - [4784] = 806, - [4785] = 815, - [4786] = 4542, - [4787] = 818, - [4788] = 4544, - [4789] = 811, - [4790] = 726, - [4791] = 825, - [4792] = 829, - [4793] = 4793, - [4794] = 4794, - [4795] = 4551, - [4796] = 4552, - [4797] = 4797, - [4798] = 4798, - [4799] = 4546, - [4800] = 4800, - [4801] = 4801, - [4802] = 4802, - [4803] = 4559, - [4804] = 4804, - [4805] = 4561, - [4806] = 831, - [4807] = 4807, - [4808] = 4526, - [4809] = 4565, - [4810] = 838, - [4811] = 4567, - [4812] = 4568, - [4813] = 4569, - [4814] = 841, - [4815] = 842, - [4816] = 4816, - [4817] = 4573, - [4818] = 4818, - [4819] = 846, - [4820] = 850, - [4821] = 4816, - [4822] = 4822, - [4823] = 854, - [4824] = 802, - [4825] = 4570, - [4826] = 877, - [4827] = 4572, - [4828] = 4553, - [4829] = 4575, - [4830] = 4830, - [4831] = 4577, - [4832] = 4793, - [4833] = 890, - [4834] = 4834, - [4835] = 4591, - [4836] = 4592, - [4837] = 4798, - [4838] = 4546, - [4839] = 4580, - [4840] = 4596, - [4841] = 4581, - [4842] = 4598, - [4843] = 4800, - [4844] = 4801, - [4845] = 4802, - [4846] = 4804, - [4847] = 4807, - [4848] = 4599, - [4849] = 4816, - [4850] = 4850, - [4851] = 4798, - [4852] = 4793, - [4853] = 4542, - [4854] = 4854, - [4855] = 4855, - [4856] = 4599, - [4857] = 4857, - [4858] = 4800, - [4859] = 4523, - [4860] = 4521, - [4861] = 4798, - [4862] = 4598, - [4863] = 4800, - [4864] = 4596, - [4865] = 4551, - [4866] = 4801, - [4867] = 4592, - [4868] = 4802, - [4869] = 4591, - [4870] = 4581, - [4871] = 4580, - [4872] = 4804, - [4873] = 4807, - [4874] = 4577, - [4875] = 4616, - [4876] = 4575, - [4877] = 4816, - [4878] = 4553, - [4879] = 4572, - [4880] = 4570, - [4881] = 4793, - [4882] = 4525, - [4883] = 4530, - [4884] = 4798, - [4885] = 4800, - [4886] = 4801, - [4887] = 4802, - [4888] = 4804, - [4889] = 4526, - [4890] = 4807, - [4891] = 4801, - [4892] = 4816, - [4893] = 4793, - [4894] = 4894, - [4895] = 4573, - [4896] = 4896, - [4897] = 4897, - [4898] = 4898, - [4899] = 4569, - [4900] = 4900, - [4901] = 4568, - [4902] = 4567, - [4903] = 4903, - [4904] = 4798, - [4905] = 4565, - [4906] = 4800, - [4907] = 4801, - [4908] = 4802, - [4909] = 4804, - [4910] = 4807, - [4911] = 4534, - [4912] = 4561, - [4913] = 4816, - [4914] = 4650, - [4915] = 4523, - [4916] = 4521, - [4917] = 4651, - [4918] = 4514, - [4919] = 4559, - [4920] = 4793, - [4921] = 4534, - [4922] = 4532, - [4923] = 4533, - [4924] = 4924, - [4925] = 4508, - [4926] = 4552, - [4927] = 4802, - [4928] = 4544, - [4929] = 4929, - [4930] = 4930, - [4931] = 4931, - [4932] = 4932, - [4933] = 4798, - [4934] = 4934, - [4935] = 4800, - [4936] = 4801, - [4937] = 4802, - [4938] = 4544, - [4939] = 4804, - [4940] = 4807, - [4941] = 4816, - [4942] = 4793, - [4943] = 4542, - [4944] = 4508, - [4945] = 4477, - [4946] = 4946, - [4947] = 4947, - [4948] = 4948, - [4949] = 4949, - [4950] = 4950, - [4951] = 4951, - [4952] = 4952, - [4953] = 4544, - [4954] = 4551, - [4955] = 4955, - [4956] = 4483, - [4957] = 4552, - [4958] = 4958, - [4959] = 4959, - [4960] = 4495, - [4961] = 4559, - [4962] = 4962, - [4963] = 4963, - [4964] = 4964, - [4965] = 4651, - [4966] = 4966, - [4967] = 4650, - [4968] = 4947, - [4969] = 4561, - [4970] = 4525, - [4971] = 4551, - [4972] = 4566, - [4973] = 4565, - [4974] = 4567, - [4975] = 4514, - [4976] = 4568, - [4977] = 4569, - [4978] = 4897, - [4979] = 4573, - [4980] = 4966, - [4981] = 4981, - [4982] = 4982, - [4983] = 4495, - [4984] = 4537, - [4985] = 4985, - [4986] = 4538, - [4987] = 4495, - [4988] = 4988, - [4989] = 4989, - [4990] = 4947, - [4991] = 4991, - [4992] = 4992, - [4993] = 4903, - [4994] = 4804, - [4995] = 4542, - [4996] = 4742, - [4997] = 4719, - [4998] = 4597, - [4999] = 4999, - [5000] = 4566, - [5001] = 4641, - [5002] = 4514, - [5003] = 4669, - [5004] = 4952, - [5005] = 5005, - [5006] = 4552, - [5007] = 5007, - [5008] = 4483, - [5009] = 5009, - [5010] = 5010, - [5011] = 5011, - [5012] = 4959, - [5013] = 4525, - [5014] = 5014, - [5015] = 5015, - [5016] = 5016, - [5017] = 4616, - [5018] = 4797, - [5019] = 5015, - [5020] = 4591, - [5021] = 4592, - [5022] = 4477, - [5023] = 4546, - [5024] = 4596, - [5025] = 5025, - [5026] = 4598, - [5027] = 4573, - [5028] = 4966, - [5029] = 4985, - [5030] = 4599, - [5031] = 4947, - [5032] = 4903, - [5033] = 4857, - [5034] = 5034, - [5035] = 4742, - [5036] = 4719, - [5037] = 5037, - [5038] = 4599, - [5039] = 4597, - [5040] = 5040, - [5041] = 5041, - [5042] = 4566, - [5043] = 5043, - [5044] = 4508, - [5045] = 4508, - [5046] = 5046, - [5047] = 5047, - [5048] = 4641, - [5049] = 5049, - [5050] = 5050, - [5051] = 5051, - [5052] = 4483, - [5053] = 5053, - [5054] = 4669, - [5055] = 5055, - [5056] = 5047, - [5057] = 5041, - [5058] = 4599, - [5059] = 5051, - [5060] = 4495, - [5061] = 4857, - [5062] = 5005, - [5063] = 4514, - [5064] = 4952, - [5065] = 4525, - [5066] = 4521, - [5067] = 5005, - [5068] = 4793, - [5069] = 5069, - [5070] = 5007, - [5071] = 5010, - [5072] = 4523, - [5073] = 5011, - [5074] = 5074, - [5075] = 5075, - [5076] = 5076, - [5077] = 4598, - [5078] = 5078, - [5079] = 5015, - [5080] = 4951, - [5081] = 5081, - [5082] = 4534, - [5083] = 5083, - [5084] = 4797, - [5085] = 4559, - [5086] = 5086, - [5087] = 5087, - [5088] = 5088, - [5089] = 5007, - [5090] = 4581, - [5091] = 4580, - [5092] = 4577, - [5093] = 4966, - [5094] = 4575, - [5095] = 5095, - [5096] = 3507, - [5097] = 4553, - [5098] = 4985, - [5099] = 4572, - [5100] = 4947, - [5101] = 5101, - [5102] = 4903, - [5103] = 4570, - [5104] = 4742, - [5105] = 4797, - [5106] = 4596, - [5107] = 4719, - [5108] = 4597, - [5109] = 5109, - [5110] = 4566, - [5111] = 4641, - [5112] = 4669, - [5113] = 5113, - [5114] = 5114, - [5115] = 5115, - [5116] = 4526, - [5117] = 5117, - [5118] = 4526, - [5119] = 4952, - [5120] = 5120, - [5121] = 5005, - [5122] = 5122, - [5123] = 5123, - [5124] = 5124, - [5125] = 5125, - [5126] = 5007, - [5127] = 5010, - [5128] = 4570, - [5129] = 4572, - [5130] = 4553, - [5131] = 5131, - [5132] = 4545, - [5133] = 4546, - [5134] = 4575, - [5135] = 5011, - [5136] = 4592, - [5137] = 5015, - [5138] = 4591, - [5139] = 4962, - [5140] = 5010, - [5141] = 4577, - [5142] = 5015, - [5143] = 4580, - [5144] = 4581, - [5145] = 4658, - [5146] = 5146, - [5147] = 4616, - [5148] = 4949, - [5149] = 4797, - [5150] = 5150, - [5151] = 4651, - [5152] = 5016, - [5153] = 5014, - [5154] = 4650, - [5155] = 4534, - [5156] = 5156, - [5157] = 4523, - [5158] = 4521, - [5159] = 4966, - [5160] = 4591, - [5161] = 5161, - [5162] = 5162, - [5163] = 4599, - [5164] = 4857, - [5165] = 4985, - [5166] = 4947, - [5167] = 5167, - [5168] = 4508, - [5169] = 4903, - [5170] = 5170, - [5171] = 4742, - [5172] = 4719, - [5173] = 4597, - [5174] = 4598, - [5175] = 4596, - [5176] = 4561, - [5177] = 4566, - [5178] = 5178, - [5179] = 4641, - [5180] = 5011, - [5181] = 4546, - [5182] = 4592, - [5183] = 4669, - [5184] = 5010, - [5185] = 5007, - [5186] = 4952, - [5187] = 5005, - [5188] = 5188, - [5189] = 4616, - [5190] = 5007, - [5191] = 5005, - [5192] = 5010, - [5193] = 4952, - [5194] = 4982, - [5195] = 5011, - [5196] = 5196, - [5197] = 5197, - [5198] = 5198, - [5199] = 5015, - [5200] = 4669, - [5201] = 4477, - [5202] = 4641, - [5203] = 5203, - [5204] = 4797, - [5205] = 4566, - [5206] = 4483, - [5207] = 5207, - [5208] = 4597, - [5209] = 4966, - [5210] = 4966, - [5211] = 4483, - [5212] = 4719, - [5213] = 4495, - [5214] = 4985, - [5215] = 4985, - [5216] = 4742, - [5217] = 5217, - [5218] = 4947, - [5219] = 4903, - [5220] = 4903, - [5221] = 4742, - [5222] = 4947, - [5223] = 4719, - [5224] = 4565, - [5225] = 4597, - [5226] = 4566, - [5227] = 4641, - [5228] = 4985, - [5229] = 5229, - [5230] = 4669, - [5231] = 4573, - [5232] = 4514, - [5233] = 5233, - [5234] = 4966, - [5235] = 4952, - [5236] = 5005, - [5237] = 5007, - [5238] = 4897, - [5239] = 5010, - [5240] = 4525, - [5241] = 4567, - [5242] = 5011, - [5243] = 4569, - [5244] = 4568, - [5245] = 4568, - [5246] = 4567, - [5247] = 4565, - [5248] = 4569, - [5249] = 4897, - [5250] = 4573, - [5251] = 4561, - [5252] = 5252, - [5253] = 4999, - [5254] = 4650, - [5255] = 4991, - [5256] = 4540, - [5257] = 759, - [5258] = 4807, - [5259] = 5015, - [5260] = 4542, - [5261] = 4797, - [5262] = 4651, - [5263] = 4544, - [5264] = 4559, - [5265] = 5011, - [5266] = 4959, - [5267] = 4552, - [5268] = 4551, - [5269] = 5269, - [5270] = 5270, - [5271] = 5271, - [5272] = 5272, - [5273] = 5273, - [5274] = 5274, - [5275] = 5275, - [5276] = 5269, - [5277] = 5277, - [5278] = 5278, - [5279] = 5279, - [5280] = 5280, - [5281] = 5281, - [5282] = 5282, - [5283] = 5283, - [5284] = 5284, - [5285] = 5285, - [5286] = 5286, - [5287] = 5287, - [5288] = 5288, - [5289] = 5271, - [5290] = 5290, - [5291] = 5291, - [5292] = 5292, - [5293] = 5293, - [5294] = 5294, - [5295] = 5295, - [5296] = 5296, - [5297] = 5291, - [5298] = 5293, - [5299] = 5299, - [5300] = 5300, - [5301] = 5291, - [5302] = 5302, - [5303] = 5293, - [5304] = 5304, - [5305] = 5305, - [5306] = 5306, - [5307] = 5291, - [5308] = 5308, - [5309] = 5293, - [5310] = 5310, - [5311] = 5311, - [5312] = 5306, - [5313] = 5313, - [5314] = 5296, - [5315] = 5291, - [5316] = 5316, - [5317] = 5304, - [5318] = 5293, - [5319] = 5313, - [5320] = 5291, - [5321] = 5321, - [5322] = 5293, - [5323] = 5323, - [5324] = 5316, - [5325] = 5325, - [5326] = 5326, - [5327] = 5327, - [5328] = 5284, - [5329] = 5310, - [5330] = 5274, - [5331] = 5331, - [5332] = 5332, - [5333] = 5333, - [5334] = 5283, - [5335] = 5335, - [5336] = 5336, - [5337] = 5337, - [5338] = 5338, - [5339] = 5339, - [5340] = 5277, - [5341] = 5341, - [5342] = 5342, - [5343] = 5302, - [5344] = 5344, - [5345] = 5345, - [5346] = 5345, - [5347] = 5286, - [5348] = 5295, - [5349] = 5292, - [5350] = 5282, - [5351] = 5351, - [5352] = 5278, - [5353] = 5341, - [5354] = 5273, - [5355] = 5304, - [5356] = 5286, - [5357] = 5282, - [5358] = 5278, - [5359] = 5333, - [5360] = 5280, - [5361] = 5281, - [5362] = 5333, - [5363] = 5344, - [5364] = 5364, - [5365] = 5274, - [5366] = 5366, - [5367] = 5367, - [5368] = 5368, - [5369] = 5369, - [5370] = 5370, - [5371] = 5336, - [5372] = 5339, - [5373] = 5373, - [5374] = 5374, - [5375] = 5269, - [5376] = 5272, - [5377] = 5377, - [5378] = 5327, - [5379] = 5379, - [5380] = 5380, - [5381] = 5274, - [5382] = 5369, - [5383] = 5368, - [5384] = 5290, - [5385] = 5271, - [5386] = 5283, - [5387] = 5367, - [5388] = 5278, - [5389] = 5366, - [5390] = 5282, - [5391] = 5286, - [5392] = 5270, - [5393] = 5364, - [5394] = 5304, - [5395] = 5336, - [5396] = 5396, - [5397] = 5338, - [5398] = 5345, - [5399] = 5341, - [5400] = 5285, - [5401] = 5273, - [5402] = 5280, - [5403] = 5281, - [5404] = 5339, - [5405] = 5338, - [5406] = 5406, - [5407] = 5308, - [5408] = 5408, - [5409] = 5380, - [5410] = 5325, - [5411] = 5306, - [5412] = 5277, - [5413] = 5380, - [5414] = 5327, - [5415] = 5415, - [5416] = 5284, - [5417] = 5326, - [5418] = 5321, - [5419] = 5299, - [5420] = 5325, - [5421] = 5421, - [5422] = 5344, - [5423] = 5326, - [5424] = 5321, - [5425] = 5285, - [5426] = 5288, - [5427] = 5296, - [5428] = 5296, - [5429] = 5288, - [5430] = 5336, - [5431] = 5285, - [5432] = 5288, - [5433] = 5281, - [5434] = 5280, - [5435] = 5306, - [5436] = 5299, - [5437] = 5344, - [5438] = 5313, - [5439] = 5370, - [5440] = 5325, - [5441] = 5316, - [5442] = 5310, - [5443] = 5302, - [5444] = 5274, - [5445] = 5295, - [5446] = 5292, - [5447] = 5327, - [5448] = 5377, - [5449] = 5272, - [5450] = 5450, - [5451] = 5451, - [5452] = 5269, - [5453] = 5333, - [5454] = 5454, - [5455] = 5269, - [5456] = 5272, - [5457] = 5457, - [5458] = 5377, - [5459] = 5338, - [5460] = 5274, - [5461] = 5461, - [5462] = 5462, - [5463] = 5463, - [5464] = 5290, - [5465] = 5300, - [5466] = 5369, - [5467] = 5467, - [5468] = 5292, - [5469] = 5368, - [5470] = 5367, - [5471] = 5283, - [5472] = 5295, - [5473] = 5290, - [5474] = 5271, - [5475] = 5280, - [5476] = 5281, - [5477] = 5366, - [5478] = 5462, - [5479] = 5285, - [5480] = 5302, - [5481] = 5364, - [5482] = 5288, - [5483] = 5380, - [5484] = 5296, - [5485] = 5485, - [5486] = 5299, - [5487] = 5310, - [5488] = 5488, - [5489] = 5338, - [5490] = 5339, - [5491] = 5273, - [5492] = 5341, - [5493] = 5493, - [5494] = 5454, - [5495] = 5345, - [5496] = 5316, - [5497] = 5313, - [5498] = 5498, - [5499] = 5306, - [5500] = 5284, - [5501] = 5283, - [5502] = 5502, - [5503] = 5271, - [5504] = 5277, - [5505] = 5287, - [5506] = 5325, - [5507] = 5507, - [5508] = 5299, - [5509] = 5380, - [5510] = 5326, - [5511] = 5284, - [5512] = 5512, - [5513] = 5339, - [5514] = 5273, - [5515] = 5341, - [5516] = 5516, - [5517] = 5336, - [5518] = 5345, - [5519] = 5345, - [5520] = 5520, - [5521] = 5300, - [5522] = 5341, - [5523] = 5373, - [5524] = 5344, - [5525] = 5273, - [5526] = 5526, - [5527] = 5304, - [5528] = 5528, - [5529] = 5529, - [5530] = 5339, - [5531] = 5286, - [5532] = 5287, - [5533] = 5282, - [5534] = 5534, - [5535] = 3426, - [5536] = 5270, - [5537] = 5507, - [5538] = 5338, - [5539] = 5271, - [5540] = 5290, - [5541] = 5541, - [5542] = 5542, - [5543] = 5543, - [5544] = 5467, - [5545] = 5364, - [5546] = 5366, - [5547] = 5367, - [5548] = 5368, - [5549] = 5549, - [5550] = 5380, - [5551] = 5325, - [5552] = 5370, - [5553] = 5369, - [5554] = 5554, - [5555] = 5369, - [5556] = 5534, - [5557] = 5364, - [5558] = 5366, - [5559] = 5290, - [5560] = 5271, - [5561] = 5370, - [5562] = 5270, - [5563] = 5563, - [5564] = 5564, - [5565] = 5368, - [5566] = 5507, - [5567] = 5567, - [5568] = 5542, - [5569] = 5569, - [5570] = 5367, - [5571] = 5467, - [5572] = 5278, - [5573] = 5364, - [5574] = 5367, - [5575] = 5291, - [5576] = 5576, - [5577] = 5577, - [5578] = 5578, - [5579] = 5313, - [5580] = 5580, - [5581] = 5534, - [5582] = 5368, - [5583] = 5306, - [5584] = 5584, - [5585] = 5366, - [5586] = 5321, - [5587] = 5369, - [5588] = 5588, - [5589] = 5589, - [5590] = 5590, - [5591] = 5370, - [5592] = 5270, - [5593] = 5593, - [5594] = 5326, - [5595] = 5277, - [5596] = 5596, - [5597] = 5597, - [5598] = 5370, - [5599] = 5379, - [5600] = 5293, - [5601] = 5336, - [5602] = 5602, - [5603] = 5603, - [5604] = 5507, - [5605] = 5605, - [5606] = 5606, - [5607] = 5299, - [5608] = 5344, - [5609] = 5296, - [5610] = 5288, - [5611] = 5542, - [5612] = 5612, - [5613] = 5285, - [5614] = 5308, - [5615] = 5615, - [5616] = 5542, - [5617] = 5554, - [5618] = 5467, - [5619] = 5282, - [5620] = 5286, - [5621] = 5621, - [5622] = 5327, - [5623] = 5345, - [5624] = 3425, - [5625] = 5281, - [5626] = 5341, - [5627] = 5377, - [5628] = 5273, - [5629] = 5316, - [5630] = 5310, - [5631] = 5370, - [5632] = 5534, - [5633] = 5576, - [5634] = 5280, - [5635] = 5272, - [5636] = 5277, - [5637] = 5283, - [5638] = 3512, - [5639] = 5339, - [5640] = 5270, - [5641] = 5641, - [5642] = 5277, - [5643] = 5290, - [5644] = 5271, - [5645] = 5304, - [5646] = 5646, - [5647] = 5507, - [5648] = 5648, - [5649] = 5542, - [5650] = 5516, - [5651] = 5338, - [5652] = 5380, - [5653] = 5653, - [5654] = 5654, - [5655] = 5467, - [5656] = 5325, - [5657] = 5313, - [5658] = 5308, - [5659] = 5659, - [5660] = 5364, - [5661] = 5406, - [5662] = 5286, - [5663] = 5663, - [5664] = 5664, - [5665] = 5665, - [5666] = 5554, - [5667] = 5306, - [5668] = 5366, - [5669] = 5534, - [5670] = 5670, - [5671] = 5269, - [5672] = 5534, - [5673] = 5316, - [5674] = 5674, - [5675] = 5269, - [5676] = 5676, - [5677] = 5274, - [5678] = 5326, - [5679] = 5310, - [5680] = 5680, - [5681] = 5681, - [5682] = 5327, - [5683] = 5374, - [5684] = 5369, - [5685] = 5336, - [5686] = 5406, - [5687] = 5270, - [5688] = 5377, - [5689] = 5278, - [5690] = 5272, - [5691] = 5282, - [5692] = 5344, - [5693] = 5302, - [5694] = 5299, - [5695] = 5292, - [5696] = 5696, - [5697] = 5697, - [5698] = 5698, - [5699] = 5295, - [5700] = 5288, - [5701] = 5302, - [5702] = 5507, - [5703] = 5590, - [5704] = 5542, - [5705] = 5292, - [5706] = 5295, - [5707] = 5368, - [5708] = 5295, - [5709] = 5302, - [5710] = 5292, - [5711] = 5326, - [5712] = 5712, - [5713] = 5296, - [5714] = 5278, - [5715] = 5715, - [5716] = 5467, - [5717] = 5304, - [5718] = 5463, - [5719] = 5719, - [5720] = 5285, - [5721] = 5277, - [5722] = 5323, - [5723] = 5723, - [5724] = 5724, - [5725] = 5310, - [5726] = 5281, - [5727] = 5308, - [5728] = 5377, - [5729] = 5284, - [5730] = 5316, - [5731] = 5283, - [5732] = 5313, - [5733] = 5733, - [5734] = 5280, - [5735] = 5272, - [5736] = 5736, - [5737] = 5377, - [5738] = 5336, - [5739] = 5739, - [5740] = 5554, - [5741] = 5290, - [5742] = 5467, - [5743] = 5493, - [5744] = 5327, - [5745] = 5745, - [5746] = 5612, - [5747] = 5534, - [5748] = 5748, - [5749] = 5590, - [5750] = 5367, - [5751] = 5590, - [5752] = 5596, - [5753] = 5406, - [5754] = 5754, - [5755] = 5507, - [5756] = 5283, - [5757] = 5277, - [5758] = 5758, - [5759] = 5284, - [5760] = 5274, - [5761] = 5542, - [5762] = 5762, - [5763] = 5763, - [5764] = 5764, - [5765] = 5765, - [5766] = 5766, - [5767] = 5767, - [5768] = 5768, - [5769] = 5769, - [5770] = 5770, - [5771] = 5771, - [5772] = 5772, - [5773] = 5764, - [5774] = 5774, - [5775] = 5775, - [5776] = 5776, - [5777] = 5777, - [5778] = 5778, - [5779] = 5779, - [5780] = 5780, - [5781] = 5781, - [5782] = 5782, - [5783] = 5783, - [5784] = 5784, - [5785] = 5785, - [5786] = 5786, - [5787] = 5787, - [5788] = 5788, - [5789] = 5789, - [5790] = 5790, - [5791] = 5791, - [5792] = 5792, - [5793] = 5762, - [5794] = 5794, - [5795] = 5787, - [5796] = 5796, - [5797] = 5797, - [5798] = 5798, - [5799] = 5799, - [5800] = 5775, - [5801] = 5801, - [5802] = 5802, - [5803] = 5803, - [5804] = 5804, - [5805] = 5805, - [5806] = 5806, - [5807] = 5807, - [5808] = 5808, - [5809] = 5809, - [5810] = 5810, - [5811] = 5811, - [5812] = 5812, - [5813] = 5813, - [5814] = 5814, - [5815] = 5815, - [5816] = 5816, - [5817] = 5794, - [5818] = 5818, - [5819] = 5819, - [5820] = 5820, - [5821] = 5792, - [5822] = 5811, - [5823] = 5823, - [5824] = 5788, - [5825] = 5787, - [5826] = 5769, - [5827] = 5827, - [5828] = 5828, - [5829] = 5829, - [5830] = 5830, - [5831] = 5770, - [5832] = 5832, - [5833] = 5833, - [5834] = 5834, - [5835] = 5772, - [5836] = 5836, - [5837] = 5834, - [5838] = 5764, - [5839] = 5823, - [5840] = 5840, - [5841] = 5841, - [5842] = 5775, - [5843] = 5834, - [5844] = 5785, - [5845] = 5776, - [5846] = 5794, - [5847] = 5778, - [5848] = 5813, - [5849] = 5849, - [5850] = 5785, - [5851] = 5780, - [5852] = 5815, - [5853] = 5853, - [5854] = 5782, - [5855] = 5786, - [5856] = 5783, - [5857] = 5770, - [5858] = 5779, - [5859] = 5786, - [5860] = 5805, - [5861] = 5829, - [5862] = 5789, - [5863] = 5830, - [5864] = 5791, - [5865] = 5865, - [5866] = 5866, - [5867] = 5832, - [5868] = 5868, - [5869] = 5797, - [5870] = 5849, - [5871] = 5799, - [5872] = 5801, - [5873] = 5873, - [5874] = 5803, - [5875] = 5875, - [5876] = 5876, - [5877] = 5806, - [5878] = 5807, - [5879] = 5784, - [5880] = 5780, - [5881] = 5808, - [5882] = 5811, - [5883] = 5883, - [5884] = 5813, - [5885] = 5814, - [5886] = 5886, - [5887] = 5816, - [5888] = 5809, - [5889] = 5818, - [5890] = 5890, - [5891] = 5820, - [5892] = 5792, - [5893] = 5893, - [5894] = 5772, - [5895] = 5788, - [5896] = 5802, - [5897] = 5853, - [5898] = 5770, - [5899] = 5798, - [5900] = 5790, - [5901] = 5901, - [5902] = 5772, - [5903] = 5865, - [5904] = 5904, - [5905] = 5905, - [5906] = 5906, - [5907] = 5907, - [5908] = 5908, - [5909] = 5776, - [5910] = 5910, - [5911] = 5911, - [5912] = 5912, - [5913] = 5782, - [5914] = 5914, - [5915] = 5783, - [5916] = 5849, - [5917] = 5768, - [5918] = 5769, - [5919] = 5919, - [5920] = 5789, - [5921] = 5791, - [5922] = 5762, - [5923] = 5823, - [5924] = 5829, - [5925] = 5925, - [5926] = 5830, - [5927] = 5799, - [5928] = 5814, - [5929] = 5803, - [5930] = 5805, - [5931] = 5832, - [5932] = 5807, - [5933] = 5833, - [5934] = 5934, - [5935] = 5810, - [5936] = 5811, - [5937] = 5937, - [5938] = 5813, - [5939] = 5814, - [5940] = 5940, - [5941] = 5816, - [5942] = 5789, - [5943] = 5818, - [5944] = 5836, - [5945] = 5820, - [5946] = 5792, - [5947] = 5840, - [5948] = 5841, - [5949] = 5788, - [5950] = 5775, - [5951] = 5951, - [5952] = 5770, - [5953] = 5953, - [5954] = 5841, - [5955] = 5833, - [5956] = 5772, - [5957] = 5957, - [5958] = 5767, - [5959] = 5959, - [5960] = 5960, - [5961] = 5865, - [5962] = 5799, - [5963] = 5776, - [5964] = 5911, - [5965] = 5934, - [5966] = 5783, - [5967] = 5782, - [5968] = 5968, - [5969] = 5783, - [5970] = 5970, - [5971] = 5971, - [5972] = 5972, - [5973] = 5973, - [5974] = 5789, - [5975] = 5791, - [5976] = 5762, - [5977] = 5873, - [5978] = 5978, - [5979] = 5979, - [5980] = 5980, - [5981] = 5876, - [5982] = 5803, - [5983] = 5983, - [5984] = 5802, - [5985] = 5807, - [5986] = 5890, - [5987] = 5816, - [5988] = 5911, - [5989] = 5811, - [5990] = 5990, - [5991] = 5813, - [5992] = 5814, - [5993] = 5993, - [5994] = 5816, - [5995] = 5827, - [5996] = 5818, - [5997] = 5997, - [5998] = 5820, - [5999] = 5792, - [6000] = 5893, - [6001] = 5934, - [6002] = 5788, - [6003] = 5827, - [6004] = 6004, - [6005] = 5770, - [6006] = 6006, - [6007] = 6007, - [6008] = 5853, - [6009] = 5772, - [6010] = 5815, - [6011] = 5778, - [6012] = 6012, - [6013] = 5786, - [6014] = 6014, - [6015] = 6015, - [6016] = 5776, - [6017] = 5865, - [6018] = 6018, - [6019] = 5787, - [6020] = 5782, - [6021] = 6021, - [6022] = 5783, - [6023] = 5906, - [6024] = 5798, - [6025] = 5907, - [6026] = 5818, - [6027] = 5789, - [6028] = 5791, - [6029] = 5762, - [6030] = 5764, - [6031] = 5883, - [6032] = 6032, - [6033] = 5993, - [6034] = 6034, - [6035] = 5803, - [6036] = 6036, - [6037] = 6037, - [6038] = 5807, - [6039] = 6039, - [6040] = 5790, - [6041] = 5823, - [6042] = 5811, - [6043] = 5990, - [6044] = 5813, - [6045] = 5814, - [6046] = 5829, - [6047] = 5816, - [6048] = 5934, - [6049] = 5818, - [6050] = 5993, - [6051] = 5820, - [6052] = 5792, - [6053] = 5830, - [6054] = 5820, - [6055] = 5788, - [6056] = 5832, - [6057] = 5990, - [6058] = 5770, - [6059] = 6059, - [6060] = 5788, - [6061] = 6061, - [6062] = 5772, - [6063] = 6063, - [6064] = 5833, - [6065] = 6065, - [6066] = 5905, - [6067] = 5796, - [6068] = 5768, - [6069] = 5776, - [6070] = 6070, - [6071] = 6071, - [6072] = 5911, - [6073] = 5782, - [6074] = 5836, - [6075] = 5783, - [6076] = 6076, - [6077] = 5890, - [6078] = 5840, - [6079] = 5990, - [6080] = 5789, - [6081] = 5791, - [6082] = 5762, - [6083] = 5980, - [6084] = 5980, - [6085] = 5775, - [6086] = 6086, - [6087] = 5907, - [6088] = 5803, - [6089] = 5906, - [6090] = 6090, - [6091] = 5807, - [6092] = 6092, - [6093] = 5809, - [6094] = 5808, - [6095] = 5811, - [6096] = 5865, - [6097] = 5813, - [6098] = 5814, - [6099] = 5893, - [6100] = 5816, - [6101] = 6101, - [6102] = 5818, - [6103] = 6103, - [6104] = 5820, - [6105] = 6105, - [6106] = 5781, - [6107] = 5906, - [6108] = 5783, - [6109] = 6109, - [6110] = 6110, - [6111] = 6111, - [6112] = 5907, - [6113] = 5905, - [6114] = 6114, - [6115] = 6115, - [6116] = 5791, - [6117] = 6086, - [6118] = 6118, - [6119] = 5993, - [6120] = 5980, - [6121] = 5901, - [6122] = 5853, - [6123] = 6123, - [6124] = 5972, - [6125] = 5883, - [6126] = 5801, - [6127] = 6127, - [6128] = 6128, - [6129] = 5769, - [6130] = 6130, - [6131] = 5768, - [6132] = 5905, - [6133] = 5819, - [6134] = 5937, - [6135] = 5790, - [6136] = 5798, - [6137] = 5762, - [6138] = 5802, - [6139] = 6139, - [6140] = 5990, - [6141] = 5805, - [6142] = 5873, - [6143] = 5849, - [6144] = 5876, - [6145] = 5893, - [6146] = 5827, - [6147] = 5904, - [6148] = 5785, - [6149] = 5853, - [6150] = 5993, - [6151] = 5781, - [6152] = 5797, - [6153] = 5810, - [6154] = 5865, - [6155] = 5906, - [6156] = 5834, - [6157] = 6110, - [6158] = 5907, - [6159] = 6114, - [6160] = 5841, - [6161] = 6114, - [6162] = 5883, - [6163] = 5784, - [6164] = 6164, - [6165] = 5779, - [6166] = 5827, - [6167] = 5901, - [6168] = 5893, - [6169] = 5883, - [6170] = 5972, - [6171] = 5849, - [6172] = 5823, - [6173] = 6039, - [6174] = 6128, - [6175] = 5829, - [6176] = 6130, - [6177] = 5784, - [6178] = 5794, - [6179] = 5819, - [6180] = 5937, - [6181] = 5815, - [6182] = 5830, - [6183] = 5832, - [6184] = 6139, - [6185] = 5833, - [6186] = 5840, - [6187] = 5815, - [6188] = 5794, - [6189] = 5890, - [6190] = 5797, - [6191] = 5836, - [6192] = 5836, - [6193] = 5840, - [6194] = 6139, - [6195] = 5841, - [6196] = 5775, - [6197] = 5804, - [6198] = 5834, - [6199] = 6199, - [6200] = 5785, - [6201] = 6201, - [6202] = 6110, - [6203] = 5779, - [6204] = 5876, - [6205] = 6114, - [6206] = 5805, - [6207] = 5873, - [6208] = 5901, - [6209] = 5972, - [6210] = 5893, - [6211] = 5934, - [6212] = 6128, - [6213] = 6130, - [6214] = 6214, - [6215] = 5810, - [6216] = 5819, - [6217] = 5937, - [6218] = 5802, - [6219] = 5798, - [6220] = 6139, - [6221] = 5808, - [6222] = 5790, - [6223] = 5905, - [6224] = 5768, - [6225] = 5782, - [6226] = 5769, - [6227] = 5798, - [6228] = 5911, - [6229] = 5886, - [6230] = 5890, - [6231] = 6231, - [6232] = 5876, - [6233] = 6233, - [6234] = 6234, - [6235] = 5849, - [6236] = 5780, - [6237] = 6110, - [6238] = 5886, - [6239] = 6110, - [6240] = 6114, - [6241] = 5883, - [6242] = 5792, - [6243] = 5901, - [6244] = 5972, - [6245] = 6245, - [6246] = 6246, - [6247] = 6128, - [6248] = 6130, - [6249] = 5810, - [6250] = 5873, - [6251] = 5819, - [6252] = 5937, - [6253] = 5876, - [6254] = 6254, - [6255] = 6139, - [6256] = 5809, - [6257] = 5806, - [6258] = 6258, - [6259] = 5808, - [6260] = 5827, - [6261] = 5980, - [6262] = 5809, - [6263] = 5803, - [6264] = 5980, - [6265] = 5990, - [6266] = 5853, - [6267] = 5993, - [6268] = 5784, - [6269] = 5781, - [6270] = 5779, - [6271] = 5865, - [6272] = 6110, - [6273] = 6273, - [6274] = 6034, - [6275] = 6114, - [6276] = 5890, - [6277] = 5911, - [6278] = 5901, - [6279] = 5972, - [6280] = 6280, - [6281] = 5906, - [6282] = 6128, - [6283] = 6130, - [6284] = 5907, - [6285] = 6285, - [6286] = 5819, - [6287] = 5937, - [6288] = 6288, - [6289] = 5873, - [6290] = 6139, - [6291] = 5934, - [6292] = 5823, - [6293] = 5934, - [6294] = 5815, - [6295] = 5794, - [6296] = 5911, - [6297] = 5829, - [6298] = 5890, - [6299] = 5830, - [6300] = 5832, - [6301] = 6130, - [6302] = 5833, - [6303] = 5993, - [6304] = 5810, - [6305] = 5806, - [6306] = 5990, - [6307] = 6110, - [6308] = 5836, - [6309] = 5769, - [6310] = 6114, - [6311] = 5840, - [6312] = 6018, - [6313] = 5901, - [6314] = 5972, - [6315] = 5980, - [6316] = 5809, - [6317] = 6128, - [6318] = 6130, - [6319] = 5808, - [6320] = 5762, - [6321] = 5819, - [6322] = 5937, - [6323] = 5841, - [6324] = 5775, - [6325] = 6139, - [6326] = 6326, - [6327] = 5834, - [6328] = 5775, - [6329] = 5841, - [6330] = 5840, - [6331] = 6331, - [6332] = 6332, - [6333] = 5836, - [6334] = 5785, - [6335] = 6335, - [6336] = 6336, - [6337] = 5883, - [6338] = 5769, - [6339] = 5768, - [6340] = 5905, - [6341] = 5790, - [6342] = 6114, - [6343] = 6105, - [6344] = 6164, - [6345] = 5833, - [6346] = 5798, - [6347] = 5910, - [6348] = 5805, - [6349] = 6349, - [6350] = 6336, - [6351] = 6288, - [6352] = 6123, - [6353] = 5802, - [6354] = 5940, - [6355] = 6234, - [6356] = 5832, - [6357] = 5805, - [6358] = 6164, - [6359] = 5830, - [6360] = 5829, - [6361] = 5910, - [6362] = 5823, - [6363] = 6349, - [6364] = 6336, - [6365] = 6288, - [6366] = 6123, - [6367] = 5940, - [6368] = 6234, - [6369] = 5849, - [6370] = 6370, - [6371] = 6164, - [6372] = 5873, - [6373] = 5785, - [6374] = 5910, - [6375] = 5876, - [6376] = 6349, - [6377] = 6336, - [6378] = 6288, - [6379] = 6123, - [6380] = 5940, - [6381] = 6234, - [6382] = 5802, - [6383] = 6383, - [6384] = 6164, - [6385] = 6349, - [6386] = 5790, - [6387] = 5910, - [6388] = 5905, - [6389] = 6349, - [6390] = 6336, - [6391] = 6288, - [6392] = 6123, - [6393] = 5940, - [6394] = 6234, - [6395] = 6395, - [6396] = 5768, - [6397] = 6164, - [6398] = 5808, - [6399] = 5834, - [6400] = 5910, - [6401] = 5893, - [6402] = 6349, - [6403] = 6336, - [6404] = 6288, - [6405] = 6123, - [6406] = 5940, - [6407] = 6234, - [6408] = 5827, - [6409] = 5778, - [6410] = 6164, - [6411] = 6411, - [6412] = 6412, - [6413] = 5910, - [6414] = 5779, - [6415] = 6349, - [6416] = 6336, - [6417] = 6288, - [6418] = 6123, - [6419] = 5940, - [6420] = 6234, - [6421] = 5776, - [6422] = 5769, - [6423] = 6164, - [6424] = 5914, - [6425] = 6411, - [6426] = 6349, - [6427] = 5810, - [6428] = 6280, - [6429] = 6092, - [6430] = 5914, - [6431] = 6411, - [6432] = 6280, - [6433] = 6092, - [6434] = 5914, - [6435] = 6411, - [6436] = 6280, - [6437] = 6092, - [6438] = 5914, - [6439] = 6411, - [6440] = 6280, - [6441] = 6092, - [6442] = 5914, - [6443] = 6411, - [6444] = 6280, - [6445] = 6092, - [6446] = 5914, - [6447] = 6411, - [6448] = 6280, - [6449] = 6092, - [6450] = 5907, - [6451] = 5807, - [6452] = 5784, - [6453] = 6453, - [6454] = 5906, - [6455] = 6455, - [6456] = 5794, - [6457] = 5815, - [6458] = 5779, - [6459] = 5809, - [6460] = 5853, - [6461] = 5784, - [6462] = 5781, - [6463] = 6128, -}; - static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); @@ -12545,69 +6085,70 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 272: if (lookahead == 'f') ADVANCE(321); + if (lookahead == 'n') ADVANCE(322); END_STATE(); case 273: - if (lookahead == 't') ADVANCE(322); + if (lookahead == 't') ADVANCE(323); END_STATE(); case 274: ACCEPT_TOKEN(anon_sym_mixed); END_STATE(); case 275: - if (lookahead == 'p') ADVANCE(323); + if (lookahead == 'p') ADVANCE(324); END_STATE(); case 276: - if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'p') ADVANCE(325); END_STATE(); case 277: - if (lookahead == 'l') ADVANCE(325); + if (lookahead == 'l') ADVANCE(326); END_STATE(); case 278: - if (lookahead == 'u') ADVANCE(326); + if (lookahead == 'u') ADVANCE(327); END_STATE(); case 279: - if (lookahead == 'n') ADVANCE(327); + if (lookahead == 'n') ADVANCE(328); END_STATE(); case 280: - if (lookahead == 't') ADVANCE(328); + if (lookahead == 't') ADVANCE(329); END_STATE(); case 281: ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 282: - if (lookahead == 't') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 283: - if (lookahead == 'c') ADVANCE(330); + if (lookahead == 'c') ADVANCE(331); END_STATE(); case 284: - if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'c') ADVANCE(332); END_STATE(); case 285: ACCEPT_TOKEN(anon_sym_reify); END_STATE(); case 286: - if (lookahead == 'r') ADVANCE(332); + if (lookahead == 'r') ADVANCE(333); END_STATE(); case 287: - if (lookahead == 'r') ADVANCE(333); + if (lookahead == 'r') ADVANCE(334); END_STATE(); case 288: - if (lookahead == 'n') ADVANCE(334); + if (lookahead == 'n') ADVANCE(335); END_STATE(); case 289: ACCEPT_TOKEN(anon_sym_shape); END_STATE(); case 290: - if (lookahead == 'c') ADVANCE(335); + if (lookahead == 'c') ADVANCE(336); END_STATE(); case 291: - if (lookahead == 'g') ADVANCE(336); + if (lookahead == 'g') ADVANCE(337); END_STATE(); case 292: ACCEPT_TOKEN(anon_sym_super); END_STATE(); case 293: - if (lookahead == 'h') ADVANCE(337); + if (lookahead == 'h') ADVANCE(338); END_STATE(); case 294: ACCEPT_TOKEN(anon_sym_throw); @@ -12625,7 +6166,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 299: - if (lookahead == 'y') ADVANCE(338); + if (lookahead == 'y') ADVANCE(339); END_STATE(); case 300: ACCEPT_TOKEN(anon_sym_where); @@ -12637,293 +6178,302 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 303: - if (lookahead == 'c') ADVANCE(339); + if (lookahead == 'c') ADVANCE(340); END_STATE(); case 304: - if (lookahead == 'e') ADVANCE(340); + if (lookahead == 'e') ADVANCE(341); END_STATE(); case 305: - if (lookahead == 'u') ADVANCE(341); + if (lookahead == 'u') ADVANCE(342); END_STATE(); case 306: - if (lookahead == 'r') ADVANCE(342); + if (lookahead == 'r') ADVANCE(343); END_STATE(); case 307: - if (lookahead == 'e') ADVANCE(343); + if (lookahead == 'e') ADVANCE(344); END_STATE(); case 308: - if (lookahead == 'r') ADVANCE(344); + if (lookahead == 'r') ADVANCE(345); END_STATE(); case 309: - if (lookahead == 'u') ADVANCE(345); + if (lookahead == 'u') ADVANCE(346); END_STATE(); case 310: ACCEPT_TOKEN(anon_sym_darray); END_STATE(); case 311: - if (lookahead == 't') ADVANCE(346); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 312: - if (lookahead == 'c') ADVANCE(347); + if (lookahead == 'c') ADVANCE(348); END_STATE(); case 313: ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); case 314: - if (lookahead == 's') ADVANCE(348); + if (lookahead == 's') ADVANCE(349); END_STATE(); case 315: - if (lookahead == 'y') ADVANCE(349); + if (lookahead == 'y') ADVANCE(350); END_STATE(); case 316: - if (lookahead == 'h') ADVANCE(350); + if (lookahead == 'h') ADVANCE(351); END_STATE(); case 317: - if (lookahead == 'o') ADVANCE(351); + if (lookahead == 'o') ADVANCE(352); END_STATE(); case 318: - if (lookahead == 'e') ADVANCE(352); + if (lookahead == 'e') ADVANCE(353); END_STATE(); case 319: - if (lookahead == 'e') ADVANCE(353); + if (lookahead == 'e') ADVANCE(354); END_STATE(); case 320: - if (lookahead == 'd') ADVANCE(354); + if (lookahead == 'd') ADVANCE(355); END_STATE(); case 321: - if (lookahead == 'a') ADVANCE(355); + if (lookahead == 'a') ADVANCE(356); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_keyset); + if (lookahead == 'a') ADVANCE(357); END_STATE(); case 323: - if (lookahead == 'a') ADVANCE(356); + ACCEPT_TOKEN(anon_sym_keyset); END_STATE(); case 324: - if (lookahead == 'e') ADVANCE(357); + if (lookahead == 'a') ADVANCE(358); END_STATE(); case 325: - if (lookahead == 'l') ADVANCE(358); + if (lookahead == 'e') ADVANCE(359); END_STATE(); case 326: - if (lookahead == 'r') ADVANCE(359); + if (lookahead == 'l') ADVANCE(360); END_STATE(); case 327: - if (lookahead == 'g') ADVANCE(360); + if (lookahead == 'r') ADVANCE(361); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_parent); + if (lookahead == 'g') ADVANCE(362); END_STATE(); case 329: - if (lookahead == 'e') ADVANCE(361); + ACCEPT_TOKEN(anon_sym_parent); END_STATE(); case 330: - if (lookahead == 't') ADVANCE(362); + if (lookahead == 'e') ADVANCE(363); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 't') ADVANCE(364); END_STATE(); case 332: - if (lookahead == 'e') ADVANCE(363); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 333: - if (lookahead == 'c') ADVANCE(364); + if (lookahead == 'e') ADVANCE(365); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'c') ADVANCE(366); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_string); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_string); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_varray); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(365); + ACCEPT_TOKEN(anon_sym_varray); END_STATE(); case 340: - if (lookahead == 'y') ADVANCE(366); + if (lookahead == 't') ADVANCE(367); END_STATE(); case 341: - if (lookahead == 't') ADVANCE(367); + if (lookahead == 'y') ADVANCE(368); END_STATE(); case 342: - if (lookahead == 'y') ADVANCE(368); + if (lookahead == 't') ADVANCE(369); END_STATE(); case 343: - if (lookahead == 'n') ADVANCE(369); + if (lookahead == 'y') ADVANCE(370); END_STATE(); case 344: - if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'n') ADVANCE(371); END_STATE(); case 345: - if (lookahead == 'e') ADVANCE(371); + if (lookahead == 'e') ADVANCE(372); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'e') ADVANCE(373); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_dynamic); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_extends); + ACCEPT_TOKEN(anon_sym_dynamic); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_finally); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_foreach); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 351: - if (lookahead == 'n') ADVANCE(372); + ACCEPT_TOKEN(anon_sym_foreach); END_STATE(); case 352: - if (lookahead == 'n') ADVANCE(373); + if (lookahead == 'n') ADVANCE(374); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_include); - if (lookahead == '_') ADVANCE(374); + if (lookahead == 'n') ADVANCE(375); END_STATE(); case 354: - if (lookahead == 'o') ADVANCE(375); + ACCEPT_TOKEN(anon_sym_include); + if (lookahead == '_') ADVANCE(376); END_STATE(); case 355: - if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'o') ADVANCE(377); END_STATE(); case 356: - if (lookahead == 'c') ADVANCE(377); + if (lookahead == 'c') ADVANCE(378); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_newtype); + if (lookahead == 'l') ADVANCE(379); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_nonnull); + if (lookahead == 'c') ADVANCE(380); END_STATE(); case 359: - if (lookahead == 'n') ADVANCE(378); + ACCEPT_TOKEN(anon_sym_newtype); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_nothing); + ACCEPT_TOKEN(anon_sym_nonnull); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_private); + if (lookahead == 'n') ADVANCE(381); END_STATE(); case 362: - if (lookahead == 'e') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_nothing); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_require); - if (lookahead == '_') ADVANCE(380); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 364: - if (lookahead == 'e') ADVANCE(381); + if (lookahead == 'e') ADVANCE(382); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_abstract); + ACCEPT_TOKEN(anon_sym_require); + if (lookahead == '_') ADVANCE(383); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_arraykey); + if (lookahead == 'e') ADVANCE(384); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(382); + ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym_category); + ACCEPT_TOKEN(anon_sym_arraykey); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym_children); + if (lookahead == 'e') ADVANCE(385); END_STATE(); case 370: - if (lookahead == 'n') ADVANCE(383); + ACCEPT_TOKEN(anon_sym_category); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_children); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'n') ADVANCE(386); END_STATE(); case 373: - if (lookahead == 't') ADVANCE(384); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 374: - if (lookahead == 'o') ADVANCE(385); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 375: - if (lookahead == 'f') ADVANCE(386); + if (lookahead == 't') ADVANCE(387); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'o') ADVANCE(388); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'f') ADVANCE(389); END_STATE(); case 378: - ACCEPT_TOKEN(anon_sym_noreturn); + if (lookahead == 'e') ADVANCE(390); END_STATE(); case 379: - if (lookahead == 'd') ADVANCE(389); + ACCEPT_TOKEN(anon_sym_internal); END_STATE(); case 380: - if (lookahead == 'o') ADVANCE(390); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 381: - ACCEPT_TOKEN(anon_sym_resource); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 382: - ACCEPT_TOKEN(anon_sym_attribute); + if (lookahead == 'd') ADVANCE(392); END_STATE(); case 383: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'o') ADVANCE(393); END_STATE(); case 384: - if (lookahead == 's') ADVANCE(392); + ACCEPT_TOKEN(anon_sym_resource); END_STATE(); case 385: - if (lookahead == 'n') ADVANCE(393); + ACCEPT_TOKEN(anon_sym_attribute); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_insteadof); + if (lookahead == 't') ADVANCE(394); END_STATE(); case 387: - ACCEPT_TOKEN(anon_sym_interface); + if (lookahead == 's') ADVANCE(395); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_namespace); + if (lookahead == 'n') ADVANCE(396); END_STATE(); case 389: - ACCEPT_TOKEN(anon_sym_protected); + ACCEPT_TOKEN(anon_sym_insteadof); END_STATE(); case 390: - if (lookahead == 'n') ADVANCE(394); + ACCEPT_TOKEN(anon_sym_interface); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_concurrent); + ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); case 392: - ACCEPT_TOKEN(anon_sym_implements); + ACCEPT_TOKEN(anon_sym_protected); END_STATE(); case 393: - if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'n') ADVANCE(397); END_STATE(); case 394: - if (lookahead == 'c') ADVANCE(396); + ACCEPT_TOKEN(anon_sym_concurrent); END_STATE(); case 395: - if (lookahead == 'e') ADVANCE(397); + ACCEPT_TOKEN(anon_sym_implements); END_STATE(); case 396: - if (lookahead == 'e') ADVANCE(398); + if (lookahead == 'c') ADVANCE(398); END_STATE(); case 397: - ACCEPT_TOKEN(anon_sym_include_once); + if (lookahead == 'c') ADVANCE(399); END_STATE(); case 398: + if (lookahead == 'e') ADVANCE(400); + END_STATE(); + case 399: + if (lookahead == 'e') ADVANCE(401); + END_STATE(); + case 400: + ACCEPT_TOKEN(anon_sym_include_once); + END_STATE(); + case 401: ACCEPT_TOKEN(anon_sym_require_once); END_STATE(); default: @@ -14686,7 +8236,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1751] = {.lex_state = 82}, [1752] = {.lex_state = 82}, [1753] = {.lex_state = 82}, - [1754] = {.lex_state = 82}, + [1754] = {.lex_state = 12}, [1755] = {.lex_state = 12}, [1756] = {.lex_state = 12}, [1757] = {.lex_state = 12}, @@ -14698,151 +8248,151 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1763] = {.lex_state = 12}, [1764] = {.lex_state = 12}, [1765] = {.lex_state = 12}, - [1766] = {.lex_state = 12}, + [1766] = {.lex_state = 82}, [1767] = {.lex_state = 12}, [1768] = {.lex_state = 12}, [1769] = {.lex_state = 12}, [1770] = {.lex_state = 5}, [1771] = {.lex_state = 7}, - [1772] = {.lex_state = 5}, + [1772] = {.lex_state = 7}, [1773] = {.lex_state = 7}, - [1774] = {.lex_state = 7}, - [1775] = {.lex_state = 7}, + [1774] = {.lex_state = 5}, + [1775] = {.lex_state = 5}, [1776] = {.lex_state = 5}, - [1777] = {.lex_state = 5}, + [1777] = {.lex_state = 7}, [1778] = {.lex_state = 5}, [1779] = {.lex_state = 5}, - [1780] = {.lex_state = 5}, + [1780] = {.lex_state = 81}, [1781] = {.lex_state = 7}, - [1782] = {.lex_state = 7}, - [1783] = {.lex_state = 81}, - [1784] = {.lex_state = 9}, - [1785] = {.lex_state = 5}, - [1786] = {.lex_state = 5}, - [1787] = {.lex_state = 81}, - [1788] = {.lex_state = 6}, + [1782] = {.lex_state = 81}, + [1783] = {.lex_state = 5}, + [1784] = {.lex_state = 81}, + [1785] = {.lex_state = 7}, + [1786] = {.lex_state = 4}, + [1787] = {.lex_state = 5}, + [1788] = {.lex_state = 5}, [1789] = {.lex_state = 5}, - [1790] = {.lex_state = 5}, - [1791] = {.lex_state = 81}, - [1792] = {.lex_state = 5}, - [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 4}, + [1790] = {.lex_state = 9}, + [1791] = {.lex_state = 6}, + [1792] = {.lex_state = 9}, + [1793] = {.lex_state = 5}, + [1794] = {.lex_state = 5}, [1795] = {.lex_state = 5}, - [1796] = {.lex_state = 10}, - [1797] = {.lex_state = 5}, + [1796] = {.lex_state = 9}, + [1797] = {.lex_state = 9}, [1798] = {.lex_state = 9}, [1799] = {.lex_state = 5}, - [1800] = {.lex_state = 9}, - [1801] = {.lex_state = 5}, - [1802] = {.lex_state = 10}, - [1803] = {.lex_state = 9}, - [1804] = {.lex_state = 6}, - [1805] = {.lex_state = 5}, - [1806] = {.lex_state = 10}, + [1800] = {.lex_state = 5}, + [1801] = {.lex_state = 10}, + [1802] = {.lex_state = 9}, + [1803] = {.lex_state = 5}, + [1804] = {.lex_state = 10}, + [1805] = {.lex_state = 10}, + [1806] = {.lex_state = 5}, [1807] = {.lex_state = 5}, - [1808] = {.lex_state = 10}, - [1809] = {.lex_state = 9}, - [1810] = {.lex_state = 4}, - [1811] = {.lex_state = 5}, - [1812] = {.lex_state = 9}, + [1808] = {.lex_state = 6}, + [1809] = {.lex_state = 10}, + [1810] = {.lex_state = 9}, + [1811] = {.lex_state = 9}, + [1812] = {.lex_state = 5}, [1813] = {.lex_state = 9}, [1814] = {.lex_state = 9}, - [1815] = {.lex_state = 5}, - [1816] = {.lex_state = 9}, - [1817] = {.lex_state = 5}, + [1815] = {.lex_state = 4}, + [1816] = {.lex_state = 5}, + [1817] = {.lex_state = 6}, [1818] = {.lex_state = 9}, [1819] = {.lex_state = 9}, [1820] = {.lex_state = 9}, - [1821] = {.lex_state = 4}, + [1821] = {.lex_state = 5}, [1822] = {.lex_state = 9}, [1823] = {.lex_state = 9}, [1824] = {.lex_state = 9}, [1825] = {.lex_state = 9}, - [1826] = {.lex_state = 5}, - [1827] = {.lex_state = 9}, + [1826] = {.lex_state = 9}, + [1827] = {.lex_state = 10}, [1828] = {.lex_state = 9}, - [1829] = {.lex_state = 9}, + [1829] = {.lex_state = 4}, [1830] = {.lex_state = 9}, [1831] = {.lex_state = 9}, [1832] = {.lex_state = 9}, - [1833] = {.lex_state = 4}, - [1834] = {.lex_state = 9}, + [1833] = {.lex_state = 9}, + [1834] = {.lex_state = 5}, [1835] = {.lex_state = 9}, [1836] = {.lex_state = 9}, [1837] = {.lex_state = 9}, - [1838] = {.lex_state = 10}, + [1838] = {.lex_state = 9}, [1839] = {.lex_state = 9}, - [1840] = {.lex_state = 6}, - [1841] = {.lex_state = 6}, + [1840] = {.lex_state = 9}, + [1841] = {.lex_state = 9}, [1842] = {.lex_state = 9}, [1843] = {.lex_state = 9}, [1844] = {.lex_state = 9}, - [1845] = {.lex_state = 10}, + [1845] = {.lex_state = 9}, [1846] = {.lex_state = 9}, [1847] = {.lex_state = 9}, [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 9}, + [1849] = {.lex_state = 10}, [1850] = {.lex_state = 9}, [1851] = {.lex_state = 9}, - [1852] = {.lex_state = 5}, + [1852] = {.lex_state = 9}, [1853] = {.lex_state = 9}, [1854] = {.lex_state = 9}, [1855] = {.lex_state = 9}, - [1856] = {.lex_state = 6}, + [1856] = {.lex_state = 4}, [1857] = {.lex_state = 9}, [1858] = {.lex_state = 9}, [1859] = {.lex_state = 9}, [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 9}, + [1861] = {.lex_state = 5}, [1862] = {.lex_state = 9}, [1863] = {.lex_state = 9}, - [1864] = {.lex_state = 10}, - [1865] = {.lex_state = 9}, + [1864] = {.lex_state = 9}, + [1865] = {.lex_state = 6}, [1866] = {.lex_state = 9}, [1867] = {.lex_state = 9}, [1868] = {.lex_state = 9}, [1869] = {.lex_state = 9}, [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 9}, + [1871] = {.lex_state = 6}, + [1872] = {.lex_state = 10}, [1873] = {.lex_state = 9}, [1874] = {.lex_state = 9}, - [1875] = {.lex_state = 10}, - [1876] = {.lex_state = 9}, - [1877] = {.lex_state = 10}, - [1878] = {.lex_state = 5}, - [1879] = {.lex_state = 5}, - [1880] = {.lex_state = 7}, + [1875] = {.lex_state = 7}, + [1876] = {.lex_state = 10}, + [1877] = {.lex_state = 9}, + [1878] = {.lex_state = 6}, + [1879] = {.lex_state = 4}, + [1880] = {.lex_state = 10}, [1881] = {.lex_state = 4}, - [1882] = {.lex_state = 10}, + [1882] = {.lex_state = 5}, [1883] = {.lex_state = 4}, - [1884] = {.lex_state = 7}, + [1884] = {.lex_state = 6}, [1885] = {.lex_state = 7}, - [1886] = {.lex_state = 4}, - [1887] = {.lex_state = 6}, - [1888] = {.lex_state = 6}, + [1886] = {.lex_state = 5}, + [1887] = {.lex_state = 10}, + [1888] = {.lex_state = 7}, [1889] = {.lex_state = 5}, [1890] = {.lex_state = 7}, [1891] = {.lex_state = 7}, - [1892] = {.lex_state = 9}, + [1892] = {.lex_state = 5}, [1893] = {.lex_state = 7}, [1894] = {.lex_state = 7}, [1895] = {.lex_state = 7}, [1896] = {.lex_state = 7}, [1897] = {.lex_state = 7}, - [1898] = {.lex_state = 5}, + [1898] = {.lex_state = 7}, [1899] = {.lex_state = 7}, [1900] = {.lex_state = 7}, [1901] = {.lex_state = 7}, - [1902] = {.lex_state = 7}, + [1902] = {.lex_state = 5}, [1903] = {.lex_state = 7}, - [1904] = {.lex_state = 5}, + [1904] = {.lex_state = 7}, [1905] = {.lex_state = 7}, [1906] = {.lex_state = 7}, [1907] = {.lex_state = 7}, [1908] = {.lex_state = 7}, - [1909] = {.lex_state = 7}, - [1910] = {.lex_state = 7}, + [1909] = {.lex_state = 12}, + [1910] = {.lex_state = 6}, [1911] = {.lex_state = 7}, [1912] = {.lex_state = 7}, [1913] = {.lex_state = 7}, @@ -14859,12 +8409,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1924] = {.lex_state = 7}, [1925] = {.lex_state = 7}, [1926] = {.lex_state = 7}, - [1927] = {.lex_state = 5}, + [1927] = {.lex_state = 7}, [1928] = {.lex_state = 7}, [1929] = {.lex_state = 7}, [1930] = {.lex_state = 7}, [1931] = {.lex_state = 7}, - [1932] = {.lex_state = 5}, + [1932] = {.lex_state = 7}, [1933] = {.lex_state = 7}, [1934] = {.lex_state = 7}, [1935] = {.lex_state = 7}, @@ -14875,7 +8425,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1940] = {.lex_state = 7}, [1941] = {.lex_state = 7}, [1942] = {.lex_state = 7}, - [1943] = {.lex_state = 5}, + [1943] = {.lex_state = 7}, [1944] = {.lex_state = 7}, [1945] = {.lex_state = 7}, [1946] = {.lex_state = 7}, @@ -14883,30 +8433,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1948] = {.lex_state = 7}, [1949] = {.lex_state = 7}, [1950] = {.lex_state = 7}, - [1951] = {.lex_state = 7}, - [1952] = {.lex_state = 7}, + [1951] = {.lex_state = 9}, + [1952] = {.lex_state = 81}, [1953] = {.lex_state = 7}, [1954] = {.lex_state = 7}, [1955] = {.lex_state = 7}, [1956] = {.lex_state = 7}, - [1957] = {.lex_state = 6}, + [1957] = {.lex_state = 7}, [1958] = {.lex_state = 7}, [1959] = {.lex_state = 7}, - [1960] = {.lex_state = 5}, + [1960] = {.lex_state = 7}, [1961] = {.lex_state = 7}, - [1962] = {.lex_state = 7}, + [1962] = {.lex_state = 6}, [1963] = {.lex_state = 7}, [1964] = {.lex_state = 7}, - [1965] = {.lex_state = 7}, + [1965] = {.lex_state = 5}, [1966] = {.lex_state = 7}, - [1967] = {.lex_state = 7}, + [1967] = {.lex_state = 81}, [1968] = {.lex_state = 7}, [1969] = {.lex_state = 7}, [1970] = {.lex_state = 7}, - [1971] = {.lex_state = 5}, + [1971] = {.lex_state = 7}, [1972] = {.lex_state = 7}, [1973] = {.lex_state = 7}, - [1974] = {.lex_state = 5}, + [1974] = {.lex_state = 7}, [1975] = {.lex_state = 7}, [1976] = {.lex_state = 7}, [1977] = {.lex_state = 7}, @@ -14915,36 +8465,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1980] = {.lex_state = 7}, [1981] = {.lex_state = 7}, [1982] = {.lex_state = 7}, - [1983] = {.lex_state = 7}, - [1984] = {.lex_state = 7}, - [1985] = {.lex_state = 7}, + [1983] = {.lex_state = 5}, + [1984] = {.lex_state = 5}, + [1985] = {.lex_state = 5}, [1986] = {.lex_state = 7}, [1987] = {.lex_state = 7}, [1988] = {.lex_state = 7}, [1989] = {.lex_state = 7}, - [1990] = {.lex_state = 6}, + [1990] = {.lex_state = 7}, [1991] = {.lex_state = 7}, [1992] = {.lex_state = 7}, [1993] = {.lex_state = 7}, - [1994] = {.lex_state = 7}, - [1995] = {.lex_state = 7}, + [1994] = {.lex_state = 5}, + [1995] = {.lex_state = 5}, [1996] = {.lex_state = 7}, - [1997] = {.lex_state = 5}, - [1998] = {.lex_state = 7}, - [1999] = {.lex_state = 7}, + [1997] = {.lex_state = 7}, + [1998] = {.lex_state = 5}, + [1999] = {.lex_state = 82}, [2000] = {.lex_state = 7}, - [2001] = {.lex_state = 7}, + [2001] = {.lex_state = 4}, [2002] = {.lex_state = 7}, [2003] = {.lex_state = 5}, - [2004] = {.lex_state = 81}, + [2004] = {.lex_state = 7}, [2005] = {.lex_state = 5}, - [2006] = {.lex_state = 7}, - [2007] = {.lex_state = 7}, - [2008] = {.lex_state = 7}, - [2009] = {.lex_state = 5}, + [2006] = {.lex_state = 5}, + [2007] = {.lex_state = 12}, + [2008] = {.lex_state = 5}, + [2009] = {.lex_state = 7}, [2010] = {.lex_state = 7}, - [2011] = {.lex_state = 7}, - [2012] = {.lex_state = 7}, + [2011] = {.lex_state = 5}, + [2012] = {.lex_state = 5}, [2013] = {.lex_state = 7}, [2014] = {.lex_state = 7}, [2015] = {.lex_state = 7}, @@ -14952,7 +8502,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2017] = {.lex_state = 7}, [2018] = {.lex_state = 7}, [2019] = {.lex_state = 7}, - [2020] = {.lex_state = 7}, + [2020] = {.lex_state = 6}, [2021] = {.lex_state = 7}, [2022] = {.lex_state = 7}, [2023] = {.lex_state = 7}, @@ -14960,791 +8510,791 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2025] = {.lex_state = 7}, [2026] = {.lex_state = 7}, [2027] = {.lex_state = 7}, - [2028] = {.lex_state = 5}, + [2028] = {.lex_state = 7}, [2029] = {.lex_state = 7}, - [2030] = {.lex_state = 12}, - [2031] = {.lex_state = 7}, - [2032] = {.lex_state = 4}, - [2033] = {.lex_state = 7}, - [2034] = {.lex_state = 5}, + [2030] = {.lex_state = 7}, + [2031] = {.lex_state = 12}, + [2032] = {.lex_state = 7}, + [2033] = {.lex_state = 5}, + [2034] = {.lex_state = 7}, [2035] = {.lex_state = 7}, [2036] = {.lex_state = 7}, [2037] = {.lex_state = 7}, [2038] = {.lex_state = 7}, - [2039] = {.lex_state = 7}, - [2040] = {.lex_state = 5}, - [2041] = {.lex_state = 5}, + [2039] = {.lex_state = 5}, + [2040] = {.lex_state = 7}, + [2041] = {.lex_state = 7}, [2042] = {.lex_state = 7}, - [2043] = {.lex_state = 5}, + [2043] = {.lex_state = 7}, [2044] = {.lex_state = 7}, - [2045] = {.lex_state = 6}, + [2045] = {.lex_state = 7}, [2046] = {.lex_state = 7}, [2047] = {.lex_state = 7}, - [2048] = {.lex_state = 5}, + [2048] = {.lex_state = 7}, [2049] = {.lex_state = 7}, - [2050] = {.lex_state = 7}, + [2050] = {.lex_state = 5}, [2051] = {.lex_state = 7}, [2052] = {.lex_state = 7}, - [2053] = {.lex_state = 7}, - [2054] = {.lex_state = 7}, + [2053] = {.lex_state = 5}, + [2054] = {.lex_state = 5}, [2055] = {.lex_state = 7}, [2056] = {.lex_state = 7}, [2057] = {.lex_state = 7}, - [2058] = {.lex_state = 7}, - [2059] = {.lex_state = 5}, + [2058] = {.lex_state = 5}, + [2059] = {.lex_state = 4}, [2060] = {.lex_state = 7}, - [2061] = {.lex_state = 7}, - [2062] = {.lex_state = 7}, + [2061] = {.lex_state = 5}, + [2062] = {.lex_state = 5}, [2063] = {.lex_state = 7}, - [2064] = {.lex_state = 7}, + [2064] = {.lex_state = 5}, [2065] = {.lex_state = 7}, - [2066] = {.lex_state = 5}, - [2067] = {.lex_state = 7}, - [2068] = {.lex_state = 7}, - [2069] = {.lex_state = 7}, + [2066] = {.lex_state = 7}, + [2067] = {.lex_state = 12}, + [2068] = {.lex_state = 6}, + [2069] = {.lex_state = 5}, [2070] = {.lex_state = 7}, [2071] = {.lex_state = 7}, [2072] = {.lex_state = 7}, [2073] = {.lex_state = 5}, - [2074] = {.lex_state = 5}, + [2074] = {.lex_state = 7}, [2075] = {.lex_state = 7}, [2076] = {.lex_state = 7}, - [2077] = {.lex_state = 6}, - [2078] = {.lex_state = 7}, - [2079] = {.lex_state = 5}, + [2077] = {.lex_state = 7}, + [2078] = {.lex_state = 5}, + [2079] = {.lex_state = 7}, [2080] = {.lex_state = 7}, - [2081] = {.lex_state = 81}, - [2082] = {.lex_state = 5}, - [2083] = {.lex_state = 4}, - [2084] = {.lex_state = 5}, - [2085] = {.lex_state = 82}, - [2086] = {.lex_state = 5}, + [2081] = {.lex_state = 7}, + [2082] = {.lex_state = 7}, + [2083] = {.lex_state = 7}, + [2084] = {.lex_state = 7}, + [2085] = {.lex_state = 7}, + [2086] = {.lex_state = 7}, [2087] = {.lex_state = 7}, - [2088] = {.lex_state = 5}, + [2088] = {.lex_state = 7}, [2089] = {.lex_state = 7}, [2090] = {.lex_state = 7}, [2091] = {.lex_state = 7}, - [2092] = {.lex_state = 5}, + [2092] = {.lex_state = 7}, [2093] = {.lex_state = 7}, [2094] = {.lex_state = 7}, [2095] = {.lex_state = 5}, - [2096] = {.lex_state = 81}, + [2096] = {.lex_state = 7}, [2097] = {.lex_state = 5}, - [2098] = {.lex_state = 5}, + [2098] = {.lex_state = 7}, [2099] = {.lex_state = 7}, - [2100] = {.lex_state = 5}, + [2100] = {.lex_state = 4}, [2101] = {.lex_state = 15}, - [2102] = {.lex_state = 7}, + [2102] = {.lex_state = 5}, [2103] = {.lex_state = 5}, - [2104] = {.lex_state = 5}, + [2104] = {.lex_state = 7}, [2105] = {.lex_state = 7}, - [2106] = {.lex_state = 7}, + [2106] = {.lex_state = 5}, [2107] = {.lex_state = 7}, [2108] = {.lex_state = 5}, - [2109] = {.lex_state = 7}, - [2110] = {.lex_state = 12}, - [2111] = {.lex_state = 7}, + [2109] = {.lex_state = 5}, + [2110] = {.lex_state = 5}, + [2111] = {.lex_state = 5}, [2112] = {.lex_state = 7}, - [2113] = {.lex_state = 12}, - [2114] = {.lex_state = 6}, - [2115] = {.lex_state = 4}, - [2116] = {.lex_state = 12}, - [2117] = {.lex_state = 7}, - [2118] = {.lex_state = 4}, + [2113] = {.lex_state = 5}, + [2114] = {.lex_state = 7}, + [2115] = {.lex_state = 5}, + [2116] = {.lex_state = 7}, + [2117] = {.lex_state = 5}, + [2118] = {.lex_state = 7}, [2119] = {.lex_state = 7}, - [2120] = {.lex_state = 5}, - [2121] = {.lex_state = 7}, + [2120] = {.lex_state = 7}, + [2121] = {.lex_state = 5}, [2122] = {.lex_state = 7}, - [2123] = {.lex_state = 5}, + [2123] = {.lex_state = 7}, [2124] = {.lex_state = 7}, [2125] = {.lex_state = 7}, - [2126] = {.lex_state = 7}, + [2126] = {.lex_state = 81}, [2127] = {.lex_state = 5}, [2128] = {.lex_state = 7}, [2129] = {.lex_state = 5}, - [2130] = {.lex_state = 7}, + [2130] = {.lex_state = 5}, [2131] = {.lex_state = 7}, [2132] = {.lex_state = 7}, [2133] = {.lex_state = 5}, - [2134] = {.lex_state = 6}, + [2134] = {.lex_state = 7}, [2135] = {.lex_state = 7}, - [2136] = {.lex_state = 6}, - [2137] = {.lex_state = 5}, + [2136] = {.lex_state = 7}, + [2137] = {.lex_state = 7}, [2138] = {.lex_state = 5}, - [2139] = {.lex_state = 5}, - [2140] = {.lex_state = 6}, + [2139] = {.lex_state = 7}, + [2140] = {.lex_state = 7}, [2141] = {.lex_state = 7}, - [2142] = {.lex_state = 6}, + [2142] = {.lex_state = 5}, [2143] = {.lex_state = 6}, [2144] = {.lex_state = 7}, [2145] = {.lex_state = 5}, - [2146] = {.lex_state = 7}, - [2147] = {.lex_state = 7}, + [2146] = {.lex_state = 5}, + [2147] = {.lex_state = 5}, [2148] = {.lex_state = 7}, - [2149] = {.lex_state = 7}, + [2149] = {.lex_state = 6}, [2150] = {.lex_state = 7}, - [2151] = {.lex_state = 7}, - [2152] = {.lex_state = 7}, - [2153] = {.lex_state = 7}, - [2154] = {.lex_state = 5}, - [2155] = {.lex_state = 5}, + [2151] = {.lex_state = 6}, + [2152] = {.lex_state = 5}, + [2153] = {.lex_state = 6}, + [2154] = {.lex_state = 12}, + [2155] = {.lex_state = 4}, [2156] = {.lex_state = 7}, - [2157] = {.lex_state = 5}, - [2158] = {.lex_state = 5}, - [2159] = {.lex_state = 5}, - [2160] = {.lex_state = 5}, - [2161] = {.lex_state = 7}, - [2162] = {.lex_state = 7}, + [2157] = {.lex_state = 6}, + [2158] = {.lex_state = 7}, + [2159] = {.lex_state = 7}, + [2160] = {.lex_state = 7}, + [2161] = {.lex_state = 5}, + [2162] = {.lex_state = 6}, [2163] = {.lex_state = 5}, - [2164] = {.lex_state = 5}, - [2165] = {.lex_state = 5}, - [2166] = {.lex_state = 6}, + [2164] = {.lex_state = 7}, + [2165] = {.lex_state = 7}, + [2166] = {.lex_state = 5}, [2167] = {.lex_state = 5}, - [2168] = {.lex_state = 7}, - [2169] = {.lex_state = 81}, + [2168] = {.lex_state = 6}, + [2169] = {.lex_state = 5}, [2170] = {.lex_state = 5}, - [2171] = {.lex_state = 7}, + [2171] = {.lex_state = 81}, [2172] = {.lex_state = 5}, - [2173] = {.lex_state = 5}, - [2174] = {.lex_state = 81}, - [2175] = {.lex_state = 5}, - [2176] = {.lex_state = 12}, - [2177] = {.lex_state = 7}, - [2178] = {.lex_state = 5}, + [2173] = {.lex_state = 6}, + [2174] = {.lex_state = 15}, + [2175] = {.lex_state = 6}, + [2176] = {.lex_state = 5}, + [2177] = {.lex_state = 81}, + [2178] = {.lex_state = 6}, [2179] = {.lex_state = 7}, [2180] = {.lex_state = 5}, - [2181] = {.lex_state = 81}, - [2182] = {.lex_state = 11}, - [2183] = {.lex_state = 81}, - [2184] = {.lex_state = 5}, - [2185] = {.lex_state = 11}, + [2181] = {.lex_state = 5}, + [2182] = {.lex_state = 5}, + [2183] = {.lex_state = 5}, + [2184] = {.lex_state = 6}, + [2185] = {.lex_state = 6}, [2186] = {.lex_state = 5}, - [2187] = {.lex_state = 7}, - [2188] = {.lex_state = 7}, + [2187] = {.lex_state = 6}, + [2188] = {.lex_state = 5}, [2189] = {.lex_state = 5}, - [2190] = {.lex_state = 5}, - [2191] = {.lex_state = 7}, - [2192] = {.lex_state = 5}, - [2193] = {.lex_state = 6}, - [2194] = {.lex_state = 5}, - [2195] = {.lex_state = 6}, - [2196] = {.lex_state = 6}, - [2197] = {.lex_state = 5}, - [2198] = {.lex_state = 5}, - [2199] = {.lex_state = 7}, + [2190] = {.lex_state = 6}, + [2191] = {.lex_state = 5}, + [2192] = {.lex_state = 6}, + [2193] = {.lex_state = 7}, + [2194] = {.lex_state = 6}, + [2195] = {.lex_state = 11}, + [2196] = {.lex_state = 5}, + [2197] = {.lex_state = 11}, + [2198] = {.lex_state = 11}, + [2199] = {.lex_state = 5}, [2200] = {.lex_state = 6}, [2201] = {.lex_state = 5}, - [2202] = {.lex_state = 6}, - [2203] = {.lex_state = 6}, - [2204] = {.lex_state = 6}, - [2205] = {.lex_state = 5}, - [2206] = {.lex_state = 5}, + [2202] = {.lex_state = 5}, + [2203] = {.lex_state = 5}, + [2204] = {.lex_state = 5}, + [2205] = {.lex_state = 7}, + [2206] = {.lex_state = 7}, [2207] = {.lex_state = 5}, [2208] = {.lex_state = 5}, - [2209] = {.lex_state = 6}, + [2209] = {.lex_state = 81}, [2210] = {.lex_state = 81}, [2211] = {.lex_state = 5}, - [2212] = {.lex_state = 5}, + [2212] = {.lex_state = 7}, [2213] = {.lex_state = 5}, - [2214] = {.lex_state = 7}, - [2215] = {.lex_state = 11}, - [2216] = {.lex_state = 6}, - [2217] = {.lex_state = 6}, - [2218] = {.lex_state = 11}, - [2219] = {.lex_state = 15}, - [2220] = {.lex_state = 7}, - [2221] = {.lex_state = 15}, - [2222] = {.lex_state = 81}, - [2223] = {.lex_state = 15}, + [2214] = {.lex_state = 5}, + [2215] = {.lex_state = 81}, + [2216] = {.lex_state = 5}, + [2217] = {.lex_state = 15}, + [2218] = {.lex_state = 5}, + [2219] = {.lex_state = 7}, + [2220] = {.lex_state = 15}, + [2221] = {.lex_state = 5}, + [2222] = {.lex_state = 7}, + [2223] = {.lex_state = 7}, [2224] = {.lex_state = 5}, - [2225] = {.lex_state = 5}, + [2225] = {.lex_state = 81}, [2226] = {.lex_state = 5}, - [2227] = {.lex_state = 5}, - [2228] = {.lex_state = 81}, - [2229] = {.lex_state = 7}, + [2227] = {.lex_state = 7}, + [2228] = {.lex_state = 5}, + [2229] = {.lex_state = 5}, [2230] = {.lex_state = 5}, [2231] = {.lex_state = 5}, - [2232] = {.lex_state = 5}, - [2233] = {.lex_state = 81}, - [2234] = {.lex_state = 5}, + [2232] = {.lex_state = 81}, + [2233] = {.lex_state = 5}, + [2234] = {.lex_state = 81}, [2235] = {.lex_state = 5}, [2236] = {.lex_state = 5}, - [2237] = {.lex_state = 5}, - [2238] = {.lex_state = 5}, - [2239] = {.lex_state = 5}, + [2237] = {.lex_state = 11}, + [2238] = {.lex_state = 7}, + [2239] = {.lex_state = 7}, [2240] = {.lex_state = 7}, - [2241] = {.lex_state = 7}, - [2242] = {.lex_state = 5}, - [2243] = {.lex_state = 5}, - [2244] = {.lex_state = 11}, - [2245] = {.lex_state = 5}, - [2246] = {.lex_state = 6}, - [2247] = {.lex_state = 11}, + [2241] = {.lex_state = 5}, + [2242] = {.lex_state = 6}, + [2243] = {.lex_state = 6}, + [2244] = {.lex_state = 7}, + [2245] = {.lex_state = 6}, + [2246] = {.lex_state = 7}, + [2247] = {.lex_state = 7}, [2248] = {.lex_state = 7}, [2249] = {.lex_state = 7}, - [2250] = {.lex_state = 5}, - [2251] = {.lex_state = 11}, - [2252] = {.lex_state = 7}, - [2253] = {.lex_state = 6}, + [2250] = {.lex_state = 6}, + [2251] = {.lex_state = 6}, + [2252] = {.lex_state = 6}, + [2253] = {.lex_state = 11}, [2254] = {.lex_state = 7}, - [2255] = {.lex_state = 7}, - [2256] = {.lex_state = 5}, - [2257] = {.lex_state = 5}, - [2258] = {.lex_state = 11}, - [2259] = {.lex_state = 5}, - [2260] = {.lex_state = 8}, - [2261] = {.lex_state = 6}, + [2255] = {.lex_state = 6}, + [2256] = {.lex_state = 7}, + [2257] = {.lex_state = 6}, + [2258] = {.lex_state = 7}, + [2259] = {.lex_state = 6}, + [2260] = {.lex_state = 11}, + [2261] = {.lex_state = 7}, [2262] = {.lex_state = 6}, - [2263] = {.lex_state = 7}, - [2264] = {.lex_state = 7}, + [2263] = {.lex_state = 5}, + [2264] = {.lex_state = 11}, [2265] = {.lex_state = 6}, - [2266] = {.lex_state = 11}, - [2267] = {.lex_state = 11}, - [2268] = {.lex_state = 7}, - [2269] = {.lex_state = 7}, - [2270] = {.lex_state = 5}, - [2271] = {.lex_state = 11}, - [2272] = {.lex_state = 11}, - [2273] = {.lex_state = 6}, + [2266] = {.lex_state = 6}, + [2267] = {.lex_state = 6}, + [2268] = {.lex_state = 5}, + [2269] = {.lex_state = 11}, + [2270] = {.lex_state = 11}, + [2271] = {.lex_state = 7}, + [2272] = {.lex_state = 7}, + [2273] = {.lex_state = 5}, [2274] = {.lex_state = 11}, - [2275] = {.lex_state = 6}, - [2276] = {.lex_state = 11}, - [2277] = {.lex_state = 7}, - [2278] = {.lex_state = 7}, - [2279] = {.lex_state = 6}, - [2280] = {.lex_state = 7}, - [2281] = {.lex_state = 7}, - [2282] = {.lex_state = 7}, - [2283] = {.lex_state = 7}, - [2284] = {.lex_state = 5}, + [2275] = {.lex_state = 5}, + [2276] = {.lex_state = 7}, + [2277] = {.lex_state = 11}, + [2278] = {.lex_state = 11}, + [2279] = {.lex_state = 7}, + [2280] = {.lex_state = 5}, + [2281] = {.lex_state = 5}, + [2282] = {.lex_state = 11}, + [2283] = {.lex_state = 6}, + [2284] = {.lex_state = 7}, [2285] = {.lex_state = 5}, - [2286] = {.lex_state = 7}, - [2287] = {.lex_state = 7}, - [2288] = {.lex_state = 7}, + [2286] = {.lex_state = 5}, + [2287] = {.lex_state = 5}, + [2288] = {.lex_state = 11}, [2289] = {.lex_state = 7}, - [2290] = {.lex_state = 7}, - [2291] = {.lex_state = 5}, - [2292] = {.lex_state = 7}, + [2290] = {.lex_state = 5}, + [2291] = {.lex_state = 11}, + [2292] = {.lex_state = 5}, [2293] = {.lex_state = 11}, - [2294] = {.lex_state = 7}, - [2295] = {.lex_state = 5}, + [2294] = {.lex_state = 11}, + [2295] = {.lex_state = 11}, [2296] = {.lex_state = 7}, - [2297] = {.lex_state = 5}, - [2298] = {.lex_state = 5}, - [2299] = {.lex_state = 6}, + [2297] = {.lex_state = 11}, + [2298] = {.lex_state = 11}, + [2299] = {.lex_state = 7}, [2300] = {.lex_state = 7}, - [2301] = {.lex_state = 5}, - [2302] = {.lex_state = 7}, - [2303] = {.lex_state = 6}, - [2304] = {.lex_state = 6}, - [2305] = {.lex_state = 5}, - [2306] = {.lex_state = 7}, - [2307] = {.lex_state = 11}, - [2308] = {.lex_state = 7}, - [2309] = {.lex_state = 5}, - [2310] = {.lex_state = 7}, - [2311] = {.lex_state = 11}, - [2312] = {.lex_state = 11}, + [2301] = {.lex_state = 11}, + [2302] = {.lex_state = 5}, + [2303] = {.lex_state = 11}, + [2304] = {.lex_state = 5}, + [2305] = {.lex_state = 11}, + [2306] = {.lex_state = 6}, + [2307] = {.lex_state = 7}, + [2308] = {.lex_state = 11}, + [2309] = {.lex_state = 6}, + [2310] = {.lex_state = 5}, + [2311] = {.lex_state = 8}, + [2312] = {.lex_state = 6}, [2313] = {.lex_state = 11}, - [2314] = {.lex_state = 5}, + [2314] = {.lex_state = 7}, [2315] = {.lex_state = 11}, - [2316] = {.lex_state = 5}, + [2316] = {.lex_state = 6}, [2317] = {.lex_state = 7}, [2318] = {.lex_state = 7}, - [2319] = {.lex_state = 11}, - [2320] = {.lex_state = 11}, - [2321] = {.lex_state = 5}, - [2322] = {.lex_state = 11}, - [2323] = {.lex_state = 8}, - [2324] = {.lex_state = 5}, - [2325] = {.lex_state = 5}, - [2326] = {.lex_state = 7}, - [2327] = {.lex_state = 7}, - [2328] = {.lex_state = 7}, + [2319] = {.lex_state = 5}, + [2320] = {.lex_state = 7}, + [2321] = {.lex_state = 6}, + [2322] = {.lex_state = 6}, + [2323] = {.lex_state = 5}, + [2324] = {.lex_state = 8}, + [2325] = {.lex_state = 7}, + [2326] = {.lex_state = 5}, + [2327] = {.lex_state = 11}, + [2328] = {.lex_state = 5}, [2329] = {.lex_state = 5}, - [2330] = {.lex_state = 11}, - [2331] = {.lex_state = 5}, - [2332] = {.lex_state = 5}, - [2333] = {.lex_state = 7}, - [2334] = {.lex_state = 7}, - [2335] = {.lex_state = 7}, - [2336] = {.lex_state = 7}, - [2337] = {.lex_state = 6}, - [2338] = {.lex_state = 7}, - [2339] = {.lex_state = 6}, - [2340] = {.lex_state = 11}, - [2341] = {.lex_state = 6}, - [2342] = {.lex_state = 6}, - [2343] = {.lex_state = 11}, - [2344] = {.lex_state = 5}, - [2345] = {.lex_state = 6}, - [2346] = {.lex_state = 7}, + [2330] = {.lex_state = 6}, + [2331] = {.lex_state = 7}, + [2332] = {.lex_state = 11}, + [2333] = {.lex_state = 5}, + [2334] = {.lex_state = 5}, + [2335] = {.lex_state = 5}, + [2336] = {.lex_state = 6}, + [2337] = {.lex_state = 11}, + [2338] = {.lex_state = 6}, + [2339] = {.lex_state = 7}, + [2340] = {.lex_state = 7}, + [2341] = {.lex_state = 7}, + [2342] = {.lex_state = 5}, + [2343] = {.lex_state = 5}, + [2344] = {.lex_state = 7}, + [2345] = {.lex_state = 7}, + [2346] = {.lex_state = 6}, [2347] = {.lex_state = 7}, - [2348] = {.lex_state = 6}, - [2349] = {.lex_state = 6}, - [2350] = {.lex_state = 5}, + [2348] = {.lex_state = 7}, + [2349] = {.lex_state = 7}, + [2350] = {.lex_state = 7}, [2351] = {.lex_state = 6}, - [2352] = {.lex_state = 6}, - [2353] = {.lex_state = 6}, + [2352] = {.lex_state = 5}, + [2353] = {.lex_state = 7}, [2354] = {.lex_state = 11}, - [2355] = {.lex_state = 11}, + [2355] = {.lex_state = 7}, [2356] = {.lex_state = 7}, - [2357] = {.lex_state = 8}, + [2357] = {.lex_state = 5}, [2358] = {.lex_state = 7}, - [2359] = {.lex_state = 5}, - [2360] = {.lex_state = 7}, - [2361] = {.lex_state = 5}, + [2359] = {.lex_state = 7}, + [2360] = {.lex_state = 11}, + [2361] = {.lex_state = 7}, [2362] = {.lex_state = 7}, - [2363] = {.lex_state = 7}, - [2364] = {.lex_state = 6}, - [2365] = {.lex_state = 7}, - [2366] = {.lex_state = 5}, - [2367] = {.lex_state = 5}, + [2363] = {.lex_state = 11}, + [2364] = {.lex_state = 5}, + [2365] = {.lex_state = 6}, + [2366] = {.lex_state = 7}, + [2367] = {.lex_state = 7}, [2368] = {.lex_state = 7}, [2369] = {.lex_state = 7}, - [2370] = {.lex_state = 6}, - [2371] = {.lex_state = 5}, - [2372] = {.lex_state = 6}, + [2370] = {.lex_state = 7}, + [2371] = {.lex_state = 7}, + [2372] = {.lex_state = 11}, [2373] = {.lex_state = 11}, - [2374] = {.lex_state = 6}, - [2375] = {.lex_state = 5}, - [2376] = {.lex_state = 8}, - [2377] = {.lex_state = 11}, - [2378] = {.lex_state = 5}, - [2379] = {.lex_state = 7}, - [2380] = {.lex_state = 6}, - [2381] = {.lex_state = 11}, + [2374] = {.lex_state = 5}, + [2375] = {.lex_state = 11}, + [2376] = {.lex_state = 5}, + [2377] = {.lex_state = 6}, + [2378] = {.lex_state = 7}, + [2379] = {.lex_state = 6}, + [2380] = {.lex_state = 5}, + [2381] = {.lex_state = 6}, [2382] = {.lex_state = 6}, - [2383] = {.lex_state = 7}, - [2384] = {.lex_state = 5}, + [2383] = {.lex_state = 6}, + [2384] = {.lex_state = 7}, [2385] = {.lex_state = 7}, - [2386] = {.lex_state = 5}, - [2387] = {.lex_state = 8}, + [2386] = {.lex_state = 6}, + [2387] = {.lex_state = 7}, [2388] = {.lex_state = 5}, [2389] = {.lex_state = 7}, [2390] = {.lex_state = 5}, - [2391] = {.lex_state = 6}, + [2391] = {.lex_state = 5}, [2392] = {.lex_state = 5}, - [2393] = {.lex_state = 6}, - [2394] = {.lex_state = 6}, - [2395] = {.lex_state = 11}, + [2393] = {.lex_state = 8}, + [2394] = {.lex_state = 5}, + [2395] = {.lex_state = 7}, [2396] = {.lex_state = 7}, - [2397] = {.lex_state = 7}, - [2398] = {.lex_state = 6}, - [2399] = {.lex_state = 5}, + [2397] = {.lex_state = 6}, + [2398] = {.lex_state = 5}, + [2399] = {.lex_state = 7}, [2400] = {.lex_state = 7}, [2401] = {.lex_state = 7}, - [2402] = {.lex_state = 6}, + [2402] = {.lex_state = 5}, [2403] = {.lex_state = 6}, [2404] = {.lex_state = 7}, - [2405] = {.lex_state = 15}, - [2406] = {.lex_state = 7}, - [2407] = {.lex_state = 11}, - [2408] = {.lex_state = 6}, - [2409] = {.lex_state = 7}, - [2410] = {.lex_state = 11}, - [2411] = {.lex_state = 6}, + [2405] = {.lex_state = 6}, + [2406] = {.lex_state = 5}, + [2407] = {.lex_state = 6}, + [2408] = {.lex_state = 15}, + [2409] = {.lex_state = 5}, + [2410] = {.lex_state = 5}, + [2411] = {.lex_state = 5}, [2412] = {.lex_state = 7}, - [2413] = {.lex_state = 11}, - [2414] = {.lex_state = 7}, - [2415] = {.lex_state = 7}, + [2413] = {.lex_state = 7}, + [2414] = {.lex_state = 5}, + [2415] = {.lex_state = 5}, [2416] = {.lex_state = 6}, - [2417] = {.lex_state = 7}, - [2418] = {.lex_state = 7}, + [2417] = {.lex_state = 8}, + [2418] = {.lex_state = 5}, [2419] = {.lex_state = 7}, - [2420] = {.lex_state = 5}, - [2421] = {.lex_state = 5}, - [2422] = {.lex_state = 6}, - [2423] = {.lex_state = 6}, - [2424] = {.lex_state = 11}, - [2425] = {.lex_state = 6}, - [2426] = {.lex_state = 5}, + [2420] = {.lex_state = 7}, + [2421] = {.lex_state = 6}, + [2422] = {.lex_state = 5}, + [2423] = {.lex_state = 11}, + [2424] = {.lex_state = 8}, + [2425] = {.lex_state = 7}, + [2426] = {.lex_state = 7}, [2427] = {.lex_state = 5}, - [2428] = {.lex_state = 7}, - [2429] = {.lex_state = 7}, - [2430] = {.lex_state = 7}, - [2431] = {.lex_state = 11}, + [2428] = {.lex_state = 5}, + [2429] = {.lex_state = 6}, + [2430] = {.lex_state = 6}, + [2431] = {.lex_state = 6}, [2432] = {.lex_state = 6}, - [2433] = {.lex_state = 7}, - [2434] = {.lex_state = 5}, + [2433] = {.lex_state = 6}, + [2434] = {.lex_state = 6}, [2435] = {.lex_state = 7}, [2436] = {.lex_state = 7}, - [2437] = {.lex_state = 7}, + [2437] = {.lex_state = 5}, [2438] = {.lex_state = 7}, [2439] = {.lex_state = 7}, - [2440] = {.lex_state = 5}, - [2441] = {.lex_state = 11}, + [2440] = {.lex_state = 11}, + [2441] = {.lex_state = 5}, [2442] = {.lex_state = 11}, [2443] = {.lex_state = 5}, - [2444] = {.lex_state = 7}, + [2444] = {.lex_state = 6}, [2445] = {.lex_state = 5}, - [2446] = {.lex_state = 7}, - [2447] = {.lex_state = 11}, + [2446] = {.lex_state = 5}, + [2447] = {.lex_state = 7}, [2448] = {.lex_state = 7}, - [2449] = {.lex_state = 6}, - [2450] = {.lex_state = 7}, - [2451] = {.lex_state = 11}, - [2452] = {.lex_state = 5}, - [2453] = {.lex_state = 7}, + [2449] = {.lex_state = 7}, + [2450] = {.lex_state = 5}, + [2451] = {.lex_state = 6}, + [2452] = {.lex_state = 11}, + [2453] = {.lex_state = 6}, [2454] = {.lex_state = 7}, [2455] = {.lex_state = 11}, - [2456] = {.lex_state = 5}, + [2456] = {.lex_state = 7}, [2457] = {.lex_state = 5}, - [2458] = {.lex_state = 11}, - [2459] = {.lex_state = 5}, - [2460] = {.lex_state = 6}, - [2461] = {.lex_state = 11}, - [2462] = {.lex_state = 5}, + [2458] = {.lex_state = 7}, + [2459] = {.lex_state = 7}, + [2460] = {.lex_state = 11}, + [2461] = {.lex_state = 5}, + [2462] = {.lex_state = 7}, [2463] = {.lex_state = 11}, - [2464] = {.lex_state = 11}, - [2465] = {.lex_state = 5}, - [2466] = {.lex_state = 11}, - [2467] = {.lex_state = 11}, + [2464] = {.lex_state = 5}, + [2465] = {.lex_state = 7}, + [2466] = {.lex_state = 7}, + [2467] = {.lex_state = 7}, [2468] = {.lex_state = 5}, - [2469] = {.lex_state = 6}, - [2470] = {.lex_state = 5}, - [2471] = {.lex_state = 7}, + [2469] = {.lex_state = 7}, + [2470] = {.lex_state = 7}, + [2471] = {.lex_state = 6}, [2472] = {.lex_state = 7}, - [2473] = {.lex_state = 7}, - [2474] = {.lex_state = 5}, - [2475] = {.lex_state = 8}, - [2476] = {.lex_state = 5}, - [2477] = {.lex_state = 5}, - [2478] = {.lex_state = 7}, - [2479] = {.lex_state = 5}, - [2480] = {.lex_state = 7}, - [2481] = {.lex_state = 6}, - [2482] = {.lex_state = 5}, - [2483] = {.lex_state = 7}, - [2484] = {.lex_state = 7}, - [2485] = {.lex_state = 6}, - [2486] = {.lex_state = 6}, + [2473] = {.lex_state = 5}, + [2474] = {.lex_state = 6}, + [2475] = {.lex_state = 5}, + [2476] = {.lex_state = 11}, + [2477] = {.lex_state = 7}, + [2478] = {.lex_state = 6}, + [2479] = {.lex_state = 11}, + [2480] = {.lex_state = 5}, + [2481] = {.lex_state = 5}, + [2482] = {.lex_state = 7}, + [2483] = {.lex_state = 5}, + [2484] = {.lex_state = 11}, + [2485] = {.lex_state = 5}, + [2486] = {.lex_state = 7}, [2487] = {.lex_state = 5}, - [2488] = {.lex_state = 11}, - [2489] = {.lex_state = 7}, - [2490] = {.lex_state = 8}, - [2491] = {.lex_state = 5}, - [2492] = {.lex_state = 5}, - [2493] = {.lex_state = 5}, - [2494] = {.lex_state = 5}, + [2488] = {.lex_state = 8}, + [2489] = {.lex_state = 5}, + [2490] = {.lex_state = 7}, + [2491] = {.lex_state = 7}, + [2492] = {.lex_state = 7}, + [2493] = {.lex_state = 11}, + [2494] = {.lex_state = 7}, [2495] = {.lex_state = 6}, - [2496] = {.lex_state = 6}, - [2497] = {.lex_state = 7}, - [2498] = {.lex_state = 11}, - [2499] = {.lex_state = 5}, - [2500] = {.lex_state = 11}, - [2501] = {.lex_state = 5}, - [2502] = {.lex_state = 7}, - [2503] = {.lex_state = 7}, - [2504] = {.lex_state = 6}, - [2505] = {.lex_state = 5}, - [2506] = {.lex_state = 11}, - [2507] = {.lex_state = 7}, - [2508] = {.lex_state = 6}, - [2509] = {.lex_state = 7}, - [2510] = {.lex_state = 5}, - [2511] = {.lex_state = 6}, - [2512] = {.lex_state = 6}, + [2496] = {.lex_state = 7}, + [2497] = {.lex_state = 5}, + [2498] = {.lex_state = 7}, + [2499] = {.lex_state = 11}, + [2500] = {.lex_state = 5}, + [2501] = {.lex_state = 11}, + [2502] = {.lex_state = 8}, + [2503] = {.lex_state = 5}, + [2504] = {.lex_state = 5}, + [2505] = {.lex_state = 11}, + [2506] = {.lex_state = 7}, + [2507] = {.lex_state = 5}, + [2508] = {.lex_state = 7}, + [2509] = {.lex_state = 11}, + [2510] = {.lex_state = 11}, + [2511] = {.lex_state = 5}, + [2512] = {.lex_state = 11}, [2513] = {.lex_state = 11}, - [2514] = {.lex_state = 6}, - [2515] = {.lex_state = 5}, + [2514] = {.lex_state = 11}, + [2515] = {.lex_state = 7}, [2516] = {.lex_state = 5}, - [2517] = {.lex_state = 11}, - [2518] = {.lex_state = 5}, + [2517] = {.lex_state = 7}, + [2518] = {.lex_state = 7}, [2519] = {.lex_state = 7}, - [2520] = {.lex_state = 7}, - [2521] = {.lex_state = 11}, - [2522] = {.lex_state = 5}, - [2523] = {.lex_state = 8}, - [2524] = {.lex_state = 7}, - [2525] = {.lex_state = 7}, + [2520] = {.lex_state = 11}, + [2521] = {.lex_state = 5}, + [2522] = {.lex_state = 6}, + [2523] = {.lex_state = 6}, + [2524] = {.lex_state = 8}, + [2525] = {.lex_state = 5}, [2526] = {.lex_state = 5}, - [2527] = {.lex_state = 5}, - [2528] = {.lex_state = 5}, - [2529] = {.lex_state = 5}, + [2527] = {.lex_state = 81}, + [2528] = {.lex_state = 7}, + [2529] = {.lex_state = 8}, [2530] = {.lex_state = 5}, - [2531] = {.lex_state = 5}, - [2532] = {.lex_state = 5}, - [2533] = {.lex_state = 5}, + [2531] = {.lex_state = 7}, + [2532] = {.lex_state = 7}, + [2533] = {.lex_state = 7}, [2534] = {.lex_state = 5}, [2535] = {.lex_state = 5}, - [2536] = {.lex_state = 7}, + [2536] = {.lex_state = 5}, [2537] = {.lex_state = 5}, - [2538] = {.lex_state = 7}, - [2539] = {.lex_state = 7}, + [2538] = {.lex_state = 5}, + [2539] = {.lex_state = 8}, [2540] = {.lex_state = 5}, [2541] = {.lex_state = 5}, - [2542] = {.lex_state = 7}, - [2543] = {.lex_state = 7}, + [2542] = {.lex_state = 5}, + [2543] = {.lex_state = 5}, [2544] = {.lex_state = 5}, - [2545] = {.lex_state = 7}, - [2546] = {.lex_state = 5}, - [2547] = {.lex_state = 7}, + [2545] = {.lex_state = 5}, + [2546] = {.lex_state = 7}, + [2547] = {.lex_state = 5}, [2548] = {.lex_state = 5}, - [2549] = {.lex_state = 5}, - [2550] = {.lex_state = 8}, + [2549] = {.lex_state = 7}, + [2550] = {.lex_state = 5}, [2551] = {.lex_state = 5}, - [2552] = {.lex_state = 5}, - [2553] = {.lex_state = 7}, - [2554] = {.lex_state = 11}, - [2555] = {.lex_state = 5}, - [2556] = {.lex_state = 5}, - [2557] = {.lex_state = 5}, + [2552] = {.lex_state = 7}, + [2553] = {.lex_state = 5}, + [2554] = {.lex_state = 7}, + [2555] = {.lex_state = 7}, + [2556] = {.lex_state = 7}, + [2557] = {.lex_state = 7}, [2558] = {.lex_state = 5}, [2559] = {.lex_state = 5}, - [2560] = {.lex_state = 5}, + [2560] = {.lex_state = 11}, [2561] = {.lex_state = 5}, - [2562] = {.lex_state = 5}, + [2562] = {.lex_state = 11}, [2563] = {.lex_state = 5}, [2564] = {.lex_state = 5}, - [2565] = {.lex_state = 8}, - [2566] = {.lex_state = 5}, + [2565] = {.lex_state = 5}, + [2566] = {.lex_state = 7}, [2567] = {.lex_state = 5}, - [2568] = {.lex_state = 7}, - [2569] = {.lex_state = 8}, - [2570] = {.lex_state = 5}, + [2568] = {.lex_state = 5}, + [2569] = {.lex_state = 5}, + [2570] = {.lex_state = 7}, [2571] = {.lex_state = 5}, [2572] = {.lex_state = 7}, - [2573] = {.lex_state = 7}, - [2574] = {.lex_state = 7}, - [2575] = {.lex_state = 7}, - [2576] = {.lex_state = 7}, - [2577] = {.lex_state = 5}, - [2578] = {.lex_state = 5}, + [2573] = {.lex_state = 5}, + [2574] = {.lex_state = 11}, + [2575] = {.lex_state = 5}, + [2576] = {.lex_state = 11}, + [2577] = {.lex_state = 7}, + [2578] = {.lex_state = 7}, [2579] = {.lex_state = 5}, - [2580] = {.lex_state = 7}, + [2580] = {.lex_state = 8}, [2581] = {.lex_state = 5}, - [2582] = {.lex_state = 7}, + [2582] = {.lex_state = 11}, [2583] = {.lex_state = 11}, - [2584] = {.lex_state = 7}, - [2585] = {.lex_state = 7}, - [2586] = {.lex_state = 7}, + [2584] = {.lex_state = 5}, + [2585] = {.lex_state = 11}, + [2586] = {.lex_state = 5}, [2587] = {.lex_state = 5}, - [2588] = {.lex_state = 5}, + [2588] = {.lex_state = 7}, [2589] = {.lex_state = 5}, - [2590] = {.lex_state = 5}, - [2591] = {.lex_state = 5}, + [2590] = {.lex_state = 7}, + [2591] = {.lex_state = 7}, [2592] = {.lex_state = 5}, - [2593] = {.lex_state = 11}, + [2593] = {.lex_state = 5}, [2594] = {.lex_state = 5}, [2595] = {.lex_state = 5}, - [2596] = {.lex_state = 11}, + [2596] = {.lex_state = 5}, [2597] = {.lex_state = 5}, [2598] = {.lex_state = 5}, [2599] = {.lex_state = 5}, [2600] = {.lex_state = 5}, [2601] = {.lex_state = 5}, - [2602] = {.lex_state = 11}, - [2603] = {.lex_state = 5}, - [2604] = {.lex_state = 7}, - [2605] = {.lex_state = 11}, - [2606] = {.lex_state = 11}, - [2607] = {.lex_state = 11}, + [2602] = {.lex_state = 7}, + [2603] = {.lex_state = 7}, + [2604] = {.lex_state = 5}, + [2605] = {.lex_state = 5}, + [2606] = {.lex_state = 7}, + [2607] = {.lex_state = 5}, [2608] = {.lex_state = 5}, [2609] = {.lex_state = 5}, - [2610] = {.lex_state = 7}, - [2611] = {.lex_state = 5}, + [2610] = {.lex_state = 5}, + [2611] = {.lex_state = 11}, [2612] = {.lex_state = 5}, - [2613] = {.lex_state = 7}, - [2614] = {.lex_state = 5}, + [2613] = {.lex_state = 11}, + [2614] = {.lex_state = 11}, [2615] = {.lex_state = 7}, [2616] = {.lex_state = 11}, [2617] = {.lex_state = 7}, - [2618] = {.lex_state = 11}, - [2619] = {.lex_state = 11}, - [2620] = {.lex_state = 11}, + [2618] = {.lex_state = 7}, + [2619] = {.lex_state = 7}, + [2620] = {.lex_state = 7}, [2621] = {.lex_state = 7}, [2622] = {.lex_state = 7}, - [2623] = {.lex_state = 7}, + [2623] = {.lex_state = 15}, [2624] = {.lex_state = 7}, - [2625] = {.lex_state = 5}, + [2625] = {.lex_state = 7}, [2626] = {.lex_state = 7}, [2627] = {.lex_state = 7}, - [2628] = {.lex_state = 7}, - [2629] = {.lex_state = 7}, - [2630] = {.lex_state = 7}, - [2631] = {.lex_state = 7}, + [2628] = {.lex_state = 11}, + [2629] = {.lex_state = 11}, + [2630] = {.lex_state = 11}, + [2631] = {.lex_state = 11}, [2632] = {.lex_state = 7}, [2633] = {.lex_state = 7}, - [2634] = {.lex_state = 7}, + [2634] = {.lex_state = 11}, [2635] = {.lex_state = 11}, [2636] = {.lex_state = 11}, [2637] = {.lex_state = 11}, [2638] = {.lex_state = 11}, [2639] = {.lex_state = 7}, - [2640] = {.lex_state = 11}, + [2640] = {.lex_state = 7}, [2641] = {.lex_state = 11}, - [2642] = {.lex_state = 7}, - [2643] = {.lex_state = 7}, - [2644] = {.lex_state = 7}, - [2645] = {.lex_state = 7}, - [2646] = {.lex_state = 11}, - [2647] = {.lex_state = 7}, + [2642] = {.lex_state = 5}, + [2643] = {.lex_state = 11}, + [2644] = {.lex_state = 5}, + [2645] = {.lex_state = 11}, + [2646] = {.lex_state = 5}, + [2647] = {.lex_state = 11}, [2648] = {.lex_state = 11}, [2649] = {.lex_state = 11}, [2650] = {.lex_state = 11}, [2651] = {.lex_state = 11}, - [2652] = {.lex_state = 7}, - [2653] = {.lex_state = 15}, - [2654] = {.lex_state = 5}, - [2655] = {.lex_state = 5}, + [2652] = {.lex_state = 11}, + [2653] = {.lex_state = 11}, + [2654] = {.lex_state = 11}, + [2655] = {.lex_state = 11}, [2656] = {.lex_state = 11}, - [2657] = {.lex_state = 5}, - [2658] = {.lex_state = 7}, - [2659] = {.lex_state = 7}, - [2660] = {.lex_state = 7}, + [2657] = {.lex_state = 11}, + [2658] = {.lex_state = 11}, + [2659] = {.lex_state = 11}, + [2660] = {.lex_state = 11}, [2661] = {.lex_state = 11}, [2662] = {.lex_state = 11}, [2663] = {.lex_state = 11}, - [2664] = {.lex_state = 5}, + [2664] = {.lex_state = 7}, [2665] = {.lex_state = 11}, - [2666] = {.lex_state = 11}, - [2667] = {.lex_state = 11}, - [2668] = {.lex_state = 5}, + [2666] = {.lex_state = 5}, + [2667] = {.lex_state = 5}, + [2668] = {.lex_state = 11}, [2669] = {.lex_state = 11}, - [2670] = {.lex_state = 5}, + [2670] = {.lex_state = 11}, [2671] = {.lex_state = 11}, - [2672] = {.lex_state = 7}, - [2673] = {.lex_state = 11}, - [2674] = {.lex_state = 11}, + [2672] = {.lex_state = 11}, + [2673] = {.lex_state = 7}, + [2674] = {.lex_state = 5}, [2675] = {.lex_state = 11}, - [2676] = {.lex_state = 15}, + [2676] = {.lex_state = 11}, [2677] = {.lex_state = 11}, - [2678] = {.lex_state = 11}, - [2679] = {.lex_state = 7}, + [2678] = {.lex_state = 7}, + [2679] = {.lex_state = 11}, [2680] = {.lex_state = 11}, [2681] = {.lex_state = 11}, - [2682] = {.lex_state = 11}, - [2683] = {.lex_state = 5}, + [2682] = {.lex_state = 7}, + [2683] = {.lex_state = 11}, [2684] = {.lex_state = 7}, [2685] = {.lex_state = 7}, - [2686] = {.lex_state = 11}, - [2687] = {.lex_state = 11}, + [2686] = {.lex_state = 7}, + [2687] = {.lex_state = 15}, [2688] = {.lex_state = 11}, [2689] = {.lex_state = 11}, [2690] = {.lex_state = 7}, - [2691] = {.lex_state = 7}, - [2692] = {.lex_state = 5}, + [2691] = {.lex_state = 11}, + [2692] = {.lex_state = 11}, [2693] = {.lex_state = 11}, [2694] = {.lex_state = 11}, - [2695] = {.lex_state = 11}, - [2696] = {.lex_state = 11}, + [2695] = {.lex_state = 5}, + [2696] = {.lex_state = 5}, [2697] = {.lex_state = 11}, - [2698] = {.lex_state = 7}, - [2699] = {.lex_state = 7}, - [2700] = {.lex_state = 5}, - [2701] = {.lex_state = 5}, + [2698] = {.lex_state = 11}, + [2699] = {.lex_state = 11}, + [2700] = {.lex_state = 7}, + [2701] = {.lex_state = 7}, [2702] = {.lex_state = 11}, - [2703] = {.lex_state = 7}, + [2703] = {.lex_state = 11}, [2704] = {.lex_state = 11}, - [2705] = {.lex_state = 7}, + [2705] = {.lex_state = 11}, [2706] = {.lex_state = 7}, - [2707] = {.lex_state = 7}, - [2708] = {.lex_state = 7}, - [2709] = {.lex_state = 11}, - [2710] = {.lex_state = 5}, - [2711] = {.lex_state = 11}, - [2712] = {.lex_state = 11}, + [2707] = {.lex_state = 11}, + [2708] = {.lex_state = 5}, + [2709] = {.lex_state = 7}, + [2710] = {.lex_state = 7}, + [2711] = {.lex_state = 7}, + [2712] = {.lex_state = 7}, [2713] = {.lex_state = 7}, [2714] = {.lex_state = 11}, - [2715] = {.lex_state = 7}, - [2716] = {.lex_state = 11}, - [2717] = {.lex_state = 5}, - [2718] = {.lex_state = 11}, - [2719] = {.lex_state = 7}, - [2720] = {.lex_state = 7}, - [2721] = {.lex_state = 11}, - [2722] = {.lex_state = 11}, - [2723] = {.lex_state = 7}, + [2715] = {.lex_state = 11}, + [2716] = {.lex_state = 7}, + [2717] = {.lex_state = 7}, + [2718] = {.lex_state = 7}, + [2719] = {.lex_state = 5}, + [2720] = {.lex_state = 5}, + [2721] = {.lex_state = 7}, + [2722] = {.lex_state = 5}, + [2723] = {.lex_state = 11}, [2724] = {.lex_state = 11}, [2725] = {.lex_state = 11}, [2726] = {.lex_state = 11}, - [2727] = {.lex_state = 11}, + [2727] = {.lex_state = 7}, [2728] = {.lex_state = 11}, - [2729] = {.lex_state = 7}, + [2729] = {.lex_state = 11}, [2730] = {.lex_state = 11}, - [2731] = {.lex_state = 11}, + [2731] = {.lex_state = 7}, [2732] = {.lex_state = 11}, [2733] = {.lex_state = 11}, [2734] = {.lex_state = 11}, - [2735] = {.lex_state = 7}, + [2735] = {.lex_state = 11}, [2736] = {.lex_state = 11}, [2737] = {.lex_state = 11}, [2738] = {.lex_state = 11}, [2739] = {.lex_state = 11}, - [2740] = {.lex_state = 11}, - [2741] = {.lex_state = 7}, - [2742] = {.lex_state = 7}, - [2743] = {.lex_state = 7}, - [2744] = {.lex_state = 7}, + [2740] = {.lex_state = 5}, + [2741] = {.lex_state = 11}, + [2742] = {.lex_state = 11}, + [2743] = {.lex_state = 11}, + [2744] = {.lex_state = 11}, [2745] = {.lex_state = 7}, - [2746] = {.lex_state = 11}, - [2747] = {.lex_state = 11}, + [2746] = {.lex_state = 15}, + [2747] = {.lex_state = 5}, [2748] = {.lex_state = 11}, - [2749] = {.lex_state = 15}, + [2749] = {.lex_state = 7}, [2750] = {.lex_state = 11}, - [2751] = {.lex_state = 7}, + [2751] = {.lex_state = 11}, [2752] = {.lex_state = 11}, [2753] = {.lex_state = 11}, [2754] = {.lex_state = 11}, [2755] = {.lex_state = 11}, - [2756] = {.lex_state = 5}, - [2757] = {.lex_state = 11}, - [2758] = {.lex_state = 11}, - [2759] = {.lex_state = 5}, - [2760] = {.lex_state = 11}, - [2761] = {.lex_state = 11}, + [2756] = {.lex_state = 7}, + [2757] = {.lex_state = 5}, + [2758] = {.lex_state = 7}, + [2759] = {.lex_state = 7}, + [2760] = {.lex_state = 7}, + [2761] = {.lex_state = 7}, [2762] = {.lex_state = 11}, - [2763] = {.lex_state = 11}, + [2763] = {.lex_state = 7}, [2764] = {.lex_state = 11}, - [2765] = {.lex_state = 81}, + [2765] = {.lex_state = 7}, [2766] = {.lex_state = 11}, [2767] = {.lex_state = 7}, - [2768] = {.lex_state = 11}, - [2769] = {.lex_state = 11}, + [2768] = {.lex_state = 7}, + [2769] = {.lex_state = 7}, [2770] = {.lex_state = 11}, - [2771] = {.lex_state = 11}, - [2772] = {.lex_state = 11}, - [2773] = {.lex_state = 11}, - [2774] = {.lex_state = 11}, - [2775] = {.lex_state = 11}, + [2771] = {.lex_state = 7}, + [2772] = {.lex_state = 7}, + [2773] = {.lex_state = 7}, + [2774] = {.lex_state = 7}, + [2775] = {.lex_state = 15}, [2776] = {.lex_state = 7}, - [2777] = {.lex_state = 15}, - [2778] = {.lex_state = 7}, - [2779] = {.lex_state = 11}, - [2780] = {.lex_state = 15}, - [2781] = {.lex_state = 15}, - [2782] = {.lex_state = 15}, - [2783] = {.lex_state = 15}, - [2784] = {.lex_state = 15}, - [2785] = {.lex_state = 15}, - [2786] = {.lex_state = 15}, + [2777] = {.lex_state = 5}, + [2778] = {.lex_state = 5}, + [2779] = {.lex_state = 7}, + [2780] = {.lex_state = 12}, + [2781] = {.lex_state = 12}, + [2782] = {.lex_state = 7}, + [2783] = {.lex_state = 12}, + [2784] = {.lex_state = 12}, + [2785] = {.lex_state = 12}, + [2786] = {.lex_state = 12}, [2787] = {.lex_state = 15}, [2788] = {.lex_state = 15}, - [2789] = {.lex_state = 15}, - [2790] = {.lex_state = 15}, - [2791] = {.lex_state = 15}, + [2789] = {.lex_state = 12}, + [2790] = {.lex_state = 12}, + [2791] = {.lex_state = 12}, [2792] = {.lex_state = 15}, - [2793] = {.lex_state = 15}, - [2794] = {.lex_state = 15}, + [2793] = {.lex_state = 12}, + [2794] = {.lex_state = 12}, [2795] = {.lex_state = 15}, - [2796] = {.lex_state = 15}, - [2797] = {.lex_state = 15}, - [2798] = {.lex_state = 7}, - [2799] = {.lex_state = 15}, - [2800] = {.lex_state = 15}, + [2796] = {.lex_state = 12}, + [2797] = {.lex_state = 12}, + [2798] = {.lex_state = 15}, + [2799] = {.lex_state = 12}, + [2800] = {.lex_state = 12}, [2801] = {.lex_state = 15}, - [2802] = {.lex_state = 7}, + [2802] = {.lex_state = 12}, [2803] = {.lex_state = 15}, - [2804] = {.lex_state = 15}, - [2805] = {.lex_state = 15}, - [2806] = {.lex_state = 5}, - [2807] = {.lex_state = 7}, - [2808] = {.lex_state = 7}, - [2809] = {.lex_state = 15}, + [2804] = {.lex_state = 12}, + [2805] = {.lex_state = 12}, + [2806] = {.lex_state = 12}, + [2807] = {.lex_state = 12}, + [2808] = {.lex_state = 15}, + [2809] = {.lex_state = 12}, [2810] = {.lex_state = 12}, - [2811] = {.lex_state = 12}, - [2812] = {.lex_state = 12}, + [2811] = {.lex_state = 15}, + [2812] = {.lex_state = 15}, [2813] = {.lex_state = 12}, [2814] = {.lex_state = 12}, [2815] = {.lex_state = 12}, @@ -15753,8 +9303,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2818] = {.lex_state = 12}, [2819] = {.lex_state = 12}, [2820] = {.lex_state = 12}, - [2821] = {.lex_state = 12}, - [2822] = {.lex_state = 12}, + [2821] = {.lex_state = 15}, + [2822] = {.lex_state = 15}, [2823] = {.lex_state = 12}, [2824] = {.lex_state = 12}, [2825] = {.lex_state = 12}, @@ -15763,21 +9313,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2828] = {.lex_state = 12}, [2829] = {.lex_state = 12}, [2830] = {.lex_state = 12}, - [2831] = {.lex_state = 7}, + [2831] = {.lex_state = 12}, [2832] = {.lex_state = 12}, - [2833] = {.lex_state = 12}, - [2834] = {.lex_state = 12}, + [2833] = {.lex_state = 15}, + [2834] = {.lex_state = 15}, [2835] = {.lex_state = 12}, [2836] = {.lex_state = 12}, - [2837] = {.lex_state = 12}, + [2837] = {.lex_state = 15}, [2838] = {.lex_state = 12}, - [2839] = {.lex_state = 12}, + [2839] = {.lex_state = 15}, [2840] = {.lex_state = 12}, [2841] = {.lex_state = 12}, [2842] = {.lex_state = 12}, - [2843] = {.lex_state = 7}, + [2843] = {.lex_state = 12}, [2844] = {.lex_state = 12}, - [2845] = {.lex_state = 12}, + [2845] = {.lex_state = 15}, [2846] = {.lex_state = 12}, [2847] = {.lex_state = 12}, [2848] = {.lex_state = 12}, @@ -15785,49 +9335,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2850] = {.lex_state = 12}, [2851] = {.lex_state = 12}, [2852] = {.lex_state = 12}, - [2853] = {.lex_state = 7}, + [2853] = {.lex_state = 12}, [2854] = {.lex_state = 12}, [2855] = {.lex_state = 12}, [2856] = {.lex_state = 12}, - [2857] = {.lex_state = 12}, - [2858] = {.lex_state = 12}, + [2857] = {.lex_state = 15}, + [2858] = {.lex_state = 15}, [2859] = {.lex_state = 12}, [2860] = {.lex_state = 12}, [2861] = {.lex_state = 12}, [2862] = {.lex_state = 12}, - [2863] = {.lex_state = 12}, + [2863] = {.lex_state = 5}, [2864] = {.lex_state = 12}, [2865] = {.lex_state = 12}, - [2866] = {.lex_state = 12}, + [2866] = {.lex_state = 15}, [2867] = {.lex_state = 12}, [2868] = {.lex_state = 12}, [2869] = {.lex_state = 12}, [2870] = {.lex_state = 12}, - [2871] = {.lex_state = 12}, - [2872] = {.lex_state = 12}, - [2873] = {.lex_state = 12}, - [2874] = {.lex_state = 12}, + [2871] = {.lex_state = 15}, + [2872] = {.lex_state = 7}, + [2873] = {.lex_state = 15}, + [2874] = {.lex_state = 15}, [2875] = {.lex_state = 12}, [2876] = {.lex_state = 12}, [2877] = {.lex_state = 12}, [2878] = {.lex_state = 12}, - [2879] = {.lex_state = 12}, - [2880] = {.lex_state = 12}, + [2879] = {.lex_state = 15}, + [2880] = {.lex_state = 7}, [2881] = {.lex_state = 12}, [2882] = {.lex_state = 12}, - [2883] = {.lex_state = 12}, + [2883] = {.lex_state = 7}, [2884] = {.lex_state = 12}, [2885] = {.lex_state = 12}, [2886] = {.lex_state = 12}, [2887] = {.lex_state = 12}, [2888] = {.lex_state = 12}, [2889] = {.lex_state = 12}, - [2890] = {.lex_state = 12}, + [2890] = {.lex_state = 15}, [2891] = {.lex_state = 12}, [2892] = {.lex_state = 12}, - [2893] = {.lex_state = 12}, - [2894] = {.lex_state = 12}, - [2895] = {.lex_state = 12}, + [2893] = {.lex_state = 7}, + [2894] = {.lex_state = 7}, + [2895] = {.lex_state = 7}, [2896] = {.lex_state = 81}, [2897] = {.lex_state = 81}, [2898] = {.lex_state = 81}, @@ -15955,10 +9505,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3020] = {.lex_state = 81}, [3021] = {.lex_state = 81}, [3022] = {.lex_state = 81}, - [3023] = {.lex_state = 81}, + [3023] = {.lex_state = 12}, [3024] = {.lex_state = 81}, [3025] = {.lex_state = 81}, - [3026] = {.lex_state = 12}, + [3026] = {.lex_state = 81}, [3027] = {.lex_state = 81}, [3028] = {.lex_state = 81}, [3029] = {.lex_state = 81}, @@ -15969,7 +9519,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3034] = {.lex_state = 81}, [3035] = {.lex_state = 81}, [3036] = {.lex_state = 81}, - [3037] = {.lex_state = 12}, + [3037] = {.lex_state = 81}, [3038] = {.lex_state = 81}, [3039] = {.lex_state = 81}, [3040] = {.lex_state = 81}, @@ -15985,21 +9535,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3050] = {.lex_state = 81}, [3051] = {.lex_state = 81}, [3052] = {.lex_state = 81}, - [3053] = {.lex_state = 81}, - [3054] = {.lex_state = 81}, + [3053] = {.lex_state = 12}, + [3054] = {.lex_state = 12}, [3055] = {.lex_state = 81}, - [3056] = {.lex_state = 12}, - [3057] = {.lex_state = 81}, + [3056] = {.lex_state = 81}, + [3057] = {.lex_state = 12}, [3058] = {.lex_state = 81}, [3059] = {.lex_state = 81}, - [3060] = {.lex_state = 12}, + [3060] = {.lex_state = 81}, [3061] = {.lex_state = 81}, [3062] = {.lex_state = 81}, [3063] = {.lex_state = 81}, - [3064] = {.lex_state = 81}, + [3064] = {.lex_state = 12}, [3065] = {.lex_state = 81}, - [3066] = {.lex_state = 12}, - [3067] = {.lex_state = 81}, + [3066] = {.lex_state = 81}, + [3067] = {.lex_state = 12}, [3068] = {.lex_state = 81}, [3069] = {.lex_state = 81}, [3070] = {.lex_state = 81}, @@ -16018,14 +9568,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3083] = {.lex_state = 81}, [3084] = {.lex_state = 81}, [3085] = {.lex_state = 81}, - [3086] = {.lex_state = 12}, + [3086] = {.lex_state = 81}, [3087] = {.lex_state = 81}, [3088] = {.lex_state = 81}, [3089] = {.lex_state = 81}, [3090] = {.lex_state = 81}, [3091] = {.lex_state = 81}, [3092] = {.lex_state = 81}, - [3093] = {.lex_state = 81}, + [3093] = {.lex_state = 15}, [3094] = {.lex_state = 81}, [3095] = {.lex_state = 81}, [3096] = {.lex_state = 81}, @@ -16043,7 +9593,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3108] = {.lex_state = 81}, [3109] = {.lex_state = 81}, [3110] = {.lex_state = 81}, - [3111] = {.lex_state = 15}, + [3111] = {.lex_state = 81}, [3112] = {.lex_state = 81}, [3113] = {.lex_state = 81}, [3114] = {.lex_state = 81}, @@ -16057,7 +9607,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3122] = {.lex_state = 81}, [3123] = {.lex_state = 81}, [3124] = {.lex_state = 81}, - [3125] = {.lex_state = 15}, + [3125] = {.lex_state = 81}, [3126] = {.lex_state = 81}, [3127] = {.lex_state = 81}, [3128] = {.lex_state = 81}, @@ -16078,7 +9628,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3143] = {.lex_state = 81}, [3144] = {.lex_state = 81}, [3145] = {.lex_state = 81}, - [3146] = {.lex_state = 81}, + [3146] = {.lex_state = 15}, [3147] = {.lex_state = 81}, [3148] = {.lex_state = 81}, [3149] = {.lex_state = 81}, @@ -16087,7 +9637,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3152] = {.lex_state = 81}, [3153] = {.lex_state = 81}, [3154] = {.lex_state = 81}, - [3155] = {.lex_state = 81}, + [3155] = {.lex_state = 15}, [3156] = {.lex_state = 81}, [3157] = {.lex_state = 81}, [3158] = {.lex_state = 81}, @@ -16171,9 +9721,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3236] = {.lex_state = 81}, [3237] = {.lex_state = 81}, [3238] = {.lex_state = 81}, - [3239] = {.lex_state = 15}, + [3239] = {.lex_state = 81}, [3240] = {.lex_state = 81}, - [3241] = {.lex_state = 81}, + [3241] = {.lex_state = 15}, [3242] = {.lex_state = 81}, [3243] = {.lex_state = 81}, [3244] = {.lex_state = 81}, @@ -16192,13 +9742,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3257] = {.lex_state = 81}, [3258] = {.lex_state = 81}, [3259] = {.lex_state = 81}, - [3260] = {.lex_state = 81}, + [3260] = {.lex_state = 15}, [3261] = {.lex_state = 81}, [3262] = {.lex_state = 81}, [3263] = {.lex_state = 81}, [3264] = {.lex_state = 81}, [3265] = {.lex_state = 81}, - [3266] = {.lex_state = 15}, + [3266] = {.lex_state = 81}, [3267] = {.lex_state = 81}, [3268] = {.lex_state = 81}, [3269] = {.lex_state = 81}, @@ -16216,7 +9766,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3281] = {.lex_state = 81}, [3282] = {.lex_state = 81}, [3283] = {.lex_state = 81}, - [3284] = {.lex_state = 15}, + [3284] = {.lex_state = 81}, [3285] = {.lex_state = 81}, [3286] = {.lex_state = 81}, [3287] = {.lex_state = 81}, @@ -16240,7 +9790,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3305] = {.lex_state = 81}, [3306] = {.lex_state = 81}, [3307] = {.lex_state = 81}, - [3308] = {.lex_state = 81}, + [3308] = {.lex_state = 15}, [3309] = {.lex_state = 81}, [3310] = {.lex_state = 81}, [3311] = {.lex_state = 81}, @@ -16278,11 +9828,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3343] = {.lex_state = 81}, [3344] = {.lex_state = 81}, [3345] = {.lex_state = 81}, - [3346] = {.lex_state = 15}, + [3346] = {.lex_state = 81}, [3347] = {.lex_state = 81}, - [3348] = {.lex_state = 81}, + [3348] = {.lex_state = 15}, [3349] = {.lex_state = 81}, - [3350] = {.lex_state = 15}, + [3350] = {.lex_state = 81}, [3351] = {.lex_state = 81}, [3352] = {.lex_state = 81}, [3353] = {.lex_state = 81}, @@ -16297,10 +9847,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3362] = {.lex_state = 81}, [3363] = {.lex_state = 81}, [3364] = {.lex_state = 81}, - [3365] = {.lex_state = 81}, + [3365] = {.lex_state = 15}, [3366] = {.lex_state = 81}, [3367] = {.lex_state = 81}, - [3368] = {.lex_state = 15}, + [3368] = {.lex_state = 81}, [3369] = {.lex_state = 81}, [3370] = {.lex_state = 81}, [3371] = {.lex_state = 81}, @@ -16352,7 +9902,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3417] = {.lex_state = 81}, [3418] = {.lex_state = 81}, [3419] = {.lex_state = 81}, - [3420] = {.lex_state = 15}, + [3420] = {.lex_state = 81}, [3421] = {.lex_state = 81}, [3422] = {.lex_state = 81}, [3423] = {.lex_state = 81}, @@ -16360,37 +9910,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3425] = {.lex_state = 81}, [3426] = {.lex_state = 81}, [3427] = {.lex_state = 81}, - [3428] = {.lex_state = 81}, + [3428] = {.lex_state = 15}, [3429] = {.lex_state = 15}, - [3430] = {.lex_state = 15}, + [3430] = {.lex_state = 81}, [3431] = {.lex_state = 81}, [3432] = {.lex_state = 81}, [3433] = {.lex_state = 81}, - [3434] = {.lex_state = 81}, - [3435] = {.lex_state = 18}, + [3434] = {.lex_state = 15}, + [3435] = {.lex_state = 81}, [3436] = {.lex_state = 81}, [3437] = {.lex_state = 81}, - [3438] = {.lex_state = 18}, - [3439] = {.lex_state = 81}, - [3440] = {.lex_state = 18}, - [3441] = {.lex_state = 15}, - [3442] = {.lex_state = 81}, + [3438] = {.lex_state = 81}, + [3439] = {.lex_state = 18}, + [3440] = {.lex_state = 81}, + [3441] = {.lex_state = 81}, + [3442] = {.lex_state = 18}, [3443] = {.lex_state = 81}, [3444] = {.lex_state = 81}, [3445] = {.lex_state = 81}, [3446] = {.lex_state = 18}, - [3447] = {.lex_state = 81}, - [3448] = {.lex_state = 18}, - [3449] = {.lex_state = 81}, - [3450] = {.lex_state = 81}, - [3451] = {.lex_state = 81}, + [3447] = {.lex_state = 18}, + [3448] = {.lex_state = 81}, + [3449] = {.lex_state = 15}, + [3450] = {.lex_state = 18}, + [3451] = {.lex_state = 18}, [3452] = {.lex_state = 81}, - [3453] = {.lex_state = 18}, + [3453] = {.lex_state = 81}, [3454] = {.lex_state = 81}, [3455] = {.lex_state = 81}, [3456] = {.lex_state = 15}, [3457] = {.lex_state = 15}, - [3458] = {.lex_state = 15}, + [3458] = {.lex_state = 18}, [3459] = {.lex_state = 15}, [3460] = {.lex_state = 15}, [3461] = {.lex_state = 15}, @@ -16399,13 +9949,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3464] = {.lex_state = 15}, [3465] = {.lex_state = 15}, [3466] = {.lex_state = 18}, - [3467] = {.lex_state = 15}, - [3468] = {.lex_state = 18}, - [3469] = {.lex_state = 18}, - [3470] = {.lex_state = 18}, + [3467] = {.lex_state = 18}, + [3468] = {.lex_state = 15}, + [3469] = {.lex_state = 15}, + [3470] = {.lex_state = 81}, [3471] = {.lex_state = 81}, [3472] = {.lex_state = 81}, - [3473] = {.lex_state = 81}, + [3473] = {.lex_state = 18}, [3474] = {.lex_state = 81}, [3475] = {.lex_state = 81}, [3476] = {.lex_state = 81}, @@ -16465,15 +10015,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3530] = {.lex_state = 15}, [3531] = {.lex_state = 81}, [3532] = {.lex_state = 15}, - [3533] = {.lex_state = 15}, - [3534] = {.lex_state = 81}, - [3535] = {.lex_state = 15}, - [3536] = {.lex_state = 81}, + [3533] = {.lex_state = 81}, + [3534] = {.lex_state = 15}, + [3535] = {.lex_state = 81}, + [3536] = {.lex_state = 15}, [3537] = {.lex_state = 81}, - [3538] = {.lex_state = 81}, + [3538] = {.lex_state = 15}, [3539] = {.lex_state = 81}, [3540] = {.lex_state = 81}, - [3541] = {.lex_state = 15}, + [3541] = {.lex_state = 81}, [3542] = {.lex_state = 81}, [3543] = {.lex_state = 81}, [3544] = {.lex_state = 15}, @@ -16516,58 +10066,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3581] = {.lex_state = 15}, [3582] = {.lex_state = 15}, [3583] = {.lex_state = 15}, - [3584] = {.lex_state = 15}, + [3584] = {.lex_state = 40}, [3585] = {.lex_state = 15}, [3586] = {.lex_state = 15}, [3587] = {.lex_state = 15}, [3588] = {.lex_state = 15}, - [3589] = {.lex_state = 15}, - [3590] = {.lex_state = 40}, - [3591] = {.lex_state = 40}, + [3589] = {.lex_state = 40}, + [3590] = {.lex_state = 15}, + [3591] = {.lex_state = 15}, [3592] = {.lex_state = 15}, [3593] = {.lex_state = 15}, [3594] = {.lex_state = 15}, [3595] = {.lex_state = 15}, - [3596] = {.lex_state = 40}, + [3596] = {.lex_state = 15}, [3597] = {.lex_state = 15}, [3598] = {.lex_state = 15}, [3599] = {.lex_state = 15}, [3600] = {.lex_state = 15}, - [3601] = {.lex_state = 15}, + [3601] = {.lex_state = 40}, [3602] = {.lex_state = 15}, [3603] = {.lex_state = 15}, - [3604] = {.lex_state = 15}, + [3604] = {.lex_state = 40}, [3605] = {.lex_state = 40}, [3606] = {.lex_state = 15}, [3607] = {.lex_state = 40}, [3608] = {.lex_state = 15}, [3609] = {.lex_state = 15}, - [3610] = {.lex_state = 40}, + [3610] = {.lex_state = 15}, [3611] = {.lex_state = 15}, - [3612] = {.lex_state = 16}, - [3613] = {.lex_state = 40}, + [3612] = {.lex_state = 15}, + [3613] = {.lex_state = 15}, [3614] = {.lex_state = 15}, - [3615] = {.lex_state = 15}, - [3616] = {.lex_state = 15}, + [3615] = {.lex_state = 16}, + [3616] = {.lex_state = 16}, [3617] = {.lex_state = 15}, [3618] = {.lex_state = 15}, [3619] = {.lex_state = 15}, [3620] = {.lex_state = 15}, - [3621] = {.lex_state = 15}, + [3621] = {.lex_state = 40}, [3622] = {.lex_state = 15}, [3623] = {.lex_state = 15}, [3624] = {.lex_state = 15}, [3625] = {.lex_state = 15}, [3626] = {.lex_state = 15}, [3627] = {.lex_state = 15}, - [3628] = {.lex_state = 15}, + [3628] = {.lex_state = 16}, [3629] = {.lex_state = 15}, [3630] = {.lex_state = 15}, [3631] = {.lex_state = 15}, [3632] = {.lex_state = 15}, [3633] = {.lex_state = 15}, [3634] = {.lex_state = 15}, - [3635] = {.lex_state = 16}, + [3635] = {.lex_state = 15}, [3636] = {.lex_state = 15}, [3637] = {.lex_state = 15}, [3638] = {.lex_state = 15}, @@ -16576,7 +10126,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3641] = {.lex_state = 15}, [3642] = {.lex_state = 15}, [3643] = {.lex_state = 15}, - [3644] = {.lex_state = 16}, + [3644] = {.lex_state = 15}, [3645] = {.lex_state = 15}, [3646] = {.lex_state = 15}, [3647] = {.lex_state = 15}, @@ -16585,506 +10135,506 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3650] = {.lex_state = 15}, [3651] = {.lex_state = 15}, [3652] = {.lex_state = 15}, - [3653] = {.lex_state = 15}, - [3654] = {.lex_state = 16}, + [3653] = {.lex_state = 16}, + [3654] = {.lex_state = 15}, [3655] = {.lex_state = 15}, [3656] = {.lex_state = 15}, - [3657] = {.lex_state = 15}, + [3657] = {.lex_state = 16}, [3658] = {.lex_state = 15}, - [3659] = {.lex_state = 16}, + [3659] = {.lex_state = 15}, [3660] = {.lex_state = 15}, [3661] = {.lex_state = 16}, [3662] = {.lex_state = 15}, [3663] = {.lex_state = 15}, [3664] = {.lex_state = 15}, - [3665] = {.lex_state = 16}, - [3666] = {.lex_state = 15}, + [3665] = {.lex_state = 15}, + [3666] = {.lex_state = 16}, [3667] = {.lex_state = 15}, [3668] = {.lex_state = 15}, - [3669] = {.lex_state = 15}, + [3669] = {.lex_state = 16}, [3670] = {.lex_state = 15}, - [3671] = {.lex_state = 15}, + [3671] = {.lex_state = 81}, [3672] = {.lex_state = 15}, [3673] = {.lex_state = 15}, [3674] = {.lex_state = 15}, - [3675] = {.lex_state = 0, .external_lex_state = 2}, + [3675] = {.lex_state = 15}, [3676] = {.lex_state = 15}, [3677] = {.lex_state = 15}, [3678] = {.lex_state = 15}, [3679] = {.lex_state = 15}, - [3680] = {.lex_state = 81}, + [3680] = {.lex_state = 15}, [3681] = {.lex_state = 15}, [3682] = {.lex_state = 15}, [3683] = {.lex_state = 15}, - [3684] = {.lex_state = 15}, - [3685] = {.lex_state = 23}, + [3684] = {.lex_state = 16}, + [3685] = {.lex_state = 15}, [3686] = {.lex_state = 15}, [3687] = {.lex_state = 15}, [3688] = {.lex_state = 23}, - [3689] = {.lex_state = 15}, - [3690] = {.lex_state = 15}, + [3689] = {.lex_state = 0, .external_lex_state = 2}, + [3690] = {.lex_state = 23}, [3691] = {.lex_state = 15}, [3692] = {.lex_state = 15}, - [3693] = {.lex_state = 23}, - [3694] = {.lex_state = 15}, + [3693] = {.lex_state = 15}, + [3694] = {.lex_state = 0, .external_lex_state = 2}, [3695] = {.lex_state = 15}, [3696] = {.lex_state = 15}, - [3697] = {.lex_state = 15}, + [3697] = {.lex_state = 16}, [3698] = {.lex_state = 15}, [3699] = {.lex_state = 15}, [3700] = {.lex_state = 15}, [3701] = {.lex_state = 15}, [3702] = {.lex_state = 15}, [3703] = {.lex_state = 15}, - [3704] = {.lex_state = 16}, + [3704] = {.lex_state = 15}, [3705] = {.lex_state = 15}, - [3706] = {.lex_state = 16}, - [3707] = {.lex_state = 23}, + [3706] = {.lex_state = 15}, + [3707] = {.lex_state = 16}, [3708] = {.lex_state = 15}, - [3709] = {.lex_state = 16}, + [3709] = {.lex_state = 15}, [3710] = {.lex_state = 15}, [3711] = {.lex_state = 15}, - [3712] = {.lex_state = 16}, + [3712] = {.lex_state = 15}, [3713] = {.lex_state = 15}, - [3714] = {.lex_state = 15}, + [3714] = {.lex_state = 16}, [3715] = {.lex_state = 15}, [3716] = {.lex_state = 15}, [3717] = {.lex_state = 15}, - [3718] = {.lex_state = 23}, + [3718] = {.lex_state = 15}, [3719] = {.lex_state = 15}, - [3720] = {.lex_state = 16}, + [3720] = {.lex_state = 15}, [3721] = {.lex_state = 16}, - [3722] = {.lex_state = 15}, + [3722] = {.lex_state = 16}, [3723] = {.lex_state = 15}, [3724] = {.lex_state = 15}, [3725] = {.lex_state = 15}, - [3726] = {.lex_state = 15}, + [3726] = {.lex_state = 16}, [3727] = {.lex_state = 15}, [3728] = {.lex_state = 15}, [3729] = {.lex_state = 15}, [3730] = {.lex_state = 15}, [3731] = {.lex_state = 15}, [3732] = {.lex_state = 15}, - [3733] = {.lex_state = 0}, + [3733] = {.lex_state = 16}, [3734] = {.lex_state = 15}, - [3735] = {.lex_state = 0, .external_lex_state = 2}, - [3736] = {.lex_state = 15}, - [3737] = {.lex_state = 16}, - [3738] = {.lex_state = 15}, + [3735] = {.lex_state = 15}, + [3736] = {.lex_state = 23}, + [3737] = {.lex_state = 15}, + [3738] = {.lex_state = 0}, [3739] = {.lex_state = 15}, [3740] = {.lex_state = 15}, [3741] = {.lex_state = 15}, [3742] = {.lex_state = 15}, [3743] = {.lex_state = 15}, - [3744] = {.lex_state = 16}, - [3745] = {.lex_state = 16}, - [3746] = {.lex_state = 15}, + [3744] = {.lex_state = 15}, + [3745] = {.lex_state = 15}, + [3746] = {.lex_state = 23}, [3747] = {.lex_state = 15}, - [3748] = {.lex_state = 15}, + [3748] = {.lex_state = 23}, [3749] = {.lex_state = 15}, [3750] = {.lex_state = 15}, [3751] = {.lex_state = 12}, - [3752] = {.lex_state = 16}, - [3753] = {.lex_state = 16}, + [3752] = {.lex_state = 15}, + [3753] = {.lex_state = 23}, [3754] = {.lex_state = 12}, - [3755] = {.lex_state = 12}, - [3756] = {.lex_state = 15}, + [3755] = {.lex_state = 16}, + [3756] = {.lex_state = 16}, [3757] = {.lex_state = 23}, - [3758] = {.lex_state = 16}, - [3759] = {.lex_state = 0, .external_lex_state = 3}, + [3758] = {.lex_state = 12}, + [3759] = {.lex_state = 23}, [3760] = {.lex_state = 16}, - [3761] = {.lex_state = 23}, - [3762] = {.lex_state = 15}, - [3763] = {.lex_state = 23}, - [3764] = {.lex_state = 12}, - [3765] = {.lex_state = 15}, - [3766] = {.lex_state = 23}, - [3767] = {.lex_state = 23}, - [3768] = {.lex_state = 12}, - [3769] = {.lex_state = 16}, + [3761] = {.lex_state = 0, .external_lex_state = 3}, + [3762] = {.lex_state = 16}, + [3763] = {.lex_state = 0, .external_lex_state = 3}, + [3764] = {.lex_state = 0, .external_lex_state = 3}, + [3765] = {.lex_state = 16}, + [3766] = {.lex_state = 0, .external_lex_state = 3}, + [3767] = {.lex_state = 0, .external_lex_state = 3}, + [3768] = {.lex_state = 23}, + [3769] = {.lex_state = 23}, [3770] = {.lex_state = 15}, - [3771] = {.lex_state = 16}, - [3772] = {.lex_state = 23}, - [3773] = {.lex_state = 23}, - [3774] = {.lex_state = 15}, - [3775] = {.lex_state = 15}, - [3776] = {.lex_state = 23}, - [3777] = {.lex_state = 23}, - [3778] = {.lex_state = 0, .external_lex_state = 3}, - [3779] = {.lex_state = 23}, - [3780] = {.lex_state = 23}, - [3781] = {.lex_state = 0, .external_lex_state = 3}, - [3782] = {.lex_state = 12}, - [3783] = {.lex_state = 15}, - [3784] = {.lex_state = 16}, - [3785] = {.lex_state = 0, .external_lex_state = 3}, - [3786] = {.lex_state = 0, .external_lex_state = 3}, - [3787] = {.lex_state = 15}, - [3788] = {.lex_state = 15}, - [3789] = {.lex_state = 16}, + [3771] = {.lex_state = 12}, + [3772] = {.lex_state = 15}, + [3773] = {.lex_state = 12}, + [3774] = {.lex_state = 23}, + [3775] = {.lex_state = 12}, + [3776] = {.lex_state = 16}, + [3777] = {.lex_state = 15}, + [3778] = {.lex_state = 23}, + [3779] = {.lex_state = 12}, + [3780] = {.lex_state = 15}, + [3781] = {.lex_state = 15}, + [3782] = {.lex_state = 23}, + [3783] = {.lex_state = 0, .external_lex_state = 3}, + [3784] = {.lex_state = 23}, + [3785] = {.lex_state = 15}, + [3786] = {.lex_state = 15}, + [3787] = {.lex_state = 23}, + [3788] = {.lex_state = 16}, + [3789] = {.lex_state = 0, .external_lex_state = 3}, [3790] = {.lex_state = 23}, [3791] = {.lex_state = 15}, - [3792] = {.lex_state = 15}, + [3792] = {.lex_state = 16}, [3793] = {.lex_state = 15}, - [3794] = {.lex_state = 23}, - [3795] = {.lex_state = 12}, - [3796] = {.lex_state = 15}, - [3797] = {.lex_state = 0, .external_lex_state = 3}, - [3798] = {.lex_state = 15}, - [3799] = {.lex_state = 23}, - [3800] = {.lex_state = 0, .external_lex_state = 3}, + [3794] = {.lex_state = 15}, + [3795] = {.lex_state = 23}, + [3796] = {.lex_state = 23}, + [3797] = {.lex_state = 15}, + [3798] = {.lex_state = 23}, + [3799] = {.lex_state = 15}, + [3800] = {.lex_state = 15}, [3801] = {.lex_state = 7}, [3802] = {.lex_state = 15}, [3803] = {.lex_state = 15}, - [3804] = {.lex_state = 16}, + [3804] = {.lex_state = 15}, [3805] = {.lex_state = 15}, [3806] = {.lex_state = 15}, - [3807] = {.lex_state = 15}, + [3807] = {.lex_state = 16}, [3808] = {.lex_state = 15}, [3809] = {.lex_state = 15}, - [3810] = {.lex_state = 15}, + [3810] = {.lex_state = 16}, [3811] = {.lex_state = 38}, [3812] = {.lex_state = 38}, - [3813] = {.lex_state = 15}, + [3813] = {.lex_state = 16}, [3814] = {.lex_state = 15}, [3815] = {.lex_state = 15}, - [3816] = {.lex_state = 38}, + [3816] = {.lex_state = 15}, [3817] = {.lex_state = 15}, [3818] = {.lex_state = 15}, - [3819] = {.lex_state = 15}, - [3820] = {.lex_state = 15}, - [3821] = {.lex_state = 15}, + [3819] = {.lex_state = 7}, + [3820] = {.lex_state = 38}, + [3821] = {.lex_state = 7}, [3822] = {.lex_state = 15}, [3823] = {.lex_state = 16}, - [3824] = {.lex_state = 38}, - [3825] = {.lex_state = 7}, + [3824] = {.lex_state = 16}, + [3825] = {.lex_state = 16}, [3826] = {.lex_state = 15}, [3827] = {.lex_state = 15}, [3828] = {.lex_state = 38}, [3829] = {.lex_state = 38}, [3830] = {.lex_state = 15}, [3831] = {.lex_state = 15}, - [3832] = {.lex_state = 15}, + [3832] = {.lex_state = 38}, [3833] = {.lex_state = 15}, - [3834] = {.lex_state = 16}, + [3834] = {.lex_state = 15}, [3835] = {.lex_state = 15}, [3836] = {.lex_state = 16}, - [3837] = {.lex_state = 38}, + [3837] = {.lex_state = 15}, [3838] = {.lex_state = 15}, - [3839] = {.lex_state = 16}, + [3839] = {.lex_state = 15}, [3840] = {.lex_state = 15}, [3841] = {.lex_state = 15}, [3842] = {.lex_state = 15}, [3843] = {.lex_state = 15}, - [3844] = {.lex_state = 38}, + [3844] = {.lex_state = 15}, [3845] = {.lex_state = 15}, [3846] = {.lex_state = 15}, - [3847] = {.lex_state = 38}, + [3847] = {.lex_state = 15}, [3848] = {.lex_state = 15}, [3849] = {.lex_state = 15}, [3850] = {.lex_state = 15}, - [3851] = {.lex_state = 15}, - [3852] = {.lex_state = 15}, - [3853] = {.lex_state = 38}, + [3851] = {.lex_state = 7}, + [3852] = {.lex_state = 38}, + [3853] = {.lex_state = 15}, [3854] = {.lex_state = 15}, [3855] = {.lex_state = 15}, - [3856] = {.lex_state = 38}, + [3856] = {.lex_state = 15}, [3857] = {.lex_state = 15}, [3858] = {.lex_state = 15}, - [3859] = {.lex_state = 38}, - [3860] = {.lex_state = 15}, - [3861] = {.lex_state = 15}, + [3859] = {.lex_state = 15}, + [3860] = {.lex_state = 38}, + [3861] = {.lex_state = 38}, [3862] = {.lex_state = 15}, - [3863] = {.lex_state = 16}, + [3863] = {.lex_state = 38}, [3864] = {.lex_state = 15}, - [3865] = {.lex_state = 15}, + [3865] = {.lex_state = 38}, [3866] = {.lex_state = 15}, [3867] = {.lex_state = 15}, [3868] = {.lex_state = 15}, [3869] = {.lex_state = 15}, [3870] = {.lex_state = 15}, - [3871] = {.lex_state = 38}, + [3871] = {.lex_state = 15}, [3872] = {.lex_state = 15}, [3873] = {.lex_state = 15}, - [3874] = {.lex_state = 15}, + [3874] = {.lex_state = 38}, [3875] = {.lex_state = 15}, - [3876] = {.lex_state = 15}, + [3876] = {.lex_state = 16}, [3877] = {.lex_state = 15}, - [3878] = {.lex_state = 15}, - [3879] = {.lex_state = 15}, - [3880] = {.lex_state = 15}, - [3881] = {.lex_state = 15}, + [3878] = {.lex_state = 38}, + [3879] = {.lex_state = 16}, + [3880] = {.lex_state = 16}, + [3881] = {.lex_state = 38}, [3882] = {.lex_state = 15}, - [3883] = {.lex_state = 16}, - [3884] = {.lex_state = 38}, - [3885] = {.lex_state = 16}, - [3886] = {.lex_state = 15}, + [3883] = {.lex_state = 15}, + [3884] = {.lex_state = 15}, + [3885] = {.lex_state = 15}, + [3886] = {.lex_state = 16}, [3887] = {.lex_state = 15}, - [3888] = {.lex_state = 38}, + [3888] = {.lex_state = 15}, [3889] = {.lex_state = 15}, - [3890] = {.lex_state = 15}, + [3890] = {.lex_state = 38}, [3891] = {.lex_state = 15}, - [3892] = {.lex_state = 15}, - [3893] = {.lex_state = 38}, - [3894] = {.lex_state = 15}, - [3895] = {.lex_state = 16}, - [3896] = {.lex_state = 15}, - [3897] = {.lex_state = 16}, - [3898] = {.lex_state = 16}, - [3899] = {.lex_state = 38}, - [3900] = {.lex_state = 16}, - [3901] = {.lex_state = 15}, + [3892] = {.lex_state = 16}, + [3893] = {.lex_state = 15}, + [3894] = {.lex_state = 16}, + [3895] = {.lex_state = 15}, + [3896] = {.lex_state = 16}, + [3897] = {.lex_state = 15}, + [3898] = {.lex_state = 15}, + [3899] = {.lex_state = 15}, + [3900] = {.lex_state = 38}, + [3901] = {.lex_state = 16}, [3902] = {.lex_state = 15}, [3903] = {.lex_state = 38}, - [3904] = {.lex_state = 38}, - [3905] = {.lex_state = 15}, - [3906] = {.lex_state = 15}, + [3904] = {.lex_state = 15}, + [3905] = {.lex_state = 38}, + [3906] = {.lex_state = 7}, [3907] = {.lex_state = 15}, [3908] = {.lex_state = 15}, - [3909] = {.lex_state = 16}, - [3910] = {.lex_state = 16}, - [3911] = {.lex_state = 16}, - [3912] = {.lex_state = 16}, - [3913] = {.lex_state = 16}, - [3914] = {.lex_state = 7}, + [3909] = {.lex_state = 15}, + [3910] = {.lex_state = 15}, + [3911] = {.lex_state = 38}, + [3912] = {.lex_state = 15}, + [3913] = {.lex_state = 15}, + [3914] = {.lex_state = 38}, [3915] = {.lex_state = 15}, - [3916] = {.lex_state = 38}, - [3917] = {.lex_state = 38}, + [3916] = {.lex_state = 15}, + [3917] = {.lex_state = 15}, [3918] = {.lex_state = 15}, [3919] = {.lex_state = 15}, [3920] = {.lex_state = 15}, [3921] = {.lex_state = 15}, [3922] = {.lex_state = 15}, [3923] = {.lex_state = 15}, - [3924] = {.lex_state = 16}, - [3925] = {.lex_state = 38}, + [3924] = {.lex_state = 15}, + [3925] = {.lex_state = 15}, [3926] = {.lex_state = 16}, [3927] = {.lex_state = 15}, - [3928] = {.lex_state = 38}, - [3929] = {.lex_state = 15}, + [3928] = {.lex_state = 15}, + [3929] = {.lex_state = 38}, [3930] = {.lex_state = 15}, [3931] = {.lex_state = 15}, - [3932] = {.lex_state = 15}, - [3933] = {.lex_state = 15}, + [3932] = {.lex_state = 38}, + [3933] = {.lex_state = 16}, [3934] = {.lex_state = 15}, - [3935] = {.lex_state = 15}, + [3935] = {.lex_state = 16}, [3936] = {.lex_state = 16}, [3937] = {.lex_state = 15}, - [3938] = {.lex_state = 16}, - [3939] = {.lex_state = 38}, - [3940] = {.lex_state = 38}, - [3941] = {.lex_state = 38}, + [3938] = {.lex_state = 15}, + [3939] = {.lex_state = 16}, + [3940] = {.lex_state = 15}, + [3941] = {.lex_state = 15}, [3942] = {.lex_state = 38}, [3943] = {.lex_state = 15}, - [3944] = {.lex_state = 38}, - [3945] = {.lex_state = 16}, - [3946] = {.lex_state = 7}, + [3944] = {.lex_state = 15}, + [3945] = {.lex_state = 15}, + [3946] = {.lex_state = 15}, [3947] = {.lex_state = 15}, - [3948] = {.lex_state = 15}, + [3948] = {.lex_state = 38}, [3949] = {.lex_state = 15}, [3950] = {.lex_state = 15}, - [3951] = {.lex_state = 15}, - [3952] = {.lex_state = 16}, - [3953] = {.lex_state = 16}, + [3951] = {.lex_state = 16}, + [3952] = {.lex_state = 15}, + [3953] = {.lex_state = 15}, [3954] = {.lex_state = 15}, [3955] = {.lex_state = 15}, - [3956] = {.lex_state = 16}, + [3956] = {.lex_state = 15}, [3957] = {.lex_state = 15}, - [3958] = {.lex_state = 16}, - [3959] = {.lex_state = 15}, + [3958] = {.lex_state = 38}, + [3959] = {.lex_state = 38}, [3960] = {.lex_state = 15}, - [3961] = {.lex_state = 15}, - [3962] = {.lex_state = 7}, + [3961] = {.lex_state = 38}, + [3962] = {.lex_state = 16}, [3963] = {.lex_state = 15}, [3964] = {.lex_state = 15}, - [3965] = {.lex_state = 16}, - [3966] = {.lex_state = 38}, + [3965] = {.lex_state = 38}, + [3966] = {.lex_state = 16}, [3967] = {.lex_state = 16}, - [3968] = {.lex_state = 38}, + [3968] = {.lex_state = 15}, [3969] = {.lex_state = 15}, [3970] = {.lex_state = 15}, [3971] = {.lex_state = 15}, - [3972] = {.lex_state = 15}, - [3973] = {.lex_state = 15}, + [3972] = {.lex_state = 16}, + [3973] = {.lex_state = 16}, [3974] = {.lex_state = 15}, [3975] = {.lex_state = 15}, - [3976] = {.lex_state = 15}, - [3977] = {.lex_state = 15}, - [3978] = {.lex_state = 15}, - [3979] = {.lex_state = 38}, - [3980] = {.lex_state = 15}, + [3976] = {.lex_state = 16}, + [3977] = {.lex_state = 38}, + [3978] = {.lex_state = 38}, + [3979] = {.lex_state = 15}, + [3980] = {.lex_state = 16}, [3981] = {.lex_state = 15}, - [3982] = {.lex_state = 38}, - [3983] = {.lex_state = 38}, + [3982] = {.lex_state = 16}, + [3983] = {.lex_state = 0}, [3984] = {.lex_state = 15}, [3985] = {.lex_state = 15}, - [3986] = {.lex_state = 15}, - [3987] = {.lex_state = 7}, - [3988] = {.lex_state = 15}, - [3989] = {.lex_state = 15}, + [3986] = {.lex_state = 7}, + [3987] = {.lex_state = 15}, + [3988] = {.lex_state = 38}, + [3989] = {.lex_state = 38}, [3990] = {.lex_state = 15}, [3991] = {.lex_state = 15}, - [3992] = {.lex_state = 15}, + [3992] = {.lex_state = 38}, [3993] = {.lex_state = 15}, [3994] = {.lex_state = 16}, - [3995] = {.lex_state = 16}, - [3996] = {.lex_state = 0}, + [3995] = {.lex_state = 7}, + [3996] = {.lex_state = 16}, [3997] = {.lex_state = 15}, - [3998] = {.lex_state = 16}, - [3999] = {.lex_state = 16}, - [4000] = {.lex_state = 15}, - [4001] = {.lex_state = 15}, - [4002] = {.lex_state = 38}, + [3998] = {.lex_state = 15}, + [3999] = {.lex_state = 15}, + [4000] = {.lex_state = 38}, + [4001] = {.lex_state = 38}, + [4002] = {.lex_state = 15}, [4003] = {.lex_state = 15}, [4004] = {.lex_state = 15}, [4005] = {.lex_state = 15}, [4006] = {.lex_state = 15}, [4007] = {.lex_state = 38}, [4008] = {.lex_state = 15}, - [4009] = {.lex_state = 7}, + [4009] = {.lex_state = 15}, [4010] = {.lex_state = 15}, [4011] = {.lex_state = 16}, - [4012] = {.lex_state = 38}, - [4013] = {.lex_state = 15}, + [4012] = {.lex_state = 15}, + [4013] = {.lex_state = 16}, [4014] = {.lex_state = 15}, [4015] = {.lex_state = 15}, - [4016] = {.lex_state = 15}, + [4016] = {.lex_state = 0}, [4017] = {.lex_state = 15}, [4018] = {.lex_state = 15}, [4019] = {.lex_state = 15}, [4020] = {.lex_state = 15}, - [4021] = {.lex_state = 15}, - [4022] = {.lex_state = 15}, + [4021] = {.lex_state = 0}, + [4022] = {.lex_state = 0}, [4023] = {.lex_state = 15}, - [4024] = {.lex_state = 15}, + [4024] = {.lex_state = 0}, [4025] = {.lex_state = 0}, [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 15}, + [4027] = {.lex_state = 0}, [4028] = {.lex_state = 15}, [4029] = {.lex_state = 15}, - [4030] = {.lex_state = 15}, - [4031] = {.lex_state = 15}, + [4030] = {.lex_state = 0}, + [4031] = {.lex_state = 0}, [4032] = {.lex_state = 0}, [4033] = {.lex_state = 15}, - [4034] = {.lex_state = 15}, + [4034] = {.lex_state = 23}, [4035] = {.lex_state = 15}, - [4036] = {.lex_state = 15}, + [4036] = {.lex_state = 40}, [4037] = {.lex_state = 15}, - [4038] = {.lex_state = 15}, - [4039] = {.lex_state = 15}, + [4038] = {.lex_state = 0}, + [4039] = {.lex_state = 0}, [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 15}, + [4041] = {.lex_state = 81}, [4042] = {.lex_state = 15}, - [4043] = {.lex_state = 0}, + [4043] = {.lex_state = 15}, [4044] = {.lex_state = 15}, - [4045] = {.lex_state = 15}, - [4046] = {.lex_state = 81}, + [4045] = {.lex_state = 40}, + [4046] = {.lex_state = 15}, [4047] = {.lex_state = 15}, - [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 0}, + [4048] = {.lex_state = 40}, + [4049] = {.lex_state = 15}, [4050] = {.lex_state = 15}, [4051] = {.lex_state = 15}, [4052] = {.lex_state = 15}, [4053] = {.lex_state = 15}, - [4054] = {.lex_state = 15}, + [4054] = {.lex_state = 0}, [4055] = {.lex_state = 0}, [4056] = {.lex_state = 15}, - [4057] = {.lex_state = 15}, - [4058] = {.lex_state = 40}, + [4057] = {.lex_state = 23}, + [4058] = {.lex_state = 0}, [4059] = {.lex_state = 0}, [4060] = {.lex_state = 0}, [4061] = {.lex_state = 0}, [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 23}, - [4064] = {.lex_state = 0}, + [4063] = {.lex_state = 15}, + [4064] = {.lex_state = 15}, [4065] = {.lex_state = 15}, [4066] = {.lex_state = 15}, - [4067] = {.lex_state = 15}, + [4067] = {.lex_state = 23}, [4068] = {.lex_state = 15}, - [4069] = {.lex_state = 40}, - [4070] = {.lex_state = 15}, - [4071] = {.lex_state = 40}, - [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 15}, + [4069] = {.lex_state = 15}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 15}, + [4072] = {.lex_state = 23}, + [4073] = {.lex_state = 0}, [4074] = {.lex_state = 15}, - [4075] = {.lex_state = 0}, + [4075] = {.lex_state = 40}, [4076] = {.lex_state = 15}, - [4077] = {.lex_state = 40}, + [4077] = {.lex_state = 15}, [4078] = {.lex_state = 15}, [4079] = {.lex_state = 15}, - [4080] = {.lex_state = 40}, + [4080] = {.lex_state = 15}, [4081] = {.lex_state = 15}, - [4082] = {.lex_state = 15}, - [4083] = {.lex_state = 15}, - [4084] = {.lex_state = 23}, + [4082] = {.lex_state = 0}, + [4083] = {.lex_state = 40}, + [4084] = {.lex_state = 0}, [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 23}, - [4087] = {.lex_state = 40}, + [4086] = {.lex_state = 0}, + [4087] = {.lex_state = 15}, [4088] = {.lex_state = 15}, - [4089] = {.lex_state = 0}, + [4089] = {.lex_state = 15}, [4090] = {.lex_state = 15}, - [4091] = {.lex_state = 15}, - [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 0}, + [4091] = {.lex_state = 0, .external_lex_state = 3}, + [4092] = {.lex_state = 40}, + [4093] = {.lex_state = 15}, + [4094] = {.lex_state = 15}, [4095] = {.lex_state = 40}, [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 15}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 40}, - [4100] = {.lex_state = 15}, - [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 15}, - [4103] = {.lex_state = 23}, - [4104] = {.lex_state = 15}, - [4105] = {.lex_state = 15}, + [4097] = {.lex_state = 0}, + [4098] = {.lex_state = 15}, + [4099] = {.lex_state = 15}, + [4100] = {.lex_state = 0}, + [4101] = {.lex_state = 15}, + [4102] = {.lex_state = 0}, + [4103] = {.lex_state = 0}, + [4104] = {.lex_state = 0}, + [4105] = {.lex_state = 0}, [4106] = {.lex_state = 15}, [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 0}, + [4108] = {.lex_state = 15}, [4109] = {.lex_state = 15}, - [4110] = {.lex_state = 0}, + [4110] = {.lex_state = 15}, [4111] = {.lex_state = 15}, [4112] = {.lex_state = 15}, - [4113] = {.lex_state = 0}, - [4114] = {.lex_state = 0}, - [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 23}, - [4118] = {.lex_state = 40}, + [4113] = {.lex_state = 15}, + [4114] = {.lex_state = 15}, + [4115] = {.lex_state = 15}, + [4116] = {.lex_state = 15}, + [4117] = {.lex_state = 15}, + [4118] = {.lex_state = 0}, [4119] = {.lex_state = 15}, [4120] = {.lex_state = 15}, [4121] = {.lex_state = 15}, - [4122] = {.lex_state = 0}, - [4123] = {.lex_state = 15}, - [4124] = {.lex_state = 15}, - [4125] = {.lex_state = 0}, + [4122] = {.lex_state = 40}, + [4123] = {.lex_state = 0}, + [4124] = {.lex_state = 23}, + [4125] = {.lex_state = 40}, [4126] = {.lex_state = 15}, [4127] = {.lex_state = 15}, - [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 23}, + [4128] = {.lex_state = 23}, + [4129] = {.lex_state = 15}, + [4130] = {.lex_state = 15}, [4131] = {.lex_state = 15}, - [4132] = {.lex_state = 15}, - [4133] = {.lex_state = 23}, + [4132] = {.lex_state = 0}, + [4133] = {.lex_state = 15}, [4134] = {.lex_state = 15}, [4135] = {.lex_state = 15}, - [4136] = {.lex_state = 0}, - [4137] = {.lex_state = 0}, + [4136] = {.lex_state = 15}, + [4137] = {.lex_state = 15}, [4138] = {.lex_state = 15}, - [4139] = {.lex_state = 0, .external_lex_state = 3}, - [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 23}, + [4139] = {.lex_state = 15}, + [4140] = {.lex_state = 23}, + [4141] = {.lex_state = 15}, [4142] = {.lex_state = 15}, [4143] = {.lex_state = 15}, [4144] = {.lex_state = 15}, [4145] = {.lex_state = 15}, [4146] = {.lex_state = 15}, - [4147] = {.lex_state = 15}, + [4147] = {.lex_state = 0}, [4148] = {.lex_state = 15}, [4149] = {.lex_state = 15}, [4150] = {.lex_state = 15}, [4151] = {.lex_state = 15}, - [4152] = {.lex_state = 0}, + [4152] = {.lex_state = 15}, [4153] = {.lex_state = 15}, [4154] = {.lex_state = 15}, [4155] = {.lex_state = 15}, @@ -17092,12 +10642,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4157] = {.lex_state = 15}, [4158] = {.lex_state = 15}, [4159] = {.lex_state = 15}, - [4160] = {.lex_state = 15}, - [4161] = {.lex_state = 15}, + [4160] = {.lex_state = 0}, + [4161] = {.lex_state = 23}, [4162] = {.lex_state = 15}, [4163] = {.lex_state = 15}, [4164] = {.lex_state = 15}, - [4165] = {.lex_state = 0}, + [4165] = {.lex_state = 15}, [4166] = {.lex_state = 15}, [4167] = {.lex_state = 15}, [4168] = {.lex_state = 15}, @@ -17124,7 +10674,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4189] = {.lex_state = 15}, [4190] = {.lex_state = 15}, [4191] = {.lex_state = 15}, - [4192] = {.lex_state = 15}, + [4192] = {.lex_state = 16}, [4193] = {.lex_state = 15}, [4194] = {.lex_state = 15}, [4195] = {.lex_state = 15}, @@ -17136,25 +10686,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4201] = {.lex_state = 15}, [4202] = {.lex_state = 15}, [4203] = {.lex_state = 15}, - [4204] = {.lex_state = 0}, + [4204] = {.lex_state = 15}, [4205] = {.lex_state = 15}, [4206] = {.lex_state = 15}, [4207] = {.lex_state = 7}, [4208] = {.lex_state = 15}, [4209] = {.lex_state = 15}, - [4210] = {.lex_state = 15}, + [4210] = {.lex_state = 7}, [4211] = {.lex_state = 15}, [4212] = {.lex_state = 15}, - [4213] = {.lex_state = 15}, + [4213] = {.lex_state = 7}, [4214] = {.lex_state = 15}, - [4215] = {.lex_state = 15}, + [4215] = {.lex_state = 7}, [4216] = {.lex_state = 15}, - [4217] = {.lex_state = 15}, - [4218] = {.lex_state = 15}, + [4217] = {.lex_state = 7}, + [4218] = {.lex_state = 0}, [4219] = {.lex_state = 15}, [4220] = {.lex_state = 15}, [4221] = {.lex_state = 15}, - [4222] = {.lex_state = 15}, + [4222] = {.lex_state = 7}, [4223] = {.lex_state = 15}, [4224] = {.lex_state = 15}, [4225] = {.lex_state = 15}, @@ -17167,16 +10717,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4232] = {.lex_state = 15}, [4233] = {.lex_state = 15}, [4234] = {.lex_state = 15}, - [4235] = {.lex_state = 15}, + [4235] = {.lex_state = 7}, [4236] = {.lex_state = 15}, - [4237] = {.lex_state = 15}, + [4237] = {.lex_state = 0}, [4238] = {.lex_state = 15}, - [4239] = {.lex_state = 15}, + [4239] = {.lex_state = 7}, [4240] = {.lex_state = 15}, [4241] = {.lex_state = 15}, [4242] = {.lex_state = 15}, [4243] = {.lex_state = 15}, - [4244] = {.lex_state = 15}, + [4244] = {.lex_state = 7}, [4245] = {.lex_state = 15}, [4246] = {.lex_state = 15}, [4247] = {.lex_state = 15}, @@ -17191,7 +10741,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4256] = {.lex_state = 15}, [4257] = {.lex_state = 15}, [4258] = {.lex_state = 7}, - [4259] = {.lex_state = 7}, + [4259] = {.lex_state = 15}, [4260] = {.lex_state = 15}, [4261] = {.lex_state = 15}, [4262] = {.lex_state = 15}, @@ -17202,14 +10752,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4267] = {.lex_state = 15}, [4268] = {.lex_state = 15}, [4269] = {.lex_state = 15}, - [4270] = {.lex_state = 15}, + [4270] = {.lex_state = 0}, [4271] = {.lex_state = 15}, - [4272] = {.lex_state = 15}, + [4272] = {.lex_state = 0}, [4273] = {.lex_state = 15}, [4274] = {.lex_state = 15}, [4275] = {.lex_state = 15}, [4276] = {.lex_state = 15}, - [4277] = {.lex_state = 15}, + [4277] = {.lex_state = 16}, [4278] = {.lex_state = 15}, [4279] = {.lex_state = 15}, [4280] = {.lex_state = 15}, @@ -17224,17 +10774,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4289] = {.lex_state = 15}, [4290] = {.lex_state = 15}, [4291] = {.lex_state = 15}, - [4292] = {.lex_state = 15}, + [4292] = {.lex_state = 7}, [4293] = {.lex_state = 15}, [4294] = {.lex_state = 15}, [4295] = {.lex_state = 15}, [4296] = {.lex_state = 15}, [4297] = {.lex_state = 15}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 7}, - [4300] = {.lex_state = 15}, + [4298] = {.lex_state = 15}, + [4299] = {.lex_state = 15}, + [4300] = {.lex_state = 0}, [4301] = {.lex_state = 15}, - [4302] = {.lex_state = 15}, + [4302] = {.lex_state = 0}, [4303] = {.lex_state = 15}, [4304] = {.lex_state = 15}, [4305] = {.lex_state = 15}, @@ -17242,7 +10792,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4307] = {.lex_state = 15}, [4308] = {.lex_state = 15}, [4309] = {.lex_state = 15}, - [4310] = {.lex_state = 15}, + [4310] = {.lex_state = 0}, [4311] = {.lex_state = 15}, [4312] = {.lex_state = 15}, [4313] = {.lex_state = 15}, @@ -17253,7 +10803,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4318] = {.lex_state = 15}, [4319] = {.lex_state = 15}, [4320] = {.lex_state = 15}, - [4321] = {.lex_state = 16}, + [4321] = {.lex_state = 15}, [4322] = {.lex_state = 15}, [4323] = {.lex_state = 15}, [4324] = {.lex_state = 15}, @@ -17272,12 +10822,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4337] = {.lex_state = 15}, [4338] = {.lex_state = 15}, [4339] = {.lex_state = 15}, - [4340] = {.lex_state = 7}, + [4340] = {.lex_state = 15}, [4341] = {.lex_state = 15}, [4342] = {.lex_state = 15}, [4343] = {.lex_state = 15}, [4344] = {.lex_state = 15}, - [4345] = {.lex_state = 0}, + [4345] = {.lex_state = 15}, [4346] = {.lex_state = 15}, [4347] = {.lex_state = 15}, [4348] = {.lex_state = 15}, @@ -17289,16 +10839,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4354] = {.lex_state = 15}, [4355] = {.lex_state = 15}, [4356] = {.lex_state = 15}, - [4357] = {.lex_state = 16}, - [4358] = {.lex_state = 0}, + [4357] = {.lex_state = 15}, + [4358] = {.lex_state = 15}, [4359] = {.lex_state = 15}, [4360] = {.lex_state = 15}, [4361] = {.lex_state = 15}, [4362] = {.lex_state = 15}, [4363] = {.lex_state = 15}, [4364] = {.lex_state = 15}, - [4365] = {.lex_state = 7}, - [4366] = {.lex_state = 0}, + [4365] = {.lex_state = 15}, + [4366] = {.lex_state = 15}, [4367] = {.lex_state = 15}, [4368] = {.lex_state = 15}, [4369] = {.lex_state = 15}, @@ -17309,9 +10859,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4374] = {.lex_state = 15}, [4375] = {.lex_state = 15}, [4376] = {.lex_state = 15}, - [4377] = {.lex_state = 0}, + [4377] = {.lex_state = 15}, [4378] = {.lex_state = 15}, - [4379] = {.lex_state = 0}, + [4379] = {.lex_state = 15}, [4380] = {.lex_state = 15}, [4381] = {.lex_state = 15}, [4382] = {.lex_state = 15}, @@ -17325,19 +10875,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4390] = {.lex_state = 15}, [4391] = {.lex_state = 15}, [4392] = {.lex_state = 15}, - [4393] = {.lex_state = 0}, + [4393] = {.lex_state = 15}, [4394] = {.lex_state = 15}, [4395] = {.lex_state = 15}, [4396] = {.lex_state = 15}, [4397] = {.lex_state = 15}, [4398] = {.lex_state = 15}, [4399] = {.lex_state = 15}, - [4400] = {.lex_state = 7}, + [4400] = {.lex_state = 15}, [4401] = {.lex_state = 15}, [4402] = {.lex_state = 15}, [4403] = {.lex_state = 15}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 16}, + [4404] = {.lex_state = 15}, + [4405] = {.lex_state = 15}, [4406] = {.lex_state = 15}, [4407] = {.lex_state = 15}, [4408] = {.lex_state = 15}, @@ -17348,87 +10898,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4413] = {.lex_state = 15}, [4414] = {.lex_state = 15}, [4415] = {.lex_state = 15}, - [4416] = {.lex_state = 0}, + [4416] = {.lex_state = 15}, [4417] = {.lex_state = 15}, [4418] = {.lex_state = 15}, [4419] = {.lex_state = 15}, [4420] = {.lex_state = 15}, [4421] = {.lex_state = 15}, - [4422] = {.lex_state = 7}, + [4422] = {.lex_state = 15}, [4423] = {.lex_state = 15}, [4424] = {.lex_state = 15}, [4425] = {.lex_state = 15}, [4426] = {.lex_state = 15}, - [4427] = {.lex_state = 7}, + [4427] = {.lex_state = 15}, [4428] = {.lex_state = 15}, [4429] = {.lex_state = 15}, [4430] = {.lex_state = 15}, [4431] = {.lex_state = 15}, - [4432] = {.lex_state = 7}, + [4432] = {.lex_state = 15}, [4433] = {.lex_state = 15}, [4434] = {.lex_state = 15}, [4435] = {.lex_state = 15}, [4436] = {.lex_state = 15}, [4437] = {.lex_state = 15}, [4438] = {.lex_state = 15}, - [4439] = {.lex_state = 16}, + [4439] = {.lex_state = 15}, [4440] = {.lex_state = 15}, [4441] = {.lex_state = 15}, [4442] = {.lex_state = 15}, [4443] = {.lex_state = 15}, [4444] = {.lex_state = 15}, - [4445] = {.lex_state = 15}, + [4445] = {.lex_state = 0}, [4446] = {.lex_state = 15}, [4447] = {.lex_state = 15}, [4448] = {.lex_state = 15}, - [4449] = {.lex_state = 7}, + [4449] = {.lex_state = 15}, [4450] = {.lex_state = 15}, [4451] = {.lex_state = 15}, [4452] = {.lex_state = 15}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 15}, + [4453] = {.lex_state = 15}, + [4454] = {.lex_state = 16}, [4455] = {.lex_state = 15}, [4456] = {.lex_state = 15}, [4457] = {.lex_state = 15}, - [4458] = {.lex_state = 15}, + [4458] = {.lex_state = 16}, [4459] = {.lex_state = 15}, [4460] = {.lex_state = 15}, [4461] = {.lex_state = 15}, - [4462] = {.lex_state = 15}, + [4462] = {.lex_state = 0}, [4463] = {.lex_state = 15}, [4464] = {.lex_state = 15}, [4465] = {.lex_state = 15}, [4466] = {.lex_state = 15}, - [4467] = {.lex_state = 15}, + [4467] = {.lex_state = 0}, [4468] = {.lex_state = 15}, [4469] = {.lex_state = 15}, [4470] = {.lex_state = 15}, - [4471] = {.lex_state = 15}, + [4471] = {.lex_state = 0}, [4472] = {.lex_state = 15}, [4473] = {.lex_state = 15}, [4474] = {.lex_state = 15}, [4475] = {.lex_state = 15}, - [4476] = {.lex_state = 0}, + [4476] = {.lex_state = 7}, [4477] = {.lex_state = 0}, [4478] = {.lex_state = 15}, - [4479] = {.lex_state = 15}, + [4479] = {.lex_state = 0}, [4480] = {.lex_state = 15}, [4481] = {.lex_state = 15}, - [4482] = {.lex_state = 0}, + [4482] = {.lex_state = 15}, [4483] = {.lex_state = 0}, - [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 15}, - [4486] = {.lex_state = 0}, + [4484] = {.lex_state = 15}, + [4485] = {.lex_state = 0}, + [4486] = {.lex_state = 15}, [4487] = {.lex_state = 15}, [4488] = {.lex_state = 15}, - [4489] = {.lex_state = 15}, - [4490] = {.lex_state = 15}, - [4491] = {.lex_state = 0}, + [4489] = {.lex_state = 0}, + [4490] = {.lex_state = 0}, + [4491] = {.lex_state = 15}, [4492] = {.lex_state = 15}, [4493] = {.lex_state = 15}, [4494] = {.lex_state = 15}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 0}, + [4495] = {.lex_state = 15}, + [4496] = {.lex_state = 15}, [4497] = {.lex_state = 15}, [4498] = {.lex_state = 15}, [4499] = {.lex_state = 15}, @@ -17436,69 +10986,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4501] = {.lex_state = 15}, [4502] = {.lex_state = 15}, [4503] = {.lex_state = 15}, - [4504] = {.lex_state = 15}, - [4505] = {.lex_state = 15}, - [4506] = {.lex_state = 15}, + [4504] = {.lex_state = 0}, + [4505] = {.lex_state = 0}, + [4506] = {.lex_state = 0}, [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, + [4508] = {.lex_state = 15}, [4509] = {.lex_state = 15}, [4510] = {.lex_state = 15}, [4511] = {.lex_state = 15}, [4512] = {.lex_state = 15}, - [4513] = {.lex_state = 15}, + [4513] = {.lex_state = 0}, [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 0}, + [4515] = {.lex_state = 15}, + [4516] = {.lex_state = 15}, [4517] = {.lex_state = 15}, [4518] = {.lex_state = 0}, [4519] = {.lex_state = 0}, [4520] = {.lex_state = 15}, - [4521] = {.lex_state = 0}, + [4521] = {.lex_state = 15}, [4522] = {.lex_state = 15}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 15}, - [4525] = {.lex_state = 0}, + [4525] = {.lex_state = 15}, [4526] = {.lex_state = 0}, - [4527] = {.lex_state = 15}, + [4527] = {.lex_state = 0}, [4528] = {.lex_state = 15}, - [4529] = {.lex_state = 15}, + [4529] = {.lex_state = 0}, [4530] = {.lex_state = 0}, [4531] = {.lex_state = 15}, - [4532] = {.lex_state = 0}, + [4532] = {.lex_state = 15}, [4533] = {.lex_state = 0}, [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 15}, + [4535] = {.lex_state = 0}, [4536] = {.lex_state = 15}, [4537] = {.lex_state = 0}, [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 15}, - [4540] = {.lex_state = 0}, + [4539] = {.lex_state = 0}, + [4540] = {.lex_state = 15}, [4541] = {.lex_state = 0}, [4542] = {.lex_state = 0}, [4543] = {.lex_state = 15}, [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 0}, - [4548] = {.lex_state = 15}, - [4549] = {.lex_state = 0}, + [4545] = {.lex_state = 15}, + [4546] = {.lex_state = 15}, + [4547] = {.lex_state = 15}, + [4548] = {.lex_state = 0}, + [4549] = {.lex_state = 15}, [4550] = {.lex_state = 15}, [4551] = {.lex_state = 0}, [4552] = {.lex_state = 0}, [4553] = {.lex_state = 0}, [4554] = {.lex_state = 15}, - [4555] = {.lex_state = 0}, + [4555] = {.lex_state = 15}, [4556] = {.lex_state = 15}, [4557] = {.lex_state = 15}, - [4558] = {.lex_state = 15}, + [4558] = {.lex_state = 0}, [4559] = {.lex_state = 0}, [4560] = {.lex_state = 15}, [4561] = {.lex_state = 0}, - [4562] = {.lex_state = 15}, - [4563] = {.lex_state = 15}, - [4564] = {.lex_state = 15}, + [4562] = {.lex_state = 0}, + [4563] = {.lex_state = 0}, + [4564] = {.lex_state = 0}, [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 0}, + [4566] = {.lex_state = 15}, [4567] = {.lex_state = 0}, [4568] = {.lex_state = 0}, [4569] = {.lex_state = 0}, @@ -17512,55 +11062,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4577] = {.lex_state = 0}, [4578] = {.lex_state = 0}, [4579] = {.lex_state = 15}, - [4580] = {.lex_state = 0}, + [4580] = {.lex_state = 15}, [4581] = {.lex_state = 0}, - [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 0}, + [4582] = {.lex_state = 15}, + [4583] = {.lex_state = 15}, [4584] = {.lex_state = 15}, - [4585] = {.lex_state = 15}, + [4585] = {.lex_state = 0}, [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 0}, + [4587] = {.lex_state = 15}, [4588] = {.lex_state = 15}, - [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 0}, + [4589] = {.lex_state = 15}, + [4590] = {.lex_state = 15}, [4591] = {.lex_state = 0}, [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 15}, + [4593] = {.lex_state = 0}, [4594] = {.lex_state = 0}, - [4595] = {.lex_state = 15}, + [4595] = {.lex_state = 0}, [4596] = {.lex_state = 0}, - [4597] = {.lex_state = 15}, + [4597] = {.lex_state = 0}, [4598] = {.lex_state = 0}, - [4599] = {.lex_state = 81}, + [4599] = {.lex_state = 0}, [4600] = {.lex_state = 15}, [4601] = {.lex_state = 15}, - [4602] = {.lex_state = 0}, - [4603] = {.lex_state = 15}, + [4602] = {.lex_state = 15}, + [4603] = {.lex_state = 0}, [4604] = {.lex_state = 81}, [4605] = {.lex_state = 15}, - [4606] = {.lex_state = 15}, + [4606] = {.lex_state = 0}, [4607] = {.lex_state = 0}, [4608] = {.lex_state = 15}, [4609] = {.lex_state = 0}, [4610] = {.lex_state = 15}, - [4611] = {.lex_state = 15}, + [4611] = {.lex_state = 0}, [4612] = {.lex_state = 0}, [4613] = {.lex_state = 0}, [4614] = {.lex_state = 15}, - [4615] = {.lex_state = 15}, + [4615] = {.lex_state = 0}, [4616] = {.lex_state = 0}, [4617] = {.lex_state = 15}, [4618] = {.lex_state = 15}, - [4619] = {.lex_state = 0}, + [4619] = {.lex_state = 15}, [4620] = {.lex_state = 15}, [4621] = {.lex_state = 0}, - [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 81}, + [4622] = {.lex_state = 15}, + [4623] = {.lex_state = 15}, [4624] = {.lex_state = 15}, [4625] = {.lex_state = 15}, [4626] = {.lex_state = 0}, [4627] = {.lex_state = 0}, - [4628] = {.lex_state = 0}, + [4628] = {.lex_state = 15}, [4629] = {.lex_state = 0}, [4630] = {.lex_state = 0}, [4631] = {.lex_state = 0}, @@ -17571,17 +11121,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4636] = {.lex_state = 0}, [4637] = {.lex_state = 0}, [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 15}, - [4640] = {.lex_state = 0}, + [4639] = {.lex_state = 0}, + [4640] = {.lex_state = 15}, [4641] = {.lex_state = 0}, [4642] = {.lex_state = 0}, [4643] = {.lex_state = 15}, - [4644] = {.lex_state = 15}, + [4644] = {.lex_state = 0}, [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 15}, + [4646] = {.lex_state = 15}, + [4647] = {.lex_state = 0}, [4648] = {.lex_state = 15}, - [4649] = {.lex_state = 15}, + [4649] = {.lex_state = 0}, [4650] = {.lex_state = 0}, [4651] = {.lex_state = 0}, [4652] = {.lex_state = 15}, @@ -17589,49 +11139,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4654] = {.lex_state = 0}, [4655] = {.lex_state = 0}, [4656] = {.lex_state = 15}, - [4657] = {.lex_state = 15}, + [4657] = {.lex_state = 0}, [4658] = {.lex_state = 0}, [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 15}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 15}, - [4663] = {.lex_state = 15}, + [4660] = {.lex_state = 0}, + [4661] = {.lex_state = 15}, + [4662] = {.lex_state = 0}, + [4663] = {.lex_state = 0}, [4664] = {.lex_state = 0}, [4665] = {.lex_state = 15}, - [4666] = {.lex_state = 15}, + [4666] = {.lex_state = 0}, [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, + [4668] = {.lex_state = 15}, [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 0}, + [4670] = {.lex_state = 15}, [4671] = {.lex_state = 0}, [4672] = {.lex_state = 0}, [4673] = {.lex_state = 0}, [4674] = {.lex_state = 15}, [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 0}, - [4678] = {.lex_state = 0}, + [4676] = {.lex_state = 15}, + [4677] = {.lex_state = 15}, + [4678] = {.lex_state = 15}, [4679] = {.lex_state = 0}, [4680] = {.lex_state = 15}, [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 15}, + [4682] = {.lex_state = 0}, [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 0}, - [4686] = {.lex_state = 15}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, + [4684] = {.lex_state = 15}, + [4685] = {.lex_state = 15}, + [4686] = {.lex_state = 0}, + [4687] = {.lex_state = 15}, + [4688] = {.lex_state = 15}, [4689] = {.lex_state = 15}, - [4690] = {.lex_state = 15}, + [4690] = {.lex_state = 0}, [4691] = {.lex_state = 15}, - [4692] = {.lex_state = 15}, - [4693] = {.lex_state = 15}, + [4692] = {.lex_state = 0}, + [4693] = {.lex_state = 0}, [4694] = {.lex_state = 15}, [4695] = {.lex_state = 15}, - [4696] = {.lex_state = 15}, - [4697] = {.lex_state = 15}, + [4696] = {.lex_state = 0}, + [4697] = {.lex_state = 0}, [4698] = {.lex_state = 15}, - [4699] = {.lex_state = 15}, + [4699] = {.lex_state = 0}, [4700] = {.lex_state = 0}, [4701] = {.lex_state = 0}, [4702] = {.lex_state = 15}, @@ -17643,60 +11193,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4708] = {.lex_state = 0}, [4709] = {.lex_state = 15}, [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, + [4711] = {.lex_state = 15}, [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 0}, + [4713] = {.lex_state = 15}, [4714] = {.lex_state = 0}, [4715] = {.lex_state = 15}, [4716] = {.lex_state = 15}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 81}, + [4717] = {.lex_state = 15}, + [4718] = {.lex_state = 15}, + [4719] = {.lex_state = 0}, [4720] = {.lex_state = 15}, - [4721] = {.lex_state = 0}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 0}, + [4721] = {.lex_state = 15}, + [4722] = {.lex_state = 15}, + [4723] = {.lex_state = 15}, [4724] = {.lex_state = 15}, - [4725] = {.lex_state = 15}, + [4725] = {.lex_state = 0}, [4726] = {.lex_state = 15}, - [4727] = {.lex_state = 15}, - [4728] = {.lex_state = 15}, + [4727] = {.lex_state = 0}, + [4728] = {.lex_state = 0}, [4729] = {.lex_state = 15}, - [4730] = {.lex_state = 15}, - [4731] = {.lex_state = 15}, + [4730] = {.lex_state = 0}, + [4731] = {.lex_state = 0}, [4732] = {.lex_state = 15}, - [4733] = {.lex_state = 15}, + [4733] = {.lex_state = 0}, [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 15}, - [4736] = {.lex_state = 15}, - [4737] = {.lex_state = 15}, - [4738] = {.lex_state = 15}, + [4735] = {.lex_state = 0}, + [4736] = {.lex_state = 0}, + [4737] = {.lex_state = 0}, + [4738] = {.lex_state = 0}, [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 15}, + [4740] = {.lex_state = 0}, [4741] = {.lex_state = 0}, [4742] = {.lex_state = 0}, [4743] = {.lex_state = 15}, - [4744] = {.lex_state = 15}, - [4745] = {.lex_state = 15}, + [4744] = {.lex_state = 0}, + [4745] = {.lex_state = 0}, [4746] = {.lex_state = 15}, - [4747] = {.lex_state = 15}, + [4747] = {.lex_state = 0}, [4748] = {.lex_state = 0}, [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 15}, - [4751] = {.lex_state = 0}, + [4750] = {.lex_state = 0}, + [4751] = {.lex_state = 15}, [4752] = {.lex_state = 0}, - [4753] = {.lex_state = 15}, - [4754] = {.lex_state = 15}, - [4755] = {.lex_state = 0}, - [4756] = {.lex_state = 0}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 0}, + [4755] = {.lex_state = 15}, + [4756] = {.lex_state = 15}, [4757] = {.lex_state = 15}, [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 0}, - [4760] = {.lex_state = 0}, + [4759] = {.lex_state = 15}, + [4760] = {.lex_state = 15}, [4761] = {.lex_state = 15}, - [4762] = {.lex_state = 15}, - [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 81}, + [4762] = {.lex_state = 0}, + [4763] = {.lex_state = 15}, + [4764] = {.lex_state = 0}, [4765] = {.lex_state = 15}, [4766] = {.lex_state = 15}, [4767] = {.lex_state = 0}, @@ -17704,104 +11254,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4769] = {.lex_state = 0}, [4770] = {.lex_state = 0}, [4771] = {.lex_state = 15}, - [4772] = {.lex_state = 15}, + [4772] = {.lex_state = 0}, [4773] = {.lex_state = 15}, [4774] = {.lex_state = 15}, [4775] = {.lex_state = 15}, [4776] = {.lex_state = 15}, - [4777] = {.lex_state = 15}, - [4778] = {.lex_state = 0}, - [4779] = {.lex_state = 0}, - [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 15}, - [4783] = {.lex_state = 15}, - [4784] = {.lex_state = 15}, - [4785] = {.lex_state = 15}, + [4777] = {.lex_state = 0}, + [4778] = {.lex_state = 15}, + [4779] = {.lex_state = 15}, + [4780] = {.lex_state = 15}, + [4781] = {.lex_state = 15}, + [4782] = {.lex_state = 0}, + [4783] = {.lex_state = 81}, + [4784] = {.lex_state = 7}, + [4785] = {.lex_state = 81}, [4786] = {.lex_state = 0}, - [4787] = {.lex_state = 15}, + [4787] = {.lex_state = 7}, [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 15}, - [4790] = {.lex_state = 15}, - [4791] = {.lex_state = 15}, - [4792] = {.lex_state = 15}, - [4793] = {.lex_state = 0}, - [4794] = {.lex_state = 81}, + [4789] = {.lex_state = 7}, + [4790] = {.lex_state = 7}, + [4791] = {.lex_state = 7}, + [4792] = {.lex_state = 0}, + [4793] = {.lex_state = 15}, + [4794] = {.lex_state = 7}, [4795] = {.lex_state = 0}, [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 81}, - [4798] = {.lex_state = 7}, - [4799] = {.lex_state = 0}, - [4800] = {.lex_state = 7}, - [4801] = {.lex_state = 7}, - [4802] = {.lex_state = 7}, + [4797] = {.lex_state = 0}, + [4798] = {.lex_state = 81}, + [4799] = {.lex_state = 15}, + [4800] = {.lex_state = 0}, + [4801] = {.lex_state = 0}, + [4802] = {.lex_state = 15}, [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 7}, + [4804] = {.lex_state = 0}, [4805] = {.lex_state = 0}, [4806] = {.lex_state = 15}, [4807] = {.lex_state = 7}, [4808] = {.lex_state = 0}, [4809] = {.lex_state = 0}, - [4810] = {.lex_state = 15}, + [4810] = {.lex_state = 0}, [4811] = {.lex_state = 0}, [4812] = {.lex_state = 0}, [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 15}, + [4814] = {.lex_state = 0}, [4815] = {.lex_state = 15}, - [4816] = {.lex_state = 7}, + [4816] = {.lex_state = 0}, [4817] = {.lex_state = 81}, [4818] = {.lex_state = 0}, [4819] = {.lex_state = 15}, [4820] = {.lex_state = 15}, - [4821] = {.lex_state = 7}, + [4821] = {.lex_state = 0}, [4822] = {.lex_state = 0}, [4823] = {.lex_state = 15}, [4824] = {.lex_state = 15}, [4825] = {.lex_state = 0}, [4826] = {.lex_state = 15}, - [4827] = {.lex_state = 0}, + [4827] = {.lex_state = 15}, [4828] = {.lex_state = 0}, [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 0}, + [4830] = {.lex_state = 15}, [4831] = {.lex_state = 0}, - [4832] = {.lex_state = 0}, + [4832] = {.lex_state = 15}, [4833] = {.lex_state = 15}, - [4834] = {.lex_state = 0}, + [4834] = {.lex_state = 15}, [4835] = {.lex_state = 0}, [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 7}, + [4837] = {.lex_state = 15}, [4838] = {.lex_state = 0}, - [4839] = {.lex_state = 0}, + [4839] = {.lex_state = 15}, [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 0}, + [4841] = {.lex_state = 7}, [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 7}, + [4843] = {.lex_state = 0}, [4844] = {.lex_state = 7}, [4845] = {.lex_state = 7}, [4846] = {.lex_state = 7}, [4847] = {.lex_state = 7}, [4848] = {.lex_state = 81}, - [4849] = {.lex_state = 7}, - [4850] = {.lex_state = 0}, + [4849] = {.lex_state = 0}, + [4850] = {.lex_state = 15}, [4851] = {.lex_state = 7}, - [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 0}, - [4854] = {.lex_state = 0}, + [4852] = {.lex_state = 15}, + [4853] = {.lex_state = 15}, + [4854] = {.lex_state = 7}, [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 81}, + [4856] = {.lex_state = 15}, [4857] = {.lex_state = 0}, - [4858] = {.lex_state = 7}, - [4859] = {.lex_state = 0}, + [4858] = {.lex_state = 0}, + [4859] = {.lex_state = 15}, [4860] = {.lex_state = 0}, [4861] = {.lex_state = 7}, [4862] = {.lex_state = 0}, [4863] = {.lex_state = 7}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 0}, + [4864] = {.lex_state = 7}, + [4865] = {.lex_state = 7}, [4866] = {.lex_state = 7}, [4867] = {.lex_state = 0}, - [4868] = {.lex_state = 7}, - [4869] = {.lex_state = 0}, + [4868] = {.lex_state = 0}, + [4869] = {.lex_state = 81}, [4870] = {.lex_state = 0}, [4871] = {.lex_state = 0}, [4872] = {.lex_state = 7}, @@ -17809,40 +11359,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4874] = {.lex_state = 0}, [4875] = {.lex_state = 0}, [4876] = {.lex_state = 0}, - [4877] = {.lex_state = 7}, + [4877] = {.lex_state = 0}, [4878] = {.lex_state = 0}, [4879] = {.lex_state = 0}, [4880] = {.lex_state = 0}, [4881] = {.lex_state = 0}, - [4882] = {.lex_state = 0}, - [4883] = {.lex_state = 0}, - [4884] = {.lex_state = 7}, + [4882] = {.lex_state = 7}, + [4883] = {.lex_state = 7}, + [4884] = {.lex_state = 0}, [4885] = {.lex_state = 7}, - [4886] = {.lex_state = 7}, + [4886] = {.lex_state = 0}, [4887] = {.lex_state = 7}, [4888] = {.lex_state = 7}, [4889] = {.lex_state = 0}, - [4890] = {.lex_state = 7}, + [4890] = {.lex_state = 0}, [4891] = {.lex_state = 7}, [4892] = {.lex_state = 7}, - [4893] = {.lex_state = 0}, - [4894] = {.lex_state = 15}, - [4895] = {.lex_state = 81}, - [4896] = {.lex_state = 15}, + [4893] = {.lex_state = 7}, + [4894] = {.lex_state = 0}, + [4895] = {.lex_state = 7}, + [4896] = {.lex_state = 0}, [4897] = {.lex_state = 0}, [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 0}, - [4900] = {.lex_state = 12}, + [4899] = {.lex_state = 81}, + [4900] = {.lex_state = 81}, [4901] = {.lex_state = 0}, [4902] = {.lex_state = 0}, [4903] = {.lex_state = 0}, [4904] = {.lex_state = 7}, - [4905] = {.lex_state = 0}, + [4905] = {.lex_state = 7}, [4906] = {.lex_state = 7}, [4907] = {.lex_state = 7}, [4908] = {.lex_state = 7}, [4909] = {.lex_state = 7}, - [4910] = {.lex_state = 7}, + [4910] = {.lex_state = 0}, [4911] = {.lex_state = 0}, [4912] = {.lex_state = 0}, [4913] = {.lex_state = 7}, @@ -17856,36 +11406,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4921] = {.lex_state = 0}, [4922] = {.lex_state = 0}, [4923] = {.lex_state = 0}, - [4924] = {.lex_state = 0}, + [4924] = {.lex_state = 81}, [4925] = {.lex_state = 0}, [4926] = {.lex_state = 0}, - [4927] = {.lex_state = 7}, + [4927] = {.lex_state = 0}, [4928] = {.lex_state = 0}, [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 15}, - [4933] = {.lex_state = 7}, + [4930] = {.lex_state = 15}, + [4931] = {.lex_state = 81}, + [4932] = {.lex_state = 0}, + [4933] = {.lex_state = 0}, [4934] = {.lex_state = 0}, [4935] = {.lex_state = 7}, [4936] = {.lex_state = 7}, [4937] = {.lex_state = 7}, [4938] = {.lex_state = 0}, - [4939] = {.lex_state = 7}, + [4939] = {.lex_state = 0}, [4940] = {.lex_state = 7}, [4941] = {.lex_state = 7}, - [4942] = {.lex_state = 0}, + [4942] = {.lex_state = 7}, [4943] = {.lex_state = 0}, - [4944] = {.lex_state = 0}, + [4944] = {.lex_state = 15}, [4945] = {.lex_state = 0}, - [4946] = {.lex_state = 0}, + [4946] = {.lex_state = 7}, [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 12}, + [4948] = {.lex_state = 0}, [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 15}, + [4950] = {.lex_state = 12}, [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 81}, - [4953] = {.lex_state = 0}, + [4952] = {.lex_state = 0}, + [4953] = {.lex_state = 15}, [4954] = {.lex_state = 0}, [4955] = {.lex_state = 0}, [4956] = {.lex_state = 0}, @@ -17893,13 +11443,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4958] = {.lex_state = 0}, [4959] = {.lex_state = 0}, [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 0}, + [4961] = {.lex_state = 7}, [4962] = {.lex_state = 0}, [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 15}, + [4964] = {.lex_state = 0}, [4965] = {.lex_state = 0}, [4966] = {.lex_state = 0}, - [4967] = {.lex_state = 0}, + [4967] = {.lex_state = 15}, [4968] = {.lex_state = 0}, [4969] = {.lex_state = 0}, [4970] = {.lex_state = 0}, @@ -17911,66 +11461,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4976] = {.lex_state = 0}, [4977] = {.lex_state = 0}, [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 81}, - [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 0}, + [4979] = {.lex_state = 0}, + [4980] = {.lex_state = 15}, + [4981] = {.lex_state = 81}, [4982] = {.lex_state = 0}, [4983] = {.lex_state = 0}, [4984] = {.lex_state = 0}, - [4985] = {.lex_state = 15}, - [4986] = {.lex_state = 0}, + [4985] = {.lex_state = 12}, + [4986] = {.lex_state = 15}, [4987] = {.lex_state = 0}, [4988] = {.lex_state = 0}, [4989] = {.lex_state = 0}, - [4990] = {.lex_state = 0}, + [4990] = {.lex_state = 15}, [4991] = {.lex_state = 0}, [4992] = {.lex_state = 0}, [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 7}, - [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 0}, - [4997] = {.lex_state = 81}, - [4998] = {.lex_state = 15}, + [4994] = {.lex_state = 81}, + [4995] = {.lex_state = 15}, + [4996] = {.lex_state = 81}, + [4997] = {.lex_state = 0}, + [4998] = {.lex_state = 0}, [4999] = {.lex_state = 0}, [5000] = {.lex_state = 0}, - [5001] = {.lex_state = 0}, + [5001] = {.lex_state = 81}, [5002] = {.lex_state = 0}, [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 81}, + [5004] = {.lex_state = 0}, [5005] = {.lex_state = 0}, [5006] = {.lex_state = 0}, [5007] = {.lex_state = 0}, [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 0}, + [5009] = {.lex_state = 81}, [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 81}, + [5011] = {.lex_state = 0}, [5012] = {.lex_state = 0}, [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 81}, + [5014] = {.lex_state = 81}, + [5015] = {.lex_state = 0}, [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 81}, - [5019] = {.lex_state = 81}, + [5017] = {.lex_state = 81}, + [5018] = {.lex_state = 0}, + [5019] = {.lex_state = 0}, [5020] = {.lex_state = 0}, [5021] = {.lex_state = 0}, - [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 0}, + [5022] = {.lex_state = 15}, + [5023] = {.lex_state = 7}, [5024] = {.lex_state = 0}, [5025] = {.lex_state = 0}, [5026] = {.lex_state = 0}, [5027] = {.lex_state = 81}, - [5028] = {.lex_state = 0}, - [5029] = {.lex_state = 15}, + [5028] = {.lex_state = 81}, + [5029] = {.lex_state = 0}, [5030] = {.lex_state = 81}, [5031] = {.lex_state = 0}, - [5032] = {.lex_state = 0}, + [5032] = {.lex_state = 15}, [5033] = {.lex_state = 0}, - [5034] = {.lex_state = 15}, + [5034] = {.lex_state = 0}, [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 81}, - [5037] = {.lex_state = 0}, - [5038] = {.lex_state = 81}, + [5036] = {.lex_state = 0}, + [5037] = {.lex_state = 81}, + [5038] = {.lex_state = 0}, [5039] = {.lex_state = 15}, [5040] = {.lex_state = 0}, [5041] = {.lex_state = 0}, @@ -17983,83 +11533,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5048] = {.lex_state = 0}, [5049] = {.lex_state = 0}, [5050] = {.lex_state = 0}, - [5051] = {.lex_state = 0}, + [5051] = {.lex_state = 81}, [5052] = {.lex_state = 0}, [5053] = {.lex_state = 0}, [5054] = {.lex_state = 0}, [5055] = {.lex_state = 0}, [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 0}, - [5058] = {.lex_state = 81}, + [5057] = {.lex_state = 81}, + [5058] = {.lex_state = 0}, [5059] = {.lex_state = 0}, [5060] = {.lex_state = 0}, [5061] = {.lex_state = 0}, [5062] = {.lex_state = 0}, [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 81}, + [5064] = {.lex_state = 0}, [5065] = {.lex_state = 0}, [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 0}, + [5067] = {.lex_state = 81}, [5068] = {.lex_state = 0}, [5069] = {.lex_state = 0}, - [5070] = {.lex_state = 0}, + [5070] = {.lex_state = 15}, [5071] = {.lex_state = 0}, [5072] = {.lex_state = 0}, [5073] = {.lex_state = 81}, - [5074] = {.lex_state = 15}, + [5074] = {.lex_state = 81}, [5075] = {.lex_state = 0}, [5076] = {.lex_state = 0}, [5077] = {.lex_state = 0}, [5078] = {.lex_state = 0}, - [5079] = {.lex_state = 81}, + [5079] = {.lex_state = 0}, [5080] = {.lex_state = 0}, [5081] = {.lex_state = 0}, [5082] = {.lex_state = 0}, [5083] = {.lex_state = 0}, - [5084] = {.lex_state = 81}, + [5084] = {.lex_state = 0}, [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 0}, - [5087] = {.lex_state = 0}, + [5086] = {.lex_state = 7}, + [5087] = {.lex_state = 7}, [5088] = {.lex_state = 0}, [5089] = {.lex_state = 0}, - [5090] = {.lex_state = 0}, + [5090] = {.lex_state = 81}, [5091] = {.lex_state = 0}, [5092] = {.lex_state = 0}, [5093] = {.lex_state = 0}, [5094] = {.lex_state = 0}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 81}, - [5097] = {.lex_state = 0}, - [5098] = {.lex_state = 15}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 15}, + [5098] = {.lex_state = 0}, [5099] = {.lex_state = 0}, [5100] = {.lex_state = 0}, - [5101] = {.lex_state = 15}, + [5101] = {.lex_state = 0}, [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 0}, - [5104] = {.lex_state = 0}, + [5103] = {.lex_state = 81}, + [5104] = {.lex_state = 15}, [5105] = {.lex_state = 81}, [5106] = {.lex_state = 0}, - [5107] = {.lex_state = 81}, + [5107] = {.lex_state = 0}, [5108] = {.lex_state = 15}, [5109] = {.lex_state = 0}, [5110] = {.lex_state = 0}, [5111] = {.lex_state = 0}, [5112] = {.lex_state = 0}, - [5113] = {.lex_state = 0}, + [5113] = {.lex_state = 81}, [5114] = {.lex_state = 0}, [5115] = {.lex_state = 0}, [5116] = {.lex_state = 0}, [5117] = {.lex_state = 0}, [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 81}, + [5119] = {.lex_state = 0}, [5120] = {.lex_state = 0}, [5121] = {.lex_state = 0}, [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 0}, + [5123] = {.lex_state = 81}, [5124] = {.lex_state = 0}, - [5125] = {.lex_state = 0}, + [5125] = {.lex_state = 81}, [5126] = {.lex_state = 0}, - [5127] = {.lex_state = 0}, + [5127] = {.lex_state = 81}, [5128] = {.lex_state = 0}, [5129] = {.lex_state = 0}, [5130] = {.lex_state = 0}, @@ -18067,21 +11617,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5132] = {.lex_state = 0}, [5133] = {.lex_state = 0}, [5134] = {.lex_state = 0}, - [5135] = {.lex_state = 81}, + [5135] = {.lex_state = 0}, [5136] = {.lex_state = 0}, [5137] = {.lex_state = 81}, [5138] = {.lex_state = 0}, [5139] = {.lex_state = 0}, [5140] = {.lex_state = 0}, [5141] = {.lex_state = 0}, - [5142] = {.lex_state = 81}, + [5142] = {.lex_state = 0}, [5143] = {.lex_state = 0}, [5144] = {.lex_state = 0}, [5145] = {.lex_state = 0}, [5146] = {.lex_state = 0}, - [5147] = {.lex_state = 0}, + [5147] = {.lex_state = 15}, [5148] = {.lex_state = 0}, - [5149] = {.lex_state = 81}, + [5149] = {.lex_state = 0}, [5150] = {.lex_state = 0}, [5151] = {.lex_state = 0}, [5152] = {.lex_state = 0}, @@ -18091,52 +11641,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5156] = {.lex_state = 0}, [5157] = {.lex_state = 0}, [5158] = {.lex_state = 0}, - [5159] = {.lex_state = 0}, + [5159] = {.lex_state = 81}, [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 0}, + [5161] = {.lex_state = 15}, [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 81}, - [5164] = {.lex_state = 0}, + [5163] = {.lex_state = 0}, + [5164] = {.lex_state = 81}, [5165] = {.lex_state = 15}, [5166] = {.lex_state = 0}, - [5167] = {.lex_state = 81}, + [5167] = {.lex_state = 0}, [5168] = {.lex_state = 0}, [5169] = {.lex_state = 0}, [5170] = {.lex_state = 0}, - [5171] = {.lex_state = 0}, - [5172] = {.lex_state = 81}, - [5173] = {.lex_state = 15}, + [5171] = {.lex_state = 81}, + [5172] = {.lex_state = 0}, + [5173] = {.lex_state = 134}, [5174] = {.lex_state = 0}, [5175] = {.lex_state = 0}, [5176] = {.lex_state = 0}, [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 134}, - [5179] = {.lex_state = 0}, + [5178] = {.lex_state = 0}, + [5179] = {.lex_state = 81}, [5180] = {.lex_state = 81}, - [5181] = {.lex_state = 0}, + [5181] = {.lex_state = 81}, [5182] = {.lex_state = 0}, [5183] = {.lex_state = 0}, [5184] = {.lex_state = 0}, [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 81}, + [5186] = {.lex_state = 0}, [5187] = {.lex_state = 0}, [5188] = {.lex_state = 0}, [5189] = {.lex_state = 0}, [5190] = {.lex_state = 0}, [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 0}, + [5192] = {.lex_state = 81}, [5193] = {.lex_state = 81}, [5194] = {.lex_state = 0}, - [5195] = {.lex_state = 81}, + [5195] = {.lex_state = 0}, [5196] = {.lex_state = 0}, - [5197] = {.lex_state = 0}, + [5197] = {.lex_state = 81}, [5198] = {.lex_state = 0}, - [5199] = {.lex_state = 81}, + [5199] = {.lex_state = 0}, [5200] = {.lex_state = 0}, - [5201] = {.lex_state = 0}, + [5201] = {.lex_state = 81}, [5202] = {.lex_state = 0}, - [5203] = {.lex_state = 15}, - [5204] = {.lex_state = 81}, + [5203] = {.lex_state = 0}, + [5204] = {.lex_state = 0}, [5205] = {.lex_state = 0}, [5206] = {.lex_state = 0}, [5207] = {.lex_state = 0}, @@ -18146,7 +11696,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5211] = {.lex_state = 0}, [5212] = {.lex_state = 81}, [5213] = {.lex_state = 0}, - [5214] = {.lex_state = 15}, + [5214] = {.lex_state = 0}, [5215] = {.lex_state = 15}, [5216] = {.lex_state = 0}, [5217] = {.lex_state = 0}, @@ -18155,57 +11705,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5220] = {.lex_state = 0}, [5221] = {.lex_state = 0}, [5222] = {.lex_state = 0}, - [5223] = {.lex_state = 81}, + [5223] = {.lex_state = 0}, [5224] = {.lex_state = 0}, - [5225] = {.lex_state = 15}, + [5225] = {.lex_state = 81}, [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 0}, + [5227] = {.lex_state = 15}, [5228] = {.lex_state = 15}, [5229] = {.lex_state = 0}, [5230] = {.lex_state = 0}, - [5231] = {.lex_state = 81}, + [5231] = {.lex_state = 0}, [5232] = {.lex_state = 0}, [5233] = {.lex_state = 0}, [5234] = {.lex_state = 0}, - [5235] = {.lex_state = 81}, + [5235] = {.lex_state = 0}, [5236] = {.lex_state = 0}, [5237] = {.lex_state = 0}, [5238] = {.lex_state = 0}, - [5239] = {.lex_state = 0}, + [5239] = {.lex_state = 81}, [5240] = {.lex_state = 0}, [5241] = {.lex_state = 0}, - [5242] = {.lex_state = 81}, - [5243] = {.lex_state = 0}, + [5242] = {.lex_state = 0}, + [5243] = {.lex_state = 81}, [5244] = {.lex_state = 0}, [5245] = {.lex_state = 0}, - [5246] = {.lex_state = 0}, + [5246] = {.lex_state = 15}, [5247] = {.lex_state = 0}, [5248] = {.lex_state = 0}, [5249] = {.lex_state = 0}, - [5250] = {.lex_state = 81}, + [5250] = {.lex_state = 0}, [5251] = {.lex_state = 0}, - [5252] = {.lex_state = 0}, - [5253] = {.lex_state = 0}, + [5252] = {.lex_state = 81}, + [5253] = {.lex_state = 81}, [5254] = {.lex_state = 0}, - [5255] = {.lex_state = 0}, + [5255] = {.lex_state = 81}, [5256] = {.lex_state = 0}, - [5257] = {.lex_state = 15}, - [5258] = {.lex_state = 7}, - [5259] = {.lex_state = 81}, + [5257] = {.lex_state = 0}, + [5258] = {.lex_state = 0}, + [5259] = {.lex_state = 0}, [5260] = {.lex_state = 0}, [5261] = {.lex_state = 81}, [5262] = {.lex_state = 0}, [5263] = {.lex_state = 0}, [5264] = {.lex_state = 0}, - [5265] = {.lex_state = 81}, + [5265] = {.lex_state = 0}, [5266] = {.lex_state = 0}, [5267] = {.lex_state = 0}, - [5268] = {.lex_state = 0}, - [5269] = {.lex_state = 0}, + [5268] = {.lex_state = 81}, + [5269] = {.lex_state = 15}, [5270] = {.lex_state = 15}, [5271] = {.lex_state = 0}, [5272] = {.lex_state = 0}, - [5273] = {.lex_state = 0}, + [5273] = {.lex_state = 16}, [5274] = {.lex_state = 0}, [5275] = {.lex_state = 0}, [5276] = {.lex_state = 0}, @@ -18219,54 +11769,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5284] = {.lex_state = 0}, [5285] = {.lex_state = 0}, [5286] = {.lex_state = 0}, - [5287] = {.lex_state = 16}, + [5287] = {.lex_state = 0}, [5288] = {.lex_state = 0}, [5289] = {.lex_state = 0}, [5290] = {.lex_state = 0}, - [5291] = {.lex_state = 15}, + [5291] = {.lex_state = 0}, [5292] = {.lex_state = 0}, - [5293] = {.lex_state = 15}, + [5293] = {.lex_state = 0}, [5294] = {.lex_state = 0}, [5295] = {.lex_state = 0}, [5296] = {.lex_state = 0}, - [5297] = {.lex_state = 15}, - [5298] = {.lex_state = 15}, - [5299] = {.lex_state = 0}, - [5300] = {.lex_state = 16}, + [5297] = {.lex_state = 0}, + [5298] = {.lex_state = 0}, + [5299] = {.lex_state = 15}, + [5300] = {.lex_state = 0}, [5301] = {.lex_state = 15}, [5302] = {.lex_state = 0}, [5303] = {.lex_state = 15}, - [5304] = {.lex_state = 0}, + [5304] = {.lex_state = 16}, [5305] = {.lex_state = 0}, [5306] = {.lex_state = 0}, - [5307] = {.lex_state = 15}, + [5307] = {.lex_state = 0}, [5308] = {.lex_state = 15}, - [5309] = {.lex_state = 15}, + [5309] = {.lex_state = 0}, [5310] = {.lex_state = 0}, - [5311] = {.lex_state = 0}, + [5311] = {.lex_state = 15}, [5312] = {.lex_state = 0}, [5313] = {.lex_state = 0}, - [5314] = {.lex_state = 0}, - [5315] = {.lex_state = 15}, + [5314] = {.lex_state = 15}, + [5315] = {.lex_state = 0}, [5316] = {.lex_state = 0}, [5317] = {.lex_state = 0}, [5318] = {.lex_state = 15}, [5319] = {.lex_state = 0}, - [5320] = {.lex_state = 15}, + [5320] = {.lex_state = 0}, [5321] = {.lex_state = 0}, - [5322] = {.lex_state = 15}, + [5322] = {.lex_state = 0}, [5323] = {.lex_state = 0}, - [5324] = {.lex_state = 0}, + [5324] = {.lex_state = 16}, [5325] = {.lex_state = 0}, [5326] = {.lex_state = 15}, - [5327] = {.lex_state = 0}, - [5328] = {.lex_state = 0}, + [5327] = {.lex_state = 15}, + [5328] = {.lex_state = 15}, [5329] = {.lex_state = 0}, [5330] = {.lex_state = 0}, - [5331] = {.lex_state = 0}, + [5331] = {.lex_state = 15}, [5332] = {.lex_state = 0}, - [5333] = {.lex_state = 0}, - [5334] = {.lex_state = 0}, + [5333] = {.lex_state = 15}, + [5334] = {.lex_state = 15}, [5335] = {.lex_state = 0}, [5336] = {.lex_state = 0}, [5337] = {.lex_state = 0}, @@ -18285,7 +11835,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5350] = {.lex_state = 0}, [5351] = {.lex_state = 0}, [5352] = {.lex_state = 0}, - [5353] = {.lex_state = 0}, + [5353] = {.lex_state = 7}, [5354] = {.lex_state = 0}, [5355] = {.lex_state = 0}, [5356] = {.lex_state = 0}, @@ -18295,8 +11845,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5360] = {.lex_state = 0}, [5361] = {.lex_state = 0}, [5362] = {.lex_state = 0}, - [5363] = {.lex_state = 15}, - [5364] = {.lex_state = 0}, + [5363] = {.lex_state = 0}, + [5364] = {.lex_state = 15}, [5365] = {.lex_state = 0}, [5366] = {.lex_state = 0}, [5367] = {.lex_state = 0}, @@ -18311,7 +11861,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5376] = {.lex_state = 0}, [5377] = {.lex_state = 0}, [5378] = {.lex_state = 0}, - [5379] = {.lex_state = 15}, + [5379] = {.lex_state = 0}, [5380] = {.lex_state = 0}, [5381] = {.lex_state = 0}, [5382] = {.lex_state = 0}, @@ -18324,22 +11874,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5389] = {.lex_state = 0}, [5390] = {.lex_state = 0}, [5391] = {.lex_state = 0}, - [5392] = {.lex_state = 15}, + [5392] = {.lex_state = 0}, [5393] = {.lex_state = 0}, [5394] = {.lex_state = 0}, [5395] = {.lex_state = 0}, [5396] = {.lex_state = 0}, - [5397] = {.lex_state = 0}, + [5397] = {.lex_state = 15}, [5398] = {.lex_state = 0}, [5399] = {.lex_state = 0}, [5400] = {.lex_state = 0}, - [5401] = {.lex_state = 0}, - [5402] = {.lex_state = 0}, + [5401] = {.lex_state = 15}, + [5402] = {.lex_state = 12}, [5403] = {.lex_state = 0}, - [5404] = {.lex_state = 0}, + [5404] = {.lex_state = 15}, [5405] = {.lex_state = 0}, - [5406] = {.lex_state = 7}, - [5407] = {.lex_state = 15}, + [5406] = {.lex_state = 0}, + [5407] = {.lex_state = 0}, [5408] = {.lex_state = 0}, [5409] = {.lex_state = 0}, [5410] = {.lex_state = 0}, @@ -18349,12 +11899,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5414] = {.lex_state = 0}, [5415] = {.lex_state = 0}, [5416] = {.lex_state = 0}, - [5417] = {.lex_state = 15}, + [5417] = {.lex_state = 0}, [5418] = {.lex_state = 0}, [5419] = {.lex_state = 0}, [5420] = {.lex_state = 0}, [5421] = {.lex_state = 0}, - [5422] = {.lex_state = 15}, + [5422] = {.lex_state = 0}, [5423] = {.lex_state = 15}, [5424] = {.lex_state = 0}, [5425] = {.lex_state = 0}, @@ -18395,13 +11945,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5460] = {.lex_state = 0}, [5461] = {.lex_state = 0}, [5462] = {.lex_state = 0}, - [5463] = {.lex_state = 0}, + [5463] = {.lex_state = 7}, [5464] = {.lex_state = 0}, - [5465] = {.lex_state = 16}, + [5465] = {.lex_state = 0}, [5466] = {.lex_state = 0}, [5467] = {.lex_state = 0}, [5468] = {.lex_state = 0}, - [5469] = {.lex_state = 0}, + [5469] = {.lex_state = 7}, [5470] = {.lex_state = 0}, [5471] = {.lex_state = 0}, [5472] = {.lex_state = 0}, @@ -18410,17 +11960,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5475] = {.lex_state = 0}, [5476] = {.lex_state = 0}, [5477] = {.lex_state = 0}, - [5478] = {.lex_state = 0}, + [5478] = {.lex_state = 15}, [5479] = {.lex_state = 0}, [5480] = {.lex_state = 0}, - [5481] = {.lex_state = 0}, + [5481] = {.lex_state = 15}, [5482] = {.lex_state = 0}, [5483] = {.lex_state = 0}, [5484] = {.lex_state = 0}, [5485] = {.lex_state = 0}, [5486] = {.lex_state = 0}, [5487] = {.lex_state = 0}, - [5488] = {.lex_state = 81}, + [5488] = {.lex_state = 0}, [5489] = {.lex_state = 0}, [5490] = {.lex_state = 0}, [5491] = {.lex_state = 0}, @@ -18432,14 +11982,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5497] = {.lex_state = 0}, [5498] = {.lex_state = 0}, [5499] = {.lex_state = 0}, - [5500] = {.lex_state = 0}, + [5500] = {.lex_state = 16}, [5501] = {.lex_state = 0}, [5502] = {.lex_state = 0}, [5503] = {.lex_state = 0}, [5504] = {.lex_state = 0}, - [5505] = {.lex_state = 16}, - [5506] = {.lex_state = 0}, - [5507] = {.lex_state = 15}, + [5505] = {.lex_state = 0}, + [5506] = {.lex_state = 15}, + [5507] = {.lex_state = 0}, [5508] = {.lex_state = 0}, [5509] = {.lex_state = 0}, [5510] = {.lex_state = 15}, @@ -18452,8 +12002,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5517] = {.lex_state = 0}, [5518] = {.lex_state = 0}, [5519] = {.lex_state = 0}, - [5520] = {.lex_state = 0}, - [5521] = {.lex_state = 16}, + [5520] = {.lex_state = 16}, + [5521] = {.lex_state = 0}, [5522] = {.lex_state = 0}, [5523] = {.lex_state = 0}, [5524] = {.lex_state = 15}, @@ -18463,19 +12013,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5528] = {.lex_state = 0}, [5529] = {.lex_state = 0}, [5530] = {.lex_state = 0}, - [5531] = {.lex_state = 0}, - [5532] = {.lex_state = 16}, + [5531] = {.lex_state = 16}, + [5532] = {.lex_state = 15}, [5533] = {.lex_state = 0}, [5534] = {.lex_state = 15}, [5535] = {.lex_state = 15}, [5536] = {.lex_state = 15}, - [5537] = {.lex_state = 15}, + [5537] = {.lex_state = 0}, [5538] = {.lex_state = 0}, [5539] = {.lex_state = 0}, [5540] = {.lex_state = 0}, [5541] = {.lex_state = 0}, - [5542] = {.lex_state = 15}, - [5543] = {.lex_state = 0}, + [5542] = {.lex_state = 0}, + [5543] = {.lex_state = 7}, [5544] = {.lex_state = 0}, [5545] = {.lex_state = 0}, [5546] = {.lex_state = 0}, @@ -18486,25 +12036,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5551] = {.lex_state = 0}, [5552] = {.lex_state = 0}, [5553] = {.lex_state = 0}, - [5554] = {.lex_state = 7}, + [5554] = {.lex_state = 0}, [5555] = {.lex_state = 0}, - [5556] = {.lex_state = 15}, + [5556] = {.lex_state = 0}, [5557] = {.lex_state = 0}, [5558] = {.lex_state = 0}, [5559] = {.lex_state = 0}, [5560] = {.lex_state = 0}, - [5561] = {.lex_state = 0}, - [5562] = {.lex_state = 15}, + [5561] = {.lex_state = 15}, + [5562] = {.lex_state = 0}, [5563] = {.lex_state = 0}, - [5564] = {.lex_state = 0}, - [5565] = {.lex_state = 0}, + [5564] = {.lex_state = 15}, + [5565] = {.lex_state = 15}, [5566] = {.lex_state = 15}, - [5567] = {.lex_state = 0}, - [5568] = {.lex_state = 15}, - [5569] = {.lex_state = 0}, - [5570] = {.lex_state = 0}, + [5567] = {.lex_state = 15}, + [5568] = {.lex_state = 0}, + [5569] = {.lex_state = 15}, + [5570] = {.lex_state = 81}, [5571] = {.lex_state = 0}, - [5572] = {.lex_state = 0}, + [5572] = {.lex_state = 15}, [5573] = {.lex_state = 0}, [5574] = {.lex_state = 0}, [5575] = {.lex_state = 15}, @@ -18513,50 +12063,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5578] = {.lex_state = 0}, [5579] = {.lex_state = 0}, [5580] = {.lex_state = 0}, - [5581] = {.lex_state = 15}, + [5581] = {.lex_state = 0}, [5582] = {.lex_state = 0}, [5583] = {.lex_state = 0}, [5584] = {.lex_state = 0}, - [5585] = {.lex_state = 0}, + [5585] = {.lex_state = 7}, [5586] = {.lex_state = 0}, [5587] = {.lex_state = 0}, [5588] = {.lex_state = 0}, [5589] = {.lex_state = 0}, - [5590] = {.lex_state = 7}, - [5591] = {.lex_state = 0}, - [5592] = {.lex_state = 15}, + [5590] = {.lex_state = 0}, + [5591] = {.lex_state = 15}, + [5592] = {.lex_state = 0}, [5593] = {.lex_state = 0}, [5594] = {.lex_state = 15}, [5595] = {.lex_state = 0}, [5596] = {.lex_state = 0}, - [5597] = {.lex_state = 12}, + [5597] = {.lex_state = 0}, [5598] = {.lex_state = 0}, [5599] = {.lex_state = 15}, [5600] = {.lex_state = 15}, [5601] = {.lex_state = 0}, - [5602] = {.lex_state = 15}, + [5602] = {.lex_state = 0}, [5603] = {.lex_state = 0}, [5604] = {.lex_state = 15}, - [5605] = {.lex_state = 0}, - [5606] = {.lex_state = 0}, - [5607] = {.lex_state = 0}, + [5605] = {.lex_state = 15}, + [5606] = {.lex_state = 15}, + [5607] = {.lex_state = 7}, [5608] = {.lex_state = 15}, [5609] = {.lex_state = 0}, [5610] = {.lex_state = 0}, - [5611] = {.lex_state = 15}, - [5612] = {.lex_state = 15}, + [5611] = {.lex_state = 0}, + [5612] = {.lex_state = 0}, [5613] = {.lex_state = 0}, [5614] = {.lex_state = 15}, [5615] = {.lex_state = 0}, [5616] = {.lex_state = 15}, - [5617] = {.lex_state = 7}, + [5617] = {.lex_state = 0}, [5618] = {.lex_state = 0}, [5619] = {.lex_state = 0}, [5620] = {.lex_state = 0}, [5621] = {.lex_state = 0}, [5622] = {.lex_state = 0}, [5623] = {.lex_state = 0}, - [5624] = {.lex_state = 15}, + [5624] = {.lex_state = 0}, [5625] = {.lex_state = 0}, [5626] = {.lex_state = 0}, [5627] = {.lex_state = 0}, @@ -18564,46 +12114,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5629] = {.lex_state = 0}, [5630] = {.lex_state = 0}, [5631] = {.lex_state = 0}, - [5632] = {.lex_state = 15}, - [5633] = {.lex_state = 0}, + [5632] = {.lex_state = 0}, + [5633] = {.lex_state = 15}, [5634] = {.lex_state = 0}, [5635] = {.lex_state = 0}, [5636] = {.lex_state = 0}, [5637] = {.lex_state = 0}, - [5638] = {.lex_state = 15}, - [5639] = {.lex_state = 0}, - [5640] = {.lex_state = 15}, + [5638] = {.lex_state = 0}, + [5639] = {.lex_state = 15}, + [5640] = {.lex_state = 0}, [5641] = {.lex_state = 0}, [5642] = {.lex_state = 0}, [5643] = {.lex_state = 0}, [5644] = {.lex_state = 0}, - [5645] = {.lex_state = 0}, + [5645] = {.lex_state = 15}, [5646] = {.lex_state = 0}, [5647] = {.lex_state = 15}, [5648] = {.lex_state = 0}, - [5649] = {.lex_state = 15}, + [5649] = {.lex_state = 0}, [5650] = {.lex_state = 0}, [5651] = {.lex_state = 0}, [5652] = {.lex_state = 0}, [5653] = {.lex_state = 0}, [5654] = {.lex_state = 0}, [5655] = {.lex_state = 0}, - [5656] = {.lex_state = 0}, + [5656] = {.lex_state = 15}, [5657] = {.lex_state = 0}, [5658] = {.lex_state = 15}, - [5659] = {.lex_state = 0}, + [5659] = {.lex_state = 12}, [5660] = {.lex_state = 0}, - [5661] = {.lex_state = 7}, + [5661] = {.lex_state = 0}, [5662] = {.lex_state = 0}, - [5663] = {.lex_state = 0}, - [5664] = {.lex_state = 0}, - [5665] = {.lex_state = 15}, - [5666] = {.lex_state = 7}, + [5663] = {.lex_state = 15}, + [5664] = {.lex_state = 7}, + [5665] = {.lex_state = 0}, + [5666] = {.lex_state = 15}, [5667] = {.lex_state = 0}, - [5668] = {.lex_state = 0}, - [5669] = {.lex_state = 15}, + [5668] = {.lex_state = 15}, + [5669] = {.lex_state = 0}, [5670] = {.lex_state = 0}, - [5671] = {.lex_state = 0}, + [5671] = {.lex_state = 7}, [5672] = {.lex_state = 15}, [5673] = {.lex_state = 0}, [5674] = {.lex_state = 0}, @@ -18611,15 +12161,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5676] = {.lex_state = 0}, [5677] = {.lex_state = 0}, [5678] = {.lex_state = 15}, - [5679] = {.lex_state = 0}, - [5680] = {.lex_state = 0}, + [5679] = {.lex_state = 15}, + [5680] = {.lex_state = 15}, [5681] = {.lex_state = 0}, - [5682] = {.lex_state = 0}, + [5682] = {.lex_state = 7}, [5683] = {.lex_state = 0}, [5684] = {.lex_state = 0}, [5685] = {.lex_state = 0}, - [5686] = {.lex_state = 7}, - [5687] = {.lex_state = 15}, + [5686] = {.lex_state = 15}, + [5687] = {.lex_state = 0}, [5688] = {.lex_state = 0}, [5689] = {.lex_state = 0}, [5690] = {.lex_state = 0}, @@ -18629,21 +12179,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5694] = {.lex_state = 0}, [5695] = {.lex_state = 0}, [5696] = {.lex_state = 0}, - [5697] = {.lex_state = 12}, + [5697] = {.lex_state = 0}, [5698] = {.lex_state = 0}, - [5699] = {.lex_state = 0}, + [5699] = {.lex_state = 15}, [5700] = {.lex_state = 0}, [5701] = {.lex_state = 0}, - [5702] = {.lex_state = 15}, - [5703] = {.lex_state = 7}, - [5704] = {.lex_state = 15}, + [5702] = {.lex_state = 0}, + [5703] = {.lex_state = 0}, + [5704] = {.lex_state = 0}, [5705] = {.lex_state = 0}, [5706] = {.lex_state = 0}, [5707] = {.lex_state = 0}, [5708] = {.lex_state = 0}, [5709] = {.lex_state = 0}, [5710] = {.lex_state = 0}, - [5711] = {.lex_state = 15}, + [5711] = {.lex_state = 0}, [5712] = {.lex_state = 0}, [5713] = {.lex_state = 0}, [5714] = {.lex_state = 0}, @@ -18659,38 +12209,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5724] = {.lex_state = 0}, [5725] = {.lex_state = 0}, [5726] = {.lex_state = 0}, - [5727] = {.lex_state = 15}, + [5727] = {.lex_state = 7}, [5728] = {.lex_state = 0}, [5729] = {.lex_state = 0}, [5730] = {.lex_state = 0}, [5731] = {.lex_state = 0}, [5732] = {.lex_state = 0}, - [5733] = {.lex_state = 0}, - [5734] = {.lex_state = 0}, + [5733] = {.lex_state = 15}, + [5734] = {.lex_state = 7}, [5735] = {.lex_state = 0}, [5736] = {.lex_state = 0}, [5737] = {.lex_state = 0}, [5738] = {.lex_state = 0}, [5739] = {.lex_state = 0}, - [5740] = {.lex_state = 7}, + [5740] = {.lex_state = 0}, [5741] = {.lex_state = 0}, [5742] = {.lex_state = 0}, [5743] = {.lex_state = 0}, [5744] = {.lex_state = 0}, [5745] = {.lex_state = 0}, - [5746] = {.lex_state = 15}, + [5746] = {.lex_state = 0}, [5747] = {.lex_state = 15}, [5748] = {.lex_state = 0}, - [5749] = {.lex_state = 7}, + [5749] = {.lex_state = 0}, [5750] = {.lex_state = 0}, - [5751] = {.lex_state = 7}, - [5752] = {.lex_state = 0}, - [5753] = {.lex_state = 7}, - [5754] = {.lex_state = 0}, - [5755] = {.lex_state = 15}, + [5751] = {.lex_state = 0}, + [5752] = {.lex_state = 15}, + [5753] = {.lex_state = 0}, + [5754] = {.lex_state = 15}, + [5755] = {.lex_state = 0}, [5756] = {.lex_state = 0}, [5757] = {.lex_state = 0}, - [5758] = {.lex_state = 0}, + [5758] = {.lex_state = 7}, [5759] = {.lex_state = 0}, [5760] = {.lex_state = 0}, [5761] = {.lex_state = 15}, @@ -18701,34 +12251,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5766] = {.lex_state = 0}, [5767] = {.lex_state = 15}, [5768] = {.lex_state = 0}, - [5769] = {.lex_state = 15}, - [5770] = {.lex_state = 15}, - [5771] = {.lex_state = 15}, + [5769] = {.lex_state = 0}, + [5770] = {.lex_state = 7}, + [5771] = {.lex_state = 0}, [5772] = {.lex_state = 15}, - [5773] = {.lex_state = 0}, + [5773] = {.lex_state = 15}, [5774] = {.lex_state = 0}, [5775] = {.lex_state = 0}, [5776] = {.lex_state = 15}, - [5777] = {.lex_state = 0}, + [5777] = {.lex_state = 15}, [5778] = {.lex_state = 0}, [5779] = {.lex_state = 0}, [5780] = {.lex_state = 0}, [5781] = {.lex_state = 0}, - [5782] = {.lex_state = 0}, - [5783] = {.lex_state = 39}, + [5782] = {.lex_state = 7}, + [5783] = {.lex_state = 0}, [5784] = {.lex_state = 0}, - [5785] = {.lex_state = 0}, + [5785] = {.lex_state = 39}, [5786] = {.lex_state = 0}, [5787] = {.lex_state = 0}, - [5788] = {.lex_state = 15}, + [5788] = {.lex_state = 0}, [5789] = {.lex_state = 15}, [5790] = {.lex_state = 0}, [5791] = {.lex_state = 0}, [5792] = {.lex_state = 0}, [5793] = {.lex_state = 0}, [5794] = {.lex_state = 0}, - [5795] = {.lex_state = 0}, - [5796] = {.lex_state = 15}, + [5795] = {.lex_state = 7}, + [5796] = {.lex_state = 0}, [5797] = {.lex_state = 0}, [5798] = {.lex_state = 0}, [5799] = {.lex_state = 15}, @@ -18736,12 +12286,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5801] = {.lex_state = 0}, [5802] = {.lex_state = 0}, [5803] = {.lex_state = 0}, - [5804] = {.lex_state = 0, .external_lex_state = 4}, + [5804] = {.lex_state = 0}, [5805] = {.lex_state = 0}, [5806] = {.lex_state = 0}, [5807] = {.lex_state = 7}, [5808] = {.lex_state = 0}, - [5809] = {.lex_state = 15}, + [5809] = {.lex_state = 0}, [5810] = {.lex_state = 0}, [5811] = {.lex_state = 7}, [5812] = {.lex_state = 0}, @@ -18751,28 +12301,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5816] = {.lex_state = 7}, [5817] = {.lex_state = 0}, [5818] = {.lex_state = 7}, - [5819] = {.lex_state = 7}, + [5819] = {.lex_state = 15}, [5820] = {.lex_state = 7}, [5821] = {.lex_state = 0}, - [5822] = {.lex_state = 7}, + [5822] = {.lex_state = 0}, [5823] = {.lex_state = 0}, [5824] = {.lex_state = 15}, [5825] = {.lex_state = 0}, - [5826] = {.lex_state = 15}, - [5827] = {.lex_state = 15}, + [5826] = {.lex_state = 0}, + [5827] = {.lex_state = 0}, [5828] = {.lex_state = 0}, [5829] = {.lex_state = 0}, [5830] = {.lex_state = 0}, [5831] = {.lex_state = 15}, - [5832] = {.lex_state = 0}, - [5833] = {.lex_state = 0}, - [5834] = {.lex_state = 0}, + [5832] = {.lex_state = 15}, + [5833] = {.lex_state = 15}, + [5834] = {.lex_state = 15}, [5835] = {.lex_state = 15}, - [5836] = {.lex_state = 0}, + [5836] = {.lex_state = 15}, [5837] = {.lex_state = 0}, [5838] = {.lex_state = 0}, [5839] = {.lex_state = 0}, - [5840] = {.lex_state = 0}, + [5840] = {.lex_state = 15}, [5841] = {.lex_state = 0}, [5842] = {.lex_state = 0}, [5843] = {.lex_state = 0}, @@ -18780,19 +12330,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5845] = {.lex_state = 15}, [5846] = {.lex_state = 0}, [5847] = {.lex_state = 0}, - [5848] = {.lex_state = 7}, + [5848] = {.lex_state = 0}, [5849] = {.lex_state = 0}, [5850] = {.lex_state = 0}, [5851] = {.lex_state = 0}, [5852] = {.lex_state = 0}, - [5853] = {.lex_state = 0}, + [5853] = {.lex_state = 7}, [5854] = {.lex_state = 0}, [5855] = {.lex_state = 0}, [5856] = {.lex_state = 39}, - [5857] = {.lex_state = 15}, + [5857] = {.lex_state = 0}, [5858] = {.lex_state = 0}, [5859] = {.lex_state = 0}, - [5860] = {.lex_state = 0}, + [5860] = {.lex_state = 15}, [5861] = {.lex_state = 0}, [5862] = {.lex_state = 15}, [5863] = {.lex_state = 0}, @@ -18800,7 +12350,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5865] = {.lex_state = 15}, [5866] = {.lex_state = 0}, [5867] = {.lex_state = 0}, - [5868] = {.lex_state = 15}, + [5868] = {.lex_state = 0}, [5869] = {.lex_state = 0}, [5870] = {.lex_state = 0}, [5871] = {.lex_state = 15}, @@ -18813,37 +12363,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5878] = {.lex_state = 7}, [5879] = {.lex_state = 0}, [5880] = {.lex_state = 0}, - [5881] = {.lex_state = 0}, + [5881] = {.lex_state = 81}, [5882] = {.lex_state = 7}, [5883] = {.lex_state = 0}, [5884] = {.lex_state = 7}, [5885] = {.lex_state = 7}, - [5886] = {.lex_state = 81}, + [5886] = {.lex_state = 15}, [5887] = {.lex_state = 7}, [5888] = {.lex_state = 15}, [5889] = {.lex_state = 7}, [5890] = {.lex_state = 0}, [5891] = {.lex_state = 7}, [5892] = {.lex_state = 0}, - [5893] = {.lex_state = 15}, - [5894] = {.lex_state = 15}, + [5893] = {.lex_state = 0}, + [5894] = {.lex_state = 0}, [5895] = {.lex_state = 15}, - [5896] = {.lex_state = 0}, + [5896] = {.lex_state = 15}, [5897] = {.lex_state = 0}, [5898] = {.lex_state = 15}, [5899] = {.lex_state = 0}, - [5900] = {.lex_state = 0}, + [5900] = {.lex_state = 15}, [5901] = {.lex_state = 7}, [5902] = {.lex_state = 15}, - [5903] = {.lex_state = 15}, - [5904] = {.lex_state = 0, .external_lex_state = 4}, + [5903] = {.lex_state = 0}, + [5904] = {.lex_state = 15}, [5905] = {.lex_state = 0}, [5906] = {.lex_state = 15}, - [5907] = {.lex_state = 15}, + [5907] = {.lex_state = 7}, [5908] = {.lex_state = 0}, [5909] = {.lex_state = 15}, - [5910] = {.lex_state = 15}, - [5911] = {.lex_state = 0}, + [5910] = {.lex_state = 0}, + [5911] = {.lex_state = 15}, [5912] = {.lex_state = 0}, [5913] = {.lex_state = 0}, [5914] = {.lex_state = 15}, @@ -18851,16 +12401,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5916] = {.lex_state = 0}, [5917] = {.lex_state = 0}, [5918] = {.lex_state = 15}, - [5919] = {.lex_state = 15}, + [5919] = {.lex_state = 0}, [5920] = {.lex_state = 15}, [5921] = {.lex_state = 0}, [5922] = {.lex_state = 0}, - [5923] = {.lex_state = 0}, + [5923] = {.lex_state = 7}, [5924] = {.lex_state = 0}, [5925] = {.lex_state = 0}, - [5926] = {.lex_state = 0}, + [5926] = {.lex_state = 15}, [5927] = {.lex_state = 15}, - [5928] = {.lex_state = 7}, + [5928] = {.lex_state = 0}, [5929] = {.lex_state = 0}, [5930] = {.lex_state = 0}, [5931] = {.lex_state = 0}, @@ -18869,12 +12419,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5934] = {.lex_state = 0}, [5935] = {.lex_state = 0}, [5936] = {.lex_state = 7}, - [5937] = {.lex_state = 7}, + [5937] = {.lex_state = 0}, [5938] = {.lex_state = 7}, [5939] = {.lex_state = 7}, [5940] = {.lex_state = 15}, [5941] = {.lex_state = 7}, - [5942] = {.lex_state = 15}, + [5942] = {.lex_state = 0}, [5943] = {.lex_state = 7}, [5944] = {.lex_state = 0}, [5945] = {.lex_state = 7}, @@ -18883,56 +12433,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5948] = {.lex_state = 0}, [5949] = {.lex_state = 15}, [5950] = {.lex_state = 0}, - [5951] = {.lex_state = 81}, + [5951] = {.lex_state = 0}, [5952] = {.lex_state = 15}, [5953] = {.lex_state = 0}, [5954] = {.lex_state = 0}, - [5955] = {.lex_state = 0}, + [5955] = {.lex_state = 15}, [5956] = {.lex_state = 15}, [5957] = {.lex_state = 15}, - [5958] = {.lex_state = 15}, + [5958] = {.lex_state = 0}, [5959] = {.lex_state = 0}, - [5960] = {.lex_state = 81}, + [5960] = {.lex_state = 15}, [5961] = {.lex_state = 15}, - [5962] = {.lex_state = 15}, + [5962] = {.lex_state = 0}, [5963] = {.lex_state = 15}, [5964] = {.lex_state = 0}, [5965] = {.lex_state = 0}, - [5966] = {.lex_state = 39}, + [5966] = {.lex_state = 7}, [5967] = {.lex_state = 0}, - [5968] = {.lex_state = 39}, + [5968] = {.lex_state = 0}, [5969] = {.lex_state = 39}, [5970] = {.lex_state = 7}, [5971] = {.lex_state = 0}, - [5972] = {.lex_state = 15}, + [5972] = {.lex_state = 39}, [5973] = {.lex_state = 0}, [5974] = {.lex_state = 15}, [5975] = {.lex_state = 0}, [5976] = {.lex_state = 0}, - [5977] = {.lex_state = 0}, + [5977] = {.lex_state = 39}, [5978] = {.lex_state = 0}, [5979] = {.lex_state = 0}, - [5980] = {.lex_state = 0}, + [5980] = {.lex_state = 15}, [5981] = {.lex_state = 0}, [5982] = {.lex_state = 0}, - [5983] = {.lex_state = 15}, + [5983] = {.lex_state = 7}, [5984] = {.lex_state = 0}, [5985] = {.lex_state = 7}, - [5986] = {.lex_state = 0}, - [5987] = {.lex_state = 7}, + [5986] = {.lex_state = 15}, + [5987] = {.lex_state = 0}, [5988] = {.lex_state = 0}, [5989] = {.lex_state = 7}, - [5990] = {.lex_state = 0}, + [5990] = {.lex_state = 7}, [5991] = {.lex_state = 7}, [5992] = {.lex_state = 7}, [5993] = {.lex_state = 0}, [5994] = {.lex_state = 7}, - [5995] = {.lex_state = 15}, + [5995] = {.lex_state = 0}, [5996] = {.lex_state = 7}, - [5997] = {.lex_state = 15}, + [5997] = {.lex_state = 0}, [5998] = {.lex_state = 7}, [5999] = {.lex_state = 0}, - [6000] = {.lex_state = 15}, + [6000] = {.lex_state = 0}, [6001] = {.lex_state = 0}, [6002] = {.lex_state = 15}, [6003] = {.lex_state = 15}, @@ -18940,16 +12490,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6005] = {.lex_state = 15}, [6006] = {.lex_state = 0}, [6007] = {.lex_state = 0}, - [6008] = {.lex_state = 0}, + [6008] = {.lex_state = 15}, [6009] = {.lex_state = 15}, - [6010] = {.lex_state = 0}, - [6011] = {.lex_state = 0}, - [6012] = {.lex_state = 0}, - [6013] = {.lex_state = 0}, + [6010] = {.lex_state = 15}, + [6011] = {.lex_state = 0, .external_lex_state = 4}, + [6012] = {.lex_state = 15}, + [6013] = {.lex_state = 15}, [6014] = {.lex_state = 0}, [6015] = {.lex_state = 0}, [6016] = {.lex_state = 15}, - [6017] = {.lex_state = 15}, + [6017] = {.lex_state = 0}, [6018] = {.lex_state = 0}, [6019] = {.lex_state = 0}, [6020] = {.lex_state = 0}, @@ -18958,20 +12508,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6023] = {.lex_state = 15}, [6024] = {.lex_state = 0}, [6025] = {.lex_state = 15}, - [6026] = {.lex_state = 7}, + [6026] = {.lex_state = 15}, [6027] = {.lex_state = 15}, [6028] = {.lex_state = 0}, [6029] = {.lex_state = 0}, - [6030] = {.lex_state = 0}, + [6030] = {.lex_state = 15}, [6031] = {.lex_state = 0}, [6032] = {.lex_state = 0}, - [6033] = {.lex_state = 0}, - [6034] = {.lex_state = 0, .external_lex_state = 5}, + [6033] = {.lex_state = 7}, + [6034] = {.lex_state = 0}, [6035] = {.lex_state = 0}, [6036] = {.lex_state = 0}, [6037] = {.lex_state = 0}, [6038] = {.lex_state = 7}, - [6039] = {.lex_state = 0, .external_lex_state = 4}, + [6039] = {.lex_state = 0, .external_lex_state = 5}, [6040] = {.lex_state = 0}, [6041] = {.lex_state = 0}, [6042] = {.lex_state = 7}, @@ -18980,20 +12530,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6045] = {.lex_state = 7}, [6046] = {.lex_state = 0}, [6047] = {.lex_state = 7}, - [6048] = {.lex_state = 0}, + [6048] = {.lex_state = 15}, [6049] = {.lex_state = 7}, [6050] = {.lex_state = 0}, [6051] = {.lex_state = 7}, [6052] = {.lex_state = 0}, [6053] = {.lex_state = 0}, - [6054] = {.lex_state = 7}, + [6054] = {.lex_state = 0}, [6055] = {.lex_state = 15}, [6056] = {.lex_state = 0}, [6057] = {.lex_state = 0}, [6058] = {.lex_state = 15}, [6059] = {.lex_state = 0}, [6060] = {.lex_state = 15}, - [6061] = {.lex_state = 15}, + [6061] = {.lex_state = 134}, [6062] = {.lex_state = 15}, [6063] = {.lex_state = 0}, [6064] = {.lex_state = 0}, @@ -19003,10 +12553,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6068] = {.lex_state = 0}, [6069] = {.lex_state = 15}, [6070] = {.lex_state = 0}, - [6071] = {.lex_state = 15}, + [6071] = {.lex_state = 0}, [6072] = {.lex_state = 0}, [6073] = {.lex_state = 0}, - [6074] = {.lex_state = 0}, + [6074] = {.lex_state = 81}, [6075] = {.lex_state = 39}, [6076] = {.lex_state = 0}, [6077] = {.lex_state = 0}, @@ -19015,35 +12565,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6080] = {.lex_state = 15}, [6081] = {.lex_state = 0}, [6082] = {.lex_state = 0}, - [6083] = {.lex_state = 0}, + [6083] = {.lex_state = 15}, [6084] = {.lex_state = 0}, [6085] = {.lex_state = 0}, [6086] = {.lex_state = 0}, [6087] = {.lex_state = 15}, [6088] = {.lex_state = 0}, - [6089] = {.lex_state = 15}, + [6089] = {.lex_state = 0}, [6090] = {.lex_state = 0}, [6091] = {.lex_state = 7}, - [6092] = {.lex_state = 134}, + [6092] = {.lex_state = 15}, [6093] = {.lex_state = 15}, [6094] = {.lex_state = 0}, [6095] = {.lex_state = 7}, [6096] = {.lex_state = 15}, [6097] = {.lex_state = 7}, [6098] = {.lex_state = 7}, - [6099] = {.lex_state = 15}, + [6099] = {.lex_state = 0}, [6100] = {.lex_state = 7}, [6101] = {.lex_state = 15}, [6102] = {.lex_state = 7}, [6103] = {.lex_state = 0}, [6104] = {.lex_state = 7}, [6105] = {.lex_state = 0}, - [6106] = {.lex_state = 0}, + [6106] = {.lex_state = 15}, [6107] = {.lex_state = 15}, [6108] = {.lex_state = 39}, [6109] = {.lex_state = 0}, [6110] = {.lex_state = 15}, - [6111] = {.lex_state = 15}, + [6111] = {.lex_state = 0}, [6112] = {.lex_state = 15}, [6113] = {.lex_state = 0}, [6114] = {.lex_state = 0}, @@ -19052,7 +12602,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6117] = {.lex_state = 0}, [6118] = {.lex_state = 0}, [6119] = {.lex_state = 0}, - [6120] = {.lex_state = 0}, + [6120] = {.lex_state = 15}, [6121] = {.lex_state = 7}, [6122] = {.lex_state = 0}, [6123] = {.lex_state = 0}, @@ -19061,7 +12611,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6126] = {.lex_state = 0}, [6127] = {.lex_state = 0}, [6128] = {.lex_state = 7}, - [6129] = {.lex_state = 15}, + [6129] = {.lex_state = 0}, [6130] = {.lex_state = 7}, [6131] = {.lex_state = 0}, [6132] = {.lex_state = 0}, @@ -19070,80 +12620,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6135] = {.lex_state = 0}, [6136] = {.lex_state = 0}, [6137] = {.lex_state = 0}, - [6138] = {.lex_state = 0}, + [6138] = {.lex_state = 15}, [6139] = {.lex_state = 7}, - [6140] = {.lex_state = 0}, - [6141] = {.lex_state = 0}, + [6140] = {.lex_state = 15}, + [6141] = {.lex_state = 15}, [6142] = {.lex_state = 0}, [6143] = {.lex_state = 0}, [6144] = {.lex_state = 0}, - [6145] = {.lex_state = 15}, - [6146] = {.lex_state = 15}, - [6147] = {.lex_state = 0, .external_lex_state = 4}, + [6145] = {.lex_state = 0}, + [6146] = {.lex_state = 0}, + [6147] = {.lex_state = 15}, [6148] = {.lex_state = 0}, [6149] = {.lex_state = 0}, - [6150] = {.lex_state = 0}, - [6151] = {.lex_state = 0}, + [6150] = {.lex_state = 15}, + [6151] = {.lex_state = 15}, [6152] = {.lex_state = 0}, [6153] = {.lex_state = 0}, - [6154] = {.lex_state = 15}, - [6155] = {.lex_state = 15}, + [6154] = {.lex_state = 0}, + [6155] = {.lex_state = 0}, [6156] = {.lex_state = 0}, [6157] = {.lex_state = 15}, - [6158] = {.lex_state = 15}, + [6158] = {.lex_state = 0}, [6159] = {.lex_state = 0}, [6160] = {.lex_state = 0}, [6161] = {.lex_state = 0}, - [6162] = {.lex_state = 0}, + [6162] = {.lex_state = 15}, [6163] = {.lex_state = 0}, [6164] = {.lex_state = 0}, [6165] = {.lex_state = 0}, - [6166] = {.lex_state = 15}, + [6166] = {.lex_state = 0}, [6167] = {.lex_state = 7}, - [6168] = {.lex_state = 15}, + [6168] = {.lex_state = 81}, [6169] = {.lex_state = 0}, [6170] = {.lex_state = 15}, [6171] = {.lex_state = 0}, [6172] = {.lex_state = 0}, - [6173] = {.lex_state = 0, .external_lex_state = 4}, + [6173] = {.lex_state = 0}, [6174] = {.lex_state = 7}, [6175] = {.lex_state = 0}, [6176] = {.lex_state = 7}, - [6177] = {.lex_state = 0}, - [6178] = {.lex_state = 0}, + [6177] = {.lex_state = 15}, + [6178] = {.lex_state = 15}, [6179] = {.lex_state = 7}, [6180] = {.lex_state = 7}, [6181] = {.lex_state = 0}, [6182] = {.lex_state = 0}, [6183] = {.lex_state = 0}, [6184] = {.lex_state = 7}, - [6185] = {.lex_state = 0}, + [6185] = {.lex_state = 0, .external_lex_state = 4}, [6186] = {.lex_state = 0}, [6187] = {.lex_state = 0}, - [6188] = {.lex_state = 0}, + [6188] = {.lex_state = 0, .external_lex_state = 4}, [6189] = {.lex_state = 0}, [6190] = {.lex_state = 0}, - [6191] = {.lex_state = 0}, + [6191] = {.lex_state = 0, .external_lex_state = 4}, [6192] = {.lex_state = 0}, [6193] = {.lex_state = 0}, - [6194] = {.lex_state = 7}, + [6194] = {.lex_state = 0}, [6195] = {.lex_state = 0}, [6196] = {.lex_state = 0}, - [6197] = {.lex_state = 0, .external_lex_state = 4}, + [6197] = {.lex_state = 0}, [6198] = {.lex_state = 0}, - [6199] = {.lex_state = 15}, + [6199] = {.lex_state = 0}, [6200] = {.lex_state = 0}, - [6201] = {.lex_state = 15}, + [6201] = {.lex_state = 0}, [6202] = {.lex_state = 15}, - [6203] = {.lex_state = 0}, - [6204] = {.lex_state = 0}, + [6203] = {.lex_state = 15}, + [6204] = {.lex_state = 15}, [6205] = {.lex_state = 0}, [6206] = {.lex_state = 0}, - [6207] = {.lex_state = 0}, + [6207] = {.lex_state = 15}, [6208] = {.lex_state = 7}, [6209] = {.lex_state = 15}, [6210] = {.lex_state = 15}, - [6211] = {.lex_state = 0}, + [6211] = {.lex_state = 0, .external_lex_state = 4}, [6212] = {.lex_state = 7}, [6213] = {.lex_state = 7}, [6214] = {.lex_state = 15}, @@ -19151,26 +12701,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6216] = {.lex_state = 7}, [6217] = {.lex_state = 7}, [6218] = {.lex_state = 0}, - [6219] = {.lex_state = 0}, + [6219] = {.lex_state = 15}, [6220] = {.lex_state = 7}, [6221] = {.lex_state = 0}, [6222] = {.lex_state = 0}, - [6223] = {.lex_state = 0}, + [6223] = {.lex_state = 81}, [6224] = {.lex_state = 0}, [6225] = {.lex_state = 0}, - [6226] = {.lex_state = 15}, + [6226] = {.lex_state = 0}, [6227] = {.lex_state = 0}, - [6228] = {.lex_state = 0}, - [6229] = {.lex_state = 81}, + [6228] = {.lex_state = 15}, + [6229] = {.lex_state = 0}, [6230] = {.lex_state = 0}, [6231] = {.lex_state = 0}, [6232] = {.lex_state = 0}, - [6233] = {.lex_state = 0}, + [6233] = {.lex_state = 81}, [6234] = {.lex_state = 0}, [6235] = {.lex_state = 0}, [6236] = {.lex_state = 0}, [6237] = {.lex_state = 15}, - [6238] = {.lex_state = 81}, + [6238] = {.lex_state = 0}, [6239] = {.lex_state = 15}, [6240] = {.lex_state = 0}, [6241] = {.lex_state = 0}, @@ -19188,54 +12738,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6253] = {.lex_state = 0}, [6254] = {.lex_state = 0}, [6255] = {.lex_state = 7}, - [6256] = {.lex_state = 15}, + [6256] = {.lex_state = 0}, [6257] = {.lex_state = 0}, [6258] = {.lex_state = 0}, [6259] = {.lex_state = 0}, - [6260] = {.lex_state = 15}, + [6260] = {.lex_state = 0}, [6261] = {.lex_state = 0}, - [6262] = {.lex_state = 15}, + [6262] = {.lex_state = 0}, [6263] = {.lex_state = 0}, - [6264] = {.lex_state = 0}, + [6264] = {.lex_state = 15}, [6265] = {.lex_state = 0}, - [6266] = {.lex_state = 0}, + [6266] = {.lex_state = 15}, [6267] = {.lex_state = 0}, [6268] = {.lex_state = 0}, - [6269] = {.lex_state = 0}, - [6270] = {.lex_state = 0}, - [6271] = {.lex_state = 15}, + [6269] = {.lex_state = 15}, + [6270] = {.lex_state = 15}, + [6271] = {.lex_state = 0}, [6272] = {.lex_state = 15}, - [6273] = {.lex_state = 0}, + [6273] = {.lex_state = 15}, [6274] = {.lex_state = 0, .external_lex_state = 5}, [6275] = {.lex_state = 0}, [6276] = {.lex_state = 0}, [6277] = {.lex_state = 0}, [6278] = {.lex_state = 7}, [6279] = {.lex_state = 15}, - [6280] = {.lex_state = 15}, + [6280] = {.lex_state = 0}, [6281] = {.lex_state = 15}, [6282] = {.lex_state = 7}, [6283] = {.lex_state = 7}, - [6284] = {.lex_state = 15}, - [6285] = {.lex_state = 0}, + [6284] = {.lex_state = 0}, + [6285] = {.lex_state = 15}, [6286] = {.lex_state = 7}, [6287] = {.lex_state = 7}, - [6288] = {.lex_state = 15}, - [6289] = {.lex_state = 0}, + [6288] = {.lex_state = 0}, + [6289] = {.lex_state = 15}, [6290] = {.lex_state = 7}, - [6291] = {.lex_state = 0}, + [6291] = {.lex_state = 15}, [6292] = {.lex_state = 0}, [6293] = {.lex_state = 0}, [6294] = {.lex_state = 0}, - [6295] = {.lex_state = 0}, + [6295] = {.lex_state = 7}, [6296] = {.lex_state = 0}, [6297] = {.lex_state = 0}, [6298] = {.lex_state = 0}, [6299] = {.lex_state = 0}, [6300] = {.lex_state = 0}, - [6301] = {.lex_state = 7}, + [6301] = {.lex_state = 0}, [6302] = {.lex_state = 0}, - [6303] = {.lex_state = 0}, + [6303] = {.lex_state = 15}, [6304] = {.lex_state = 0}, [6305] = {.lex_state = 0}, [6306] = {.lex_state = 0}, @@ -19248,7 +12798,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6313] = {.lex_state = 7}, [6314] = {.lex_state = 15}, [6315] = {.lex_state = 0}, - [6316] = {.lex_state = 15}, + [6316] = {.lex_state = 0}, [6317] = {.lex_state = 7}, [6318] = {.lex_state = 7}, [6319] = {.lex_state = 0}, @@ -19258,22 +12808,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6323] = {.lex_state = 0}, [6324] = {.lex_state = 0}, [6325] = {.lex_state = 7}, - [6326] = {.lex_state = 15}, + [6326] = {.lex_state = 0}, [6327] = {.lex_state = 0}, [6328] = {.lex_state = 0}, [6329] = {.lex_state = 0}, [6330] = {.lex_state = 0}, - [6331] = {.lex_state = 0}, - [6332] = {.lex_state = 15}, + [6331] = {.lex_state = 0, .external_lex_state = 4}, + [6332] = {.lex_state = 0}, [6333] = {.lex_state = 0}, [6334] = {.lex_state = 0}, [6335] = {.lex_state = 0}, - [6336] = {.lex_state = 15}, + [6336] = {.lex_state = 0}, [6337] = {.lex_state = 0}, - [6338] = {.lex_state = 15}, + [6338] = {.lex_state = 0}, [6339] = {.lex_state = 0}, [6340] = {.lex_state = 0}, - [6341] = {.lex_state = 0}, + [6341] = {.lex_state = 15}, [6342] = {.lex_state = 0}, [6343] = {.lex_state = 0}, [6344] = {.lex_state = 0}, @@ -19294,7 +12844,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6359] = {.lex_state = 0}, [6360] = {.lex_state = 0}, [6361] = {.lex_state = 15}, - [6362] = {.lex_state = 0}, + [6362] = {.lex_state = 15}, [6363] = {.lex_state = 0}, [6364] = {.lex_state = 15}, [6365] = {.lex_state = 15}, @@ -19307,7 +12857,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6372] = {.lex_state = 0}, [6373] = {.lex_state = 0}, [6374] = {.lex_state = 15}, - [6375] = {.lex_state = 0}, + [6375] = {.lex_state = 15}, [6376] = {.lex_state = 0}, [6377] = {.lex_state = 15}, [6378] = {.lex_state = 15}, @@ -19315,10 +12865,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6380] = {.lex_state = 15}, [6381] = {.lex_state = 0}, [6382] = {.lex_state = 0}, - [6383] = {.lex_state = 15}, + [6383] = {.lex_state = 0}, [6384] = {.lex_state = 0}, [6385] = {.lex_state = 0}, - [6386] = {.lex_state = 0}, + [6386] = {.lex_state = 134}, [6387] = {.lex_state = 15}, [6388] = {.lex_state = 0}, [6389] = {.lex_state = 0}, @@ -19333,28 +12883,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6398] = {.lex_state = 0}, [6399] = {.lex_state = 0}, [6400] = {.lex_state = 15}, - [6401] = {.lex_state = 15}, + [6401] = {.lex_state = 0}, [6402] = {.lex_state = 0}, [6403] = {.lex_state = 15}, [6404] = {.lex_state = 15}, [6405] = {.lex_state = 0}, [6406] = {.lex_state = 15}, [6407] = {.lex_state = 0}, - [6408] = {.lex_state = 15}, + [6408] = {.lex_state = 0}, [6409] = {.lex_state = 0}, [6410] = {.lex_state = 0}, - [6411] = {.lex_state = 134}, + [6411] = {.lex_state = 15}, [6412] = {.lex_state = 0}, [6413] = {.lex_state = 15}, - [6414] = {.lex_state = 0}, + [6414] = {.lex_state = 15}, [6415] = {.lex_state = 0}, [6416] = {.lex_state = 15}, [6417] = {.lex_state = 15}, [6418] = {.lex_state = 0}, [6419] = {.lex_state = 15}, [6420] = {.lex_state = 0}, - [6421] = {.lex_state = 15}, - [6422] = {.lex_state = 15}, + [6421] = {.lex_state = 0}, + [6422] = {.lex_state = 0}, [6423] = {.lex_state = 0}, [6424] = {.lex_state = 15}, [6425] = {.lex_state = 134}, @@ -19382,20 +12932,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6447] = {.lex_state = 134}, [6448] = {.lex_state = 15}, [6449] = {.lex_state = 134}, - [6450] = {.lex_state = 15}, - [6451] = {.lex_state = 7}, + [6450] = {.lex_state = 0}, + [6451] = {.lex_state = 0}, [6452] = {.lex_state = 0}, - [6453] = {.lex_state = 15}, + [6453] = {.lex_state = 0}, [6454] = {.lex_state = 15}, [6455] = {.lex_state = 0}, - [6456] = {.lex_state = 0}, + [6456] = {.lex_state = 7}, [6457] = {.lex_state = 0}, - [6458] = {.lex_state = 0}, - [6459] = {.lex_state = 15}, + [6458] = {.lex_state = 15}, + [6459] = {.lex_state = 0}, [6460] = {.lex_state = 0}, - [6461] = {.lex_state = 0}, + [6461] = {.lex_state = 15}, [6462] = {.lex_state = 0}, - [6463] = {.lex_state = 7}, + [6463] = {.lex_state = 15}, }; enum { @@ -19614,6 +13164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1), [anon_sym_protected] = ACTIONS(1), [anon_sym_private] = ACTIONS(1), + [anon_sym_internal] = ACTIONS(1), [sym_inout_modifier] = ACTIONS(1), [sym_xhp_class_identifier] = ACTIONS(1), [sym_xhp_comment] = ACTIONS(1), @@ -19634,12 +13185,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_script] = STATE(6059), - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(38), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), [sym_empty_statement] = STATE(38), [sym_expression_statement] = STATE(38), [sym_compound_statement] = STATE(38), @@ -19659,39 +13210,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(38), [sym_try_statement] = STATE(38), [sym_using_statement] = STATE(38), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(38), [sym_function_declaration] = STATE(38), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(38), [sym_interface_declaration] = STATE(38), [sym_class_declaration] = STATE(38), @@ -19699,19 +13250,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(38), [sym_abstract_enum_class_declaration] = STATE(38), [sym_enum_class_declaration] = STATE(38), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(38), - [sym_abstract_modifier] = STATE(4053), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(38), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_script_token1] = ACTIONS(9), @@ -19799,12 +13350,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(2), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), [sym_empty_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_compound_statement] = STATE(2), @@ -19824,39 +13375,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(2), [sym_try_statement] = STATE(2), [sym_using_statement] = STATE(2), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(2), [sym_function_declaration] = STATE(2), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(2), [sym_interface_declaration] = STATE(2), [sym_class_declaration] = STATE(2), @@ -19864,19 +13415,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(2), [sym_abstract_enum_class_declaration] = STATE(2), [sym_enum_class_declaration] = STATE(2), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(2), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(2), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(129), [sym_variable] = ACTIONS(132), [sym_pipe_variable] = ACTIONS(135), @@ -19965,12 +13516,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(2), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), [sym_empty_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_compound_statement] = STATE(2), @@ -19990,39 +13541,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(2), [sym_try_statement] = STATE(2), [sym_using_statement] = STATE(2), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(2), [sym_function_declaration] = STATE(2), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(2), [sym_interface_declaration] = STATE(2), [sym_class_declaration] = STATE(2), @@ -20030,19 +13581,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(2), [sym_abstract_enum_class_declaration] = STATE(2), [sym_enum_class_declaration] = STATE(2), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(2), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(2), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -20131,12 +13682,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(2), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), [sym_empty_statement] = STATE(2), [sym_expression_statement] = STATE(2), [sym_compound_statement] = STATE(2), @@ -20156,39 +13707,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(2), [sym_try_statement] = STATE(2), [sym_using_statement] = STATE(2), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(2), [sym_function_declaration] = STATE(2), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(2), [sym_interface_declaration] = STATE(2), [sym_class_declaration] = STATE(2), @@ -20196,19 +13747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(2), [sym_abstract_enum_class_declaration] = STATE(2), [sym_enum_class_declaration] = STATE(2), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(2), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(2), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -20297,12 +13848,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(3), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), [sym_empty_statement] = STATE(3), [sym_expression_statement] = STATE(3), [sym_compound_statement] = STATE(3), @@ -20322,39 +13873,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(3), [sym_try_statement] = STATE(3), [sym_using_statement] = STATE(3), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(3), [sym_function_declaration] = STATE(3), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(3), [sym_interface_declaration] = STATE(3), [sym_class_declaration] = STATE(3), @@ -20362,19 +13913,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(3), [sym_abstract_enum_class_declaration] = STATE(3), [sym_enum_class_declaration] = STATE(3), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(3), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(3), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -20463,12 +14014,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(4), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), [sym_empty_statement] = STATE(4), [sym_expression_statement] = STATE(4), [sym_compound_statement] = STATE(4), @@ -20488,39 +14039,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(4), [sym_try_statement] = STATE(4), [sym_using_statement] = STATE(4), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(4), [sym_function_declaration] = STATE(4), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(4), [sym_interface_declaration] = STATE(4), [sym_class_declaration] = STATE(4), @@ -20528,19 +14079,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(4), [sym_abstract_enum_class_declaration] = STATE(4), [sym_enum_class_declaration] = STATE(4), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(4), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(4), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -20629,84 +14180,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -20793,95 +14344,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(40), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_compound_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_throw_statement] = STATE(40), + [sym_echo_statement] = STATE(40), + [sym_unset_statement] = STATE(40), + [sym_concurrent_statement] = STATE(40), + [sym_use_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_foreach_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_try_statement] = STATE(40), + [sym_using_statement] = STATE(40), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(40), + [sym_function_declaration] = STATE(40), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(40), + [sym_interface_declaration] = STATE(40), + [sym_class_declaration] = STATE(40), + [sym_const_declaration] = STATE(40), + [sym_enum_declaration] = STATE(40), + [sym_abstract_enum_class_declaration] = STATE(40), + [sym_enum_class_declaration] = STATE(40), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(40), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(40), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [ts_builtin_sym_end] = ACTIONS(447), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(387), - [anon_sym_newtype] = ACTIONS(387), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(389), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -20890,30 +14442,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_return] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_echo] = ACTIONS(407), - [anon_sym_unset] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(411), - [anon_sym_use] = ACTIONS(413), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_foreach] = ACTIONS(421), - [anon_sym_while] = ACTIONS(423), - [anon_sym_do] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_using] = ACTIONS(431), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -20944,97 +14495,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(443), - [sym_xhp_modifier] = ACTIONS(445), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [9] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -21121,12 +14672,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(9), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(9), [sym_expression_statement] = STATE(9), [sym_compound_statement] = STATE(9), @@ -21146,39 +14697,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(9), [sym_try_statement] = STATE(9), [sym_using_statement] = STATE(9), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(9), [sym_function_declaration] = STATE(9), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(9), [sym_interface_declaration] = STATE(9), [sym_class_declaration] = STATE(9), @@ -21186,19 +14737,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(9), [sym_abstract_enum_class_declaration] = STATE(9), [sym_enum_class_declaration] = STATE(9), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(9), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(9), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -21285,12 +14836,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(7), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_compound_statement] = STATE(7), @@ -21310,39 +14861,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(7), [sym_try_statement] = STATE(7), [sym_using_statement] = STATE(7), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(7), [sym_function_declaration] = STATE(7), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_class_declaration] = STATE(7), @@ -21350,19 +14901,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(7), [sym_abstract_enum_class_declaration] = STATE(7), [sym_enum_class_declaration] = STATE(7), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(7), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(7), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -21449,84 +15000,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -21613,12 +15164,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(12), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(12), [sym_expression_statement] = STATE(12), [sym_compound_statement] = STATE(12), @@ -21638,39 +15189,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(12), [sym_try_statement] = STATE(12), [sym_using_statement] = STATE(12), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(12), [sym_function_declaration] = STATE(12), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(12), [sym_interface_declaration] = STATE(12), [sym_class_declaration] = STATE(12), @@ -21678,19 +15229,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(12), [sym_abstract_enum_class_declaration] = STATE(12), [sym_enum_class_declaration] = STATE(12), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(12), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(12), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -21777,84 +15328,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -21941,12 +15492,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(14), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(14), [sym_expression_statement] = STATE(14), [sym_compound_statement] = STATE(14), @@ -21966,39 +15517,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(14), [sym_try_statement] = STATE(14), [sym_using_statement] = STATE(14), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(14), [sym_function_declaration] = STATE(14), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(14), [sym_interface_declaration] = STATE(14), [sym_class_declaration] = STATE(14), @@ -22006,19 +15557,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(14), [sym_abstract_enum_class_declaration] = STATE(14), [sym_enum_class_declaration] = STATE(14), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(14), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(14), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -22105,84 +15656,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -22269,12 +15820,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [17] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(16), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(16), [sym_expression_statement] = STATE(16), [sym_compound_statement] = STATE(16), @@ -22294,39 +15845,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(16), [sym_try_statement] = STATE(16), [sym_using_statement] = STATE(16), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(16), [sym_function_declaration] = STATE(16), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(16), [sym_interface_declaration] = STATE(16), [sym_class_declaration] = STATE(16), @@ -22334,19 +15885,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(16), [sym_abstract_enum_class_declaration] = STATE(16), [sym_enum_class_declaration] = STATE(16), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(16), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(16), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -22433,84 +15984,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -22597,84 +16148,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(41), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_compound_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_echo_statement] = STATE(41), - [sym_unset_statement] = STATE(41), - [sym_concurrent_statement] = STATE(41), - [sym_use_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_foreach_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_using_statement] = STATE(41), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(39), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_compound_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_throw_statement] = STATE(39), + [sym_echo_statement] = STATE(39), + [sym_unset_statement] = STATE(39), + [sym_concurrent_statement] = STATE(39), + [sym_use_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_foreach_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_try_statement] = STATE(39), + [sym_using_statement] = STATE(39), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(41), - [sym_function_declaration] = STATE(41), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(41), - [sym_interface_declaration] = STATE(41), - [sym_class_declaration] = STATE(41), - [sym_const_declaration] = STATE(41), - [sym_enum_declaration] = STATE(41), - [sym_abstract_enum_class_declaration] = STATE(41), - [sym_enum_class_declaration] = STATE(41), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(41), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(39), + [sym_function_declaration] = STATE(39), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(39), + [sym_interface_declaration] = STATE(39), + [sym_class_declaration] = STATE(39), + [sym_const_declaration] = STATE(39), + [sym_enum_declaration] = STATE(39), + [sym_abstract_enum_class_declaration] = STATE(39), + [sym_enum_class_declaration] = STATE(39), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(39), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(41), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(39), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -22761,12 +16312,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [20] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(18), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(18), [sym_expression_statement] = STATE(18), [sym_compound_statement] = STATE(18), @@ -22786,39 +16337,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(18), [sym_try_statement] = STATE(18), [sym_using_statement] = STATE(18), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(18), [sym_function_declaration] = STATE(18), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(18), [sym_interface_declaration] = STATE(18), [sym_class_declaration] = STATE(18), @@ -22826,19 +16377,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(18), [sym_abstract_enum_class_declaration] = STATE(18), [sym_enum_class_declaration] = STATE(18), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(18), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(18), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -22925,84 +16476,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -23089,12 +16640,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(21), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(21), [sym_expression_statement] = STATE(21), [sym_compound_statement] = STATE(21), @@ -23114,39 +16665,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(21), [sym_try_statement] = STATE(21), [sym_using_statement] = STATE(21), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(21), [sym_function_declaration] = STATE(21), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(21), [sym_interface_declaration] = STATE(21), [sym_class_declaration] = STATE(21), @@ -23154,19 +16705,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(21), [sym_abstract_enum_class_declaration] = STATE(21), [sym_enum_class_declaration] = STATE(21), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(21), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(21), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -23253,96 +16804,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(40), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_compound_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_throw_statement] = STATE(40), - [sym_echo_statement] = STATE(40), - [sym_unset_statement] = STATE(40), - [sym_concurrent_statement] = STATE(40), - [sym_use_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_foreach_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym_using_statement] = STATE(40), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(40), - [sym_function_declaration] = STATE(40), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(40), - [sym_interface_declaration] = STATE(40), - [sym_class_declaration] = STATE(40), - [sym_const_declaration] = STATE(40), - [sym_enum_declaration] = STATE(40), - [sym_abstract_enum_class_declaration] = STATE(40), - [sym_enum_class_declaration] = STATE(40), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(40), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(40), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [ts_builtin_sym_end] = ACTIONS(477), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6096), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(387), + [anon_sym_newtype] = ACTIONS(387), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(389), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -23351,29 +16901,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_echo] = ACTIONS(407), + [anon_sym_unset] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(411), + [anon_sym_use] = ACTIONS(413), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_foreach] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_do] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [anon_sym_using] = ACTIONS(431), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -23404,97 +16955,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_interface] = ACTIONS(435), + [anon_sym_class] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_abstract] = ACTIONS(441), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(443), + [sym_xhp_modifier] = ACTIONS(445), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [24] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(29), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_compound_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_echo_statement] = STATE(29), - [sym_unset_statement] = STATE(29), - [sym_concurrent_statement] = STATE(29), - [sym_use_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_foreach_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_using_statement] = STATE(29), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(30), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_compound_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_echo_statement] = STATE(30), + [sym_unset_statement] = STATE(30), + [sym_concurrent_statement] = STATE(30), + [sym_use_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_foreach_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_using_statement] = STATE(30), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(29), - [sym_function_declaration] = STATE(29), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(29), - [sym_interface_declaration] = STATE(29), - [sym_class_declaration] = STATE(29), - [sym_const_declaration] = STATE(29), - [sym_enum_declaration] = STATE(29), - [sym_abstract_enum_class_declaration] = STATE(29), - [sym_enum_class_declaration] = STATE(29), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(29), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(30), + [sym_function_declaration] = STATE(30), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(30), + [sym_interface_declaration] = STATE(30), + [sym_class_declaration] = STATE(30), + [sym_const_declaration] = STATE(30), + [sym_enum_declaration] = STATE(30), + [sym_abstract_enum_class_declaration] = STATE(30), + [sym_enum_class_declaration] = STATE(30), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(30), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(29), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(30), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -23581,84 +17132,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(8), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_compound_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_throw_statement] = STATE(8), - [sym_echo_statement] = STATE(8), - [sym_unset_statement] = STATE(8), - [sym_concurrent_statement] = STATE(8), - [sym_use_statement] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_foreach_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_try_statement] = STATE(8), - [sym_using_statement] = STATE(8), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(23), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_compound_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_echo_statement] = STATE(23), + [sym_unset_statement] = STATE(23), + [sym_concurrent_statement] = STATE(23), + [sym_use_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_foreach_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_using_statement] = STATE(23), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(8), - [sym_function_declaration] = STATE(8), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(8), - [sym_interface_declaration] = STATE(8), - [sym_class_declaration] = STATE(8), - [sym_const_declaration] = STATE(8), - [sym_enum_declaration] = STATE(8), - [sym_abstract_enum_class_declaration] = STATE(8), - [sym_enum_class_declaration] = STATE(8), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(8), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(23), + [sym_function_declaration] = STATE(23), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(23), + [sym_interface_declaration] = STATE(23), + [sym_class_declaration] = STATE(23), + [sym_const_declaration] = STATE(23), + [sym_enum_declaration] = STATE(23), + [sym_abstract_enum_class_declaration] = STATE(23), + [sym_enum_class_declaration] = STATE(23), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(23), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(8), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(23), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -23745,84 +17296,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -23909,12 +17460,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [27] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(26), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(26), [sym_expression_statement] = STATE(26), [sym_compound_statement] = STATE(26), @@ -23934,39 +17485,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(26), [sym_try_statement] = STATE(26), [sym_using_statement] = STATE(26), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(26), [sym_function_declaration] = STATE(26), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(26), [sym_interface_declaration] = STATE(26), [sym_class_declaration] = STATE(26), @@ -23974,19 +17525,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(26), [sym_abstract_enum_class_declaration] = STATE(26), [sym_enum_class_declaration] = STATE(26), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(26), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(26), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -24073,84 +17624,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [28] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -24237,84 +17788,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(28), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_compound_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_echo_statement] = STATE(28), + [sym_unset_statement] = STATE(28), + [sym_concurrent_statement] = STATE(28), + [sym_use_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_foreach_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_using_statement] = STATE(28), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(28), + [sym_function_declaration] = STATE(28), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(28), + [sym_interface_declaration] = STATE(28), + [sym_class_declaration] = STATE(28), + [sym_const_declaration] = STATE(28), + [sym_enum_declaration] = STATE(28), + [sym_abstract_enum_class_declaration] = STATE(28), + [sym_enum_class_declaration] = STATE(28), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(28), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(28), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -24401,84 +17952,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(34), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_compound_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_throw_statement] = STATE(34), - [sym_echo_statement] = STATE(34), - [sym_unset_statement] = STATE(34), - [sym_concurrent_statement] = STATE(34), - [sym_use_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_foreach_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_using_statement] = STATE(34), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(34), - [sym_function_declaration] = STATE(34), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(34), - [sym_interface_declaration] = STATE(34), - [sym_class_declaration] = STATE(34), - [sym_const_declaration] = STATE(34), - [sym_enum_declaration] = STATE(34), - [sym_abstract_enum_class_declaration] = STATE(34), - [sym_enum_class_declaration] = STATE(34), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(34), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(34), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -24565,84 +18116,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(28), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_compound_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_echo_statement] = STATE(28), - [sym_unset_statement] = STATE(28), - [sym_concurrent_statement] = STATE(28), - [sym_use_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_foreach_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_using_statement] = STATE(28), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(34), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_compound_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_echo_statement] = STATE(34), + [sym_unset_statement] = STATE(34), + [sym_concurrent_statement] = STATE(34), + [sym_use_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_foreach_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_using_statement] = STATE(34), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(28), - [sym_function_declaration] = STATE(28), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(28), - [sym_interface_declaration] = STATE(28), - [sym_class_declaration] = STATE(28), - [sym_const_declaration] = STATE(28), - [sym_enum_declaration] = STATE(28), - [sym_abstract_enum_class_declaration] = STATE(28), - [sym_enum_class_declaration] = STATE(28), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(28), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(34), + [sym_function_declaration] = STATE(34), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(34), + [sym_interface_declaration] = STATE(34), + [sym_class_declaration] = STATE(34), + [sym_const_declaration] = STATE(34), + [sym_enum_declaration] = STATE(34), + [sym_abstract_enum_class_declaration] = STATE(34), + [sym_enum_class_declaration] = STATE(34), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(34), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(28), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(34), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -24729,84 +18280,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [32] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -24893,12 +18444,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [33] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(32), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(32), [sym_expression_statement] = STATE(32), [sym_compound_statement] = STATE(32), @@ -24918,39 +18469,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(32), [sym_try_statement] = STATE(32), [sym_using_statement] = STATE(32), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(32), [sym_function_declaration] = STATE(32), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(32), [sym_interface_declaration] = STATE(32), [sym_class_declaration] = STATE(32), @@ -24958,19 +18509,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(32), [sym_abstract_enum_class_declaration] = STATE(32), [sym_enum_class_declaration] = STATE(32), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(32), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(32), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -25057,84 +18608,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [34] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -25221,84 +18772,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [35] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -25385,12 +18936,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [36] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(35), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), [sym_empty_statement] = STATE(35), [sym_expression_statement] = STATE(35), [sym_compound_statement] = STATE(35), @@ -25410,39 +18961,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(35), [sym_try_statement] = STATE(35), [sym_using_statement] = STATE(35), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(35), [sym_function_declaration] = STATE(35), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(35), [sym_interface_declaration] = STATE(35), [sym_class_declaration] = STATE(35), @@ -25450,19 +19001,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(35), [sym_abstract_enum_class_declaration] = STATE(35), [sym_enum_class_declaration] = STATE(35), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(35), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(35), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -25549,12 +19100,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(37), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), [sym_empty_statement] = STATE(37), [sym_expression_statement] = STATE(37), [sym_compound_statement] = STATE(37), @@ -25574,39 +19125,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(37), [sym_try_statement] = STATE(37), [sym_using_statement] = STATE(37), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(37), [sym_function_declaration] = STATE(37), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(37), [sym_interface_declaration] = STATE(37), [sym_class_declaration] = STATE(37), @@ -25614,19 +19165,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(37), [sym_abstract_enum_class_declaration] = STATE(37), [sym_enum_class_declaration] = STATE(37), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(37), - [sym_abstract_modifier] = STATE(4053), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(37), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [ts_builtin_sym_end] = ACTIONS(177), [sym_identifier] = ACTIONS(129), [sym_variable] = ACTIONS(132), @@ -25713,12 +19264,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(37), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), [sym_empty_statement] = STATE(37), [sym_expression_statement] = STATE(37), [sym_compound_statement] = STATE(37), @@ -25738,39 +19289,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(37), [sym_try_statement] = STATE(37), [sym_using_statement] = STATE(37), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(37), [sym_function_declaration] = STATE(37), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(37), [sym_interface_declaration] = STATE(37), [sym_class_declaration] = STATE(37), @@ -25778,20 +19329,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(37), [sym_abstract_enum_class_declaration] = STATE(37), [sym_enum_class_declaration] = STATE(37), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(37), - [sym_abstract_modifier] = STATE(4053), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(37), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [ts_builtin_sym_end] = ACTIONS(477), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [ts_builtin_sym_end] = ACTIONS(447), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -25877,176 +19428,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(129), - [sym_variable] = ACTIONS(132), - [sym_pipe_variable] = ACTIONS(135), - [anon_sym_type] = ACTIONS(592), - [anon_sym_newtype] = ACTIONS(592), - [anon_sym_shape] = ACTIONS(141), - [anon_sym_tuple] = ACTIONS(144), - [anon_sym_clone] = ACTIONS(147), - [anon_sym_new] = ACTIONS(150), - [anon_sym_print] = ACTIONS(153), - [anon_sym_namespace] = ACTIONS(595), - [anon_sym_include] = ACTIONS(159), - [anon_sym_include_once] = ACTIONS(159), - [anon_sym_require] = ACTIONS(162), - [anon_sym_require_once] = ACTIONS(162), - [anon_sym_BSLASH] = ACTIONS(165), - [anon_sym_self] = ACTIONS(168), - [anon_sym_parent] = ACTIONS(168), - [anon_sym_static] = ACTIONS(168), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_LT_LT_LT] = ACTIONS(174), - [anon_sym_RBRACE] = ACTIONS(177), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_return] = ACTIONS(607), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_throw] = ACTIONS(616), - [anon_sym_echo] = ACTIONS(619), - [anon_sym_unset] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_concurrent] = ACTIONS(625), - [anon_sym_use] = ACTIONS(628), - [anon_sym_function] = ACTIONS(212), - [anon_sym_const] = ACTIONS(631), - [anon_sym_if] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(637), - [anon_sym_foreach] = ACTIONS(640), - [anon_sym_while] = ACTIONS(643), - [anon_sym_do] = ACTIONS(646), - [anon_sym_for] = ACTIONS(649), - [anon_sym_try] = ACTIONS(652), - [anon_sym_using] = ACTIONS(655), - [sym_float] = ACTIONS(244), - [sym_integer] = ACTIONS(247), - [anon_sym_true] = ACTIONS(250), - [anon_sym_True] = ACTIONS(250), - [anon_sym_TRUE] = ACTIONS(250), - [anon_sym_false] = ACTIONS(253), - [anon_sym_False] = ACTIONS(253), - [anon_sym_FALSE] = ACTIONS(253), - [anon_sym_null] = ACTIONS(256), - [anon_sym_Null] = ACTIONS(256), - [anon_sym_NULL] = ACTIONS(256), - [sym_string] = ACTIONS(244), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(262), - [anon_sym_array] = ACTIONS(265), - [anon_sym_varray] = ACTIONS(265), - [anon_sym_darray] = ACTIONS(265), - [anon_sym_vec] = ACTIONS(265), - [anon_sym_dict] = ACTIONS(265), - [anon_sym_keyset] = ACTIONS(265), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(271), - [anon_sym_list] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(262), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_await] = ACTIONS(277), - [anon_sym_async] = ACTIONS(280), - [anon_sym_yield] = ACTIONS(283), - [anon_sym_trait] = ACTIONS(658), - [anon_sym_interface] = ACTIONS(661), - [anon_sym_class] = ACTIONS(664), - [anon_sym_enum] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(301), - [sym_final_modifier] = ACTIONS(673), - [sym_xhp_modifier] = ACTIONS(676), - [sym_xhp_identifier] = ACTIONS(310), - [sym_xhp_class_identifier] = ACTIONS(135), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_type] = ACTIONS(387), + [anon_sym_newtype] = ACTIONS(387), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(389), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_echo] = ACTIONS(407), + [anon_sym_unset] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(411), + [anon_sym_use] = ACTIONS(413), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_foreach] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_do] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [anon_sym_using] = ACTIONS(431), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_interface] = ACTIONS(435), + [anon_sym_class] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_abstract] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(121), + [sym_final_modifier] = ACTIONS(443), + [sym_xhp_modifier] = ACTIONS(445), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [40] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(37), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), [sym_empty_statement] = STATE(37), [sym_expression_statement] = STATE(37), [sym_compound_statement] = STATE(37), @@ -26066,39 +19617,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(37), [sym_try_statement] = STATE(37), [sym_using_statement] = STATE(37), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(37), [sym_function_declaration] = STATE(37), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(37), [sym_interface_declaration] = STATE(37), [sym_class_declaration] = STATE(37), @@ -26106,20 +19657,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(37), [sym_abstract_enum_class_declaration] = STATE(37), [sym_enum_class_declaration] = STATE(37), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(37), - [sym_abstract_modifier] = STATE(4053), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), [aux_sym_script_repeat1] = STATE(37), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [ts_builtin_sym_end] = ACTIONS(679), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [ts_builtin_sym_end] = ACTIONS(594), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -26205,258 +19756,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [41] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(39), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_compound_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_echo_statement] = STATE(39), - [sym_unset_statement] = STATE(39), - [sym_concurrent_statement] = STATE(39), - [sym_use_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_foreach_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_using_statement] = STATE(39), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(41), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_compound_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_echo_statement] = STATE(41), + [sym_unset_statement] = STATE(41), + [sym_concurrent_statement] = STATE(41), + [sym_use_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_foreach_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_using_statement] = STATE(41), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(39), - [sym_function_declaration] = STATE(39), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(39), - [sym_interface_declaration] = STATE(39), - [sym_class_declaration] = STATE(39), - [sym_const_declaration] = STATE(39), - [sym_enum_declaration] = STATE(39), - [sym_abstract_enum_class_declaration] = STATE(39), - [sym_enum_class_declaration] = STATE(39), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(39), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(41), + [sym_function_declaration] = STATE(41), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(41), + [sym_interface_declaration] = STATE(41), + [sym_class_declaration] = STATE(41), + [sym_const_declaration] = STATE(41), + [sym_enum_declaration] = STATE(41), + [sym_abstract_enum_class_declaration] = STATE(41), + [sym_enum_class_declaration] = STATE(41), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(41), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_script_repeat1] = STATE(39), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(387), - [anon_sym_newtype] = ACTIONS(387), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(389), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_return] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_echo] = ACTIONS(407), - [anon_sym_unset] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(411), - [anon_sym_use] = ACTIONS(413), - [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_foreach] = ACTIONS(421), - [anon_sym_while] = ACTIONS(423), - [anon_sym_do] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_using] = ACTIONS(431), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(443), - [sym_xhp_modifier] = ACTIONS(445), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_script_repeat1] = STATE(41), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(129), + [sym_variable] = ACTIONS(132), + [sym_pipe_variable] = ACTIONS(135), + [anon_sym_type] = ACTIONS(596), + [anon_sym_newtype] = ACTIONS(596), + [anon_sym_shape] = ACTIONS(141), + [anon_sym_tuple] = ACTIONS(144), + [anon_sym_clone] = ACTIONS(147), + [anon_sym_new] = ACTIONS(150), + [anon_sym_print] = ACTIONS(153), + [anon_sym_namespace] = ACTIONS(599), + [anon_sym_include] = ACTIONS(159), + [anon_sym_include_once] = ACTIONS(159), + [anon_sym_require] = ACTIONS(162), + [anon_sym_require_once] = ACTIONS(162), + [anon_sym_BSLASH] = ACTIONS(165), + [anon_sym_self] = ACTIONS(168), + [anon_sym_parent] = ACTIONS(168), + [anon_sym_static] = ACTIONS(168), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_LT_LT_LT] = ACTIONS(174), + [anon_sym_RBRACE] = ACTIONS(177), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_return] = ACTIONS(611), + [anon_sym_break] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(617), + [anon_sym_throw] = ACTIONS(620), + [anon_sym_echo] = ACTIONS(623), + [anon_sym_unset] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_concurrent] = ACTIONS(629), + [anon_sym_use] = ACTIONS(632), + [anon_sym_function] = ACTIONS(212), + [anon_sym_const] = ACTIONS(635), + [anon_sym_if] = ACTIONS(638), + [anon_sym_switch] = ACTIONS(641), + [anon_sym_foreach] = ACTIONS(644), + [anon_sym_while] = ACTIONS(647), + [anon_sym_do] = ACTIONS(650), + [anon_sym_for] = ACTIONS(653), + [anon_sym_try] = ACTIONS(656), + [anon_sym_using] = ACTIONS(659), + [sym_float] = ACTIONS(244), + [sym_integer] = ACTIONS(247), + [anon_sym_true] = ACTIONS(250), + [anon_sym_True] = ACTIONS(250), + [anon_sym_TRUE] = ACTIONS(250), + [anon_sym_false] = ACTIONS(253), + [anon_sym_False] = ACTIONS(253), + [anon_sym_FALSE] = ACTIONS(253), + [anon_sym_null] = ACTIONS(256), + [anon_sym_Null] = ACTIONS(256), + [anon_sym_NULL] = ACTIONS(256), + [sym_string] = ACTIONS(244), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(262), + [anon_sym_array] = ACTIONS(265), + [anon_sym_varray] = ACTIONS(265), + [anon_sym_darray] = ACTIONS(265), + [anon_sym_vec] = ACTIONS(265), + [anon_sym_dict] = ACTIONS(265), + [anon_sym_keyset] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(268), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_list] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(262), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_await] = ACTIONS(277), + [anon_sym_async] = ACTIONS(280), + [anon_sym_yield] = ACTIONS(283), + [anon_sym_trait] = ACTIONS(662), + [anon_sym_interface] = ACTIONS(665), + [anon_sym_class] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(671), + [anon_sym_abstract] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(301), + [sym_final_modifier] = ACTIONS(677), + [sym_xhp_modifier] = ACTIONS(680), + [sym_xhp_identifier] = ACTIONS(310), + [sym_xhp_class_identifier] = ACTIONS(135), [sym_comment] = ACTIONS(3), }, [42] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1126), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1126), - [sym_expression_statement] = STATE(1126), - [sym_compound_statement] = STATE(1126), - [sym_return_statement] = STATE(1126), - [sym_break_statement] = STATE(1126), - [sym_continue_statement] = STATE(1126), - [sym_throw_statement] = STATE(1126), - [sym_echo_statement] = STATE(1126), - [sym_unset_statement] = STATE(1126), - [sym_concurrent_statement] = STATE(1126), - [sym_use_statement] = STATE(1126), - [sym_if_statement] = STATE(1126), - [sym_switch_statement] = STATE(1126), - [sym_foreach_statement] = STATE(1126), - [sym_while_statement] = STATE(1126), - [sym_do_statement] = STATE(1126), - [sym_for_statement] = STATE(1126), - [sym_try_statement] = STATE(1126), - [sym_using_statement] = STATE(1126), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1589), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1589), + [sym_expression_statement] = STATE(1589), + [sym_compound_statement] = STATE(1589), + [sym_return_statement] = STATE(1589), + [sym_break_statement] = STATE(1589), + [sym_continue_statement] = STATE(1589), + [sym_throw_statement] = STATE(1589), + [sym_echo_statement] = STATE(1589), + [sym_unset_statement] = STATE(1589), + [sym_concurrent_statement] = STATE(1589), + [sym_use_statement] = STATE(1589), + [sym_if_statement] = STATE(1589), + [sym_switch_statement] = STATE(1589), + [sym_foreach_statement] = STATE(1589), + [sym_while_statement] = STATE(1589), + [sym_do_statement] = STATE(1589), + [sym_for_statement] = STATE(1589), + [sym_try_statement] = STATE(1589), + [sym_using_statement] = STATE(1589), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1126), - [sym_function_declaration] = STATE(1126), - [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1126), - [sym_interface_declaration] = STATE(1126), - [sym_class_declaration] = STATE(1126), - [sym_const_declaration] = STATE(1126), - [sym_enum_declaration] = STATE(1126), - [sym_abstract_enum_class_declaration] = STATE(1126), - [sym_enum_class_declaration] = STATE(1126), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1126), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1589), + [sym_function_declaration] = STATE(1589), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1589), + [sym_interface_declaration] = STATE(1589), + [sym_class_declaration] = STATE(1589), + [sym_const_declaration] = STATE(1589), + [sym_enum_declaration] = STATE(1589), + [sym_abstract_enum_class_declaration] = STATE(1589), + [sym_enum_class_declaration] = STATE(1589), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1589), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(313), - [anon_sym_newtype] = ACTIONS(313), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(315), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -26465,29 +20016,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_echo] = ACTIONS(333), - [anon_sym_unset] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(337), - [anon_sym_use] = ACTIONS(339), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_foreach] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_do] = ACTIONS(353), - [anon_sym_for] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_using] = ACTIONS(359), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -26518,96 +20069,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(361), - [anon_sym_interface] = ACTIONS(363), - [anon_sym_class] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(369), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(371), - [sym_xhp_modifier] = ACTIONS(373), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [43] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(793), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(793), - [sym_expression_statement] = STATE(793), - [sym_compound_statement] = STATE(793), - [sym_return_statement] = STATE(793), - [sym_break_statement] = STATE(793), - [sym_continue_statement] = STATE(793), - [sym_throw_statement] = STATE(793), - [sym_echo_statement] = STATE(793), - [sym_unset_statement] = STATE(793), - [sym_concurrent_statement] = STATE(793), - [sym_use_statement] = STATE(793), - [sym_if_statement] = STATE(793), - [sym_switch_statement] = STATE(793), - [sym_foreach_statement] = STATE(793), - [sym_while_statement] = STATE(793), - [sym_do_statement] = STATE(793), - [sym_for_statement] = STATE(793), - [sym_try_statement] = STATE(793), - [sym_using_statement] = STATE(793), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(763), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(763), + [sym_expression_statement] = STATE(763), + [sym_compound_statement] = STATE(763), + [sym_return_statement] = STATE(763), + [sym_break_statement] = STATE(763), + [sym_continue_statement] = STATE(763), + [sym_throw_statement] = STATE(763), + [sym_echo_statement] = STATE(763), + [sym_unset_statement] = STATE(763), + [sym_concurrent_statement] = STATE(763), + [sym_use_statement] = STATE(763), + [sym_if_statement] = STATE(763), + [sym_switch_statement] = STATE(763), + [sym_foreach_statement] = STATE(763), + [sym_while_statement] = STATE(763), + [sym_do_statement] = STATE(763), + [sym_for_statement] = STATE(763), + [sym_try_statement] = STATE(763), + [sym_using_statement] = STATE(763), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(793), - [sym_function_declaration] = STATE(793), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(763), + [sym_function_declaration] = STATE(763), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(793), - [sym_interface_declaration] = STATE(793), - [sym_class_declaration] = STATE(793), - [sym_const_declaration] = STATE(793), - [sym_enum_declaration] = STATE(793), - [sym_abstract_enum_class_declaration] = STATE(793), - [sym_enum_class_declaration] = STATE(793), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(793), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(763), + [sym_interface_declaration] = STATE(763), + [sym_class_declaration] = STATE(763), + [sym_const_declaration] = STATE(763), + [sym_enum_declaration] = STATE(763), + [sym_abstract_enum_class_declaration] = STATE(763), + [sym_enum_class_declaration] = STATE(763), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(763), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -26693,83 +20244,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4493), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4493), - [sym_expression_statement] = STATE(4493), - [sym_compound_statement] = STATE(4493), - [sym_return_statement] = STATE(4493), - [sym_break_statement] = STATE(4493), - [sym_continue_statement] = STATE(4493), - [sym_throw_statement] = STATE(4493), - [sym_echo_statement] = STATE(4493), - [sym_unset_statement] = STATE(4493), - [sym_concurrent_statement] = STATE(4493), - [sym_use_statement] = STATE(4493), - [sym_if_statement] = STATE(4493), - [sym_switch_statement] = STATE(4493), - [sym_foreach_statement] = STATE(4493), - [sym_while_statement] = STATE(4493), - [sym_do_statement] = STATE(4493), - [sym_for_statement] = STATE(4493), - [sym_try_statement] = STATE(4493), - [sym_using_statement] = STATE(4493), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1076), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1076), + [sym_expression_statement] = STATE(1076), + [sym_compound_statement] = STATE(1076), + [sym_return_statement] = STATE(1076), + [sym_break_statement] = STATE(1076), + [sym_continue_statement] = STATE(1076), + [sym_throw_statement] = STATE(1076), + [sym_echo_statement] = STATE(1076), + [sym_unset_statement] = STATE(1076), + [sym_concurrent_statement] = STATE(1076), + [sym_use_statement] = STATE(1076), + [sym_if_statement] = STATE(1076), + [sym_switch_statement] = STATE(1076), + [sym_foreach_statement] = STATE(1076), + [sym_while_statement] = STATE(1076), + [sym_do_statement] = STATE(1076), + [sym_for_statement] = STATE(1076), + [sym_try_statement] = STATE(1076), + [sym_using_statement] = STATE(1076), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4493), - [sym_function_declaration] = STATE(4493), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4493), - [sym_interface_declaration] = STATE(4493), - [sym_class_declaration] = STATE(4493), - [sym_const_declaration] = STATE(4493), - [sym_enum_declaration] = STATE(4493), - [sym_abstract_enum_class_declaration] = STATE(4493), - [sym_enum_class_declaration] = STATE(4493), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4493), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1076), + [sym_function_declaration] = STATE(1076), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1076), + [sym_interface_declaration] = STATE(1076), + [sym_class_declaration] = STATE(1076), + [sym_const_declaration] = STATE(1076), + [sym_enum_declaration] = STATE(1076), + [sym_abstract_enum_class_declaration] = STATE(1076), + [sym_enum_class_declaration] = STATE(1076), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1076), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -26855,94 +20406,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1373), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1373), - [sym_expression_statement] = STATE(1373), - [sym_compound_statement] = STATE(1373), - [sym_return_statement] = STATE(1373), - [sym_break_statement] = STATE(1373), - [sym_continue_statement] = STATE(1373), - [sym_throw_statement] = STATE(1373), - [sym_echo_statement] = STATE(1373), - [sym_unset_statement] = STATE(1373), - [sym_concurrent_statement] = STATE(1373), - [sym_use_statement] = STATE(1373), - [sym_if_statement] = STATE(1373), - [sym_switch_statement] = STATE(1373), - [sym_foreach_statement] = STATE(1373), - [sym_while_statement] = STATE(1373), - [sym_do_statement] = STATE(1373), - [sym_for_statement] = STATE(1373), - [sym_try_statement] = STATE(1373), - [sym_using_statement] = STATE(1373), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1077), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1077), + [sym_expression_statement] = STATE(1077), + [sym_compound_statement] = STATE(1077), + [sym_return_statement] = STATE(1077), + [sym_break_statement] = STATE(1077), + [sym_continue_statement] = STATE(1077), + [sym_throw_statement] = STATE(1077), + [sym_echo_statement] = STATE(1077), + [sym_unset_statement] = STATE(1077), + [sym_concurrent_statement] = STATE(1077), + [sym_use_statement] = STATE(1077), + [sym_if_statement] = STATE(1077), + [sym_switch_statement] = STATE(1077), + [sym_foreach_statement] = STATE(1077), + [sym_while_statement] = STATE(1077), + [sym_do_statement] = STATE(1077), + [sym_for_statement] = STATE(1077), + [sym_try_statement] = STATE(1077), + [sym_using_statement] = STATE(1077), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1373), - [sym_function_declaration] = STATE(1373), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1373), - [sym_interface_declaration] = STATE(1373), - [sym_class_declaration] = STATE(1373), - [sym_const_declaration] = STATE(1373), - [sym_enum_declaration] = STATE(1373), - [sym_abstract_enum_class_declaration] = STATE(1373), - [sym_enum_class_declaration] = STATE(1373), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1373), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1077), + [sym_function_declaration] = STATE(1077), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1077), + [sym_interface_declaration] = STATE(1077), + [sym_class_declaration] = STATE(1077), + [sym_const_declaration] = STATE(1077), + [sym_enum_declaration] = STATE(1077), + [sym_abstract_enum_class_declaration] = STATE(1077), + [sym_enum_class_declaration] = STATE(1077), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1077), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -26951,29 +20502,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -27004,107 +20555,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [46] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1365), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1365), - [sym_expression_statement] = STATE(1365), - [sym_compound_statement] = STATE(1365), - [sym_return_statement] = STATE(1365), - [sym_break_statement] = STATE(1365), - [sym_continue_statement] = STATE(1365), - [sym_throw_statement] = STATE(1365), - [sym_echo_statement] = STATE(1365), - [sym_unset_statement] = STATE(1365), - [sym_concurrent_statement] = STATE(1365), - [sym_use_statement] = STATE(1365), - [sym_if_statement] = STATE(1365), - [sym_switch_statement] = STATE(1365), - [sym_foreach_statement] = STATE(1365), - [sym_while_statement] = STATE(1365), - [sym_do_statement] = STATE(1365), - [sym_for_statement] = STATE(1365), - [sym_try_statement] = STATE(1365), - [sym_using_statement] = STATE(1365), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1093), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1093), + [sym_expression_statement] = STATE(1093), + [sym_compound_statement] = STATE(1093), + [sym_return_statement] = STATE(1093), + [sym_break_statement] = STATE(1093), + [sym_continue_statement] = STATE(1093), + [sym_throw_statement] = STATE(1093), + [sym_echo_statement] = STATE(1093), + [sym_unset_statement] = STATE(1093), + [sym_concurrent_statement] = STATE(1093), + [sym_use_statement] = STATE(1093), + [sym_if_statement] = STATE(1093), + [sym_switch_statement] = STATE(1093), + [sym_foreach_statement] = STATE(1093), + [sym_while_statement] = STATE(1093), + [sym_do_statement] = STATE(1093), + [sym_for_statement] = STATE(1093), + [sym_try_statement] = STATE(1093), + [sym_using_statement] = STATE(1093), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1365), - [sym_function_declaration] = STATE(1365), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1365), - [sym_interface_declaration] = STATE(1365), - [sym_class_declaration] = STATE(1365), - [sym_const_declaration] = STATE(1365), - [sym_enum_declaration] = STATE(1365), - [sym_abstract_enum_class_declaration] = STATE(1365), - [sym_enum_class_declaration] = STATE(1365), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1365), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1093), + [sym_function_declaration] = STATE(1093), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1093), + [sym_interface_declaration] = STATE(1093), + [sym_class_declaration] = STATE(1093), + [sym_const_declaration] = STATE(1093), + [sym_enum_declaration] = STATE(1093), + [sym_abstract_enum_class_declaration] = STATE(1093), + [sym_enum_class_declaration] = STATE(1093), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1093), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -27113,29 +20664,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -27166,107 +20717,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [47] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1336), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1336), - [sym_expression_statement] = STATE(1336), - [sym_compound_statement] = STATE(1336), - [sym_return_statement] = STATE(1336), - [sym_break_statement] = STATE(1336), - [sym_continue_statement] = STATE(1336), - [sym_throw_statement] = STATE(1336), - [sym_echo_statement] = STATE(1336), - [sym_unset_statement] = STATE(1336), - [sym_concurrent_statement] = STATE(1336), - [sym_use_statement] = STATE(1336), - [sym_if_statement] = STATE(1336), - [sym_switch_statement] = STATE(1336), - [sym_foreach_statement] = STATE(1336), - [sym_while_statement] = STATE(1336), - [sym_do_statement] = STATE(1336), - [sym_for_statement] = STATE(1336), - [sym_try_statement] = STATE(1336), - [sym_using_statement] = STATE(1336), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1094), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1094), + [sym_expression_statement] = STATE(1094), + [sym_compound_statement] = STATE(1094), + [sym_return_statement] = STATE(1094), + [sym_break_statement] = STATE(1094), + [sym_continue_statement] = STATE(1094), + [sym_throw_statement] = STATE(1094), + [sym_echo_statement] = STATE(1094), + [sym_unset_statement] = STATE(1094), + [sym_concurrent_statement] = STATE(1094), + [sym_use_statement] = STATE(1094), + [sym_if_statement] = STATE(1094), + [sym_switch_statement] = STATE(1094), + [sym_foreach_statement] = STATE(1094), + [sym_while_statement] = STATE(1094), + [sym_do_statement] = STATE(1094), + [sym_for_statement] = STATE(1094), + [sym_try_statement] = STATE(1094), + [sym_using_statement] = STATE(1094), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1336), - [sym_function_declaration] = STATE(1336), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1336), - [sym_interface_declaration] = STATE(1336), - [sym_class_declaration] = STATE(1336), - [sym_const_declaration] = STATE(1336), - [sym_enum_declaration] = STATE(1336), - [sym_abstract_enum_class_declaration] = STATE(1336), - [sym_enum_class_declaration] = STATE(1336), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1336), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1094), + [sym_function_declaration] = STATE(1094), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1094), + [sym_interface_declaration] = STATE(1094), + [sym_class_declaration] = STATE(1094), + [sym_const_declaration] = STATE(1094), + [sym_enum_declaration] = STATE(1094), + [sym_abstract_enum_class_declaration] = STATE(1094), + [sym_enum_class_declaration] = STATE(1094), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1094), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -27275,29 +20826,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -27328,107 +20879,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [48] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1334), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1334), - [sym_expression_statement] = STATE(1334), - [sym_compound_statement] = STATE(1334), - [sym_return_statement] = STATE(1334), - [sym_break_statement] = STATE(1334), - [sym_continue_statement] = STATE(1334), - [sym_throw_statement] = STATE(1334), - [sym_echo_statement] = STATE(1334), - [sym_unset_statement] = STATE(1334), - [sym_concurrent_statement] = STATE(1334), - [sym_use_statement] = STATE(1334), - [sym_if_statement] = STATE(1334), - [sym_switch_statement] = STATE(1334), - [sym_foreach_statement] = STATE(1334), - [sym_while_statement] = STATE(1334), - [sym_do_statement] = STATE(1334), - [sym_for_statement] = STATE(1334), - [sym_try_statement] = STATE(1334), - [sym_using_statement] = STATE(1334), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1119), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1119), + [sym_expression_statement] = STATE(1119), + [sym_compound_statement] = STATE(1119), + [sym_return_statement] = STATE(1119), + [sym_break_statement] = STATE(1119), + [sym_continue_statement] = STATE(1119), + [sym_throw_statement] = STATE(1119), + [sym_echo_statement] = STATE(1119), + [sym_unset_statement] = STATE(1119), + [sym_concurrent_statement] = STATE(1119), + [sym_use_statement] = STATE(1119), + [sym_if_statement] = STATE(1119), + [sym_switch_statement] = STATE(1119), + [sym_foreach_statement] = STATE(1119), + [sym_while_statement] = STATE(1119), + [sym_do_statement] = STATE(1119), + [sym_for_statement] = STATE(1119), + [sym_try_statement] = STATE(1119), + [sym_using_statement] = STATE(1119), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1334), - [sym_function_declaration] = STATE(1334), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1334), - [sym_interface_declaration] = STATE(1334), - [sym_class_declaration] = STATE(1334), - [sym_const_declaration] = STATE(1334), - [sym_enum_declaration] = STATE(1334), - [sym_abstract_enum_class_declaration] = STATE(1334), - [sym_enum_class_declaration] = STATE(1334), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1334), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1119), + [sym_function_declaration] = STATE(1119), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1119), + [sym_interface_declaration] = STATE(1119), + [sym_class_declaration] = STATE(1119), + [sym_const_declaration] = STATE(1119), + [sym_enum_declaration] = STATE(1119), + [sym_abstract_enum_class_declaration] = STATE(1119), + [sym_enum_class_declaration] = STATE(1119), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1119), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -27437,29 +20988,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -27490,107 +21041,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [49] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1295), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1295), - [sym_expression_statement] = STATE(1295), - [sym_compound_statement] = STATE(1295), - [sym_return_statement] = STATE(1295), - [sym_break_statement] = STATE(1295), - [sym_continue_statement] = STATE(1295), - [sym_throw_statement] = STATE(1295), - [sym_echo_statement] = STATE(1295), - [sym_unset_statement] = STATE(1295), - [sym_concurrent_statement] = STATE(1295), - [sym_use_statement] = STATE(1295), - [sym_if_statement] = STATE(1295), - [sym_switch_statement] = STATE(1295), - [sym_foreach_statement] = STATE(1295), - [sym_while_statement] = STATE(1295), - [sym_do_statement] = STATE(1295), - [sym_for_statement] = STATE(1295), - [sym_try_statement] = STATE(1295), - [sym_using_statement] = STATE(1295), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1120), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1120), + [sym_expression_statement] = STATE(1120), + [sym_compound_statement] = STATE(1120), + [sym_return_statement] = STATE(1120), + [sym_break_statement] = STATE(1120), + [sym_continue_statement] = STATE(1120), + [sym_throw_statement] = STATE(1120), + [sym_echo_statement] = STATE(1120), + [sym_unset_statement] = STATE(1120), + [sym_concurrent_statement] = STATE(1120), + [sym_use_statement] = STATE(1120), + [sym_if_statement] = STATE(1120), + [sym_switch_statement] = STATE(1120), + [sym_foreach_statement] = STATE(1120), + [sym_while_statement] = STATE(1120), + [sym_do_statement] = STATE(1120), + [sym_for_statement] = STATE(1120), + [sym_try_statement] = STATE(1120), + [sym_using_statement] = STATE(1120), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1295), - [sym_function_declaration] = STATE(1295), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1295), - [sym_interface_declaration] = STATE(1295), - [sym_class_declaration] = STATE(1295), - [sym_const_declaration] = STATE(1295), - [sym_enum_declaration] = STATE(1295), - [sym_abstract_enum_class_declaration] = STATE(1295), - [sym_enum_class_declaration] = STATE(1295), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1295), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1120), + [sym_function_declaration] = STATE(1120), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1120), + [sym_interface_declaration] = STATE(1120), + [sym_class_declaration] = STATE(1120), + [sym_const_declaration] = STATE(1120), + [sym_enum_declaration] = STATE(1120), + [sym_abstract_enum_class_declaration] = STATE(1120), + [sym_enum_class_declaration] = STATE(1120), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1120), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -27599,29 +21150,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -27652,107 +21203,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [50] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1290), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1290), - [sym_expression_statement] = STATE(1290), - [sym_compound_statement] = STATE(1290), - [sym_return_statement] = STATE(1290), - [sym_break_statement] = STATE(1290), - [sym_continue_statement] = STATE(1290), - [sym_throw_statement] = STATE(1290), - [sym_echo_statement] = STATE(1290), - [sym_unset_statement] = STATE(1290), - [sym_concurrent_statement] = STATE(1290), - [sym_use_statement] = STATE(1290), - [sym_if_statement] = STATE(1290), - [sym_switch_statement] = STATE(1290), - [sym_foreach_statement] = STATE(1290), - [sym_while_statement] = STATE(1290), - [sym_do_statement] = STATE(1290), - [sym_for_statement] = STATE(1290), - [sym_try_statement] = STATE(1290), - [sym_using_statement] = STATE(1290), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1140), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1140), + [sym_expression_statement] = STATE(1140), + [sym_compound_statement] = STATE(1140), + [sym_return_statement] = STATE(1140), + [sym_break_statement] = STATE(1140), + [sym_continue_statement] = STATE(1140), + [sym_throw_statement] = STATE(1140), + [sym_echo_statement] = STATE(1140), + [sym_unset_statement] = STATE(1140), + [sym_concurrent_statement] = STATE(1140), + [sym_use_statement] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_switch_statement] = STATE(1140), + [sym_foreach_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_do_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_try_statement] = STATE(1140), + [sym_using_statement] = STATE(1140), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1290), - [sym_function_declaration] = STATE(1290), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1290), - [sym_interface_declaration] = STATE(1290), - [sym_class_declaration] = STATE(1290), - [sym_const_declaration] = STATE(1290), - [sym_enum_declaration] = STATE(1290), - [sym_abstract_enum_class_declaration] = STATE(1290), - [sym_enum_class_declaration] = STATE(1290), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1290), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1140), + [sym_function_declaration] = STATE(1140), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1140), + [sym_interface_declaration] = STATE(1140), + [sym_class_declaration] = STATE(1140), + [sym_const_declaration] = STATE(1140), + [sym_enum_declaration] = STATE(1140), + [sym_abstract_enum_class_declaration] = STATE(1140), + [sym_enum_class_declaration] = STATE(1140), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1140), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -27761,29 +21312,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -27814,107 +21365,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [51] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1233), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1233), - [sym_expression_statement] = STATE(1233), - [sym_compound_statement] = STATE(1233), - [sym_return_statement] = STATE(1233), - [sym_break_statement] = STATE(1233), - [sym_continue_statement] = STATE(1233), - [sym_throw_statement] = STATE(1233), - [sym_echo_statement] = STATE(1233), - [sym_unset_statement] = STATE(1233), - [sym_concurrent_statement] = STATE(1233), - [sym_use_statement] = STATE(1233), - [sym_if_statement] = STATE(1233), - [sym_switch_statement] = STATE(1233), - [sym_foreach_statement] = STATE(1233), - [sym_while_statement] = STATE(1233), - [sym_do_statement] = STATE(1233), - [sym_for_statement] = STATE(1233), - [sym_try_statement] = STATE(1233), - [sym_using_statement] = STATE(1233), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1185), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1184), + [sym_expression_statement] = STATE(1183), + [sym_compound_statement] = STATE(1182), + [sym_return_statement] = STATE(1180), + [sym_break_statement] = STATE(1179), + [sym_continue_statement] = STATE(1178), + [sym_throw_statement] = STATE(1177), + [sym_echo_statement] = STATE(1172), + [sym_unset_statement] = STATE(1171), + [sym_concurrent_statement] = STATE(1166), + [sym_use_statement] = STATE(1165), + [sym_if_statement] = STATE(1164), + [sym_switch_statement] = STATE(1161), + [sym_foreach_statement] = STATE(1160), + [sym_while_statement] = STATE(1159), + [sym_do_statement] = STATE(1158), + [sym_for_statement] = STATE(1157), + [sym_try_statement] = STATE(1156), + [sym_using_statement] = STATE(1154), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1233), - [sym_function_declaration] = STATE(1233), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1233), - [sym_interface_declaration] = STATE(1233), - [sym_class_declaration] = STATE(1233), - [sym_const_declaration] = STATE(1233), - [sym_enum_declaration] = STATE(1233), - [sym_abstract_enum_class_declaration] = STATE(1233), - [sym_enum_class_declaration] = STATE(1233), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1233), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1153), + [sym_function_declaration] = STATE(1152), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1151), + [sym_interface_declaration] = STATE(1150), + [sym_class_declaration] = STATE(1149), + [sym_const_declaration] = STATE(1147), + [sym_enum_declaration] = STATE(1145), + [sym_abstract_enum_class_declaration] = STATE(1144), + [sym_enum_class_declaration] = STATE(1143), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1142), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -27923,29 +21474,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -27976,107 +21527,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [52] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1232), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_compound_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_echo_statement] = STATE(1232), - [sym_unset_statement] = STATE(1232), - [sym_concurrent_statement] = STATE(1232), - [sym_use_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_foreach_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_using_statement] = STATE(1232), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1215), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1215), + [sym_expression_statement] = STATE(1215), + [sym_compound_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_echo_statement] = STATE(1215), + [sym_unset_statement] = STATE(1215), + [sym_concurrent_statement] = STATE(1215), + [sym_use_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_foreach_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_using_statement] = STATE(1215), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1232), - [sym_function_declaration] = STATE(1232), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1232), - [sym_interface_declaration] = STATE(1232), - [sym_class_declaration] = STATE(1232), - [sym_const_declaration] = STATE(1232), - [sym_enum_declaration] = STATE(1232), - [sym_abstract_enum_class_declaration] = STATE(1232), - [sym_enum_class_declaration] = STATE(1232), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1232), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1215), + [sym_function_declaration] = STATE(1215), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1215), + [sym_interface_declaration] = STATE(1215), + [sym_class_declaration] = STATE(1215), + [sym_const_declaration] = STATE(1215), + [sym_enum_declaration] = STATE(1215), + [sym_abstract_enum_class_declaration] = STATE(1215), + [sym_enum_class_declaration] = STATE(1215), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1215), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -28085,29 +21636,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -28138,107 +21689,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [53] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1196), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1196), - [sym_expression_statement] = STATE(1196), - [sym_compound_statement] = STATE(1196), - [sym_return_statement] = STATE(1196), - [sym_break_statement] = STATE(1196), - [sym_continue_statement] = STATE(1196), - [sym_throw_statement] = STATE(1196), - [sym_echo_statement] = STATE(1196), - [sym_unset_statement] = STATE(1196), - [sym_concurrent_statement] = STATE(1196), - [sym_use_statement] = STATE(1196), - [sym_if_statement] = STATE(1196), - [sym_switch_statement] = STATE(1196), - [sym_foreach_statement] = STATE(1196), - [sym_while_statement] = STATE(1196), - [sym_do_statement] = STATE(1196), - [sym_for_statement] = STATE(1196), - [sym_try_statement] = STATE(1196), - [sym_using_statement] = STATE(1196), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1414), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1414), + [sym_expression_statement] = STATE(1414), + [sym_compound_statement] = STATE(1414), + [sym_return_statement] = STATE(1414), + [sym_break_statement] = STATE(1414), + [sym_continue_statement] = STATE(1414), + [sym_throw_statement] = STATE(1414), + [sym_echo_statement] = STATE(1414), + [sym_unset_statement] = STATE(1414), + [sym_concurrent_statement] = STATE(1414), + [sym_use_statement] = STATE(1414), + [sym_if_statement] = STATE(1414), + [sym_switch_statement] = STATE(1414), + [sym_foreach_statement] = STATE(1414), + [sym_while_statement] = STATE(1414), + [sym_do_statement] = STATE(1414), + [sym_for_statement] = STATE(1414), + [sym_try_statement] = STATE(1414), + [sym_using_statement] = STATE(1414), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1196), - [sym_function_declaration] = STATE(1196), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1196), - [sym_interface_declaration] = STATE(1196), - [sym_class_declaration] = STATE(1196), - [sym_const_declaration] = STATE(1196), - [sym_enum_declaration] = STATE(1196), - [sym_abstract_enum_class_declaration] = STATE(1196), - [sym_enum_class_declaration] = STATE(1196), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1196), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1414), + [sym_function_declaration] = STATE(1414), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1414), + [sym_interface_declaration] = STATE(1414), + [sym_class_declaration] = STATE(1414), + [sym_const_declaration] = STATE(1414), + [sym_enum_declaration] = STATE(1414), + [sym_abstract_enum_class_declaration] = STATE(1414), + [sym_enum_class_declaration] = STATE(1414), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1414), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -28247,29 +21798,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -28300,96 +21851,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [54] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(5770), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(5770), - [sym_expression_statement] = STATE(5770), - [sym_compound_statement] = STATE(5770), - [sym_return_statement] = STATE(5770), - [sym_break_statement] = STATE(5770), - [sym_continue_statement] = STATE(5770), - [sym_throw_statement] = STATE(5770), - [sym_echo_statement] = STATE(5770), - [sym_unset_statement] = STATE(5770), - [sym_concurrent_statement] = STATE(5770), - [sym_use_statement] = STATE(5770), - [sym_if_statement] = STATE(5770), - [sym_switch_statement] = STATE(5770), - [sym_foreach_statement] = STATE(5770), - [sym_while_statement] = STATE(5770), - [sym_do_statement] = STATE(5770), - [sym_for_statement] = STATE(5770), - [sym_try_statement] = STATE(5770), - [sym_using_statement] = STATE(5770), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(5772), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(5772), + [sym_expression_statement] = STATE(5772), + [sym_compound_statement] = STATE(5772), + [sym_return_statement] = STATE(5772), + [sym_break_statement] = STATE(5772), + [sym_continue_statement] = STATE(5772), + [sym_throw_statement] = STATE(5772), + [sym_echo_statement] = STATE(5772), + [sym_unset_statement] = STATE(5772), + [sym_concurrent_statement] = STATE(5772), + [sym_use_statement] = STATE(5772), + [sym_if_statement] = STATE(5772), + [sym_switch_statement] = STATE(5772), + [sym_foreach_statement] = STATE(5772), + [sym_while_statement] = STATE(5772), + [sym_do_statement] = STATE(5772), + [sym_for_statement] = STATE(5772), + [sym_try_statement] = STATE(5772), + [sym_using_statement] = STATE(5772), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(5770), - [sym_function_declaration] = STATE(5770), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(5770), - [sym_interface_declaration] = STATE(5770), - [sym_class_declaration] = STATE(5770), - [sym_const_declaration] = STATE(5770), - [sym_enum_declaration] = STATE(5770), - [sym_abstract_enum_class_declaration] = STATE(5770), - [sym_enum_class_declaration] = STATE(5770), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(5770), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(5772), + [sym_function_declaration] = STATE(5772), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(5772), + [sym_interface_declaration] = STATE(5772), + [sym_class_declaration] = STATE(5772), + [sym_const_declaration] = STATE(5772), + [sym_enum_declaration] = STATE(5772), + [sym_abstract_enum_class_declaration] = STATE(5772), + [sym_enum_class_declaration] = STATE(5772), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(5772), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -28400,7 +21951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -28424,13 +21975,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -28475,94 +22026,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1191), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1191), - [sym_expression_statement] = STATE(1191), - [sym_compound_statement] = STATE(1191), - [sym_return_statement] = STATE(1191), - [sym_break_statement] = STATE(1191), - [sym_continue_statement] = STATE(1191), - [sym_throw_statement] = STATE(1191), - [sym_echo_statement] = STATE(1191), - [sym_unset_statement] = STATE(1191), - [sym_concurrent_statement] = STATE(1191), - [sym_use_statement] = STATE(1191), - [sym_if_statement] = STATE(1191), - [sym_switch_statement] = STATE(1191), - [sym_foreach_statement] = STATE(1191), - [sym_while_statement] = STATE(1191), - [sym_do_statement] = STATE(1191), - [sym_for_statement] = STATE(1191), - [sym_try_statement] = STATE(1191), - [sym_using_statement] = STATE(1191), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1263), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1263), + [sym_expression_statement] = STATE(1263), + [sym_compound_statement] = STATE(1263), + [sym_return_statement] = STATE(1263), + [sym_break_statement] = STATE(1263), + [sym_continue_statement] = STATE(1263), + [sym_throw_statement] = STATE(1263), + [sym_echo_statement] = STATE(1263), + [sym_unset_statement] = STATE(1263), + [sym_concurrent_statement] = STATE(1263), + [sym_use_statement] = STATE(1263), + [sym_if_statement] = STATE(1263), + [sym_switch_statement] = STATE(1263), + [sym_foreach_statement] = STATE(1263), + [sym_while_statement] = STATE(1263), + [sym_do_statement] = STATE(1263), + [sym_for_statement] = STATE(1263), + [sym_try_statement] = STATE(1263), + [sym_using_statement] = STATE(1263), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1191), - [sym_function_declaration] = STATE(1191), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1191), - [sym_interface_declaration] = STATE(1191), - [sym_class_declaration] = STATE(1191), - [sym_const_declaration] = STATE(1191), - [sym_enum_declaration] = STATE(1191), - [sym_abstract_enum_class_declaration] = STATE(1191), - [sym_enum_class_declaration] = STATE(1191), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1191), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1263), + [sym_function_declaration] = STATE(1263), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1263), + [sym_interface_declaration] = STATE(1263), + [sym_class_declaration] = STATE(1263), + [sym_const_declaration] = STATE(1263), + [sym_enum_declaration] = STATE(1263), + [sym_abstract_enum_class_declaration] = STATE(1263), + [sym_enum_class_declaration] = STATE(1263), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1263), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -28571,29 +22122,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -28624,107 +22175,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [56] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(916), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(916), - [sym_expression_statement] = STATE(916), - [sym_compound_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_echo_statement] = STATE(916), - [sym_unset_statement] = STATE(916), - [sym_concurrent_statement] = STATE(916), - [sym_use_statement] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_foreach_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_using_statement] = STATE(916), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(910), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(910), + [sym_expression_statement] = STATE(910), + [sym_compound_statement] = STATE(910), + [sym_return_statement] = STATE(910), + [sym_break_statement] = STATE(910), + [sym_continue_statement] = STATE(910), + [sym_throw_statement] = STATE(910), + [sym_echo_statement] = STATE(910), + [sym_unset_statement] = STATE(910), + [sym_concurrent_statement] = STATE(910), + [sym_use_statement] = STATE(910), + [sym_if_statement] = STATE(910), + [sym_switch_statement] = STATE(910), + [sym_foreach_statement] = STATE(910), + [sym_while_statement] = STATE(910), + [sym_do_statement] = STATE(910), + [sym_for_statement] = STATE(910), + [sym_try_statement] = STATE(910), + [sym_using_statement] = STATE(910), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(916), - [sym_function_declaration] = STATE(916), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(916), - [sym_interface_declaration] = STATE(916), - [sym_class_declaration] = STATE(916), - [sym_const_declaration] = STATE(916), - [sym_enum_declaration] = STATE(916), - [sym_abstract_enum_class_declaration] = STATE(916), - [sym_enum_class_declaration] = STATE(916), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(916), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(910), + [sym_function_declaration] = STATE(910), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(910), + [sym_interface_declaration] = STATE(910), + [sym_class_declaration] = STATE(910), + [sym_const_declaration] = STATE(910), + [sym_enum_declaration] = STATE(910), + [sym_abstract_enum_class_declaration] = STATE(910), + [sym_enum_class_declaration] = STATE(910), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(910), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -28733,29 +22284,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -28786,107 +22337,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [57] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1190), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1190), - [sym_expression_statement] = STATE(1190), - [sym_compound_statement] = STATE(1190), - [sym_return_statement] = STATE(1190), - [sym_break_statement] = STATE(1190), - [sym_continue_statement] = STATE(1190), - [sym_throw_statement] = STATE(1190), - [sym_echo_statement] = STATE(1190), - [sym_unset_statement] = STATE(1190), - [sym_concurrent_statement] = STATE(1190), - [sym_use_statement] = STATE(1190), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1190), - [sym_foreach_statement] = STATE(1190), - [sym_while_statement] = STATE(1190), - [sym_do_statement] = STATE(1190), - [sym_for_statement] = STATE(1190), - [sym_try_statement] = STATE(1190), - [sym_using_statement] = STATE(1190), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1609), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1609), + [sym_expression_statement] = STATE(1609), + [sym_compound_statement] = STATE(1609), + [sym_return_statement] = STATE(1609), + [sym_break_statement] = STATE(1609), + [sym_continue_statement] = STATE(1609), + [sym_throw_statement] = STATE(1609), + [sym_echo_statement] = STATE(1609), + [sym_unset_statement] = STATE(1609), + [sym_concurrent_statement] = STATE(1609), + [sym_use_statement] = STATE(1609), + [sym_if_statement] = STATE(1609), + [sym_switch_statement] = STATE(1609), + [sym_foreach_statement] = STATE(1609), + [sym_while_statement] = STATE(1609), + [sym_do_statement] = STATE(1609), + [sym_for_statement] = STATE(1609), + [sym_try_statement] = STATE(1609), + [sym_using_statement] = STATE(1609), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1190), - [sym_function_declaration] = STATE(1190), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1190), - [sym_interface_declaration] = STATE(1190), - [sym_class_declaration] = STATE(1190), - [sym_const_declaration] = STATE(1190), - [sym_enum_declaration] = STATE(1190), - [sym_abstract_enum_class_declaration] = STATE(1190), - [sym_enum_class_declaration] = STATE(1190), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1190), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1609), + [sym_function_declaration] = STATE(1609), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1609), + [sym_interface_declaration] = STATE(1609), + [sym_class_declaration] = STATE(1609), + [sym_const_declaration] = STATE(1609), + [sym_enum_declaration] = STATE(1609), + [sym_abstract_enum_class_declaration] = STATE(1609), + [sym_enum_class_declaration] = STATE(1609), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1609), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -28895,29 +22446,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -28948,107 +22499,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [58] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1163), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1163), - [sym_expression_statement] = STATE(1163), - [sym_compound_statement] = STATE(1163), - [sym_return_statement] = STATE(1163), - [sym_break_statement] = STATE(1163), - [sym_continue_statement] = STATE(1163), - [sym_throw_statement] = STATE(1163), - [sym_echo_statement] = STATE(1163), - [sym_unset_statement] = STATE(1163), - [sym_concurrent_statement] = STATE(1163), - [sym_use_statement] = STATE(1163), - [sym_if_statement] = STATE(1163), - [sym_switch_statement] = STATE(1163), - [sym_foreach_statement] = STATE(1163), - [sym_while_statement] = STATE(1163), - [sym_do_statement] = STATE(1163), - [sym_for_statement] = STATE(1163), - [sym_try_statement] = STATE(1163), - [sym_using_statement] = STATE(1163), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1580), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1580), + [sym_expression_statement] = STATE(1580), + [sym_compound_statement] = STATE(1580), + [sym_return_statement] = STATE(1580), + [sym_break_statement] = STATE(1580), + [sym_continue_statement] = STATE(1580), + [sym_throw_statement] = STATE(1580), + [sym_echo_statement] = STATE(1580), + [sym_unset_statement] = STATE(1580), + [sym_concurrent_statement] = STATE(1580), + [sym_use_statement] = STATE(1580), + [sym_if_statement] = STATE(1580), + [sym_switch_statement] = STATE(1580), + [sym_foreach_statement] = STATE(1580), + [sym_while_statement] = STATE(1580), + [sym_do_statement] = STATE(1580), + [sym_for_statement] = STATE(1580), + [sym_try_statement] = STATE(1580), + [sym_using_statement] = STATE(1580), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1163), - [sym_function_declaration] = STATE(1163), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1163), - [sym_interface_declaration] = STATE(1163), - [sym_class_declaration] = STATE(1163), - [sym_const_declaration] = STATE(1163), - [sym_enum_declaration] = STATE(1163), - [sym_abstract_enum_class_declaration] = STATE(1163), - [sym_enum_class_declaration] = STATE(1163), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1163), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_const_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_abstract_enum_class_declaration] = STATE(1580), + [sym_enum_class_declaration] = STATE(1580), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1580), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -29057,29 +22608,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -29110,107 +22661,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [59] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1051), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1052), - [sym_expression_statement] = STATE(1054), - [sym_compound_statement] = STATE(1055), - [sym_return_statement] = STATE(1056), - [sym_break_statement] = STATE(1057), - [sym_continue_statement] = STATE(1058), - [sym_throw_statement] = STATE(1059), - [sym_echo_statement] = STATE(1060), - [sym_unset_statement] = STATE(1063), - [sym_concurrent_statement] = STATE(1078), - [sym_use_statement] = STATE(1107), - [sym_if_statement] = STATE(1108), - [sym_switch_statement] = STATE(1116), - [sym_foreach_statement] = STATE(1117), - [sym_while_statement] = STATE(1118), - [sym_do_statement] = STATE(1121), - [sym_for_statement] = STATE(1123), - [sym_try_statement] = STATE(1127), - [sym_using_statement] = STATE(1129), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4495), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4495), + [sym_expression_statement] = STATE(4495), + [sym_compound_statement] = STATE(4495), + [sym_return_statement] = STATE(4495), + [sym_break_statement] = STATE(4495), + [sym_continue_statement] = STATE(4495), + [sym_throw_statement] = STATE(4495), + [sym_echo_statement] = STATE(4495), + [sym_unset_statement] = STATE(4495), + [sym_concurrent_statement] = STATE(4495), + [sym_use_statement] = STATE(4495), + [sym_if_statement] = STATE(4495), + [sym_switch_statement] = STATE(4495), + [sym_foreach_statement] = STATE(4495), + [sym_while_statement] = STATE(4495), + [sym_do_statement] = STATE(4495), + [sym_for_statement] = STATE(4495), + [sym_try_statement] = STATE(4495), + [sym_using_statement] = STATE(4495), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1132), - [sym_function_declaration] = STATE(1137), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1140), - [sym_interface_declaration] = STATE(1143), - [sym_class_declaration] = STATE(1146), - [sym_const_declaration] = STATE(1148), - [sym_enum_declaration] = STATE(1153), - [sym_abstract_enum_class_declaration] = STATE(1158), - [sym_enum_class_declaration] = STATE(1159), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1162), - [sym_abstract_modifier] = STATE(4111), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4495), + [sym_function_declaration] = STATE(4495), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4495), + [sym_interface_declaration] = STATE(4495), + [sym_class_declaration] = STATE(4495), + [sym_const_declaration] = STATE(4495), + [sym_enum_declaration] = STATE(4495), + [sym_abstract_enum_class_declaration] = STATE(4495), + [sym_enum_class_declaration] = STATE(4495), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4495), + [sym_abstract_modifier] = STATE(4093), [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -29219,29 +22770,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(927), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -29272,107 +22823,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [60] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1017), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1017), - [sym_expression_statement] = STATE(1017), - [sym_compound_statement] = STATE(1017), - [sym_return_statement] = STATE(1017), - [sym_break_statement] = STATE(1017), - [sym_continue_statement] = STATE(1017), - [sym_throw_statement] = STATE(1017), - [sym_echo_statement] = STATE(1017), - [sym_unset_statement] = STATE(1017), - [sym_concurrent_statement] = STATE(1017), - [sym_use_statement] = STATE(1017), - [sym_if_statement] = STATE(1017), - [sym_switch_statement] = STATE(1017), - [sym_foreach_statement] = STATE(1017), - [sym_while_statement] = STATE(1017), - [sym_do_statement] = STATE(1017), - [sym_for_statement] = STATE(1017), - [sym_try_statement] = STATE(1017), - [sym_using_statement] = STATE(1017), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1533), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1533), + [sym_expression_statement] = STATE(1533), + [sym_compound_statement] = STATE(1533), + [sym_return_statement] = STATE(1533), + [sym_break_statement] = STATE(1533), + [sym_continue_statement] = STATE(1533), + [sym_throw_statement] = STATE(1533), + [sym_echo_statement] = STATE(1533), + [sym_unset_statement] = STATE(1533), + [sym_concurrent_statement] = STATE(1533), + [sym_use_statement] = STATE(1533), + [sym_if_statement] = STATE(1533), + [sym_switch_statement] = STATE(1533), + [sym_foreach_statement] = STATE(1533), + [sym_while_statement] = STATE(1533), + [sym_do_statement] = STATE(1533), + [sym_for_statement] = STATE(1533), + [sym_try_statement] = STATE(1533), + [sym_using_statement] = STATE(1533), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1017), - [sym_function_declaration] = STATE(1017), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1017), - [sym_interface_declaration] = STATE(1017), - [sym_class_declaration] = STATE(1017), - [sym_const_declaration] = STATE(1017), - [sym_enum_declaration] = STATE(1017), - [sym_abstract_enum_class_declaration] = STATE(1017), - [sym_enum_class_declaration] = STATE(1017), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1017), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1533), + [sym_function_declaration] = STATE(1533), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1533), + [sym_interface_declaration] = STATE(1533), + [sym_class_declaration] = STATE(1533), + [sym_const_declaration] = STATE(1533), + [sym_enum_declaration] = STATE(1533), + [sym_abstract_enum_class_declaration] = STATE(1533), + [sym_enum_class_declaration] = STATE(1533), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1533), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -29381,29 +22932,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(927), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -29434,107 +22985,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [61] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(918), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(918), - [sym_expression_statement] = STATE(918), - [sym_compound_statement] = STATE(918), - [sym_return_statement] = STATE(918), - [sym_break_statement] = STATE(918), - [sym_continue_statement] = STATE(918), - [sym_throw_statement] = STATE(918), - [sym_echo_statement] = STATE(918), - [sym_unset_statement] = STATE(918), - [sym_concurrent_statement] = STATE(918), - [sym_use_statement] = STATE(918), - [sym_if_statement] = STATE(918), - [sym_switch_statement] = STATE(918), - [sym_foreach_statement] = STATE(918), - [sym_while_statement] = STATE(918), - [sym_do_statement] = STATE(918), - [sym_for_statement] = STATE(918), - [sym_try_statement] = STATE(918), - [sym_using_statement] = STATE(918), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(915), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(915), + [sym_expression_statement] = STATE(915), + [sym_compound_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_echo_statement] = STATE(915), + [sym_unset_statement] = STATE(915), + [sym_concurrent_statement] = STATE(915), + [sym_use_statement] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_foreach_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_using_statement] = STATE(915), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(918), - [sym_function_declaration] = STATE(918), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(918), - [sym_interface_declaration] = STATE(918), - [sym_class_declaration] = STATE(918), - [sym_const_declaration] = STATE(918), - [sym_enum_declaration] = STATE(918), - [sym_abstract_enum_class_declaration] = STATE(918), - [sym_enum_class_declaration] = STATE(918), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(918), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(915), + [sym_function_declaration] = STATE(915), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(915), + [sym_interface_declaration] = STATE(915), + [sym_class_declaration] = STATE(915), + [sym_const_declaration] = STATE(915), + [sym_enum_declaration] = STATE(915), + [sym_abstract_enum_class_declaration] = STATE(915), + [sym_enum_class_declaration] = STATE(915), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(915), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -29543,29 +23094,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -29596,107 +23147,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [62] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(930), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(930), - [sym_expression_statement] = STATE(930), - [sym_compound_statement] = STATE(930), - [sym_return_statement] = STATE(930), - [sym_break_statement] = STATE(930), - [sym_continue_statement] = STATE(930), - [sym_throw_statement] = STATE(930), - [sym_echo_statement] = STATE(930), - [sym_unset_statement] = STATE(930), - [sym_concurrent_statement] = STATE(930), - [sym_use_statement] = STATE(930), - [sym_if_statement] = STATE(930), - [sym_switch_statement] = STATE(930), - [sym_foreach_statement] = STATE(930), - [sym_while_statement] = STATE(930), - [sym_do_statement] = STATE(930), - [sym_for_statement] = STATE(930), - [sym_try_statement] = STATE(930), - [sym_using_statement] = STATE(930), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1532), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1532), + [sym_expression_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_throw_statement] = STATE(1532), + [sym_echo_statement] = STATE(1532), + [sym_unset_statement] = STATE(1532), + [sym_concurrent_statement] = STATE(1532), + [sym_use_statement] = STATE(1532), + [sym_if_statement] = STATE(1532), + [sym_switch_statement] = STATE(1532), + [sym_foreach_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_do_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_try_statement] = STATE(1532), + [sym_using_statement] = STATE(1532), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(930), - [sym_function_declaration] = STATE(930), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(930), - [sym_interface_declaration] = STATE(930), - [sym_class_declaration] = STATE(930), - [sym_const_declaration] = STATE(930), - [sym_enum_declaration] = STATE(930), - [sym_abstract_enum_class_declaration] = STATE(930), - [sym_enum_class_declaration] = STATE(930), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(930), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), + [sym_class_declaration] = STATE(1532), + [sym_const_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_abstract_enum_class_declaration] = STATE(1532), + [sym_enum_class_declaration] = STATE(1532), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1532), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -29705,29 +23256,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -29758,96 +23309,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [63] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1609), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1609), - [sym_expression_statement] = STATE(1609), - [sym_compound_statement] = STATE(1609), - [sym_return_statement] = STATE(1609), - [sym_break_statement] = STATE(1609), - [sym_continue_statement] = STATE(1609), - [sym_throw_statement] = STATE(1609), - [sym_echo_statement] = STATE(1609), - [sym_unset_statement] = STATE(1609), - [sym_concurrent_statement] = STATE(1609), - [sym_use_statement] = STATE(1609), - [sym_if_statement] = STATE(1609), - [sym_switch_statement] = STATE(1609), - [sym_foreach_statement] = STATE(1609), - [sym_while_statement] = STATE(1609), - [sym_do_statement] = STATE(1609), - [sym_for_statement] = STATE(1609), - [sym_try_statement] = STATE(1609), - [sym_using_statement] = STATE(1609), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1462), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1462), + [sym_expression_statement] = STATE(1462), + [sym_compound_statement] = STATE(1462), + [sym_return_statement] = STATE(1462), + [sym_break_statement] = STATE(1462), + [sym_continue_statement] = STATE(1462), + [sym_throw_statement] = STATE(1462), + [sym_echo_statement] = STATE(1462), + [sym_unset_statement] = STATE(1462), + [sym_concurrent_statement] = STATE(1462), + [sym_use_statement] = STATE(1462), + [sym_if_statement] = STATE(1462), + [sym_switch_statement] = STATE(1462), + [sym_foreach_statement] = STATE(1462), + [sym_while_statement] = STATE(1462), + [sym_do_statement] = STATE(1462), + [sym_for_statement] = STATE(1462), + [sym_try_statement] = STATE(1462), + [sym_using_statement] = STATE(1462), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1609), - [sym_function_declaration] = STATE(1609), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1609), - [sym_interface_declaration] = STATE(1609), - [sym_class_declaration] = STATE(1609), - [sym_const_declaration] = STATE(1609), - [sym_enum_declaration] = STATE(1609), - [sym_abstract_enum_class_declaration] = STATE(1609), - [sym_enum_class_declaration] = STATE(1609), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1609), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1462), + [sym_function_declaration] = STATE(1462), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1462), + [sym_interface_declaration] = STATE(1462), + [sym_class_declaration] = STATE(1462), + [sym_const_declaration] = STATE(1462), + [sym_enum_declaration] = STATE(1462), + [sym_abstract_enum_class_declaration] = STATE(1462), + [sym_enum_class_declaration] = STATE(1462), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1462), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -29858,7 +23409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -29882,13 +23433,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -29933,94 +23484,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4775), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4775), - [sym_expression_statement] = STATE(4775), - [sym_compound_statement] = STATE(4775), - [sym_return_statement] = STATE(4775), - [sym_break_statement] = STATE(4775), - [sym_continue_statement] = STATE(4775), - [sym_throw_statement] = STATE(4775), - [sym_echo_statement] = STATE(4775), - [sym_unset_statement] = STATE(4775), - [sym_concurrent_statement] = STATE(4775), - [sym_use_statement] = STATE(4775), - [sym_if_statement] = STATE(4775), - [sym_switch_statement] = STATE(4775), - [sym_foreach_statement] = STATE(4775), - [sym_while_statement] = STATE(4775), - [sym_do_statement] = STATE(4775), - [sym_for_statement] = STATE(4775), - [sym_try_statement] = STATE(4775), - [sym_using_statement] = STATE(4775), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1417), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1417), + [sym_expression_statement] = STATE(1417), + [sym_compound_statement] = STATE(1417), + [sym_return_statement] = STATE(1417), + [sym_break_statement] = STATE(1417), + [sym_continue_statement] = STATE(1417), + [sym_throw_statement] = STATE(1417), + [sym_echo_statement] = STATE(1417), + [sym_unset_statement] = STATE(1417), + [sym_concurrent_statement] = STATE(1417), + [sym_use_statement] = STATE(1417), + [sym_if_statement] = STATE(1417), + [sym_switch_statement] = STATE(1417), + [sym_foreach_statement] = STATE(1417), + [sym_while_statement] = STATE(1417), + [sym_do_statement] = STATE(1417), + [sym_for_statement] = STATE(1417), + [sym_try_statement] = STATE(1417), + [sym_using_statement] = STATE(1417), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4775), - [sym_function_declaration] = STATE(4775), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4775), - [sym_interface_declaration] = STATE(4775), - [sym_class_declaration] = STATE(4775), - [sym_const_declaration] = STATE(4775), - [sym_enum_declaration] = STATE(4775), - [sym_abstract_enum_class_declaration] = STATE(4775), - [sym_enum_class_declaration] = STATE(4775), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4775), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1417), + [sym_function_declaration] = STATE(1417), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1417), + [sym_interface_declaration] = STATE(1417), + [sym_class_declaration] = STATE(1417), + [sym_const_declaration] = STATE(1417), + [sym_enum_declaration] = STATE(1417), + [sym_abstract_enum_class_declaration] = STATE(1417), + [sym_enum_class_declaration] = STATE(1417), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1417), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -30029,29 +23580,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -30082,96 +23633,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [65] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1580), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1580), - [sym_expression_statement] = STATE(1580), - [sym_compound_statement] = STATE(1580), - [sym_return_statement] = STATE(1580), - [sym_break_statement] = STATE(1580), - [sym_continue_statement] = STATE(1580), - [sym_throw_statement] = STATE(1580), - [sym_echo_statement] = STATE(1580), - [sym_unset_statement] = STATE(1580), - [sym_concurrent_statement] = STATE(1580), - [sym_use_statement] = STATE(1580), - [sym_if_statement] = STATE(1580), - [sym_switch_statement] = STATE(1580), - [sym_foreach_statement] = STATE(1580), - [sym_while_statement] = STATE(1580), - [sym_do_statement] = STATE(1580), - [sym_for_statement] = STATE(1580), - [sym_try_statement] = STATE(1580), - [sym_using_statement] = STATE(1580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1460), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1460), + [sym_expression_statement] = STATE(1460), + [sym_compound_statement] = STATE(1460), + [sym_return_statement] = STATE(1460), + [sym_break_statement] = STATE(1460), + [sym_continue_statement] = STATE(1460), + [sym_throw_statement] = STATE(1460), + [sym_echo_statement] = STATE(1460), + [sym_unset_statement] = STATE(1460), + [sym_concurrent_statement] = STATE(1460), + [sym_use_statement] = STATE(1460), + [sym_if_statement] = STATE(1460), + [sym_switch_statement] = STATE(1460), + [sym_foreach_statement] = STATE(1460), + [sym_while_statement] = STATE(1460), + [sym_do_statement] = STATE(1460), + [sym_for_statement] = STATE(1460), + [sym_try_statement] = STATE(1460), + [sym_using_statement] = STATE(1460), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_const_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_abstract_enum_class_declaration] = STATE(1580), - [sym_enum_class_declaration] = STATE(1580), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1580), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1460), + [sym_function_declaration] = STATE(1460), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1460), + [sym_interface_declaration] = STATE(1460), + [sym_class_declaration] = STATE(1460), + [sym_const_declaration] = STATE(1460), + [sym_enum_declaration] = STATE(1460), + [sym_abstract_enum_class_declaration] = STATE(1460), + [sym_enum_class_declaration] = STATE(1460), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1460), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -30182,7 +23733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -30206,13 +23757,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -30257,94 +23808,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1212), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_compound_statement] = STATE(1212), - [sym_return_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_throw_statement] = STATE(1212), - [sym_echo_statement] = STATE(1212), - [sym_unset_statement] = STATE(1212), - [sym_concurrent_statement] = STATE(1212), - [sym_use_statement] = STATE(1212), - [sym_if_statement] = STATE(1212), - [sym_switch_statement] = STATE(1212), - [sym_foreach_statement] = STATE(1212), - [sym_while_statement] = STATE(1212), - [sym_do_statement] = STATE(1212), - [sym_for_statement] = STATE(1212), - [sym_try_statement] = STATE(1212), - [sym_using_statement] = STATE(1212), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1392), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1392), + [sym_expression_statement] = STATE(1392), + [sym_compound_statement] = STATE(1392), + [sym_return_statement] = STATE(1392), + [sym_break_statement] = STATE(1392), + [sym_continue_statement] = STATE(1392), + [sym_throw_statement] = STATE(1392), + [sym_echo_statement] = STATE(1392), + [sym_unset_statement] = STATE(1392), + [sym_concurrent_statement] = STATE(1392), + [sym_use_statement] = STATE(1392), + [sym_if_statement] = STATE(1392), + [sym_switch_statement] = STATE(1392), + [sym_foreach_statement] = STATE(1392), + [sym_while_statement] = STATE(1392), + [sym_do_statement] = STATE(1392), + [sym_for_statement] = STATE(1392), + [sym_try_statement] = STATE(1392), + [sym_using_statement] = STATE(1392), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1212), - [sym_function_declaration] = STATE(1212), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1212), - [sym_interface_declaration] = STATE(1212), - [sym_class_declaration] = STATE(1212), - [sym_const_declaration] = STATE(1212), - [sym_enum_declaration] = STATE(1212), - [sym_abstract_enum_class_declaration] = STATE(1212), - [sym_enum_class_declaration] = STATE(1212), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1212), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1392), + [sym_function_declaration] = STATE(1392), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1392), + [sym_interface_declaration] = STATE(1392), + [sym_class_declaration] = STATE(1392), + [sym_const_declaration] = STATE(1392), + [sym_enum_declaration] = STATE(1392), + [sym_abstract_enum_class_declaration] = STATE(1392), + [sym_enum_class_declaration] = STATE(1392), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1392), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -30353,29 +23904,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -30406,96 +23957,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [67] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1442), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1442), - [sym_expression_statement] = STATE(1442), - [sym_compound_statement] = STATE(1442), - [sym_return_statement] = STATE(1442), - [sym_break_statement] = STATE(1442), - [sym_continue_statement] = STATE(1442), - [sym_throw_statement] = STATE(1442), - [sym_echo_statement] = STATE(1442), - [sym_unset_statement] = STATE(1442), - [sym_concurrent_statement] = STATE(1442), - [sym_use_statement] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_switch_statement] = STATE(1442), - [sym_foreach_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_do_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_try_statement] = STATE(1442), - [sym_using_statement] = STATE(1442), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1471), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1471), + [sym_expression_statement] = STATE(1471), + [sym_compound_statement] = STATE(1471), + [sym_return_statement] = STATE(1471), + [sym_break_statement] = STATE(1471), + [sym_continue_statement] = STATE(1471), + [sym_throw_statement] = STATE(1471), + [sym_echo_statement] = STATE(1471), + [sym_unset_statement] = STATE(1471), + [sym_concurrent_statement] = STATE(1471), + [sym_use_statement] = STATE(1471), + [sym_if_statement] = STATE(1471), + [sym_switch_statement] = STATE(1471), + [sym_foreach_statement] = STATE(1471), + [sym_while_statement] = STATE(1471), + [sym_do_statement] = STATE(1471), + [sym_for_statement] = STATE(1471), + [sym_try_statement] = STATE(1471), + [sym_using_statement] = STATE(1471), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1442), - [sym_function_declaration] = STATE(1442), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1442), - [sym_interface_declaration] = STATE(1442), - [sym_class_declaration] = STATE(1442), - [sym_const_declaration] = STATE(1442), - [sym_enum_declaration] = STATE(1442), - [sym_abstract_enum_class_declaration] = STATE(1442), - [sym_enum_class_declaration] = STATE(1442), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1442), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1471), + [sym_function_declaration] = STATE(1471), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1471), + [sym_interface_declaration] = STATE(1471), + [sym_class_declaration] = STATE(1471), + [sym_const_declaration] = STATE(1471), + [sym_enum_declaration] = STATE(1471), + [sym_abstract_enum_class_declaration] = STATE(1471), + [sym_enum_class_declaration] = STATE(1471), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1471), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -30506,7 +24057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -30530,13 +24081,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -30581,83 +24132,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [68] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1536), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1536), - [sym_expression_statement] = STATE(1536), - [sym_compound_statement] = STATE(1536), - [sym_return_statement] = STATE(1536), - [sym_break_statement] = STATE(1536), - [sym_continue_statement] = STATE(1536), - [sym_throw_statement] = STATE(1536), - [sym_echo_statement] = STATE(1536), - [sym_unset_statement] = STATE(1536), - [sym_concurrent_statement] = STATE(1536), - [sym_use_statement] = STATE(1536), - [sym_if_statement] = STATE(1536), - [sym_switch_statement] = STATE(1536), - [sym_foreach_statement] = STATE(1536), - [sym_while_statement] = STATE(1536), - [sym_do_statement] = STATE(1536), - [sym_for_statement] = STATE(1536), - [sym_try_statement] = STATE(1536), - [sym_using_statement] = STATE(1536), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1479), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1479), + [sym_expression_statement] = STATE(1479), + [sym_compound_statement] = STATE(1479), + [sym_return_statement] = STATE(1479), + [sym_break_statement] = STATE(1479), + [sym_continue_statement] = STATE(1479), + [sym_throw_statement] = STATE(1479), + [sym_echo_statement] = STATE(1479), + [sym_unset_statement] = STATE(1479), + [sym_concurrent_statement] = STATE(1479), + [sym_use_statement] = STATE(1479), + [sym_if_statement] = STATE(1479), + [sym_switch_statement] = STATE(1479), + [sym_foreach_statement] = STATE(1479), + [sym_while_statement] = STATE(1479), + [sym_do_statement] = STATE(1479), + [sym_for_statement] = STATE(1479), + [sym_try_statement] = STATE(1479), + [sym_using_statement] = STATE(1479), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1536), - [sym_function_declaration] = STATE(1536), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1536), - [sym_interface_declaration] = STATE(1536), - [sym_class_declaration] = STATE(1536), - [sym_const_declaration] = STATE(1536), - [sym_enum_declaration] = STATE(1536), - [sym_abstract_enum_class_declaration] = STATE(1536), - [sym_enum_class_declaration] = STATE(1536), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1536), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1479), + [sym_function_declaration] = STATE(1479), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1479), + [sym_interface_declaration] = STATE(1479), + [sym_class_declaration] = STATE(1479), + [sym_const_declaration] = STATE(1479), + [sym_enum_declaration] = STATE(1479), + [sym_abstract_enum_class_declaration] = STATE(1479), + [sym_enum_class_declaration] = STATE(1479), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1479), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -30668,7 +24219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -30692,13 +24243,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -30743,83 +24294,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [69] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1462), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1462), - [sym_expression_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_return_statement] = STATE(1462), - [sym_break_statement] = STATE(1462), - [sym_continue_statement] = STATE(1462), - [sym_throw_statement] = STATE(1462), - [sym_echo_statement] = STATE(1462), - [sym_unset_statement] = STATE(1462), - [sym_concurrent_statement] = STATE(1462), - [sym_use_statement] = STATE(1462), - [sym_if_statement] = STATE(1462), - [sym_switch_statement] = STATE(1462), - [sym_foreach_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_do_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_try_statement] = STATE(1462), - [sym_using_statement] = STATE(1462), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1589), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1589), + [sym_expression_statement] = STATE(1589), + [sym_compound_statement] = STATE(1589), + [sym_return_statement] = STATE(1589), + [sym_break_statement] = STATE(1589), + [sym_continue_statement] = STATE(1589), + [sym_throw_statement] = STATE(1589), + [sym_echo_statement] = STATE(1589), + [sym_unset_statement] = STATE(1589), + [sym_concurrent_statement] = STATE(1589), + [sym_use_statement] = STATE(1589), + [sym_if_statement] = STATE(1589), + [sym_switch_statement] = STATE(1589), + [sym_foreach_statement] = STATE(1589), + [sym_while_statement] = STATE(1589), + [sym_do_statement] = STATE(1589), + [sym_for_statement] = STATE(1589), + [sym_try_statement] = STATE(1589), + [sym_using_statement] = STATE(1589), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1462), - [sym_function_declaration] = STATE(1462), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1462), - [sym_interface_declaration] = STATE(1462), - [sym_class_declaration] = STATE(1462), - [sym_const_declaration] = STATE(1462), - [sym_enum_declaration] = STATE(1462), - [sym_abstract_enum_class_declaration] = STATE(1462), - [sym_enum_class_declaration] = STATE(1462), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1462), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1589), + [sym_function_declaration] = STATE(1589), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1589), + [sym_interface_declaration] = STATE(1589), + [sym_class_declaration] = STATE(1589), + [sym_const_declaration] = STATE(1589), + [sym_enum_declaration] = STATE(1589), + [sym_abstract_enum_class_declaration] = STATE(1589), + [sym_enum_class_declaration] = STATE(1589), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1589), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -30830,7 +24381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -30854,13 +24405,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -30905,83 +24456,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [70] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1460), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1460), - [sym_expression_statement] = STATE(1460), - [sym_compound_statement] = STATE(1460), - [sym_return_statement] = STATE(1460), - [sym_break_statement] = STATE(1460), - [sym_continue_statement] = STATE(1460), - [sym_throw_statement] = STATE(1460), - [sym_echo_statement] = STATE(1460), - [sym_unset_statement] = STATE(1460), - [sym_concurrent_statement] = STATE(1460), - [sym_use_statement] = STATE(1460), - [sym_if_statement] = STATE(1460), - [sym_switch_statement] = STATE(1460), - [sym_foreach_statement] = STATE(1460), - [sym_while_statement] = STATE(1460), - [sym_do_statement] = STATE(1460), - [sym_for_statement] = STATE(1460), - [sym_try_statement] = STATE(1460), - [sym_using_statement] = STATE(1460), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1590), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1590), + [sym_expression_statement] = STATE(1590), + [sym_compound_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_throw_statement] = STATE(1590), + [sym_echo_statement] = STATE(1590), + [sym_unset_statement] = STATE(1590), + [sym_concurrent_statement] = STATE(1590), + [sym_use_statement] = STATE(1590), + [sym_if_statement] = STATE(1590), + [sym_switch_statement] = STATE(1590), + [sym_foreach_statement] = STATE(1590), + [sym_while_statement] = STATE(1590), + [sym_do_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_try_statement] = STATE(1590), + [sym_using_statement] = STATE(1590), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1460), - [sym_function_declaration] = STATE(1460), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1460), - [sym_interface_declaration] = STATE(1460), - [sym_class_declaration] = STATE(1460), - [sym_const_declaration] = STATE(1460), - [sym_enum_declaration] = STATE(1460), - [sym_abstract_enum_class_declaration] = STATE(1460), - [sym_enum_class_declaration] = STATE(1460), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1460), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1590), + [sym_function_declaration] = STATE(1590), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1590), + [sym_interface_declaration] = STATE(1590), + [sym_class_declaration] = STATE(1590), + [sym_const_declaration] = STATE(1590), + [sym_enum_declaration] = STATE(1590), + [sym_abstract_enum_class_declaration] = STATE(1590), + [sym_enum_class_declaration] = STATE(1590), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1590), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -30992,7 +24543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -31016,13 +24567,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -31067,94 +24618,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1478), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1478), - [sym_expression_statement] = STATE(1478), - [sym_compound_statement] = STATE(1478), - [sym_return_statement] = STATE(1478), - [sym_break_statement] = STATE(1478), - [sym_continue_statement] = STATE(1478), - [sym_throw_statement] = STATE(1478), - [sym_echo_statement] = STATE(1478), - [sym_unset_statement] = STATE(1478), - [sym_concurrent_statement] = STATE(1478), - [sym_use_statement] = STATE(1478), - [sym_if_statement] = STATE(1478), - [sym_switch_statement] = STATE(1478), - [sym_foreach_statement] = STATE(1478), - [sym_while_statement] = STATE(1478), - [sym_do_statement] = STATE(1478), - [sym_for_statement] = STATE(1478), - [sym_try_statement] = STATE(1478), - [sym_using_statement] = STATE(1478), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4496), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4496), + [sym_expression_statement] = STATE(4496), + [sym_compound_statement] = STATE(4496), + [sym_return_statement] = STATE(4496), + [sym_break_statement] = STATE(4496), + [sym_continue_statement] = STATE(4496), + [sym_throw_statement] = STATE(4496), + [sym_echo_statement] = STATE(4496), + [sym_unset_statement] = STATE(4496), + [sym_concurrent_statement] = STATE(4496), + [sym_use_statement] = STATE(4496), + [sym_if_statement] = STATE(4496), + [sym_switch_statement] = STATE(4496), + [sym_foreach_statement] = STATE(4496), + [sym_while_statement] = STATE(4496), + [sym_do_statement] = STATE(4496), + [sym_for_statement] = STATE(4496), + [sym_try_statement] = STATE(4496), + [sym_using_statement] = STATE(4496), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1478), - [sym_function_declaration] = STATE(1478), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1478), - [sym_interface_declaration] = STATE(1478), - [sym_class_declaration] = STATE(1478), - [sym_const_declaration] = STATE(1478), - [sym_enum_declaration] = STATE(1478), - [sym_abstract_enum_class_declaration] = STATE(1478), - [sym_enum_class_declaration] = STATE(1478), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1478), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4496), + [sym_function_declaration] = STATE(4496), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4496), + [sym_interface_declaration] = STATE(4496), + [sym_class_declaration] = STATE(4496), + [sym_const_declaration] = STATE(4496), + [sym_enum_declaration] = STATE(4496), + [sym_abstract_enum_class_declaration] = STATE(4496), + [sym_enum_class_declaration] = STATE(4496), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4496), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -31163,29 +24714,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -31216,96 +24767,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [72] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1480), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1480), - [sym_expression_statement] = STATE(1480), - [sym_compound_statement] = STATE(1480), - [sym_return_statement] = STATE(1480), - [sym_break_statement] = STATE(1480), - [sym_continue_statement] = STATE(1480), - [sym_throw_statement] = STATE(1480), - [sym_echo_statement] = STATE(1480), - [sym_unset_statement] = STATE(1480), - [sym_concurrent_statement] = STATE(1480), - [sym_use_statement] = STATE(1480), - [sym_if_statement] = STATE(1480), - [sym_switch_statement] = STATE(1480), - [sym_foreach_statement] = STATE(1480), - [sym_while_statement] = STATE(1480), - [sym_do_statement] = STATE(1480), - [sym_for_statement] = STATE(1480), - [sym_try_statement] = STATE(1480), - [sym_using_statement] = STATE(1480), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1646), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1646), + [sym_expression_statement] = STATE(1646), + [sym_compound_statement] = STATE(1646), + [sym_return_statement] = STATE(1646), + [sym_break_statement] = STATE(1646), + [sym_continue_statement] = STATE(1646), + [sym_throw_statement] = STATE(1646), + [sym_echo_statement] = STATE(1646), + [sym_unset_statement] = STATE(1646), + [sym_concurrent_statement] = STATE(1646), + [sym_use_statement] = STATE(1646), + [sym_if_statement] = STATE(1646), + [sym_switch_statement] = STATE(1646), + [sym_foreach_statement] = STATE(1646), + [sym_while_statement] = STATE(1646), + [sym_do_statement] = STATE(1646), + [sym_for_statement] = STATE(1646), + [sym_try_statement] = STATE(1646), + [sym_using_statement] = STATE(1646), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1480), - [sym_function_declaration] = STATE(1480), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1480), - [sym_interface_declaration] = STATE(1480), - [sym_class_declaration] = STATE(1480), - [sym_const_declaration] = STATE(1480), - [sym_enum_declaration] = STATE(1480), - [sym_abstract_enum_class_declaration] = STATE(1480), - [sym_enum_class_declaration] = STATE(1480), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1480), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1646), + [sym_function_declaration] = STATE(1646), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1646), + [sym_interface_declaration] = STATE(1646), + [sym_class_declaration] = STATE(1646), + [sym_const_declaration] = STATE(1646), + [sym_enum_declaration] = STATE(1646), + [sym_abstract_enum_class_declaration] = STATE(1646), + [sym_enum_class_declaration] = STATE(1646), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1646), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -31316,7 +24867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -31340,13 +24891,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -31391,94 +24942,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [73] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1214), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_compound_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_echo_statement] = STATE(1214), - [sym_unset_statement] = STATE(1214), - [sym_concurrent_statement] = STATE(1214), - [sym_use_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_foreach_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_using_statement] = STATE(1214), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1365), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1365), + [sym_expression_statement] = STATE(1365), + [sym_compound_statement] = STATE(1365), + [sym_return_statement] = STATE(1365), + [sym_break_statement] = STATE(1365), + [sym_continue_statement] = STATE(1365), + [sym_throw_statement] = STATE(1365), + [sym_echo_statement] = STATE(1365), + [sym_unset_statement] = STATE(1365), + [sym_concurrent_statement] = STATE(1365), + [sym_use_statement] = STATE(1365), + [sym_if_statement] = STATE(1365), + [sym_switch_statement] = STATE(1365), + [sym_foreach_statement] = STATE(1365), + [sym_while_statement] = STATE(1365), + [sym_do_statement] = STATE(1365), + [sym_for_statement] = STATE(1365), + [sym_try_statement] = STATE(1365), + [sym_using_statement] = STATE(1365), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1214), - [sym_function_declaration] = STATE(1214), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1214), - [sym_interface_declaration] = STATE(1214), - [sym_class_declaration] = STATE(1214), - [sym_const_declaration] = STATE(1214), - [sym_enum_declaration] = STATE(1214), - [sym_abstract_enum_class_declaration] = STATE(1214), - [sym_enum_class_declaration] = STATE(1214), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1214), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1365), + [sym_function_declaration] = STATE(1365), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1365), + [sym_interface_declaration] = STATE(1365), + [sym_class_declaration] = STATE(1365), + [sym_const_declaration] = STATE(1365), + [sym_enum_declaration] = STATE(1365), + [sym_abstract_enum_class_declaration] = STATE(1365), + [sym_enum_class_declaration] = STATE(1365), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1365), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -31487,29 +25038,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -31540,107 +25091,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4487), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4487), - [sym_expression_statement] = STATE(4487), - [sym_compound_statement] = STATE(4487), - [sym_return_statement] = STATE(4487), - [sym_break_statement] = STATE(4487), - [sym_continue_statement] = STATE(4487), - [sym_throw_statement] = STATE(4487), - [sym_echo_statement] = STATE(4487), - [sym_unset_statement] = STATE(4487), - [sym_concurrent_statement] = STATE(4487), - [sym_use_statement] = STATE(4487), - [sym_if_statement] = STATE(4487), - [sym_switch_statement] = STATE(4487), - [sym_foreach_statement] = STATE(4487), - [sym_while_statement] = STATE(4487), - [sym_do_statement] = STATE(4487), - [sym_for_statement] = STATE(4487), - [sym_try_statement] = STATE(4487), - [sym_using_statement] = STATE(4487), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1750), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1745), + [sym_expression_statement] = STATE(1743), + [sym_compound_statement] = STATE(1732), + [sym_return_statement] = STATE(1728), + [sym_break_statement] = STATE(1725), + [sym_continue_statement] = STATE(1724), + [sym_throw_statement] = STATE(1722), + [sym_echo_statement] = STATE(1721), + [sym_unset_statement] = STATE(1720), + [sym_concurrent_statement] = STATE(1719), + [sym_use_statement] = STATE(1718), + [sym_if_statement] = STATE(1717), + [sym_switch_statement] = STATE(1716), + [sym_foreach_statement] = STATE(1715), + [sym_while_statement] = STATE(1714), + [sym_do_statement] = STATE(1713), + [sym_for_statement] = STATE(1427), + [sym_try_statement] = STATE(1711), + [sym_using_statement] = STATE(1709), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4487), - [sym_function_declaration] = STATE(4487), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4487), - [sym_interface_declaration] = STATE(4487), - [sym_class_declaration] = STATE(4487), - [sym_const_declaration] = STATE(4487), - [sym_enum_declaration] = STATE(4487), - [sym_abstract_enum_class_declaration] = STATE(4487), - [sym_enum_class_declaration] = STATE(4487), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4487), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1703), + [sym_function_declaration] = STATE(1690), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1685), + [sym_interface_declaration] = STATE(1669), + [sym_class_declaration] = STATE(1663), + [sym_const_declaration] = STATE(1658), + [sym_enum_declaration] = STATE(1657), + [sym_abstract_enum_class_declaration] = STATE(1650), + [sym_enum_class_declaration] = STATE(1649), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1648), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -31649,29 +25200,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(929), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -31702,25 +25253,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(6058), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), [sym_empty_statement] = STATE(6058), [sym_expression_statement] = STATE(6058), [sym_compound_statement] = STATE(6058), @@ -31740,39 +25291,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(6058), [sym_try_statement] = STATE(6058), [sym_using_statement] = STATE(6058), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(6058), [sym_function_declaration] = STATE(6058), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(6058), [sym_interface_declaration] = STATE(6058), [sym_class_declaration] = STATE(6058), @@ -31780,18 +25331,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(6058), [sym_abstract_enum_class_declaration] = STATE(6058), [sym_enum_class_declaration] = STATE(6058), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(6058), - [sym_abstract_modifier] = STATE(4053), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -31802,7 +25353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -31826,13 +25377,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -31877,83 +25428,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [76] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1556), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1556), - [sym_expression_statement] = STATE(1556), - [sym_compound_statement] = STATE(1556), - [sym_return_statement] = STATE(1556), - [sym_break_statement] = STATE(1556), - [sym_continue_statement] = STATE(1556), - [sym_throw_statement] = STATE(1556), - [sym_echo_statement] = STATE(1556), - [sym_unset_statement] = STATE(1556), - [sym_concurrent_statement] = STATE(1556), - [sym_use_statement] = STATE(1556), - [sym_if_statement] = STATE(1556), - [sym_switch_statement] = STATE(1556), - [sym_foreach_statement] = STATE(1556), - [sym_while_statement] = STATE(1556), - [sym_do_statement] = STATE(1556), - [sym_for_statement] = STATE(1556), - [sym_try_statement] = STATE(1556), - [sym_using_statement] = STATE(1556), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1440), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1440), + [sym_expression_statement] = STATE(1440), + [sym_compound_statement] = STATE(1440), + [sym_return_statement] = STATE(1440), + [sym_break_statement] = STATE(1440), + [sym_continue_statement] = STATE(1440), + [sym_throw_statement] = STATE(1440), + [sym_echo_statement] = STATE(1440), + [sym_unset_statement] = STATE(1440), + [sym_concurrent_statement] = STATE(1440), + [sym_use_statement] = STATE(1440), + [sym_if_statement] = STATE(1440), + [sym_switch_statement] = STATE(1440), + [sym_foreach_statement] = STATE(1440), + [sym_while_statement] = STATE(1440), + [sym_do_statement] = STATE(1440), + [sym_for_statement] = STATE(1440), + [sym_try_statement] = STATE(1440), + [sym_using_statement] = STATE(1440), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1556), - [sym_function_declaration] = STATE(1556), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1556), - [sym_interface_declaration] = STATE(1556), - [sym_class_declaration] = STATE(1556), - [sym_const_declaration] = STATE(1556), - [sym_enum_declaration] = STATE(1556), - [sym_abstract_enum_class_declaration] = STATE(1556), - [sym_enum_class_declaration] = STATE(1556), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1556), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1440), + [sym_function_declaration] = STATE(1440), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1440), + [sym_interface_declaration] = STATE(1440), + [sym_class_declaration] = STATE(1440), + [sym_const_declaration] = STATE(1440), + [sym_enum_declaration] = STATE(1440), + [sym_abstract_enum_class_declaration] = STATE(1440), + [sym_enum_class_declaration] = STATE(1440), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1440), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -31964,7 +25515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -31988,13 +25539,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(929), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -32039,94 +25590,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [77] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1560), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1560), - [sym_expression_statement] = STATE(1560), - [sym_compound_statement] = STATE(1560), - [sym_return_statement] = STATE(1560), - [sym_break_statement] = STATE(1560), - [sym_continue_statement] = STATE(1560), - [sym_throw_statement] = STATE(1560), - [sym_echo_statement] = STATE(1560), - [sym_unset_statement] = STATE(1560), - [sym_concurrent_statement] = STATE(1560), - [sym_use_statement] = STATE(1560), - [sym_if_statement] = STATE(1560), - [sym_switch_statement] = STATE(1560), - [sym_foreach_statement] = STATE(1560), - [sym_while_statement] = STATE(1560), - [sym_do_statement] = STATE(1560), - [sym_for_statement] = STATE(1560), - [sym_try_statement] = STATE(1560), - [sym_using_statement] = STATE(1560), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4793), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4793), + [sym_expression_statement] = STATE(4793), + [sym_compound_statement] = STATE(4793), + [sym_return_statement] = STATE(4793), + [sym_break_statement] = STATE(4793), + [sym_continue_statement] = STATE(4793), + [sym_throw_statement] = STATE(4793), + [sym_echo_statement] = STATE(4793), + [sym_unset_statement] = STATE(4793), + [sym_concurrent_statement] = STATE(4793), + [sym_use_statement] = STATE(4793), + [sym_if_statement] = STATE(4793), + [sym_switch_statement] = STATE(4793), + [sym_foreach_statement] = STATE(4793), + [sym_while_statement] = STATE(4793), + [sym_do_statement] = STATE(4793), + [sym_for_statement] = STATE(4793), + [sym_try_statement] = STATE(4793), + [sym_using_statement] = STATE(4793), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1560), - [sym_function_declaration] = STATE(1560), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1560), - [sym_interface_declaration] = STATE(1560), - [sym_class_declaration] = STATE(1560), - [sym_const_declaration] = STATE(1560), - [sym_enum_declaration] = STATE(1560), - [sym_abstract_enum_class_declaration] = STATE(1560), - [sym_enum_class_declaration] = STATE(1560), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1560), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4793), + [sym_function_declaration] = STATE(4793), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4793), + [sym_interface_declaration] = STATE(4793), + [sym_class_declaration] = STATE(4793), + [sym_const_declaration] = STATE(4793), + [sym_enum_declaration] = STATE(4793), + [sym_abstract_enum_class_declaration] = STATE(4793), + [sym_enum_class_declaration] = STATE(4793), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4793), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -32135,29 +25686,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -32188,107 +25739,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [78] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1234), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1234), - [sym_expression_statement] = STATE(1234), - [sym_compound_statement] = STATE(1234), - [sym_return_statement] = STATE(1234), - [sym_break_statement] = STATE(1234), - [sym_continue_statement] = STATE(1234), - [sym_throw_statement] = STATE(1234), - [sym_echo_statement] = STATE(1234), - [sym_unset_statement] = STATE(1234), - [sym_concurrent_statement] = STATE(1234), - [sym_use_statement] = STATE(1234), - [sym_if_statement] = STATE(1234), - [sym_switch_statement] = STATE(1234), - [sym_foreach_statement] = STATE(1234), - [sym_while_statement] = STATE(1234), - [sym_do_statement] = STATE(1234), - [sym_for_statement] = STATE(1234), - [sym_try_statement] = STATE(1234), - [sym_using_statement] = STATE(1234), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1413), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1413), + [sym_expression_statement] = STATE(1413), + [sym_compound_statement] = STATE(1413), + [sym_return_statement] = STATE(1413), + [sym_break_statement] = STATE(1413), + [sym_continue_statement] = STATE(1413), + [sym_throw_statement] = STATE(1413), + [sym_echo_statement] = STATE(1413), + [sym_unset_statement] = STATE(1413), + [sym_concurrent_statement] = STATE(1413), + [sym_use_statement] = STATE(1413), + [sym_if_statement] = STATE(1413), + [sym_switch_statement] = STATE(1413), + [sym_foreach_statement] = STATE(1413), + [sym_while_statement] = STATE(1413), + [sym_do_statement] = STATE(1413), + [sym_for_statement] = STATE(1413), + [sym_try_statement] = STATE(1413), + [sym_using_statement] = STATE(1413), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1234), - [sym_function_declaration] = STATE(1234), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1234), - [sym_interface_declaration] = STATE(1234), - [sym_class_declaration] = STATE(1234), - [sym_const_declaration] = STATE(1234), - [sym_enum_declaration] = STATE(1234), - [sym_abstract_enum_class_declaration] = STATE(1234), - [sym_enum_class_declaration] = STATE(1234), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1234), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1413), + [sym_function_declaration] = STATE(1413), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1413), + [sym_interface_declaration] = STATE(1413), + [sym_class_declaration] = STATE(1413), + [sym_const_declaration] = STATE(1413), + [sym_enum_declaration] = STATE(1413), + [sym_abstract_enum_class_declaration] = STATE(1413), + [sym_enum_class_declaration] = STATE(1413), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1413), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -32297,29 +25848,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -32350,107 +25901,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [79] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1651), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1651), - [sym_expression_statement] = STATE(1651), - [sym_compound_statement] = STATE(1651), - [sym_return_statement] = STATE(1651), - [sym_break_statement] = STATE(1651), - [sym_continue_statement] = STATE(1651), - [sym_throw_statement] = STATE(1651), - [sym_echo_statement] = STATE(1651), - [sym_unset_statement] = STATE(1651), - [sym_concurrent_statement] = STATE(1651), - [sym_use_statement] = STATE(1651), - [sym_if_statement] = STATE(1651), - [sym_switch_statement] = STATE(1651), - [sym_foreach_statement] = STATE(1651), - [sym_while_statement] = STATE(1651), - [sym_do_statement] = STATE(1651), - [sym_for_statement] = STATE(1651), - [sym_try_statement] = STATE(1651), - [sym_using_statement] = STATE(1651), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1412), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1412), + [sym_expression_statement] = STATE(1412), + [sym_compound_statement] = STATE(1412), + [sym_return_statement] = STATE(1412), + [sym_break_statement] = STATE(1412), + [sym_continue_statement] = STATE(1412), + [sym_throw_statement] = STATE(1412), + [sym_echo_statement] = STATE(1412), + [sym_unset_statement] = STATE(1412), + [sym_concurrent_statement] = STATE(1412), + [sym_use_statement] = STATE(1412), + [sym_if_statement] = STATE(1412), + [sym_switch_statement] = STATE(1412), + [sym_foreach_statement] = STATE(1412), + [sym_while_statement] = STATE(1412), + [sym_do_statement] = STATE(1412), + [sym_for_statement] = STATE(1412), + [sym_try_statement] = STATE(1412), + [sym_using_statement] = STATE(1412), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1651), - [sym_function_declaration] = STATE(1651), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1651), - [sym_interface_declaration] = STATE(1651), - [sym_class_declaration] = STATE(1651), - [sym_const_declaration] = STATE(1651), - [sym_enum_declaration] = STATE(1651), - [sym_abstract_enum_class_declaration] = STATE(1651), - [sym_enum_class_declaration] = STATE(1651), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1651), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1412), + [sym_function_declaration] = STATE(1412), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1412), + [sym_interface_declaration] = STATE(1412), + [sym_class_declaration] = STATE(1412), + [sym_const_declaration] = STATE(1412), + [sym_enum_declaration] = STATE(1412), + [sym_abstract_enum_class_declaration] = STATE(1412), + [sym_enum_class_declaration] = STATE(1412), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1412), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -32459,29 +26010,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -32512,107 +26063,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [80] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1701), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1700), - [sym_expression_statement] = STATE(1699), - [sym_compound_statement] = STATE(1698), - [sym_return_statement] = STATE(1697), - [sym_break_statement] = STATE(1696), - [sym_continue_statement] = STATE(1695), - [sym_throw_statement] = STATE(1692), - [sym_echo_statement] = STATE(1690), - [sym_unset_statement] = STATE(1689), - [sym_concurrent_statement] = STATE(1688), - [sym_use_statement] = STATE(1687), - [sym_if_statement] = STATE(1686), - [sym_switch_statement] = STATE(1685), - [sym_foreach_statement] = STATE(1684), - [sym_while_statement] = STATE(1683), - [sym_do_statement] = STATE(1681), - [sym_for_statement] = STATE(1675), - [sym_try_statement] = STATE(1674), - [sym_using_statement] = STATE(1671), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1371), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1371), + [sym_expression_statement] = STATE(1371), + [sym_compound_statement] = STATE(1371), + [sym_return_statement] = STATE(1371), + [sym_break_statement] = STATE(1371), + [sym_continue_statement] = STATE(1371), + [sym_throw_statement] = STATE(1371), + [sym_echo_statement] = STATE(1371), + [sym_unset_statement] = STATE(1371), + [sym_concurrent_statement] = STATE(1371), + [sym_use_statement] = STATE(1371), + [sym_if_statement] = STATE(1371), + [sym_switch_statement] = STATE(1371), + [sym_foreach_statement] = STATE(1371), + [sym_while_statement] = STATE(1371), + [sym_do_statement] = STATE(1371), + [sym_for_statement] = STATE(1371), + [sym_try_statement] = STATE(1371), + [sym_using_statement] = STATE(1371), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1670), - [sym_function_declaration] = STATE(1669), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1668), - [sym_interface_declaration] = STATE(1666), - [sym_class_declaration] = STATE(1665), - [sym_const_declaration] = STATE(1664), - [sym_enum_declaration] = STATE(1663), - [sym_abstract_enum_class_declaration] = STATE(1662), - [sym_enum_class_declaration] = STATE(1661), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1659), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1371), + [sym_function_declaration] = STATE(1371), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1371), + [sym_interface_declaration] = STATE(1371), + [sym_class_declaration] = STATE(1371), + [sym_const_declaration] = STATE(1371), + [sym_enum_declaration] = STATE(1371), + [sym_abstract_enum_class_declaration] = STATE(1371), + [sym_enum_class_declaration] = STATE(1371), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1371), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -32621,29 +26172,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(929), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -32674,107 +26225,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [81] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1427), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1427), - [sym_expression_statement] = STATE(1427), - [sym_compound_statement] = STATE(1427), - [sym_return_statement] = STATE(1427), - [sym_break_statement] = STATE(1427), - [sym_continue_statement] = STATE(1427), - [sym_throw_statement] = STATE(1427), - [sym_echo_statement] = STATE(1427), - [sym_unset_statement] = STATE(1427), - [sym_concurrent_statement] = STATE(1427), - [sym_use_statement] = STATE(1427), - [sym_if_statement] = STATE(1427), - [sym_switch_statement] = STATE(1427), - [sym_foreach_statement] = STATE(1427), - [sym_while_statement] = STATE(1427), - [sym_do_statement] = STATE(1427), - [sym_for_statement] = STATE(1427), - [sym_try_statement] = STATE(1427), - [sym_using_statement] = STATE(1427), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1357), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_compound_statement] = STATE(1357), + [sym_return_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_throw_statement] = STATE(1357), + [sym_echo_statement] = STATE(1357), + [sym_unset_statement] = STATE(1357), + [sym_concurrent_statement] = STATE(1357), + [sym_use_statement] = STATE(1357), + [sym_if_statement] = STATE(1357), + [sym_switch_statement] = STATE(1357), + [sym_foreach_statement] = STATE(1357), + [sym_while_statement] = STATE(1357), + [sym_do_statement] = STATE(1357), + [sym_for_statement] = STATE(1357), + [sym_try_statement] = STATE(1357), + [sym_using_statement] = STATE(1357), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1427), - [sym_function_declaration] = STATE(1427), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1427), - [sym_interface_declaration] = STATE(1427), - [sym_class_declaration] = STATE(1427), - [sym_const_declaration] = STATE(1427), - [sym_enum_declaration] = STATE(1427), - [sym_abstract_enum_class_declaration] = STATE(1427), - [sym_enum_class_declaration] = STATE(1427), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1427), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1357), + [sym_function_declaration] = STATE(1357), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1357), + [sym_interface_declaration] = STATE(1357), + [sym_class_declaration] = STATE(1357), + [sym_const_declaration] = STATE(1357), + [sym_enum_declaration] = STATE(1357), + [sym_abstract_enum_class_declaration] = STATE(1357), + [sym_enum_class_declaration] = STATE(1357), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1357), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -32783,29 +26334,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(929), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -32836,107 +26387,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [82] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4490), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4490), - [sym_expression_statement] = STATE(4490), - [sym_compound_statement] = STATE(4490), - [sym_return_statement] = STATE(4490), - [sym_break_statement] = STATE(4490), - [sym_continue_statement] = STATE(4490), - [sym_throw_statement] = STATE(4490), - [sym_echo_statement] = STATE(4490), - [sym_unset_statement] = STATE(4490), - [sym_concurrent_statement] = STATE(4490), - [sym_use_statement] = STATE(4490), - [sym_if_statement] = STATE(4490), - [sym_switch_statement] = STATE(4490), - [sym_foreach_statement] = STATE(4490), - [sym_while_statement] = STATE(4490), - [sym_do_statement] = STATE(4490), - [sym_for_statement] = STATE(4490), - [sym_try_statement] = STATE(4490), - [sym_using_statement] = STATE(4490), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4722), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4722), + [sym_expression_statement] = STATE(4722), + [sym_compound_statement] = STATE(4722), + [sym_return_statement] = STATE(4722), + [sym_break_statement] = STATE(4722), + [sym_continue_statement] = STATE(4722), + [sym_throw_statement] = STATE(4722), + [sym_echo_statement] = STATE(4722), + [sym_unset_statement] = STATE(4722), + [sym_concurrent_statement] = STATE(4722), + [sym_use_statement] = STATE(4722), + [sym_if_statement] = STATE(4722), + [sym_switch_statement] = STATE(4722), + [sym_foreach_statement] = STATE(4722), + [sym_while_statement] = STATE(4722), + [sym_do_statement] = STATE(4722), + [sym_for_statement] = STATE(4722), + [sym_try_statement] = STATE(4722), + [sym_using_statement] = STATE(4722), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4490), - [sym_function_declaration] = STATE(4490), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4490), - [sym_interface_declaration] = STATE(4490), - [sym_class_declaration] = STATE(4490), - [sym_const_declaration] = STATE(4490), - [sym_enum_declaration] = STATE(4490), - [sym_abstract_enum_class_declaration] = STATE(4490), - [sym_enum_class_declaration] = STATE(4490), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4490), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4722), + [sym_function_declaration] = STATE(4722), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4722), + [sym_interface_declaration] = STATE(4722), + [sym_class_declaration] = STATE(4722), + [sym_const_declaration] = STATE(4722), + [sym_enum_declaration] = STATE(4722), + [sym_abstract_enum_class_declaration] = STATE(4722), + [sym_enum_class_declaration] = STATE(4722), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4722), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -32945,29 +26496,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -32998,101 +26549,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1236), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1236), - [sym_expression_statement] = STATE(1236), - [sym_compound_statement] = STATE(1236), - [sym_return_statement] = STATE(1236), - [sym_break_statement] = STATE(1236), - [sym_continue_statement] = STATE(1236), - [sym_throw_statement] = STATE(1236), - [sym_echo_statement] = STATE(1236), - [sym_unset_statement] = STATE(1236), - [sym_concurrent_statement] = STATE(1236), - [sym_use_statement] = STATE(1236), - [sym_if_statement] = STATE(1236), - [sym_switch_statement] = STATE(1236), - [sym_foreach_statement] = STATE(1236), - [sym_while_statement] = STATE(1236), - [sym_do_statement] = STATE(1236), - [sym_for_statement] = STATE(1236), - [sym_try_statement] = STATE(1236), - [sym_using_statement] = STATE(1236), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1630), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1630), + [sym_expression_statement] = STATE(1630), + [sym_compound_statement] = STATE(1630), + [sym_return_statement] = STATE(1630), + [sym_break_statement] = STATE(1630), + [sym_continue_statement] = STATE(1630), + [sym_throw_statement] = STATE(1630), + [sym_echo_statement] = STATE(1630), + [sym_unset_statement] = STATE(1630), + [sym_concurrent_statement] = STATE(1630), + [sym_use_statement] = STATE(1630), + [sym_if_statement] = STATE(1630), + [sym_switch_statement] = STATE(1630), + [sym_foreach_statement] = STATE(1630), + [sym_while_statement] = STATE(1630), + [sym_do_statement] = STATE(1630), + [sym_for_statement] = STATE(1630), + [sym_try_statement] = STATE(1630), + [sym_using_statement] = STATE(1630), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1236), - [sym_function_declaration] = STATE(1236), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1236), - [sym_interface_declaration] = STATE(1236), - [sym_class_declaration] = STATE(1236), - [sym_const_declaration] = STATE(1236), - [sym_enum_declaration] = STATE(1236), - [sym_abstract_enum_class_declaration] = STATE(1236), - [sym_enum_class_declaration] = STATE(1236), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1236), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1630), + [sym_function_declaration] = STATE(1630), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1630), + [sym_interface_declaration] = STATE(1630), + [sym_class_declaration] = STATE(1630), + [sym_const_declaration] = STATE(1630), + [sym_enum_declaration] = STATE(1630), + [sym_abstract_enum_class_declaration] = STATE(1630), + [sym_enum_class_declaration] = STATE(1630), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1630), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), @@ -33107,29 +26658,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -33160,107 +26711,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4729), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4729), - [sym_expression_statement] = STATE(4729), - [sym_compound_statement] = STATE(4729), - [sym_return_statement] = STATE(4729), - [sym_break_statement] = STATE(4729), - [sym_continue_statement] = STATE(4729), - [sym_throw_statement] = STATE(4729), - [sym_echo_statement] = STATE(4729), - [sym_unset_statement] = STATE(4729), - [sym_concurrent_statement] = STATE(4729), - [sym_use_statement] = STATE(4729), - [sym_if_statement] = STATE(4729), - [sym_switch_statement] = STATE(4729), - [sym_foreach_statement] = STATE(4729), - [sym_while_statement] = STATE(4729), - [sym_do_statement] = STATE(4729), - [sym_for_statement] = STATE(4729), - [sym_try_statement] = STATE(4729), - [sym_using_statement] = STATE(4729), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4694), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4691), + [sym_expression_statement] = STATE(4689), + [sym_compound_statement] = STATE(4676), + [sym_return_statement] = STATE(4711), + [sym_break_statement] = STATE(4684), + [sym_continue_statement] = STATE(4680), + [sym_throw_statement] = STATE(4678), + [sym_echo_statement] = STATE(4677), + [sym_unset_statement] = STATE(4540), + [sym_concurrent_statement] = STATE(4674), + [sym_use_statement] = STATE(4670), + [sym_if_statement] = STATE(4668), + [sym_switch_statement] = STATE(4665), + [sym_foreach_statement] = STATE(4661), + [sym_while_statement] = STATE(4656), + [sym_do_statement] = STATE(4652), + [sym_for_statement] = STATE(4648), + [sym_try_statement] = STATE(4646), + [sym_using_statement] = STATE(4643), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4729), - [sym_function_declaration] = STATE(4729), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4729), - [sym_interface_declaration] = STATE(4729), - [sym_class_declaration] = STATE(4729), - [sym_const_declaration] = STATE(4729), - [sym_enum_declaration] = STATE(4729), - [sym_abstract_enum_class_declaration] = STATE(4729), - [sym_enum_class_declaration] = STATE(4729), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4729), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4640), + [sym_function_declaration] = STATE(4628), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4625), + [sym_interface_declaration] = STATE(4624), + [sym_class_declaration] = STATE(4623), + [sym_const_declaration] = STATE(4622), + [sym_enum_declaration] = STATE(4619), + [sym_abstract_enum_class_declaration] = STATE(4618), + [sym_enum_class_declaration] = STATE(4617), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4614), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -33269,29 +26820,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), + [anon_sym_const] = ACTIONS(897), [anon_sym_if] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -33322,107 +26873,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1249), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_compound_statement] = STATE(1249), - [sym_return_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_throw_statement] = STATE(1249), - [sym_echo_statement] = STATE(1249), - [sym_unset_statement] = STATE(1249), - [sym_concurrent_statement] = STATE(1249), - [sym_use_statement] = STATE(1249), - [sym_if_statement] = STATE(1249), - [sym_switch_statement] = STATE(1249), - [sym_foreach_statement] = STATE(1249), - [sym_while_statement] = STATE(1249), - [sym_do_statement] = STATE(1249), - [sym_for_statement] = STATE(1249), - [sym_try_statement] = STATE(1249), - [sym_using_statement] = STATE(1249), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4610), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4610), + [sym_expression_statement] = STATE(4610), + [sym_compound_statement] = STATE(4610), + [sym_return_statement] = STATE(4610), + [sym_break_statement] = STATE(4610), + [sym_continue_statement] = STATE(4610), + [sym_throw_statement] = STATE(4610), + [sym_echo_statement] = STATE(4610), + [sym_unset_statement] = STATE(4610), + [sym_concurrent_statement] = STATE(4610), + [sym_use_statement] = STATE(4610), + [sym_if_statement] = STATE(4610), + [sym_switch_statement] = STATE(4610), + [sym_foreach_statement] = STATE(4610), + [sym_while_statement] = STATE(4610), + [sym_do_statement] = STATE(4610), + [sym_for_statement] = STATE(4610), + [sym_try_statement] = STATE(4610), + [sym_using_statement] = STATE(4610), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1249), - [sym_function_declaration] = STATE(1249), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1249), - [sym_interface_declaration] = STATE(1249), - [sym_class_declaration] = STATE(1249), - [sym_const_declaration] = STATE(1249), - [sym_enum_declaration] = STATE(1249), - [sym_abstract_enum_class_declaration] = STATE(1249), - [sym_enum_class_declaration] = STATE(1249), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1249), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4610), + [sym_function_declaration] = STATE(4610), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4610), + [sym_interface_declaration] = STATE(4610), + [sym_class_declaration] = STATE(4610), + [sym_const_declaration] = STATE(4610), + [sym_enum_declaration] = STATE(4610), + [sym_abstract_enum_class_declaration] = STATE(4610), + [sym_enum_class_declaration] = STATE(4610), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4610), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -33431,29 +26982,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -33484,107 +27035,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [86] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1427), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1427), - [sym_expression_statement] = STATE(1427), - [sym_compound_statement] = STATE(1427), - [sym_return_statement] = STATE(1427), - [sym_break_statement] = STATE(1427), - [sym_continue_statement] = STATE(1427), - [sym_throw_statement] = STATE(1427), - [sym_echo_statement] = STATE(1427), - [sym_unset_statement] = STATE(1427), - [sym_concurrent_statement] = STATE(1427), - [sym_use_statement] = STATE(1427), - [sym_if_statement] = STATE(1427), - [sym_switch_statement] = STATE(1427), - [sym_foreach_statement] = STATE(1427), - [sym_while_statement] = STATE(1427), - [sym_do_statement] = STATE(1427), - [sym_for_statement] = STATE(1427), - [sym_try_statement] = STATE(1427), - [sym_using_statement] = STATE(1427), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4512), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4512), + [sym_expression_statement] = STATE(4512), + [sym_compound_statement] = STATE(4512), + [sym_return_statement] = STATE(4512), + [sym_break_statement] = STATE(4512), + [sym_continue_statement] = STATE(4512), + [sym_throw_statement] = STATE(4512), + [sym_echo_statement] = STATE(4512), + [sym_unset_statement] = STATE(4512), + [sym_concurrent_statement] = STATE(4512), + [sym_use_statement] = STATE(4512), + [sym_if_statement] = STATE(4512), + [sym_switch_statement] = STATE(4512), + [sym_foreach_statement] = STATE(4512), + [sym_while_statement] = STATE(4512), + [sym_do_statement] = STATE(4512), + [sym_for_statement] = STATE(4512), + [sym_try_statement] = STATE(4512), + [sym_using_statement] = STATE(4512), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1427), - [sym_function_declaration] = STATE(1427), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1427), - [sym_interface_declaration] = STATE(1427), - [sym_class_declaration] = STATE(1427), - [sym_const_declaration] = STATE(1427), - [sym_enum_declaration] = STATE(1427), - [sym_abstract_enum_class_declaration] = STATE(1427), - [sym_enum_class_declaration] = STATE(1427), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1427), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4512), + [sym_function_declaration] = STATE(4512), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4512), + [sym_interface_declaration] = STATE(4512), + [sym_class_declaration] = STATE(4512), + [sym_const_declaration] = STATE(4512), + [sym_enum_declaration] = STATE(4512), + [sym_abstract_enum_class_declaration] = STATE(4512), + [sym_enum_class_declaration] = STATE(4512), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4512), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -33593,29 +27144,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(933), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -33646,107 +27197,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1250), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1250), - [sym_expression_statement] = STATE(1250), - [sym_compound_statement] = STATE(1250), - [sym_return_statement] = STATE(1250), - [sym_break_statement] = STATE(1250), - [sym_continue_statement] = STATE(1250), - [sym_throw_statement] = STATE(1250), - [sym_echo_statement] = STATE(1250), - [sym_unset_statement] = STATE(1250), - [sym_concurrent_statement] = STATE(1250), - [sym_use_statement] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_switch_statement] = STATE(1250), - [sym_foreach_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_do_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_try_statement] = STATE(1250), - [sym_using_statement] = STATE(1250), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4515), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4515), + [sym_expression_statement] = STATE(4515), + [sym_compound_statement] = STATE(4515), + [sym_return_statement] = STATE(4515), + [sym_break_statement] = STATE(4515), + [sym_continue_statement] = STATE(4515), + [sym_throw_statement] = STATE(4515), + [sym_echo_statement] = STATE(4515), + [sym_unset_statement] = STATE(4515), + [sym_concurrent_statement] = STATE(4515), + [sym_use_statement] = STATE(4515), + [sym_if_statement] = STATE(4515), + [sym_switch_statement] = STATE(4515), + [sym_foreach_statement] = STATE(4515), + [sym_while_statement] = STATE(4515), + [sym_do_statement] = STATE(4515), + [sym_for_statement] = STATE(4515), + [sym_try_statement] = STATE(4515), + [sym_using_statement] = STATE(4515), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1250), - [sym_function_declaration] = STATE(1250), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1250), - [sym_interface_declaration] = STATE(1250), - [sym_class_declaration] = STATE(1250), - [sym_const_declaration] = STATE(1250), - [sym_enum_declaration] = STATE(1250), - [sym_abstract_enum_class_declaration] = STATE(1250), - [sym_enum_class_declaration] = STATE(1250), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1250), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4515), + [sym_function_declaration] = STATE(4515), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4515), + [sym_interface_declaration] = STATE(4515), + [sym_class_declaration] = STATE(4515), + [sym_const_declaration] = STATE(4515), + [sym_enum_declaration] = STATE(4515), + [sym_abstract_enum_class_declaration] = STATE(4515), + [sym_enum_class_declaration] = STATE(4515), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4515), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -33755,29 +27306,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -33808,107 +27359,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4696), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4695), - [sym_expression_statement] = STATE(4694), - [sym_compound_statement] = STATE(4601), - [sym_return_statement] = STATE(4692), - [sym_break_statement] = STATE(4691), - [sym_continue_statement] = STATE(4690), - [sym_throw_statement] = STATE(4689), - [sym_echo_statement] = STATE(4686), - [sym_unset_statement] = STATE(4682), - [sym_concurrent_statement] = STATE(4680), - [sym_use_statement] = STATE(4674), - [sym_if_statement] = STATE(4666), - [sym_switch_statement] = STATE(4665), - [sym_foreach_statement] = STATE(4663), - [sym_while_statement] = STATE(4662), - [sym_do_statement] = STATE(4660), - [sym_for_statement] = STATE(4657), - [sym_try_statement] = STATE(4656), - [sym_using_statement] = STATE(4652), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1526), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1526), + [sym_expression_statement] = STATE(1526), + [sym_compound_statement] = STATE(1526), + [sym_return_statement] = STATE(1526), + [sym_break_statement] = STATE(1526), + [sym_continue_statement] = STATE(1526), + [sym_throw_statement] = STATE(1526), + [sym_echo_statement] = STATE(1526), + [sym_unset_statement] = STATE(1526), + [sym_concurrent_statement] = STATE(1526), + [sym_use_statement] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_switch_statement] = STATE(1526), + [sym_foreach_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_do_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_try_statement] = STATE(1526), + [sym_using_statement] = STATE(1526), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4649), - [sym_function_declaration] = STATE(4648), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4647), - [sym_interface_declaration] = STATE(4644), - [sym_class_declaration] = STATE(4643), - [sym_const_declaration] = STATE(4639), - [sym_enum_declaration] = STATE(4625), - [sym_abstract_enum_class_declaration] = STATE(4624), - [sym_enum_class_declaration] = STATE(4620), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4618), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1526), + [sym_function_declaration] = STATE(1526), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1526), + [sym_interface_declaration] = STATE(1526), + [sym_class_declaration] = STATE(1526), + [sym_const_declaration] = STATE(1526), + [sym_enum_declaration] = STATE(1526), + [sym_abstract_enum_class_declaration] = STATE(1526), + [sym_enum_class_declaration] = STATE(1526), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1526), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6096), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(387), + [anon_sym_newtype] = ACTIONS(387), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(389), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -33917,29 +27468,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_echo] = ACTIONS(407), + [anon_sym_unset] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(411), + [anon_sym_use] = ACTIONS(413), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_foreach] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_do] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [anon_sym_using] = ACTIONS(431), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -33970,107 +27521,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_interface] = ACTIONS(435), + [anon_sym_class] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_abstract] = ACTIONS(441), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(443), + [sym_xhp_modifier] = ACTIONS(445), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [89] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4617), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4617), - [sym_expression_statement] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_return_statement] = STATE(4617), - [sym_break_statement] = STATE(4617), - [sym_continue_statement] = STATE(4617), - [sym_throw_statement] = STATE(4617), - [sym_echo_statement] = STATE(4617), - [sym_unset_statement] = STATE(4617), - [sym_concurrent_statement] = STATE(4617), - [sym_use_statement] = STATE(4617), - [sym_if_statement] = STATE(4617), - [sym_switch_statement] = STATE(4617), - [sym_foreach_statement] = STATE(4617), - [sym_while_statement] = STATE(4617), - [sym_do_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_try_statement] = STATE(4617), - [sym_using_statement] = STATE(4617), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(6005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(6005), + [sym_expression_statement] = STATE(6005), + [sym_compound_statement] = STATE(6005), + [sym_return_statement] = STATE(6005), + [sym_break_statement] = STATE(6005), + [sym_continue_statement] = STATE(6005), + [sym_throw_statement] = STATE(6005), + [sym_echo_statement] = STATE(6005), + [sym_unset_statement] = STATE(6005), + [sym_concurrent_statement] = STATE(6005), + [sym_use_statement] = STATE(6005), + [sym_if_statement] = STATE(6005), + [sym_switch_statement] = STATE(6005), + [sym_foreach_statement] = STATE(6005), + [sym_while_statement] = STATE(6005), + [sym_do_statement] = STATE(6005), + [sym_for_statement] = STATE(6005), + [sym_try_statement] = STATE(6005), + [sym_using_statement] = STATE(6005), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4617), - [sym_function_declaration] = STATE(4617), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4617), - [sym_interface_declaration] = STATE(4617), - [sym_class_declaration] = STATE(4617), - [sym_const_declaration] = STATE(4617), - [sym_enum_declaration] = STATE(4617), - [sym_abstract_enum_class_declaration] = STATE(4617), - [sym_enum_class_declaration] = STATE(4617), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4617), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(6005), + [sym_function_declaration] = STATE(6005), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(6005), + [sym_interface_declaration] = STATE(6005), + [sym_class_declaration] = STATE(6005), + [sym_const_declaration] = STATE(6005), + [sym_enum_declaration] = STATE(6005), + [sym_abstract_enum_class_declaration] = STATE(6005), + [sym_enum_class_declaration] = STATE(6005), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(6005), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -34079,29 +27630,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -34132,107 +27683,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1268), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1268), - [sym_expression_statement] = STATE(1268), - [sym_compound_statement] = STATE(1268), - [sym_return_statement] = STATE(1268), - [sym_break_statement] = STATE(1268), - [sym_continue_statement] = STATE(1268), - [sym_throw_statement] = STATE(1268), - [sym_echo_statement] = STATE(1268), - [sym_unset_statement] = STATE(1268), - [sym_concurrent_statement] = STATE(1268), - [sym_use_statement] = STATE(1268), - [sym_if_statement] = STATE(1268), - [sym_switch_statement] = STATE(1268), - [sym_foreach_statement] = STATE(1268), - [sym_while_statement] = STATE(1268), - [sym_do_statement] = STATE(1268), - [sym_for_statement] = STATE(1268), - [sym_try_statement] = STATE(1268), - [sym_using_statement] = STATE(1268), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1505), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1505), + [sym_expression_statement] = STATE(1505), + [sym_compound_statement] = STATE(1505), + [sym_return_statement] = STATE(1505), + [sym_break_statement] = STATE(1505), + [sym_continue_statement] = STATE(1505), + [sym_throw_statement] = STATE(1505), + [sym_echo_statement] = STATE(1505), + [sym_unset_statement] = STATE(1505), + [sym_concurrent_statement] = STATE(1505), + [sym_use_statement] = STATE(1505), + [sym_if_statement] = STATE(1505), + [sym_switch_statement] = STATE(1505), + [sym_foreach_statement] = STATE(1505), + [sym_while_statement] = STATE(1505), + [sym_do_statement] = STATE(1505), + [sym_for_statement] = STATE(1505), + [sym_try_statement] = STATE(1505), + [sym_using_statement] = STATE(1505), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1268), - [sym_function_declaration] = STATE(1268), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1268), - [sym_interface_declaration] = STATE(1268), - [sym_class_declaration] = STATE(1268), - [sym_const_declaration] = STATE(1268), - [sym_enum_declaration] = STATE(1268), - [sym_abstract_enum_class_declaration] = STATE(1268), - [sym_enum_class_declaration] = STATE(1268), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1268), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1505), + [sym_function_declaration] = STATE(1505), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1505), + [sym_interface_declaration] = STATE(1505), + [sym_class_declaration] = STATE(1505), + [sym_const_declaration] = STATE(1505), + [sym_enum_declaration] = STATE(1505), + [sym_abstract_enum_class_declaration] = STATE(1505), + [sym_enum_class_declaration] = STATE(1505), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1505), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6096), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(387), + [anon_sym_newtype] = ACTIONS(387), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(389), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -34241,29 +27792,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_echo] = ACTIONS(407), + [anon_sym_unset] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(411), + [anon_sym_use] = ACTIONS(413), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_foreach] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_do] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [anon_sym_using] = ACTIONS(431), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -34294,107 +27845,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_interface] = ACTIONS(435), + [anon_sym_class] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_abstract] = ACTIONS(441), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(443), + [sym_xhp_modifier] = ACTIONS(445), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [91] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1667), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1667), - [sym_expression_statement] = STATE(1667), - [sym_compound_statement] = STATE(1667), - [sym_return_statement] = STATE(1667), - [sym_break_statement] = STATE(1667), - [sym_continue_statement] = STATE(1667), - [sym_throw_statement] = STATE(1667), - [sym_echo_statement] = STATE(1667), - [sym_unset_statement] = STATE(1667), - [sym_concurrent_statement] = STATE(1667), - [sym_use_statement] = STATE(1667), - [sym_if_statement] = STATE(1667), - [sym_switch_statement] = STATE(1667), - [sym_foreach_statement] = STATE(1667), - [sym_while_statement] = STATE(1667), - [sym_do_statement] = STATE(1667), - [sym_for_statement] = STATE(1667), - [sym_try_statement] = STATE(1667), - [sym_using_statement] = STATE(1667), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1494), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1494), + [sym_expression_statement] = STATE(1494), + [sym_compound_statement] = STATE(1494), + [sym_return_statement] = STATE(1494), + [sym_break_statement] = STATE(1494), + [sym_continue_statement] = STATE(1494), + [sym_throw_statement] = STATE(1494), + [sym_echo_statement] = STATE(1494), + [sym_unset_statement] = STATE(1494), + [sym_concurrent_statement] = STATE(1494), + [sym_use_statement] = STATE(1494), + [sym_if_statement] = STATE(1494), + [sym_switch_statement] = STATE(1494), + [sym_foreach_statement] = STATE(1494), + [sym_while_statement] = STATE(1494), + [sym_do_statement] = STATE(1494), + [sym_for_statement] = STATE(1494), + [sym_try_statement] = STATE(1494), + [sym_using_statement] = STATE(1494), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1667), - [sym_function_declaration] = STATE(1667), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1667), - [sym_interface_declaration] = STATE(1667), - [sym_class_declaration] = STATE(1667), - [sym_const_declaration] = STATE(1667), - [sym_enum_declaration] = STATE(1667), - [sym_abstract_enum_class_declaration] = STATE(1667), - [sym_enum_class_declaration] = STATE(1667), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1667), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1494), + [sym_function_declaration] = STATE(1494), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1494), + [sym_interface_declaration] = STATE(1494), + [sym_class_declaration] = STATE(1494), + [sym_const_declaration] = STATE(1494), + [sym_enum_declaration] = STATE(1494), + [sym_abstract_enum_class_declaration] = STATE(1494), + [sym_enum_class_declaration] = STATE(1494), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1494), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6096), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(387), + [anon_sym_newtype] = ACTIONS(387), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(389), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -34403,29 +27954,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_echo] = ACTIONS(407), + [anon_sym_unset] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(411), + [anon_sym_use] = ACTIONS(413), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_foreach] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_do] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [anon_sym_using] = ACTIONS(431), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -34456,96 +28007,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_interface] = ACTIONS(435), + [anon_sym_class] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_abstract] = ACTIONS(441), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(443), + [sym_xhp_modifier] = ACTIONS(445), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [92] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1654), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1654), - [sym_expression_statement] = STATE(1654), - [sym_compound_statement] = STATE(1654), - [sym_return_statement] = STATE(1654), - [sym_break_statement] = STATE(1654), - [sym_continue_statement] = STATE(1654), - [sym_throw_statement] = STATE(1654), - [sym_echo_statement] = STATE(1654), - [sym_unset_statement] = STATE(1654), - [sym_concurrent_statement] = STATE(1654), - [sym_use_statement] = STATE(1654), - [sym_if_statement] = STATE(1654), - [sym_switch_statement] = STATE(1654), - [sym_foreach_statement] = STATE(1654), - [sym_while_statement] = STATE(1654), - [sym_do_statement] = STATE(1654), - [sym_for_statement] = STATE(1654), - [sym_try_statement] = STATE(1654), - [sym_using_statement] = STATE(1654), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1488), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1488), + [sym_expression_statement] = STATE(1488), + [sym_compound_statement] = STATE(1488), + [sym_return_statement] = STATE(1488), + [sym_break_statement] = STATE(1488), + [sym_continue_statement] = STATE(1488), + [sym_throw_statement] = STATE(1488), + [sym_echo_statement] = STATE(1488), + [sym_unset_statement] = STATE(1488), + [sym_concurrent_statement] = STATE(1488), + [sym_use_statement] = STATE(1488), + [sym_if_statement] = STATE(1488), + [sym_switch_statement] = STATE(1488), + [sym_foreach_statement] = STATE(1488), + [sym_while_statement] = STATE(1488), + [sym_do_statement] = STATE(1488), + [sym_for_statement] = STATE(1488), + [sym_try_statement] = STATE(1488), + [sym_using_statement] = STATE(1488), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1654), - [sym_function_declaration] = STATE(1654), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1654), - [sym_interface_declaration] = STATE(1654), - [sym_class_declaration] = STATE(1654), - [sym_const_declaration] = STATE(1654), - [sym_enum_declaration] = STATE(1654), - [sym_abstract_enum_class_declaration] = STATE(1654), - [sym_enum_class_declaration] = STATE(1654), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1654), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1488), + [sym_function_declaration] = STATE(1488), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1488), + [sym_interface_declaration] = STATE(1488), + [sym_class_declaration] = STATE(1488), + [sym_const_declaration] = STATE(1488), + [sym_enum_declaration] = STATE(1488), + [sym_abstract_enum_class_declaration] = STATE(1488), + [sym_enum_class_declaration] = STATE(1488), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1488), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -34631,94 +28182,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [93] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(6005), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(6005), - [sym_expression_statement] = STATE(6005), - [sym_compound_statement] = STATE(6005), - [sym_return_statement] = STATE(6005), - [sym_break_statement] = STATE(6005), - [sym_continue_statement] = STATE(6005), - [sym_throw_statement] = STATE(6005), - [sym_echo_statement] = STATE(6005), - [sym_unset_statement] = STATE(6005), - [sym_concurrent_statement] = STATE(6005), - [sym_use_statement] = STATE(6005), - [sym_if_statement] = STATE(6005), - [sym_switch_statement] = STATE(6005), - [sym_foreach_statement] = STATE(6005), - [sym_while_statement] = STATE(6005), - [sym_do_statement] = STATE(6005), - [sym_for_statement] = STATE(6005), - [sym_try_statement] = STATE(6005), - [sym_using_statement] = STATE(6005), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1262), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1262), + [sym_expression_statement] = STATE(1262), + [sym_compound_statement] = STATE(1262), + [sym_return_statement] = STATE(1262), + [sym_break_statement] = STATE(1262), + [sym_continue_statement] = STATE(1262), + [sym_throw_statement] = STATE(1262), + [sym_echo_statement] = STATE(1262), + [sym_unset_statement] = STATE(1262), + [sym_concurrent_statement] = STATE(1262), + [sym_use_statement] = STATE(1262), + [sym_if_statement] = STATE(1262), + [sym_switch_statement] = STATE(1262), + [sym_foreach_statement] = STATE(1262), + [sym_while_statement] = STATE(1262), + [sym_do_statement] = STATE(1262), + [sym_for_statement] = STATE(1262), + [sym_try_statement] = STATE(1262), + [sym_using_statement] = STATE(1262), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(6005), - [sym_function_declaration] = STATE(6005), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(6005), - [sym_interface_declaration] = STATE(6005), - [sym_class_declaration] = STATE(6005), - [sym_const_declaration] = STATE(6005), - [sym_enum_declaration] = STATE(6005), - [sym_abstract_enum_class_declaration] = STATE(6005), - [sym_enum_class_declaration] = STATE(6005), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(6005), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1262), + [sym_function_declaration] = STATE(1262), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1262), + [sym_interface_declaration] = STATE(1262), + [sym_class_declaration] = STATE(1262), + [sym_const_declaration] = STATE(1262), + [sym_enum_declaration] = STATE(1262), + [sym_abstract_enum_class_declaration] = STATE(1262), + [sym_enum_class_declaration] = STATE(1262), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1262), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -34727,29 +28278,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -34780,96 +28331,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [94] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1608), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1608), - [sym_expression_statement] = STATE(1608), - [sym_compound_statement] = STATE(1608), - [sym_return_statement] = STATE(1608), - [sym_break_statement] = STATE(1608), - [sym_continue_statement] = STATE(1608), - [sym_throw_statement] = STATE(1608), - [sym_echo_statement] = STATE(1608), - [sym_unset_statement] = STATE(1608), - [sym_concurrent_statement] = STATE(1608), - [sym_use_statement] = STATE(1608), - [sym_if_statement] = STATE(1608), - [sym_switch_statement] = STATE(1608), - [sym_foreach_statement] = STATE(1608), - [sym_while_statement] = STATE(1608), - [sym_do_statement] = STATE(1608), - [sym_for_statement] = STATE(1608), - [sym_try_statement] = STATE(1608), - [sym_using_statement] = STATE(1608), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1467), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1467), + [sym_expression_statement] = STATE(1467), + [sym_compound_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_echo_statement] = STATE(1467), + [sym_unset_statement] = STATE(1467), + [sym_concurrent_statement] = STATE(1467), + [sym_use_statement] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_foreach_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_using_statement] = STATE(1467), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1608), - [sym_function_declaration] = STATE(1608), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1608), - [sym_interface_declaration] = STATE(1608), - [sym_class_declaration] = STATE(1608), - [sym_const_declaration] = STATE(1608), - [sym_enum_declaration] = STATE(1608), - [sym_abstract_enum_class_declaration] = STATE(1608), - [sym_enum_class_declaration] = STATE(1608), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1608), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1467), + [sym_function_declaration] = STATE(1467), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1467), + [sym_interface_declaration] = STATE(1467), + [sym_class_declaration] = STATE(1467), + [sym_const_declaration] = STATE(1467), + [sym_enum_declaration] = STATE(1467), + [sym_abstract_enum_class_declaration] = STATE(1467), + [sym_enum_class_declaration] = STATE(1467), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1467), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -34955,83 +28506,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [95] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1529), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1529), - [sym_expression_statement] = STATE(1529), - [sym_compound_statement] = STATE(1529), - [sym_return_statement] = STATE(1529), - [sym_break_statement] = STATE(1529), - [sym_continue_statement] = STATE(1529), - [sym_throw_statement] = STATE(1529), - [sym_echo_statement] = STATE(1529), - [sym_unset_statement] = STATE(1529), - [sym_concurrent_statement] = STATE(1529), - [sym_use_statement] = STATE(1529), - [sym_if_statement] = STATE(1529), - [sym_switch_statement] = STATE(1529), - [sym_foreach_statement] = STATE(1529), - [sym_while_statement] = STATE(1529), - [sym_do_statement] = STATE(1529), - [sym_for_statement] = STATE(1529), - [sym_try_statement] = STATE(1529), - [sym_using_statement] = STATE(1529), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1466), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1466), + [sym_expression_statement] = STATE(1466), + [sym_compound_statement] = STATE(1466), + [sym_return_statement] = STATE(1466), + [sym_break_statement] = STATE(1466), + [sym_continue_statement] = STATE(1466), + [sym_throw_statement] = STATE(1466), + [sym_echo_statement] = STATE(1466), + [sym_unset_statement] = STATE(1466), + [sym_concurrent_statement] = STATE(1466), + [sym_use_statement] = STATE(1466), + [sym_if_statement] = STATE(1466), + [sym_switch_statement] = STATE(1466), + [sym_foreach_statement] = STATE(1466), + [sym_while_statement] = STATE(1466), + [sym_do_statement] = STATE(1466), + [sym_for_statement] = STATE(1466), + [sym_try_statement] = STATE(1466), + [sym_using_statement] = STATE(1466), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1529), - [sym_function_declaration] = STATE(1529), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1529), - [sym_interface_declaration] = STATE(1529), - [sym_class_declaration] = STATE(1529), - [sym_const_declaration] = STATE(1529), - [sym_enum_declaration] = STATE(1529), - [sym_abstract_enum_class_declaration] = STATE(1529), - [sym_enum_class_declaration] = STATE(1529), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1529), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1466), + [sym_function_declaration] = STATE(1466), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1466), + [sym_interface_declaration] = STATE(1466), + [sym_class_declaration] = STATE(1466), + [sym_const_declaration] = STATE(1466), + [sym_enum_declaration] = STATE(1466), + [sym_abstract_enum_class_declaration] = STATE(1466), + [sym_enum_class_declaration] = STATE(1466), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1466), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -35117,83 +28668,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [96] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1526), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1526), - [sym_expression_statement] = STATE(1526), - [sym_compound_statement] = STATE(1526), - [sym_return_statement] = STATE(1526), - [sym_break_statement] = STATE(1526), - [sym_continue_statement] = STATE(1526), - [sym_throw_statement] = STATE(1526), - [sym_echo_statement] = STATE(1526), - [sym_unset_statement] = STATE(1526), - [sym_concurrent_statement] = STATE(1526), - [sym_use_statement] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_switch_statement] = STATE(1526), - [sym_foreach_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_do_statement] = STATE(1526), - [sym_for_statement] = STATE(1526), - [sym_try_statement] = STATE(1526), - [sym_using_statement] = STATE(1526), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1444), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1444), + [sym_expression_statement] = STATE(1444), + [sym_compound_statement] = STATE(1444), + [sym_return_statement] = STATE(1444), + [sym_break_statement] = STATE(1444), + [sym_continue_statement] = STATE(1444), + [sym_throw_statement] = STATE(1444), + [sym_echo_statement] = STATE(1444), + [sym_unset_statement] = STATE(1444), + [sym_concurrent_statement] = STATE(1444), + [sym_use_statement] = STATE(1444), + [sym_if_statement] = STATE(1444), + [sym_switch_statement] = STATE(1444), + [sym_foreach_statement] = STATE(1444), + [sym_while_statement] = STATE(1444), + [sym_do_statement] = STATE(1444), + [sym_for_statement] = STATE(1444), + [sym_try_statement] = STATE(1444), + [sym_using_statement] = STATE(1444), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1526), - [sym_function_declaration] = STATE(1526), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1526), - [sym_interface_declaration] = STATE(1526), - [sym_class_declaration] = STATE(1526), - [sym_const_declaration] = STATE(1526), - [sym_enum_declaration] = STATE(1526), - [sym_abstract_enum_class_declaration] = STATE(1526), - [sym_enum_class_declaration] = STATE(1526), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1526), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1444), + [sym_function_declaration] = STATE(1444), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_class_declaration] = STATE(1444), + [sym_const_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_abstract_enum_class_declaration] = STATE(1444), + [sym_enum_class_declaration] = STATE(1444), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1444), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -35279,83 +28830,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [97] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1445), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1445), - [sym_expression_statement] = STATE(1445), - [sym_compound_statement] = STATE(1445), - [sym_return_statement] = STATE(1445), - [sym_break_statement] = STATE(1445), - [sym_continue_statement] = STATE(1445), - [sym_throw_statement] = STATE(1445), - [sym_echo_statement] = STATE(1445), - [sym_unset_statement] = STATE(1445), - [sym_concurrent_statement] = STATE(1445), - [sym_use_statement] = STATE(1445), - [sym_if_statement] = STATE(1445), - [sym_switch_statement] = STATE(1445), - [sym_foreach_statement] = STATE(1445), - [sym_while_statement] = STATE(1445), - [sym_do_statement] = STATE(1445), - [sym_for_statement] = STATE(1445), - [sym_try_statement] = STATE(1445), - [sym_using_statement] = STATE(1445), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1447), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1447), + [sym_expression_statement] = STATE(1447), + [sym_compound_statement] = STATE(1447), + [sym_return_statement] = STATE(1447), + [sym_break_statement] = STATE(1447), + [sym_continue_statement] = STATE(1447), + [sym_throw_statement] = STATE(1447), + [sym_echo_statement] = STATE(1447), + [sym_unset_statement] = STATE(1447), + [sym_concurrent_statement] = STATE(1447), + [sym_use_statement] = STATE(1447), + [sym_if_statement] = STATE(1447), + [sym_switch_statement] = STATE(1447), + [sym_foreach_statement] = STATE(1447), + [sym_while_statement] = STATE(1447), + [sym_do_statement] = STATE(1447), + [sym_for_statement] = STATE(1447), + [sym_try_statement] = STATE(1447), + [sym_using_statement] = STATE(1447), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1445), - [sym_function_declaration] = STATE(1445), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1445), - [sym_interface_declaration] = STATE(1445), - [sym_class_declaration] = STATE(1445), - [sym_const_declaration] = STATE(1445), - [sym_enum_declaration] = STATE(1445), - [sym_abstract_enum_class_declaration] = STATE(1445), - [sym_enum_class_declaration] = STATE(1445), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1445), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1447), + [sym_function_declaration] = STATE(1447), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1447), + [sym_interface_declaration] = STATE(1447), + [sym_class_declaration] = STATE(1447), + [sym_const_declaration] = STATE(1447), + [sym_enum_declaration] = STATE(1447), + [sym_abstract_enum_class_declaration] = STATE(1447), + [sym_enum_class_declaration] = STATE(1447), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1447), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -35441,83 +28992,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [98] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1437), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1437), - [sym_expression_statement] = STATE(1437), - [sym_compound_statement] = STATE(1437), - [sym_return_statement] = STATE(1437), - [sym_break_statement] = STATE(1437), - [sym_continue_statement] = STATE(1437), - [sym_throw_statement] = STATE(1437), - [sym_echo_statement] = STATE(1437), - [sym_unset_statement] = STATE(1437), - [sym_concurrent_statement] = STATE(1437), - [sym_use_statement] = STATE(1437), - [sym_if_statement] = STATE(1437), - [sym_switch_statement] = STATE(1437), - [sym_foreach_statement] = STATE(1437), - [sym_while_statement] = STATE(1437), - [sym_do_statement] = STATE(1437), - [sym_for_statement] = STATE(1437), - [sym_try_statement] = STATE(1437), - [sym_using_statement] = STATE(1437), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1596), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1596), + [sym_expression_statement] = STATE(1596), + [sym_compound_statement] = STATE(1596), + [sym_return_statement] = STATE(1596), + [sym_break_statement] = STATE(1596), + [sym_continue_statement] = STATE(1596), + [sym_throw_statement] = STATE(1596), + [sym_echo_statement] = STATE(1596), + [sym_unset_statement] = STATE(1596), + [sym_concurrent_statement] = STATE(1596), + [sym_use_statement] = STATE(1596), + [sym_if_statement] = STATE(1596), + [sym_switch_statement] = STATE(1596), + [sym_foreach_statement] = STATE(1596), + [sym_while_statement] = STATE(1596), + [sym_do_statement] = STATE(1596), + [sym_for_statement] = STATE(1596), + [sym_try_statement] = STATE(1596), + [sym_using_statement] = STATE(1596), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1437), - [sym_function_declaration] = STATE(1437), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1437), - [sym_interface_declaration] = STATE(1437), - [sym_class_declaration] = STATE(1437), - [sym_const_declaration] = STATE(1437), - [sym_enum_declaration] = STATE(1437), - [sym_abstract_enum_class_declaration] = STATE(1437), - [sym_enum_class_declaration] = STATE(1437), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1437), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1596), + [sym_function_declaration] = STATE(1596), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1596), + [sym_interface_declaration] = STATE(1596), + [sym_class_declaration] = STATE(1596), + [sym_const_declaration] = STATE(1596), + [sym_enum_declaration] = STATE(1596), + [sym_abstract_enum_class_declaration] = STATE(1596), + [sym_enum_class_declaration] = STATE(1596), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1596), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -35603,83 +29154,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [99] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1443), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1443), - [sym_expression_statement] = STATE(1443), - [sym_compound_statement] = STATE(1443), - [sym_return_statement] = STATE(1443), - [sym_break_statement] = STATE(1443), - [sym_continue_statement] = STATE(1443), - [sym_throw_statement] = STATE(1443), - [sym_echo_statement] = STATE(1443), - [sym_unset_statement] = STATE(1443), - [sym_concurrent_statement] = STATE(1443), - [sym_use_statement] = STATE(1443), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1443), - [sym_foreach_statement] = STATE(1443), - [sym_while_statement] = STATE(1443), - [sym_do_statement] = STATE(1443), - [sym_for_statement] = STATE(1443), - [sym_try_statement] = STATE(1443), - [sym_using_statement] = STATE(1443), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1702), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1702), + [sym_expression_statement] = STATE(1702), + [sym_compound_statement] = STATE(1702), + [sym_return_statement] = STATE(1702), + [sym_break_statement] = STATE(1702), + [sym_continue_statement] = STATE(1702), + [sym_throw_statement] = STATE(1702), + [sym_echo_statement] = STATE(1702), + [sym_unset_statement] = STATE(1702), + [sym_concurrent_statement] = STATE(1702), + [sym_use_statement] = STATE(1702), + [sym_if_statement] = STATE(1702), + [sym_switch_statement] = STATE(1702), + [sym_foreach_statement] = STATE(1702), + [sym_while_statement] = STATE(1702), + [sym_do_statement] = STATE(1702), + [sym_for_statement] = STATE(1702), + [sym_try_statement] = STATE(1702), + [sym_using_statement] = STATE(1702), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1443), - [sym_function_declaration] = STATE(1443), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1443), - [sym_interface_declaration] = STATE(1443), - [sym_class_declaration] = STATE(1443), - [sym_const_declaration] = STATE(1443), - [sym_enum_declaration] = STATE(1443), - [sym_abstract_enum_class_declaration] = STATE(1443), - [sym_enum_class_declaration] = STATE(1443), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1443), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1702), + [sym_function_declaration] = STATE(1702), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1702), + [sym_interface_declaration] = STATE(1702), + [sym_class_declaration] = STATE(1702), + [sym_const_declaration] = STATE(1702), + [sym_enum_declaration] = STATE(1702), + [sym_abstract_enum_class_declaration] = STATE(1702), + [sym_enum_class_declaration] = STATE(1702), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1702), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -35765,83 +29316,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [100] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1449), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1449), - [sym_expression_statement] = STATE(1449), - [sym_compound_statement] = STATE(1449), - [sym_return_statement] = STATE(1449), - [sym_break_statement] = STATE(1449), - [sym_continue_statement] = STATE(1449), - [sym_throw_statement] = STATE(1449), - [sym_echo_statement] = STATE(1449), - [sym_unset_statement] = STATE(1449), - [sym_concurrent_statement] = STATE(1449), - [sym_use_statement] = STATE(1449), - [sym_if_statement] = STATE(1449), - [sym_switch_statement] = STATE(1449), - [sym_foreach_statement] = STATE(1449), - [sym_while_statement] = STATE(1449), - [sym_do_statement] = STATE(1449), - [sym_for_statement] = STATE(1449), - [sym_try_statement] = STATE(1449), - [sym_using_statement] = STATE(1449), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1664), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1664), + [sym_expression_statement] = STATE(1664), + [sym_compound_statement] = STATE(1664), + [sym_return_statement] = STATE(1664), + [sym_break_statement] = STATE(1664), + [sym_continue_statement] = STATE(1664), + [sym_throw_statement] = STATE(1664), + [sym_echo_statement] = STATE(1664), + [sym_unset_statement] = STATE(1664), + [sym_concurrent_statement] = STATE(1664), + [sym_use_statement] = STATE(1664), + [sym_if_statement] = STATE(1664), + [sym_switch_statement] = STATE(1664), + [sym_foreach_statement] = STATE(1664), + [sym_while_statement] = STATE(1664), + [sym_do_statement] = STATE(1664), + [sym_for_statement] = STATE(1664), + [sym_try_statement] = STATE(1664), + [sym_using_statement] = STATE(1664), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1449), - [sym_function_declaration] = STATE(1449), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1449), - [sym_interface_declaration] = STATE(1449), - [sym_class_declaration] = STATE(1449), - [sym_const_declaration] = STATE(1449), - [sym_enum_declaration] = STATE(1449), - [sym_abstract_enum_class_declaration] = STATE(1449), - [sym_enum_class_declaration] = STATE(1449), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1449), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1664), + [sym_function_declaration] = STATE(1664), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1664), + [sym_interface_declaration] = STATE(1664), + [sym_class_declaration] = STATE(1664), + [sym_const_declaration] = STATE(1664), + [sym_enum_declaration] = STATE(1664), + [sym_abstract_enum_class_declaration] = STATE(1664), + [sym_enum_class_declaration] = STATE(1664), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1664), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -35927,83 +29478,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [101] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1728), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1728), - [sym_expression_statement] = STATE(1728), - [sym_compound_statement] = STATE(1728), - [sym_return_statement] = STATE(1728), - [sym_break_statement] = STATE(1728), - [sym_continue_statement] = STATE(1728), - [sym_throw_statement] = STATE(1728), - [sym_echo_statement] = STATE(1728), - [sym_unset_statement] = STATE(1728), - [sym_concurrent_statement] = STATE(1728), - [sym_use_statement] = STATE(1728), - [sym_if_statement] = STATE(1728), - [sym_switch_statement] = STATE(1728), - [sym_foreach_statement] = STATE(1728), - [sym_while_statement] = STATE(1728), - [sym_do_statement] = STATE(1728), - [sym_for_statement] = STATE(1728), - [sym_try_statement] = STATE(1728), - [sym_using_statement] = STATE(1728), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1723), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1705), + [sym_expression_statement] = STATE(1704), + [sym_compound_statement] = STATE(1617), + [sym_return_statement] = STATE(1701), + [sym_break_statement] = STATE(1700), + [sym_continue_statement] = STATE(1699), + [sym_throw_statement] = STATE(1698), + [sym_echo_statement] = STATE(1697), + [sym_unset_statement] = STATE(1696), + [sym_concurrent_statement] = STATE(1695), + [sym_use_statement] = STATE(1693), + [sym_if_statement] = STATE(1692), + [sym_switch_statement] = STATE(1689), + [sym_foreach_statement] = STATE(1688), + [sym_while_statement] = STATE(1687), + [sym_do_statement] = STATE(1686), + [sym_for_statement] = STATE(1684), + [sym_try_statement] = STATE(1682), + [sym_using_statement] = STATE(1681), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1728), - [sym_function_declaration] = STATE(1728), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1728), - [sym_interface_declaration] = STATE(1728), - [sym_class_declaration] = STATE(1728), - [sym_const_declaration] = STATE(1728), - [sym_enum_declaration] = STATE(1728), - [sym_abstract_enum_class_declaration] = STATE(1728), - [sym_enum_class_declaration] = STATE(1728), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1728), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1680), + [sym_function_declaration] = STATE(1676), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1675), + [sym_interface_declaration] = STATE(1674), + [sym_class_declaration] = STATE(1671), + [sym_const_declaration] = STATE(1670), + [sym_enum_declaration] = STATE(1668), + [sym_abstract_enum_class_declaration] = STATE(1667), + [sym_enum_class_declaration] = STATE(1666), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1665), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -36038,7 +29589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(413), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_if] = ACTIONS(933), [anon_sym_switch] = ACTIONS(419), [anon_sym_foreach] = ACTIONS(421), [anon_sym_while] = ACTIONS(423), @@ -36089,83 +29640,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [102] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1723), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1723), - [sym_expression_statement] = STATE(1723), - [sym_compound_statement] = STATE(1723), - [sym_return_statement] = STATE(1723), - [sym_break_statement] = STATE(1723), - [sym_continue_statement] = STATE(1723), - [sym_throw_statement] = STATE(1723), - [sym_echo_statement] = STATE(1723), - [sym_unset_statement] = STATE(1723), - [sym_concurrent_statement] = STATE(1723), - [sym_use_statement] = STATE(1723), - [sym_if_statement] = STATE(1723), - [sym_switch_statement] = STATE(1723), - [sym_foreach_statement] = STATE(1723), - [sym_while_statement] = STATE(1723), - [sym_do_statement] = STATE(1723), - [sym_for_statement] = STATE(1723), - [sym_try_statement] = STATE(1723), - [sym_using_statement] = STATE(1723), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1751), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1751), + [sym_expression_statement] = STATE(1751), + [sym_compound_statement] = STATE(1751), + [sym_return_statement] = STATE(1751), + [sym_break_statement] = STATE(1751), + [sym_continue_statement] = STATE(1751), + [sym_throw_statement] = STATE(1751), + [sym_echo_statement] = STATE(1751), + [sym_unset_statement] = STATE(1751), + [sym_concurrent_statement] = STATE(1751), + [sym_use_statement] = STATE(1751), + [sym_if_statement] = STATE(1751), + [sym_switch_statement] = STATE(1751), + [sym_foreach_statement] = STATE(1751), + [sym_while_statement] = STATE(1751), + [sym_do_statement] = STATE(1751), + [sym_for_statement] = STATE(1751), + [sym_try_statement] = STATE(1751), + [sym_using_statement] = STATE(1751), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1723), - [sym_function_declaration] = STATE(1723), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1723), - [sym_interface_declaration] = STATE(1723), - [sym_class_declaration] = STATE(1723), - [sym_const_declaration] = STATE(1723), - [sym_enum_declaration] = STATE(1723), - [sym_abstract_enum_class_declaration] = STATE(1723), - [sym_enum_class_declaration] = STATE(1723), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1723), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1751), + [sym_function_declaration] = STATE(1751), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1751), + [sym_interface_declaration] = STATE(1751), + [sym_class_declaration] = STATE(1751), + [sym_const_declaration] = STATE(1751), + [sym_enum_declaration] = STATE(1751), + [sym_abstract_enum_class_declaration] = STATE(1751), + [sym_enum_class_declaration] = STATE(1751), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1751), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -36200,7 +29751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(413), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_if] = ACTIONS(933), [anon_sym_switch] = ACTIONS(419), [anon_sym_foreach] = ACTIONS(421), [anon_sym_while] = ACTIONS(423), @@ -36251,94 +29802,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [103] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1641), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1641), - [sym_expression_statement] = STATE(1641), - [sym_compound_statement] = STATE(1641), - [sym_return_statement] = STATE(1641), - [sym_break_statement] = STATE(1641), - [sym_continue_statement] = STATE(1641), - [sym_throw_statement] = STATE(1641), - [sym_echo_statement] = STATE(1641), - [sym_unset_statement] = STATE(1641), - [sym_concurrent_statement] = STATE(1641), - [sym_use_statement] = STATE(1641), - [sym_if_statement] = STATE(1641), - [sym_switch_statement] = STATE(1641), - [sym_foreach_statement] = STATE(1641), - [sym_while_statement] = STATE(1641), - [sym_do_statement] = STATE(1641), - [sym_for_statement] = STATE(1641), - [sym_try_statement] = STATE(1641), - [sym_using_statement] = STATE(1641), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1440), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1440), + [sym_expression_statement] = STATE(1440), + [sym_compound_statement] = STATE(1440), + [sym_return_statement] = STATE(1440), + [sym_break_statement] = STATE(1440), + [sym_continue_statement] = STATE(1440), + [sym_throw_statement] = STATE(1440), + [sym_echo_statement] = STATE(1440), + [sym_unset_statement] = STATE(1440), + [sym_concurrent_statement] = STATE(1440), + [sym_use_statement] = STATE(1440), + [sym_if_statement] = STATE(1440), + [sym_switch_statement] = STATE(1440), + [sym_foreach_statement] = STATE(1440), + [sym_while_statement] = STATE(1440), + [sym_do_statement] = STATE(1440), + [sym_for_statement] = STATE(1440), + [sym_try_statement] = STATE(1440), + [sym_using_statement] = STATE(1440), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1641), - [sym_function_declaration] = STATE(1641), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1641), - [sym_interface_declaration] = STATE(1641), - [sym_class_declaration] = STATE(1641), - [sym_const_declaration] = STATE(1641), - [sym_enum_declaration] = STATE(1641), - [sym_abstract_enum_class_declaration] = STATE(1641), - [sym_enum_class_declaration] = STATE(1641), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1641), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1440), + [sym_function_declaration] = STATE(1440), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1440), + [sym_interface_declaration] = STATE(1440), + [sym_class_declaration] = STATE(1440), + [sym_const_declaration] = STATE(1440), + [sym_enum_declaration] = STATE(1440), + [sym_abstract_enum_class_declaration] = STATE(1440), + [sym_enum_class_declaration] = STATE(1440), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1440), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(387), - [anon_sym_newtype] = ACTIONS(387), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(389), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -36347,29 +29898,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_return] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_echo] = ACTIONS(407), - [anon_sym_unset] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(411), - [anon_sym_use] = ACTIONS(413), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_foreach] = ACTIONS(421), - [anon_sym_while] = ACTIONS(423), - [anon_sym_do] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_using] = ACTIONS(431), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -36400,107 +29951,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(443), - [sym_xhp_modifier] = ACTIONS(445), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [104] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1551), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1554), - [sym_expression_statement] = STATE(1572), - [sym_compound_statement] = STATE(1576), - [sym_return_statement] = STATE(1577), - [sym_break_statement] = STATE(1578), - [sym_continue_statement] = STATE(1581), - [sym_throw_statement] = STATE(1582), - [sym_echo_statement] = STATE(1587), - [sym_unset_statement] = STATE(1588), - [sym_concurrent_statement] = STATE(1590), - [sym_use_statement] = STATE(1591), - [sym_if_statement] = STATE(1592), - [sym_switch_statement] = STATE(1593), - [sym_foreach_statement] = STATE(1597), - [sym_while_statement] = STATE(1426), - [sym_do_statement] = STATE(1604), - [sym_for_statement] = STATE(1606), - [sym_try_statement] = STATE(1610), - [sym_using_statement] = STATE(1613), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4528), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4528), + [sym_expression_statement] = STATE(4528), + [sym_compound_statement] = STATE(4528), + [sym_return_statement] = STATE(4528), + [sym_break_statement] = STATE(4528), + [sym_continue_statement] = STATE(4528), + [sym_throw_statement] = STATE(4528), + [sym_echo_statement] = STATE(4528), + [sym_unset_statement] = STATE(4528), + [sym_concurrent_statement] = STATE(4528), + [sym_use_statement] = STATE(4528), + [sym_if_statement] = STATE(4528), + [sym_switch_statement] = STATE(4528), + [sym_foreach_statement] = STATE(4528), + [sym_while_statement] = STATE(4528), + [sym_do_statement] = STATE(4528), + [sym_for_statement] = STATE(4528), + [sym_try_statement] = STATE(4528), + [sym_using_statement] = STATE(4528), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1614), - [sym_function_declaration] = STATE(1619), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1622), - [sym_interface_declaration] = STATE(1625), - [sym_class_declaration] = STATE(1627), - [sym_const_declaration] = STATE(1635), - [sym_enum_declaration] = STATE(1636), - [sym_abstract_enum_class_declaration] = STATE(1637), - [sym_enum_class_declaration] = STATE(1638), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1640), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4528), + [sym_function_declaration] = STATE(4528), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4528), + [sym_interface_declaration] = STATE(4528), + [sym_class_declaration] = STATE(4528), + [sym_const_declaration] = STATE(4528), + [sym_enum_declaration] = STATE(4528), + [sym_abstract_enum_class_declaration] = STATE(4528), + [sym_enum_class_declaration] = STATE(4528), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4528), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(387), - [anon_sym_newtype] = ACTIONS(387), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(389), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -36509,29 +30060,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_return] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_echo] = ACTIONS(407), - [anon_sym_unset] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(411), - [anon_sym_use] = ACTIONS(413), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(935), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_foreach] = ACTIONS(421), - [anon_sym_while] = ACTIONS(423), - [anon_sym_do] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_using] = ACTIONS(431), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -36562,107 +30113,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(443), - [sym_xhp_modifier] = ACTIONS(445), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [105] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(963), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(963), - [sym_expression_statement] = STATE(963), - [sym_compound_statement] = STATE(963), - [sym_return_statement] = STATE(963), - [sym_break_statement] = STATE(963), - [sym_continue_statement] = STATE(963), - [sym_throw_statement] = STATE(963), - [sym_echo_statement] = STATE(963), - [sym_unset_statement] = STATE(963), - [sym_concurrent_statement] = STATE(963), - [sym_use_statement] = STATE(963), - [sym_if_statement] = STATE(963), - [sym_switch_statement] = STATE(963), - [sym_foreach_statement] = STATE(963), - [sym_while_statement] = STATE(963), - [sym_do_statement] = STATE(963), - [sym_for_statement] = STATE(963), - [sym_try_statement] = STATE(963), - [sym_using_statement] = STATE(963), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1041), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1075), + [sym_expression_statement] = STATE(1095), + [sym_compound_statement] = STATE(1104), + [sym_return_statement] = STATE(1141), + [sym_break_statement] = STATE(1155), + [sym_continue_statement] = STATE(1163), + [sym_throw_statement] = STATE(1038), + [sym_echo_statement] = STATE(1169), + [sym_unset_statement] = STATE(1176), + [sym_concurrent_statement] = STATE(1181), + [sym_use_statement] = STATE(1188), + [sym_if_statement] = STATE(1189), + [sym_switch_statement] = STATE(1191), + [sym_foreach_statement] = STATE(1193), + [sym_while_statement] = STATE(1196), + [sym_do_statement] = STATE(1206), + [sym_for_statement] = STATE(1207), + [sym_try_statement] = STATE(1208), + [sym_using_statement] = STATE(1210), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(963), - [sym_function_declaration] = STATE(963), - [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(963), - [sym_interface_declaration] = STATE(963), - [sym_class_declaration] = STATE(963), - [sym_const_declaration] = STATE(963), - [sym_enum_declaration] = STATE(963), - [sym_abstract_enum_class_declaration] = STATE(963), - [sym_enum_class_declaration] = STATE(963), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(963), - [sym_abstract_modifier] = STATE(4022), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1219), + [sym_function_declaration] = STATE(1220), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1227), + [sym_interface_declaration] = STATE(1236), + [sym_class_declaration] = STATE(1238), + [sym_const_declaration] = STATE(1250), + [sym_enum_declaration] = STATE(1256), + [sym_abstract_enum_class_declaration] = STATE(1259), + [sym_enum_class_declaration] = STATE(1260), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1261), + [sym_abstract_modifier] = STATE(4078), [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(313), - [anon_sym_newtype] = ACTIONS(313), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(315), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -36671,29 +30222,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_echo] = ACTIONS(333), - [anon_sym_unset] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(337), - [anon_sym_use] = ACTIONS(339), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_foreach] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_do] = ACTIONS(353), - [anon_sym_for] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_using] = ACTIONS(359), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -36724,107 +30275,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(361), - [anon_sym_interface] = ACTIONS(363), - [anon_sym_class] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(369), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(371), - [sym_xhp_modifier] = ACTIONS(373), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [106] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1475), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1475), - [sym_expression_statement] = STATE(1475), - [sym_compound_statement] = STATE(1475), - [sym_return_statement] = STATE(1475), - [sym_break_statement] = STATE(1475), - [sym_continue_statement] = STATE(1475), - [sym_throw_statement] = STATE(1475), - [sym_echo_statement] = STATE(1475), - [sym_unset_statement] = STATE(1475), - [sym_concurrent_statement] = STATE(1475), - [sym_use_statement] = STATE(1475), - [sym_if_statement] = STATE(1475), - [sym_switch_statement] = STATE(1475), - [sym_foreach_statement] = STATE(1475), - [sym_while_statement] = STATE(1475), - [sym_do_statement] = STATE(1475), - [sym_for_statement] = STATE(1475), - [sym_try_statement] = STATE(1475), - [sym_using_statement] = STATE(1475), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(940), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_compound_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_echo_statement] = STATE(940), + [sym_unset_statement] = STATE(940), + [sym_concurrent_statement] = STATE(940), + [sym_use_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_foreach_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_using_statement] = STATE(940), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1475), - [sym_function_declaration] = STATE(1475), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1475), - [sym_interface_declaration] = STATE(1475), - [sym_class_declaration] = STATE(1475), - [sym_const_declaration] = STATE(1475), - [sym_enum_declaration] = STATE(1475), - [sym_abstract_enum_class_declaration] = STATE(1475), - [sym_enum_class_declaration] = STATE(1475), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1475), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(940), + [sym_function_declaration] = STATE(940), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(940), + [sym_interface_declaration] = STATE(940), + [sym_class_declaration] = STATE(940), + [sym_const_declaration] = STATE(940), + [sym_enum_declaration] = STATE(940), + [sym_abstract_enum_class_declaration] = STATE(940), + [sym_enum_class_declaration] = STATE(940), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(940), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(387), - [anon_sym_newtype] = ACTIONS(387), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(389), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -36833,29 +30384,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_return] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_echo] = ACTIONS(407), - [anon_sym_unset] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(411), - [anon_sym_use] = ACTIONS(413), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(935), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_foreach] = ACTIONS(421), - [anon_sym_while] = ACTIONS(423), - [anon_sym_do] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_using] = ACTIONS(431), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -36886,107 +30437,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(443), - [sym_xhp_modifier] = ACTIONS(445), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [107] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1270), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1270), - [sym_expression_statement] = STATE(1270), - [sym_compound_statement] = STATE(1270), - [sym_return_statement] = STATE(1270), - [sym_break_statement] = STATE(1270), - [sym_continue_statement] = STATE(1270), - [sym_throw_statement] = STATE(1270), - [sym_echo_statement] = STATE(1270), - [sym_unset_statement] = STATE(1270), - [sym_concurrent_statement] = STATE(1270), - [sym_use_statement] = STATE(1270), - [sym_if_statement] = STATE(1270), - [sym_switch_statement] = STATE(1270), - [sym_foreach_statement] = STATE(1270), - [sym_while_statement] = STATE(1270), - [sym_do_statement] = STATE(1270), - [sym_for_statement] = STATE(1270), - [sym_try_statement] = STATE(1270), - [sym_using_statement] = STATE(1270), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(717), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_compound_statement] = STATE(717), + [sym_return_statement] = STATE(717), + [sym_break_statement] = STATE(717), + [sym_continue_statement] = STATE(717), + [sym_throw_statement] = STATE(717), + [sym_echo_statement] = STATE(717), + [sym_unset_statement] = STATE(717), + [sym_concurrent_statement] = STATE(717), + [sym_use_statement] = STATE(717), + [sym_if_statement] = STATE(717), + [sym_switch_statement] = STATE(717), + [sym_foreach_statement] = STATE(717), + [sym_while_statement] = STATE(717), + [sym_do_statement] = STATE(717), + [sym_for_statement] = STATE(717), + [sym_try_statement] = STATE(717), + [sym_using_statement] = STATE(717), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1270), - [sym_function_declaration] = STATE(1270), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1270), - [sym_interface_declaration] = STATE(1270), - [sym_class_declaration] = STATE(1270), - [sym_const_declaration] = STATE(1270), - [sym_enum_declaration] = STATE(1270), - [sym_abstract_enum_class_declaration] = STATE(1270), - [sym_enum_class_declaration] = STATE(1270), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1270), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(717), + [sym_function_declaration] = STATE(717), + [sym__function_declaration_header] = STATE(4786), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(717), + [sym_interface_declaration] = STATE(717), + [sym_class_declaration] = STATE(717), + [sym_const_declaration] = STATE(717), + [sym_enum_declaration] = STATE(717), + [sym_abstract_enum_class_declaration] = STATE(717), + [sym_enum_class_declaration] = STATE(717), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(717), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(683), + [anon_sym_newtype] = ACTIONS(683), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(685), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -36995,29 +30546,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(687), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_return] = ACTIONS(693), + [anon_sym_break] = ACTIONS(695), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_echo] = ACTIONS(701), + [anon_sym_unset] = ACTIONS(703), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(709), + [anon_sym_if] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_foreach] = ACTIONS(715), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(719), + [anon_sym_for] = ACTIONS(721), + [anon_sym_try] = ACTIONS(723), + [anon_sym_using] = ACTIONS(725), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -37048,107 +30599,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(727), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_class] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(733), + [anon_sym_abstract] = ACTIONS(735), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(737), + [sym_xhp_modifier] = ACTIONS(739), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [108] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4585), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4585), - [sym_expression_statement] = STATE(4585), - [sym_compound_statement] = STATE(4585), - [sym_return_statement] = STATE(4585), - [sym_break_statement] = STATE(4585), - [sym_continue_statement] = STATE(4585), - [sym_throw_statement] = STATE(4585), - [sym_echo_statement] = STATE(4585), - [sym_unset_statement] = STATE(4585), - [sym_concurrent_statement] = STATE(4585), - [sym_use_statement] = STATE(4585), - [sym_if_statement] = STATE(4585), - [sym_switch_statement] = STATE(4585), - [sym_foreach_statement] = STATE(4585), - [sym_while_statement] = STATE(4585), - [sym_do_statement] = STATE(4585), - [sym_for_statement] = STATE(4585), - [sym_try_statement] = STATE(4585), - [sym_using_statement] = STATE(4585), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1393), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1393), + [sym_expression_statement] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_echo_statement] = STATE(1393), + [sym_unset_statement] = STATE(1393), + [sym_concurrent_statement] = STATE(1393), + [sym_use_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_foreach_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_using_statement] = STATE(1393), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4585), - [sym_function_declaration] = STATE(4585), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4585), - [sym_interface_declaration] = STATE(4585), - [sym_class_declaration] = STATE(4585), - [sym_const_declaration] = STATE(4585), - [sym_enum_declaration] = STATE(4585), - [sym_abstract_enum_class_declaration] = STATE(4585), - [sym_enum_class_declaration] = STATE(4585), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4585), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1393), + [sym_function_declaration] = STATE(1393), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1393), + [sym_interface_declaration] = STATE(1393), + [sym_class_declaration] = STATE(1393), + [sym_const_declaration] = STATE(1393), + [sym_enum_declaration] = STATE(1393), + [sym_abstract_enum_class_declaration] = STATE(1393), + [sym_enum_class_declaration] = STATE(1393), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1393), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -37157,29 +30708,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -37210,107 +30761,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [109] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4584), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4584), - [sym_expression_statement] = STATE(4584), - [sym_compound_statement] = STATE(4584), - [sym_return_statement] = STATE(4584), - [sym_break_statement] = STATE(4584), - [sym_continue_statement] = STATE(4584), - [sym_throw_statement] = STATE(4584), - [sym_echo_statement] = STATE(4584), - [sym_unset_statement] = STATE(4584), - [sym_concurrent_statement] = STATE(4584), - [sym_use_statement] = STATE(4584), - [sym_if_statement] = STATE(4584), - [sym_switch_statement] = STATE(4584), - [sym_foreach_statement] = STATE(4584), - [sym_while_statement] = STATE(4584), - [sym_do_statement] = STATE(4584), - [sym_for_statement] = STATE(4584), - [sym_try_statement] = STATE(4584), - [sym_using_statement] = STATE(4584), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(715), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(715), + [sym_expression_statement] = STATE(715), + [sym_compound_statement] = STATE(715), + [sym_return_statement] = STATE(715), + [sym_break_statement] = STATE(715), + [sym_continue_statement] = STATE(715), + [sym_throw_statement] = STATE(715), + [sym_echo_statement] = STATE(715), + [sym_unset_statement] = STATE(715), + [sym_concurrent_statement] = STATE(715), + [sym_use_statement] = STATE(715), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(715), + [sym_foreach_statement] = STATE(715), + [sym_while_statement] = STATE(715), + [sym_do_statement] = STATE(715), + [sym_for_statement] = STATE(715), + [sym_try_statement] = STATE(715), + [sym_using_statement] = STATE(715), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4584), - [sym_function_declaration] = STATE(4584), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4584), - [sym_interface_declaration] = STATE(4584), - [sym_class_declaration] = STATE(4584), - [sym_const_declaration] = STATE(4584), - [sym_enum_declaration] = STATE(4584), - [sym_abstract_enum_class_declaration] = STATE(4584), - [sym_enum_class_declaration] = STATE(4584), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4584), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(715), + [sym_function_declaration] = STATE(715), + [sym__function_declaration_header] = STATE(4786), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(715), + [sym_interface_declaration] = STATE(715), + [sym_class_declaration] = STATE(715), + [sym_const_declaration] = STATE(715), + [sym_enum_declaration] = STATE(715), + [sym_abstract_enum_class_declaration] = STATE(715), + [sym_enum_class_declaration] = STATE(715), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(715), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(683), + [anon_sym_newtype] = ACTIONS(683), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(685), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -37319,29 +30870,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(687), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_return] = ACTIONS(693), + [anon_sym_break] = ACTIONS(695), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_echo] = ACTIONS(701), + [anon_sym_unset] = ACTIONS(703), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(709), + [anon_sym_if] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_foreach] = ACTIONS(715), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(719), + [anon_sym_for] = ACTIONS(721), + [anon_sym_try] = ACTIONS(723), + [anon_sym_using] = ACTIONS(725), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -37372,107 +30923,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(727), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_class] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(733), + [anon_sym_abstract] = ACTIONS(735), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(737), + [sym_xhp_modifier] = ACTIONS(739), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [110] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(713), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(713), - [sym_expression_statement] = STATE(713), - [sym_compound_statement] = STATE(713), - [sym_return_statement] = STATE(713), - [sym_break_statement] = STATE(713), - [sym_continue_statement] = STATE(713), - [sym_throw_statement] = STATE(713), - [sym_echo_statement] = STATE(713), - [sym_unset_statement] = STATE(713), - [sym_concurrent_statement] = STATE(713), - [sym_use_statement] = STATE(713), - [sym_if_statement] = STATE(713), - [sym_switch_statement] = STATE(713), - [sym_foreach_statement] = STATE(713), - [sym_while_statement] = STATE(713), - [sym_do_statement] = STATE(713), - [sym_for_statement] = STATE(713), - [sym_try_statement] = STATE(713), - [sym_using_statement] = STATE(713), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4579), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4579), + [sym_expression_statement] = STATE(4579), + [sym_compound_statement] = STATE(4579), + [sym_return_statement] = STATE(4579), + [sym_break_statement] = STATE(4579), + [sym_continue_statement] = STATE(4579), + [sym_throw_statement] = STATE(4579), + [sym_echo_statement] = STATE(4579), + [sym_unset_statement] = STATE(4579), + [sym_concurrent_statement] = STATE(4579), + [sym_use_statement] = STATE(4579), + [sym_if_statement] = STATE(4579), + [sym_switch_statement] = STATE(4579), + [sym_foreach_statement] = STATE(4579), + [sym_while_statement] = STATE(4579), + [sym_do_statement] = STATE(4579), + [sym_for_statement] = STATE(4579), + [sym_try_statement] = STATE(4579), + [sym_using_statement] = STATE(4579), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(713), - [sym_function_declaration] = STATE(713), - [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(713), - [sym_interface_declaration] = STATE(713), - [sym_class_declaration] = STATE(713), - [sym_const_declaration] = STATE(713), - [sym_enum_declaration] = STATE(713), - [sym_abstract_enum_class_declaration] = STATE(713), - [sym_enum_class_declaration] = STATE(713), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(713), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4579), + [sym_function_declaration] = STATE(4579), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4579), + [sym_interface_declaration] = STATE(4579), + [sym_class_declaration] = STATE(4579), + [sym_const_declaration] = STATE(4579), + [sym_enum_declaration] = STATE(4579), + [sym_abstract_enum_class_declaration] = STATE(4579), + [sym_enum_class_declaration] = STATE(4579), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4579), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(683), - [anon_sym_newtype] = ACTIONS(683), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(685), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -37481,29 +31032,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(699), - [anon_sym_echo] = ACTIONS(701), - [anon_sym_unset] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_foreach] = ACTIONS(715), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(719), - [anon_sym_for] = ACTIONS(721), - [anon_sym_try] = ACTIONS(723), - [anon_sym_using] = ACTIONS(725), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -37534,107 +31085,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_class] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(737), - [sym_xhp_modifier] = ACTIONS(739), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [111] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(722), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(722), - [sym_expression_statement] = STATE(722), - [sym_compound_statement] = STATE(722), - [sym_return_statement] = STATE(722), - [sym_break_statement] = STATE(722), - [sym_continue_statement] = STATE(722), - [sym_throw_statement] = STATE(722), - [sym_echo_statement] = STATE(722), - [sym_unset_statement] = STATE(722), - [sym_concurrent_statement] = STATE(722), - [sym_use_statement] = STATE(722), - [sym_if_statement] = STATE(722), - [sym_switch_statement] = STATE(722), - [sym_foreach_statement] = STATE(722), - [sym_while_statement] = STATE(722), - [sym_do_statement] = STATE(722), - [sym_for_statement] = STATE(722), - [sym_try_statement] = STATE(722), - [sym_using_statement] = STATE(722), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4576), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4576), + [sym_expression_statement] = STATE(4576), + [sym_compound_statement] = STATE(4576), + [sym_return_statement] = STATE(4576), + [sym_break_statement] = STATE(4576), + [sym_continue_statement] = STATE(4576), + [sym_throw_statement] = STATE(4576), + [sym_echo_statement] = STATE(4576), + [sym_unset_statement] = STATE(4576), + [sym_concurrent_statement] = STATE(4576), + [sym_use_statement] = STATE(4576), + [sym_if_statement] = STATE(4576), + [sym_switch_statement] = STATE(4576), + [sym_foreach_statement] = STATE(4576), + [sym_while_statement] = STATE(4576), + [sym_do_statement] = STATE(4576), + [sym_for_statement] = STATE(4576), + [sym_try_statement] = STATE(4576), + [sym_using_statement] = STATE(4576), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(722), - [sym_function_declaration] = STATE(722), - [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(722), - [sym_interface_declaration] = STATE(722), - [sym_class_declaration] = STATE(722), - [sym_const_declaration] = STATE(722), - [sym_enum_declaration] = STATE(722), - [sym_abstract_enum_class_declaration] = STATE(722), - [sym_enum_class_declaration] = STATE(722), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(722), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4576), + [sym_function_declaration] = STATE(4576), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4576), + [sym_interface_declaration] = STATE(4576), + [sym_class_declaration] = STATE(4576), + [sym_const_declaration] = STATE(4576), + [sym_enum_declaration] = STATE(4576), + [sym_abstract_enum_class_declaration] = STATE(4576), + [sym_enum_class_declaration] = STATE(4576), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4576), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(683), - [anon_sym_newtype] = ACTIONS(683), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(685), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -37643,29 +31194,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(699), - [anon_sym_echo] = ACTIONS(701), - [anon_sym_unset] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_foreach] = ACTIONS(715), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(719), - [anon_sym_for] = ACTIONS(721), - [anon_sym_try] = ACTIONS(723), - [anon_sym_using] = ACTIONS(725), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -37696,107 +31247,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_class] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(737), - [sym_xhp_modifier] = ACTIONS(739), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [112] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1291), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1291), - [sym_expression_statement] = STATE(1291), - [sym_compound_statement] = STATE(1291), - [sym_return_statement] = STATE(1291), - [sym_break_statement] = STATE(1291), - [sym_continue_statement] = STATE(1291), - [sym_throw_statement] = STATE(1291), - [sym_echo_statement] = STATE(1291), - [sym_unset_statement] = STATE(1291), - [sym_concurrent_statement] = STATE(1291), - [sym_use_statement] = STATE(1291), - [sym_if_statement] = STATE(1291), - [sym_switch_statement] = STATE(1291), - [sym_foreach_statement] = STATE(1291), - [sym_while_statement] = STATE(1291), - [sym_do_statement] = STATE(1291), - [sym_for_statement] = STATE(1291), - [sym_try_statement] = STATE(1291), - [sym_using_statement] = STATE(1291), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1594), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_empty_statement] = STATE(1594), + [sym_expression_statement] = STATE(1594), + [sym_compound_statement] = STATE(1594), + [sym_return_statement] = STATE(1594), + [sym_break_statement] = STATE(1594), + [sym_continue_statement] = STATE(1594), + [sym_throw_statement] = STATE(1594), + [sym_echo_statement] = STATE(1594), + [sym_unset_statement] = STATE(1594), + [sym_concurrent_statement] = STATE(1594), + [sym_use_statement] = STATE(1594), + [sym_if_statement] = STATE(1594), + [sym_switch_statement] = STATE(1594), + [sym_foreach_statement] = STATE(1594), + [sym_while_statement] = STATE(1594), + [sym_do_statement] = STATE(1594), + [sym_for_statement] = STATE(1594), + [sym_try_statement] = STATE(1594), + [sym_using_statement] = STATE(1594), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1291), - [sym_function_declaration] = STATE(1291), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1291), - [sym_interface_declaration] = STATE(1291), - [sym_class_declaration] = STATE(1291), - [sym_const_declaration] = STATE(1291), - [sym_enum_declaration] = STATE(1291), - [sym_abstract_enum_class_declaration] = STATE(1291), - [sym_enum_class_declaration] = STATE(1291), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1291), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1594), + [sym_function_declaration] = STATE(1594), + [sym__function_declaration_header] = STATE(5008), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1594), + [sym_interface_declaration] = STATE(1594), + [sym_class_declaration] = STATE(1594), + [sym_const_declaration] = STATE(1594), + [sym_enum_declaration] = STATE(1594), + [sym_abstract_enum_class_declaration] = STATE(1594), + [sym_enum_class_declaration] = STATE(1594), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1594), + [sym_abstract_modifier] = STATE(4106), + [sym_attribute_modifier] = STATE(3527), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6096), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(387), + [anon_sym_newtype] = ACTIONS(387), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(389), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -37805,29 +31356,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(391), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_return] = ACTIONS(399), + [anon_sym_break] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(405), + [anon_sym_echo] = ACTIONS(407), + [anon_sym_unset] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(411), + [anon_sym_use] = ACTIONS(413), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_switch] = ACTIONS(419), + [anon_sym_foreach] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_do] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [anon_sym_using] = ACTIONS(431), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -37858,107 +31409,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_interface] = ACTIONS(435), + [anon_sym_class] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_abstract] = ACTIONS(441), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(443), + [sym_xhp_modifier] = ACTIONS(445), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [113] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1337), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1335), - [sym_expression_statement] = STATE(1330), - [sym_compound_statement] = STATE(1328), - [sym_return_statement] = STATE(1327), - [sym_break_statement] = STATE(1326), - [sym_continue_statement] = STATE(1325), - [sym_throw_statement] = STATE(1324), - [sym_echo_statement] = STATE(1323), - [sym_unset_statement] = STATE(1321), - [sym_concurrent_statement] = STATE(1320), - [sym_use_statement] = STATE(1319), - [sym_if_statement] = STATE(1317), - [sym_switch_statement] = STATE(1316), - [sym_foreach_statement] = STATE(1315), - [sym_while_statement] = STATE(1314), - [sym_do_statement] = STATE(1313), - [sym_for_statement] = STATE(1312), - [sym_try_statement] = STATE(1311), - [sym_using_statement] = STATE(1310), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(714), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(714), + [sym_expression_statement] = STATE(714), + [sym_compound_statement] = STATE(714), + [sym_return_statement] = STATE(714), + [sym_break_statement] = STATE(714), + [sym_continue_statement] = STATE(714), + [sym_throw_statement] = STATE(714), + [sym_echo_statement] = STATE(714), + [sym_unset_statement] = STATE(714), + [sym_concurrent_statement] = STATE(714), + [sym_use_statement] = STATE(714), + [sym_if_statement] = STATE(714), + [sym_switch_statement] = STATE(714), + [sym_foreach_statement] = STATE(714), + [sym_while_statement] = STATE(714), + [sym_do_statement] = STATE(714), + [sym_for_statement] = STATE(714), + [sym_try_statement] = STATE(714), + [sym_using_statement] = STATE(714), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1305), - [sym_function_declaration] = STATE(1303), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1302), - [sym_interface_declaration] = STATE(1300), - [sym_class_declaration] = STATE(1299), - [sym_const_declaration] = STATE(1298), - [sym_enum_declaration] = STATE(1296), - [sym_abstract_enum_class_declaration] = STATE(1294), - [sym_enum_class_declaration] = STATE(1293), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1292), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(714), + [sym_function_declaration] = STATE(714), + [sym__function_declaration_header] = STATE(4786), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(714), + [sym_interface_declaration] = STATE(714), + [sym_class_declaration] = STATE(714), + [sym_const_declaration] = STATE(714), + [sym_enum_declaration] = STATE(714), + [sym_abstract_enum_class_declaration] = STATE(714), + [sym_enum_class_declaration] = STATE(714), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(714), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(683), + [anon_sym_newtype] = ACTIONS(683), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(685), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -37967,29 +31518,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(687), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_return] = ACTIONS(693), + [anon_sym_break] = ACTIONS(695), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_echo] = ACTIONS(701), + [anon_sym_unset] = ACTIONS(703), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(709), + [anon_sym_if] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_foreach] = ACTIONS(715), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(719), + [anon_sym_for] = ACTIONS(721), + [anon_sym_try] = ACTIONS(723), + [anon_sym_using] = ACTIONS(725), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -38020,96 +31571,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(727), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_class] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(733), + [anon_sym_abstract] = ACTIONS(735), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(737), + [sym_xhp_modifier] = ACTIONS(739), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [114] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(716), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(716), - [sym_expression_statement] = STATE(716), - [sym_compound_statement] = STATE(716), - [sym_return_statement] = STATE(716), - [sym_break_statement] = STATE(716), - [sym_continue_statement] = STATE(716), - [sym_throw_statement] = STATE(716), - [sym_echo_statement] = STATE(716), - [sym_unset_statement] = STATE(716), - [sym_concurrent_statement] = STATE(716), - [sym_use_statement] = STATE(716), - [sym_if_statement] = STATE(716), - [sym_switch_statement] = STATE(716), - [sym_foreach_statement] = STATE(716), - [sym_while_statement] = STATE(716), - [sym_do_statement] = STATE(716), - [sym_for_statement] = STATE(716), - [sym_try_statement] = STATE(716), - [sym_using_statement] = STATE(716), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(719), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(719), + [sym_expression_statement] = STATE(719), + [sym_compound_statement] = STATE(719), + [sym_return_statement] = STATE(719), + [sym_break_statement] = STATE(719), + [sym_continue_statement] = STATE(719), + [sym_throw_statement] = STATE(719), + [sym_echo_statement] = STATE(719), + [sym_unset_statement] = STATE(719), + [sym_concurrent_statement] = STATE(719), + [sym_use_statement] = STATE(719), + [sym_if_statement] = STATE(719), + [sym_switch_statement] = STATE(719), + [sym_foreach_statement] = STATE(719), + [sym_while_statement] = STATE(719), + [sym_do_statement] = STATE(719), + [sym_for_statement] = STATE(719), + [sym_try_statement] = STATE(719), + [sym_using_statement] = STATE(719), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(716), - [sym_function_declaration] = STATE(716), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(719), + [sym_function_declaration] = STATE(719), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(716), - [sym_interface_declaration] = STATE(716), - [sym_class_declaration] = STATE(716), - [sym_const_declaration] = STATE(716), - [sym_enum_declaration] = STATE(716), - [sym_abstract_enum_class_declaration] = STATE(716), - [sym_enum_class_declaration] = STATE(716), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(716), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(719), + [sym_interface_declaration] = STATE(719), + [sym_class_declaration] = STATE(719), + [sym_const_declaration] = STATE(719), + [sym_enum_declaration] = STATE(719), + [sym_abstract_enum_class_declaration] = STATE(719), + [sym_enum_class_declaration] = STATE(719), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(719), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -38195,94 +31746,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [115] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1532), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_empty_statement] = STATE(1532), - [sym_expression_statement] = STATE(1532), - [sym_compound_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_throw_statement] = STATE(1532), - [sym_echo_statement] = STATE(1532), - [sym_unset_statement] = STATE(1532), - [sym_concurrent_statement] = STATE(1532), - [sym_use_statement] = STATE(1532), - [sym_if_statement] = STATE(1532), - [sym_switch_statement] = STATE(1532), - [sym_foreach_statement] = STATE(1532), - [sym_while_statement] = STATE(1532), - [sym_do_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_try_statement] = STATE(1532), - [sym_using_statement] = STATE(1532), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4536), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4536), + [sym_expression_statement] = STATE(4536), + [sym_compound_statement] = STATE(4536), + [sym_return_statement] = STATE(4536), + [sym_break_statement] = STATE(4536), + [sym_continue_statement] = STATE(4536), + [sym_throw_statement] = STATE(4536), + [sym_echo_statement] = STATE(4536), + [sym_unset_statement] = STATE(4536), + [sym_concurrent_statement] = STATE(4536), + [sym_use_statement] = STATE(4536), + [sym_if_statement] = STATE(4536), + [sym_switch_statement] = STATE(4536), + [sym_foreach_statement] = STATE(4536), + [sym_while_statement] = STATE(4536), + [sym_do_statement] = STATE(4536), + [sym_for_statement] = STATE(4536), + [sym_try_statement] = STATE(4536), + [sym_using_statement] = STATE(4536), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1532), - [sym_function_declaration] = STATE(1532), - [sym__function_declaration_header] = STATE(4995), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1532), - [sym_interface_declaration] = STATE(1532), - [sym_class_declaration] = STATE(1532), - [sym_const_declaration] = STATE(1532), - [sym_enum_declaration] = STATE(1532), - [sym_abstract_enum_class_declaration] = STATE(1532), - [sym_enum_class_declaration] = STATE(1532), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1532), - [sym_abstract_modifier] = STATE(4038), - [sym_attribute_modifier] = STATE(3524), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6096), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4536), + [sym_function_declaration] = STATE(4536), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4536), + [sym_interface_declaration] = STATE(4536), + [sym_class_declaration] = STATE(4536), + [sym_const_declaration] = STATE(4536), + [sym_enum_declaration] = STATE(4536), + [sym_abstract_enum_class_declaration] = STATE(4536), + [sym_enum_class_declaration] = STATE(4536), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4536), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(387), - [anon_sym_newtype] = ACTIONS(387), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(389), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -38291,29 +31842,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_return] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(405), - [anon_sym_echo] = ACTIONS(407), - [anon_sym_unset] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(411), - [anon_sym_use] = ACTIONS(413), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_foreach] = ACTIONS(421), - [anon_sym_while] = ACTIONS(423), - [anon_sym_do] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_using] = ACTIONS(431), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -38344,25 +31895,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(443), - [sym_xhp_modifier] = ACTIONS(445), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [116] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(1005), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), [sym_empty_statement] = STATE(1005), [sym_expression_statement] = STATE(1005), [sym_compound_statement] = STATE(1005), @@ -38382,39 +31933,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(1005), [sym_try_statement] = STATE(1005), [sym_using_statement] = STATE(1005), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(1005), [sym_function_declaration] = STATE(1005), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(1005), [sym_interface_declaration] = STATE(1005), [sym_class_declaration] = STATE(1005), @@ -38422,29 +31973,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(1005), [sym_abstract_enum_class_declaration] = STATE(1005), [sym_enum_class_declaration] = STATE(1005), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(1005), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -38453,29 +32004,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -38506,107 +32057,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [117] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1701), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1700), - [sym_expression_statement] = STATE(1699), - [sym_compound_statement] = STATE(1698), - [sym_return_statement] = STATE(1697), - [sym_break_statement] = STATE(1696), - [sym_continue_statement] = STATE(1695), - [sym_throw_statement] = STATE(1692), - [sym_echo_statement] = STATE(1690), - [sym_unset_statement] = STATE(1689), - [sym_concurrent_statement] = STATE(1688), - [sym_use_statement] = STATE(1687), - [sym_if_statement] = STATE(1686), - [sym_switch_statement] = STATE(1685), - [sym_foreach_statement] = STATE(1684), - [sym_while_statement] = STATE(1683), - [sym_do_statement] = STATE(1681), - [sym_for_statement] = STATE(1675), - [sym_try_statement] = STATE(1674), - [sym_using_statement] = STATE(1671), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1033), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1033), + [sym_expression_statement] = STATE(1033), + [sym_compound_statement] = STATE(1033), + [sym_return_statement] = STATE(1033), + [sym_break_statement] = STATE(1033), + [sym_continue_statement] = STATE(1033), + [sym_throw_statement] = STATE(1033), + [sym_echo_statement] = STATE(1033), + [sym_unset_statement] = STATE(1033), + [sym_concurrent_statement] = STATE(1033), + [sym_use_statement] = STATE(1033), + [sym_if_statement] = STATE(1033), + [sym_switch_statement] = STATE(1033), + [sym_foreach_statement] = STATE(1033), + [sym_while_statement] = STATE(1033), + [sym_do_statement] = STATE(1033), + [sym_for_statement] = STATE(1033), + [sym_try_statement] = STATE(1033), + [sym_using_statement] = STATE(1033), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1670), - [sym_function_declaration] = STATE(1669), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1668), - [sym_interface_declaration] = STATE(1666), - [sym_class_declaration] = STATE(1665), - [sym_const_declaration] = STATE(1664), - [sym_enum_declaration] = STATE(1663), - [sym_abstract_enum_class_declaration] = STATE(1662), - [sym_enum_class_declaration] = STATE(1661), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1659), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1033), + [sym_function_declaration] = STATE(1033), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1033), + [sym_interface_declaration] = STATE(1033), + [sym_class_declaration] = STATE(1033), + [sym_const_declaration] = STATE(1033), + [sym_enum_declaration] = STATE(1033), + [sym_abstract_enum_class_declaration] = STATE(1033), + [sym_enum_class_declaration] = STATE(1033), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1033), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(313), + [anon_sym_newtype] = ACTIONS(313), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -38615,29 +32166,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(317), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_echo] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(933), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_foreach] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(353), + [anon_sym_for] = ACTIONS(355), + [anon_sym_try] = ACTIONS(357), + [anon_sym_using] = ACTIONS(359), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -38668,107 +32219,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(369), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(371), + [sym_xhp_modifier] = ACTIONS(373), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [118] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4699), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4699), - [sym_expression_statement] = STATE(4699), - [sym_compound_statement] = STATE(4699), - [sym_return_statement] = STATE(4699), - [sym_break_statement] = STATE(4699), - [sym_continue_statement] = STATE(4699), - [sym_throw_statement] = STATE(4699), - [sym_echo_statement] = STATE(4699), - [sym_unset_statement] = STATE(4699), - [sym_concurrent_statement] = STATE(4699), - [sym_use_statement] = STATE(4699), - [sym_if_statement] = STATE(4699), - [sym_switch_statement] = STATE(4699), - [sym_foreach_statement] = STATE(4699), - [sym_while_statement] = STATE(4699), - [sym_do_statement] = STATE(4699), - [sym_for_statement] = STATE(4699), - [sym_try_statement] = STATE(4699), - [sym_using_statement] = STATE(4699), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1167), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1167), + [sym_expression_statement] = STATE(1167), + [sym_compound_statement] = STATE(1167), + [sym_return_statement] = STATE(1167), + [sym_break_statement] = STATE(1167), + [sym_continue_statement] = STATE(1167), + [sym_throw_statement] = STATE(1167), + [sym_echo_statement] = STATE(1167), + [sym_unset_statement] = STATE(1167), + [sym_concurrent_statement] = STATE(1167), + [sym_use_statement] = STATE(1167), + [sym_if_statement] = STATE(1167), + [sym_switch_statement] = STATE(1167), + [sym_foreach_statement] = STATE(1167), + [sym_while_statement] = STATE(1167), + [sym_do_statement] = STATE(1167), + [sym_for_statement] = STATE(1167), + [sym_try_statement] = STATE(1167), + [sym_using_statement] = STATE(1167), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4699), - [sym_function_declaration] = STATE(4699), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4699), - [sym_interface_declaration] = STATE(4699), - [sym_class_declaration] = STATE(4699), - [sym_const_declaration] = STATE(4699), - [sym_enum_declaration] = STATE(4699), - [sym_abstract_enum_class_declaration] = STATE(4699), - [sym_enum_class_declaration] = STATE(4699), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4699), - [sym_abstract_modifier] = STATE(4097), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1167), + [sym_function_declaration] = STATE(1167), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1167), + [sym_interface_declaration] = STATE(1167), + [sym_class_declaration] = STATE(1167), + [sym_const_declaration] = STATE(1167), + [sym_enum_declaration] = STATE(1167), + [sym_abstract_enum_class_declaration] = STATE(1167), + [sym_enum_class_declaration] = STATE(1167), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1167), + [sym_abstract_modifier] = STATE(4018), [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(313), + [anon_sym_newtype] = ACTIONS(313), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -38777,29 +32328,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(317), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_echo] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_foreach] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(353), + [anon_sym_for] = ACTIONS(355), + [anon_sym_try] = ACTIONS(357), + [anon_sym_using] = ACTIONS(359), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -38830,107 +32381,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(369), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(371), + [sym_xhp_modifier] = ACTIONS(373), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [119] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1044), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1044), - [sym_expression_statement] = STATE(1044), - [sym_compound_statement] = STATE(1044), - [sym_return_statement] = STATE(1044), - [sym_break_statement] = STATE(1044), - [sym_continue_statement] = STATE(1044), - [sym_throw_statement] = STATE(1044), - [sym_echo_statement] = STATE(1044), - [sym_unset_statement] = STATE(1044), - [sym_concurrent_statement] = STATE(1044), - [sym_use_statement] = STATE(1044), - [sym_if_statement] = STATE(1044), - [sym_switch_statement] = STATE(1044), - [sym_foreach_statement] = STATE(1044), - [sym_while_statement] = STATE(1044), - [sym_do_statement] = STATE(1044), - [sym_for_statement] = STATE(1044), - [sym_try_statement] = STATE(1044), - [sym_using_statement] = STATE(1044), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1609), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1609), + [sym_expression_statement] = STATE(1609), + [sym_compound_statement] = STATE(1609), + [sym_return_statement] = STATE(1609), + [sym_break_statement] = STATE(1609), + [sym_continue_statement] = STATE(1609), + [sym_throw_statement] = STATE(1609), + [sym_echo_statement] = STATE(1609), + [sym_unset_statement] = STATE(1609), + [sym_concurrent_statement] = STATE(1609), + [sym_use_statement] = STATE(1609), + [sym_if_statement] = STATE(1609), + [sym_switch_statement] = STATE(1609), + [sym_foreach_statement] = STATE(1609), + [sym_while_statement] = STATE(1609), + [sym_do_statement] = STATE(1609), + [sym_for_statement] = STATE(1609), + [sym_try_statement] = STATE(1609), + [sym_using_statement] = STATE(1609), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1044), - [sym_function_declaration] = STATE(1044), - [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1044), - [sym_interface_declaration] = STATE(1044), - [sym_class_declaration] = STATE(1044), - [sym_const_declaration] = STATE(1044), - [sym_enum_declaration] = STATE(1044), - [sym_abstract_enum_class_declaration] = STATE(1044), - [sym_enum_class_declaration] = STATE(1044), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1044), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1609), + [sym_function_declaration] = STATE(1609), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1609), + [sym_interface_declaration] = STATE(1609), + [sym_class_declaration] = STATE(1609), + [sym_const_declaration] = STATE(1609), + [sym_enum_declaration] = STATE(1609), + [sym_abstract_enum_class_declaration] = STATE(1609), + [sym_enum_class_declaration] = STATE(1609), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1609), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(313), - [anon_sym_newtype] = ACTIONS(313), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(315), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -38939,29 +32490,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_echo] = ACTIONS(333), - [anon_sym_unset] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(337), - [anon_sym_use] = ACTIONS(339), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(341), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_foreach] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_do] = ACTIONS(353), - [anon_sym_for] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_using] = ACTIONS(359), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -38992,96 +32543,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(361), - [anon_sym_interface] = ACTIONS(363), - [anon_sym_class] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(369), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(371), - [sym_xhp_modifier] = ACTIONS(373), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [120] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1073), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1074), - [sym_expression_statement] = STATE(1075), - [sym_compound_statement] = STATE(1076), - [sym_return_statement] = STATE(1077), - [sym_break_statement] = STATE(1079), - [sym_continue_statement] = STATE(1080), - [sym_throw_statement] = STATE(1081), - [sym_echo_statement] = STATE(1082), - [sym_unset_statement] = STATE(1083), - [sym_concurrent_statement] = STATE(1084), - [sym_use_statement] = STATE(1085), - [sym_if_statement] = STATE(1086), - [sym_switch_statement] = STATE(1087), - [sym_foreach_statement] = STATE(1088), - [sym_while_statement] = STATE(1089), - [sym_do_statement] = STATE(1090), - [sym_for_statement] = STATE(1091), - [sym_try_statement] = STATE(1092), - [sym_using_statement] = STATE(1093), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1272), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1279), + [sym_expression_statement] = STATE(1283), + [sym_compound_statement] = STATE(1284), + [sym_return_statement] = STATE(1286), + [sym_break_statement] = STATE(1287), + [sym_continue_statement] = STATE(1288), + [sym_throw_statement] = STATE(1289), + [sym_echo_statement] = STATE(1294), + [sym_unset_statement] = STATE(1295), + [sym_concurrent_statement] = STATE(1297), + [sym_use_statement] = STATE(1299), + [sym_if_statement] = STATE(1300), + [sym_switch_statement] = STATE(1405), + [sym_foreach_statement] = STATE(1303), + [sym_while_statement] = STATE(1306), + [sym_do_statement] = STATE(1307), + [sym_for_statement] = STATE(1308), + [sym_try_statement] = STATE(1309), + [sym_using_statement] = STATE(1311), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1094), - [sym_function_declaration] = STATE(1095), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1312), + [sym_function_declaration] = STATE(1313), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1096), - [sym_interface_declaration] = STATE(1097), - [sym_class_declaration] = STATE(1098), - [sym_const_declaration] = STATE(1099), - [sym_enum_declaration] = STATE(1100), - [sym_abstract_enum_class_declaration] = STATE(1101), - [sym_enum_class_declaration] = STATE(1102), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1103), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1317), + [sym_interface_declaration] = STATE(1318), + [sym_class_declaration] = STATE(1320), + [sym_const_declaration] = STATE(1323), + [sym_enum_declaration] = STATE(1324), + [sym_abstract_enum_class_declaration] = STATE(1325), + [sym_enum_class_declaration] = STATE(1326), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1327), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -39167,83 +32718,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [121] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1104), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1104), - [sym_expression_statement] = STATE(1104), - [sym_compound_statement] = STATE(1104), - [sym_return_statement] = STATE(1104), - [sym_break_statement] = STATE(1104), - [sym_continue_statement] = STATE(1104), - [sym_throw_statement] = STATE(1104), - [sym_echo_statement] = STATE(1104), - [sym_unset_statement] = STATE(1104), - [sym_concurrent_statement] = STATE(1104), - [sym_use_statement] = STATE(1104), - [sym_if_statement] = STATE(1104), - [sym_switch_statement] = STATE(1104), - [sym_foreach_statement] = STATE(1104), - [sym_while_statement] = STATE(1104), - [sym_do_statement] = STATE(1104), - [sym_for_statement] = STATE(1104), - [sym_try_statement] = STATE(1104), - [sym_using_statement] = STATE(1104), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1329), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1329), + [sym_expression_statement] = STATE(1329), + [sym_compound_statement] = STATE(1329), + [sym_return_statement] = STATE(1329), + [sym_break_statement] = STATE(1329), + [sym_continue_statement] = STATE(1329), + [sym_throw_statement] = STATE(1329), + [sym_echo_statement] = STATE(1329), + [sym_unset_statement] = STATE(1329), + [sym_concurrent_statement] = STATE(1329), + [sym_use_statement] = STATE(1329), + [sym_if_statement] = STATE(1329), + [sym_switch_statement] = STATE(1329), + [sym_foreach_statement] = STATE(1329), + [sym_while_statement] = STATE(1329), + [sym_do_statement] = STATE(1329), + [sym_for_statement] = STATE(1329), + [sym_try_statement] = STATE(1329), + [sym_using_statement] = STATE(1329), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1104), - [sym_function_declaration] = STATE(1104), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1329), + [sym_function_declaration] = STATE(1329), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1104), - [sym_interface_declaration] = STATE(1104), - [sym_class_declaration] = STATE(1104), - [sym_const_declaration] = STATE(1104), - [sym_enum_declaration] = STATE(1104), - [sym_abstract_enum_class_declaration] = STATE(1104), - [sym_enum_class_declaration] = STATE(1104), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1104), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1329), + [sym_interface_declaration] = STATE(1329), + [sym_class_declaration] = STATE(1329), + [sym_const_declaration] = STATE(1329), + [sym_enum_declaration] = STATE(1329), + [sym_abstract_enum_class_declaration] = STATE(1329), + [sym_enum_class_declaration] = STATE(1329), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1329), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -39329,94 +32880,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [122] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1651), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1651), - [sym_expression_statement] = STATE(1651), - [sym_compound_statement] = STATE(1651), - [sym_return_statement] = STATE(1651), - [sym_break_statement] = STATE(1651), - [sym_continue_statement] = STATE(1651), - [sym_throw_statement] = STATE(1651), - [sym_echo_statement] = STATE(1651), - [sym_unset_statement] = STATE(1651), - [sym_concurrent_statement] = STATE(1651), - [sym_use_statement] = STATE(1651), - [sym_if_statement] = STATE(1651), - [sym_switch_statement] = STATE(1651), - [sym_foreach_statement] = STATE(1651), - [sym_while_statement] = STATE(1651), - [sym_do_statement] = STATE(1651), - [sym_for_statement] = STATE(1651), - [sym_try_statement] = STATE(1651), - [sym_using_statement] = STATE(1651), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4478), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4478), + [sym_expression_statement] = STATE(4478), + [sym_compound_statement] = STATE(4478), + [sym_return_statement] = STATE(4478), + [sym_break_statement] = STATE(4478), + [sym_continue_statement] = STATE(4478), + [sym_throw_statement] = STATE(4478), + [sym_echo_statement] = STATE(4478), + [sym_unset_statement] = STATE(4478), + [sym_concurrent_statement] = STATE(4478), + [sym_use_statement] = STATE(4478), + [sym_if_statement] = STATE(4478), + [sym_switch_statement] = STATE(4478), + [sym_foreach_statement] = STATE(4478), + [sym_while_statement] = STATE(4478), + [sym_do_statement] = STATE(4478), + [sym_for_statement] = STATE(4478), + [sym_try_statement] = STATE(4478), + [sym_using_statement] = STATE(4478), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1651), - [sym_function_declaration] = STATE(1651), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1651), - [sym_interface_declaration] = STATE(1651), - [sym_class_declaration] = STATE(1651), - [sym_const_declaration] = STATE(1651), - [sym_enum_declaration] = STATE(1651), - [sym_abstract_enum_class_declaration] = STATE(1651), - [sym_enum_class_declaration] = STATE(1651), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1651), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4478), + [sym_function_declaration] = STATE(4478), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4478), + [sym_interface_declaration] = STATE(4478), + [sym_class_declaration] = STATE(4478), + [sym_const_declaration] = STATE(4478), + [sym_enum_declaration] = STATE(4478), + [sym_abstract_enum_class_declaration] = STATE(4478), + [sym_enum_class_declaration] = STATE(4478), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4478), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -39425,29 +32976,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -39478,96 +33029,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [123] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1609), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1609), - [sym_expression_statement] = STATE(1609), - [sym_compound_statement] = STATE(1609), - [sym_return_statement] = STATE(1609), - [sym_break_statement] = STATE(1609), - [sym_continue_statement] = STATE(1609), - [sym_throw_statement] = STATE(1609), - [sym_echo_statement] = STATE(1609), - [sym_unset_statement] = STATE(1609), - [sym_concurrent_statement] = STATE(1609), - [sym_use_statement] = STATE(1609), - [sym_if_statement] = STATE(1609), - [sym_switch_statement] = STATE(1609), - [sym_foreach_statement] = STATE(1609), - [sym_while_statement] = STATE(1609), - [sym_do_statement] = STATE(1609), - [sym_for_statement] = STATE(1609), - [sym_try_statement] = STATE(1609), - [sym_using_statement] = STATE(1609), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1580), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1580), + [sym_expression_statement] = STATE(1580), + [sym_compound_statement] = STATE(1580), + [sym_return_statement] = STATE(1580), + [sym_break_statement] = STATE(1580), + [sym_continue_statement] = STATE(1580), + [sym_throw_statement] = STATE(1580), + [sym_echo_statement] = STATE(1580), + [sym_unset_statement] = STATE(1580), + [sym_concurrent_statement] = STATE(1580), + [sym_use_statement] = STATE(1580), + [sym_if_statement] = STATE(1580), + [sym_switch_statement] = STATE(1580), + [sym_foreach_statement] = STATE(1580), + [sym_while_statement] = STATE(1580), + [sym_do_statement] = STATE(1580), + [sym_for_statement] = STATE(1580), + [sym_try_statement] = STATE(1580), + [sym_using_statement] = STATE(1580), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1609), - [sym_function_declaration] = STATE(1609), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1609), - [sym_interface_declaration] = STATE(1609), - [sym_class_declaration] = STATE(1609), - [sym_const_declaration] = STATE(1609), - [sym_enum_declaration] = STATE(1609), - [sym_abstract_enum_class_declaration] = STATE(1609), - [sym_enum_class_declaration] = STATE(1609), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1609), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_const_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_abstract_enum_class_declaration] = STATE(1580), + [sym_enum_class_declaration] = STATE(1580), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1580), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -39653,94 +33204,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [124] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(719), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(719), - [sym_expression_statement] = STATE(719), - [sym_compound_statement] = STATE(719), - [sym_return_statement] = STATE(719), - [sym_break_statement] = STATE(719), - [sym_continue_statement] = STATE(719), - [sym_throw_statement] = STATE(719), - [sym_echo_statement] = STATE(719), - [sym_unset_statement] = STATE(719), - [sym_concurrent_statement] = STATE(719), - [sym_use_statement] = STATE(719), - [sym_if_statement] = STATE(719), - [sym_switch_statement] = STATE(719), - [sym_foreach_statement] = STATE(719), - [sym_while_statement] = STATE(719), - [sym_do_statement] = STATE(719), - [sym_for_statement] = STATE(719), - [sym_try_statement] = STATE(719), - [sym_using_statement] = STATE(719), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1750), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1745), + [sym_expression_statement] = STATE(1743), + [sym_compound_statement] = STATE(1732), + [sym_return_statement] = STATE(1728), + [sym_break_statement] = STATE(1725), + [sym_continue_statement] = STATE(1724), + [sym_throw_statement] = STATE(1722), + [sym_echo_statement] = STATE(1721), + [sym_unset_statement] = STATE(1720), + [sym_concurrent_statement] = STATE(1719), + [sym_use_statement] = STATE(1718), + [sym_if_statement] = STATE(1717), + [sym_switch_statement] = STATE(1716), + [sym_foreach_statement] = STATE(1715), + [sym_while_statement] = STATE(1714), + [sym_do_statement] = STATE(1713), + [sym_for_statement] = STATE(1427), + [sym_try_statement] = STATE(1711), + [sym_using_statement] = STATE(1709), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(719), - [sym_function_declaration] = STATE(719), - [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(719), - [sym_interface_declaration] = STATE(719), - [sym_class_declaration] = STATE(719), - [sym_const_declaration] = STATE(719), - [sym_enum_declaration] = STATE(719), - [sym_abstract_enum_class_declaration] = STATE(719), - [sym_enum_class_declaration] = STATE(719), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(719), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1703), + [sym_function_declaration] = STATE(1690), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1685), + [sym_interface_declaration] = STATE(1669), + [sym_class_declaration] = STATE(1663), + [sym_const_declaration] = STATE(1658), + [sym_enum_declaration] = STATE(1657), + [sym_abstract_enum_class_declaration] = STATE(1650), + [sym_enum_class_declaration] = STATE(1649), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1648), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(683), - [anon_sym_newtype] = ACTIONS(683), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(685), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -39749,29 +33300,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(699), - [anon_sym_echo] = ACTIONS(701), - [anon_sym_unset] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_foreach] = ACTIONS(715), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(719), - [anon_sym_for] = ACTIONS(721), - [anon_sym_try] = ACTIONS(723), - [anon_sym_using] = ACTIONS(725), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -39802,107 +33353,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_class] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(737), - [sym_xhp_modifier] = ACTIONS(739), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [125] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1125), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1125), - [sym_expression_statement] = STATE(1125), - [sym_compound_statement] = STATE(1125), - [sym_return_statement] = STATE(1125), - [sym_break_statement] = STATE(1125), - [sym_continue_statement] = STATE(1125), - [sym_throw_statement] = STATE(1125), - [sym_echo_statement] = STATE(1125), - [sym_unset_statement] = STATE(1125), - [sym_concurrent_statement] = STATE(1125), - [sym_use_statement] = STATE(1125), - [sym_if_statement] = STATE(1125), - [sym_switch_statement] = STATE(1125), - [sym_foreach_statement] = STATE(1125), - [sym_while_statement] = STATE(1125), - [sym_do_statement] = STATE(1125), - [sym_for_statement] = STATE(1125), - [sym_try_statement] = STATE(1125), - [sym_using_statement] = STATE(1125), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4480), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4480), + [sym_expression_statement] = STATE(4480), + [sym_compound_statement] = STATE(4480), + [sym_return_statement] = STATE(4480), + [sym_break_statement] = STATE(4480), + [sym_continue_statement] = STATE(4480), + [sym_throw_statement] = STATE(4480), + [sym_echo_statement] = STATE(4480), + [sym_unset_statement] = STATE(4480), + [sym_concurrent_statement] = STATE(4480), + [sym_use_statement] = STATE(4480), + [sym_if_statement] = STATE(4480), + [sym_switch_statement] = STATE(4480), + [sym_foreach_statement] = STATE(4480), + [sym_while_statement] = STATE(4480), + [sym_do_statement] = STATE(4480), + [sym_for_statement] = STATE(4480), + [sym_try_statement] = STATE(4480), + [sym_using_statement] = STATE(4480), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1125), - [sym_function_declaration] = STATE(1125), - [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1125), - [sym_interface_declaration] = STATE(1125), - [sym_class_declaration] = STATE(1125), - [sym_const_declaration] = STATE(1125), - [sym_enum_declaration] = STATE(1125), - [sym_abstract_enum_class_declaration] = STATE(1125), - [sym_enum_class_declaration] = STATE(1125), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1125), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4480), + [sym_function_declaration] = STATE(4480), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4480), + [sym_interface_declaration] = STATE(4480), + [sym_class_declaration] = STATE(4480), + [sym_const_declaration] = STATE(4480), + [sym_enum_declaration] = STATE(4480), + [sym_abstract_enum_class_declaration] = STATE(4480), + [sym_enum_class_declaration] = STATE(4480), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4480), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(313), - [anon_sym_newtype] = ACTIONS(313), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(315), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -39911,29 +33462,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_echo] = ACTIONS(333), - [anon_sym_unset] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(337), - [anon_sym_use] = ACTIONS(339), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_foreach] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_do] = ACTIONS(353), - [anon_sym_for] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_using] = ACTIONS(359), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -39964,107 +33515,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(361), - [anon_sym_interface] = ACTIONS(363), - [anon_sym_class] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(369), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(371), - [sym_xhp_modifier] = ACTIONS(373), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [126] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4535), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4535), - [sym_expression_statement] = STATE(4535), - [sym_compound_statement] = STATE(4535), - [sym_return_statement] = STATE(4535), - [sym_break_statement] = STATE(4535), - [sym_continue_statement] = STATE(4535), - [sym_throw_statement] = STATE(4535), - [sym_echo_statement] = STATE(4535), - [sym_unset_statement] = STATE(4535), - [sym_concurrent_statement] = STATE(4535), - [sym_use_statement] = STATE(4535), - [sym_if_statement] = STATE(4535), - [sym_switch_statement] = STATE(4535), - [sym_foreach_statement] = STATE(4535), - [sym_while_statement] = STATE(4535), - [sym_do_statement] = STATE(4535), - [sym_for_statement] = STATE(4535), - [sym_try_statement] = STATE(4535), - [sym_using_statement] = STATE(4535), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1646), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1646), + [sym_expression_statement] = STATE(1646), + [sym_compound_statement] = STATE(1646), + [sym_return_statement] = STATE(1646), + [sym_break_statement] = STATE(1646), + [sym_continue_statement] = STATE(1646), + [sym_throw_statement] = STATE(1646), + [sym_echo_statement] = STATE(1646), + [sym_unset_statement] = STATE(1646), + [sym_concurrent_statement] = STATE(1646), + [sym_use_statement] = STATE(1646), + [sym_if_statement] = STATE(1646), + [sym_switch_statement] = STATE(1646), + [sym_foreach_statement] = STATE(1646), + [sym_while_statement] = STATE(1646), + [sym_do_statement] = STATE(1646), + [sym_for_statement] = STATE(1646), + [sym_try_statement] = STATE(1646), + [sym_using_statement] = STATE(1646), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4535), - [sym_function_declaration] = STATE(4535), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4535), - [sym_interface_declaration] = STATE(4535), - [sym_class_declaration] = STATE(4535), - [sym_const_declaration] = STATE(4535), - [sym_enum_declaration] = STATE(4535), - [sym_abstract_enum_class_declaration] = STATE(4535), - [sym_enum_class_declaration] = STATE(4535), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4535), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1646), + [sym_function_declaration] = STATE(1646), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1646), + [sym_interface_declaration] = STATE(1646), + [sym_class_declaration] = STATE(1646), + [sym_const_declaration] = STATE(1646), + [sym_enum_declaration] = STATE(1646), + [sym_abstract_enum_class_declaration] = STATE(1646), + [sym_enum_class_declaration] = STATE(1646), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1646), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -40073,29 +33624,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -40126,107 +33677,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(5952), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(5952), - [sym_expression_statement] = STATE(5952), - [sym_compound_statement] = STATE(5952), - [sym_return_statement] = STATE(5952), - [sym_break_statement] = STATE(5952), - [sym_continue_statement] = STATE(5952), - [sym_throw_statement] = STATE(5952), - [sym_echo_statement] = STATE(5952), - [sym_unset_statement] = STATE(5952), - [sym_concurrent_statement] = STATE(5952), - [sym_use_statement] = STATE(5952), - [sym_if_statement] = STATE(5952), - [sym_switch_statement] = STATE(5952), - [sym_foreach_statement] = STATE(5952), - [sym_while_statement] = STATE(5952), - [sym_do_statement] = STATE(5952), - [sym_for_statement] = STATE(5952), - [sym_try_statement] = STATE(5952), - [sym_using_statement] = STATE(5952), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1348), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_compound_statement] = STATE(1348), + [sym_return_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_throw_statement] = STATE(1348), + [sym_echo_statement] = STATE(1348), + [sym_unset_statement] = STATE(1348), + [sym_concurrent_statement] = STATE(1348), + [sym_use_statement] = STATE(1348), + [sym_if_statement] = STATE(1348), + [sym_switch_statement] = STATE(1348), + [sym_foreach_statement] = STATE(1348), + [sym_while_statement] = STATE(1348), + [sym_do_statement] = STATE(1348), + [sym_for_statement] = STATE(1348), + [sym_try_statement] = STATE(1348), + [sym_using_statement] = STATE(1348), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(5952), - [sym_function_declaration] = STATE(5952), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(5952), - [sym_interface_declaration] = STATE(5952), - [sym_class_declaration] = STATE(5952), - [sym_const_declaration] = STATE(5952), - [sym_enum_declaration] = STATE(5952), - [sym_abstract_enum_class_declaration] = STATE(5952), - [sym_enum_class_declaration] = STATE(5952), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(5952), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1348), + [sym_function_declaration] = STATE(1348), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1348), + [sym_interface_declaration] = STATE(1348), + [sym_class_declaration] = STATE(1348), + [sym_const_declaration] = STATE(1348), + [sym_enum_declaration] = STATE(1348), + [sym_abstract_enum_class_declaration] = STATE(1348), + [sym_enum_class_declaration] = STATE(1348), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1348), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(313), + [anon_sym_newtype] = ACTIONS(313), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -40235,29 +33786,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(317), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_echo] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_foreach] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(353), + [anon_sym_for] = ACTIONS(355), + [anon_sym_try] = ACTIONS(357), + [anon_sym_using] = ACTIONS(359), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -40288,107 +33839,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(369), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(371), + [sym_xhp_modifier] = ACTIONS(373), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4403), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4403), - [sym_expression_statement] = STATE(4403), - [sym_compound_statement] = STATE(4403), - [sym_return_statement] = STATE(4403), - [sym_break_statement] = STATE(4403), - [sym_continue_statement] = STATE(4403), - [sym_throw_statement] = STATE(4403), - [sym_echo_statement] = STATE(4403), - [sym_unset_statement] = STATE(4403), - [sym_concurrent_statement] = STATE(4403), - [sym_use_statement] = STATE(4403), - [sym_if_statement] = STATE(4403), - [sym_switch_statement] = STATE(4403), - [sym_foreach_statement] = STATE(4403), - [sym_while_statement] = STATE(4403), - [sym_do_statement] = STATE(4403), - [sym_for_statement] = STATE(4403), - [sym_try_statement] = STATE(4403), - [sym_using_statement] = STATE(4403), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1349), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1349), + [sym_expression_statement] = STATE(1349), + [sym_compound_statement] = STATE(1349), + [sym_return_statement] = STATE(1349), + [sym_break_statement] = STATE(1349), + [sym_continue_statement] = STATE(1349), + [sym_throw_statement] = STATE(1349), + [sym_echo_statement] = STATE(1349), + [sym_unset_statement] = STATE(1349), + [sym_concurrent_statement] = STATE(1349), + [sym_use_statement] = STATE(1349), + [sym_if_statement] = STATE(1349), + [sym_switch_statement] = STATE(1349), + [sym_foreach_statement] = STATE(1349), + [sym_while_statement] = STATE(1349), + [sym_do_statement] = STATE(1349), + [sym_for_statement] = STATE(1349), + [sym_try_statement] = STATE(1349), + [sym_using_statement] = STATE(1349), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4403), - [sym_function_declaration] = STATE(4403), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4403), - [sym_interface_declaration] = STATE(4403), - [sym_class_declaration] = STATE(4403), - [sym_const_declaration] = STATE(4403), - [sym_enum_declaration] = STATE(4403), - [sym_abstract_enum_class_declaration] = STATE(4403), - [sym_enum_class_declaration] = STATE(4403), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4403), - [sym_abstract_modifier] = STATE(4097), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1349), + [sym_function_declaration] = STATE(1349), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1349), + [sym_interface_declaration] = STATE(1349), + [sym_class_declaration] = STATE(1349), + [sym_const_declaration] = STATE(1349), + [sym_enum_declaration] = STATE(1349), + [sym_abstract_enum_class_declaration] = STATE(1349), + [sym_enum_class_declaration] = STATE(1349), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1349), + [sym_abstract_modifier] = STATE(4018), [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(313), + [anon_sym_newtype] = ACTIONS(313), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -40397,29 +33948,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(317), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_echo] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_foreach] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(353), + [anon_sym_for] = ACTIONS(355), + [anon_sym_try] = ACTIONS(357), + [anon_sym_using] = ACTIONS(359), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -40450,96 +34001,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(369), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(371), + [sym_xhp_modifier] = ACTIONS(373), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [129] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1580), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1580), - [sym_expression_statement] = STATE(1580), - [sym_compound_statement] = STATE(1580), - [sym_return_statement] = STATE(1580), - [sym_break_statement] = STATE(1580), - [sym_continue_statement] = STATE(1580), - [sym_throw_statement] = STATE(1580), - [sym_echo_statement] = STATE(1580), - [sym_unset_statement] = STATE(1580), - [sym_concurrent_statement] = STATE(1580), - [sym_use_statement] = STATE(1580), - [sym_if_statement] = STATE(1580), - [sym_switch_statement] = STATE(1580), - [sym_foreach_statement] = STATE(1580), - [sym_while_statement] = STATE(1580), - [sym_do_statement] = STATE(1580), - [sym_for_statement] = STATE(1580), - [sym_try_statement] = STATE(1580), - [sym_using_statement] = STATE(1580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(5952), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(5952), + [sym_expression_statement] = STATE(5952), + [sym_compound_statement] = STATE(5952), + [sym_return_statement] = STATE(5952), + [sym_break_statement] = STATE(5952), + [sym_continue_statement] = STATE(5952), + [sym_throw_statement] = STATE(5952), + [sym_echo_statement] = STATE(5952), + [sym_unset_statement] = STATE(5952), + [sym_concurrent_statement] = STATE(5952), + [sym_use_statement] = STATE(5952), + [sym_if_statement] = STATE(5952), + [sym_switch_statement] = STATE(5952), + [sym_foreach_statement] = STATE(5952), + [sym_while_statement] = STATE(5952), + [sym_do_statement] = STATE(5952), + [sym_for_statement] = STATE(5952), + [sym_try_statement] = STATE(5952), + [sym_using_statement] = STATE(5952), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1580), - [sym_function_declaration] = STATE(1580), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1580), - [sym_interface_declaration] = STATE(1580), - [sym_class_declaration] = STATE(1580), - [sym_const_declaration] = STATE(1580), - [sym_enum_declaration] = STATE(1580), - [sym_abstract_enum_class_declaration] = STATE(1580), - [sym_enum_class_declaration] = STATE(1580), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1580), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(5952), + [sym_function_declaration] = STATE(5952), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(5952), + [sym_interface_declaration] = STATE(5952), + [sym_class_declaration] = STATE(5952), + [sym_const_declaration] = STATE(5952), + [sym_enum_declaration] = STATE(5952), + [sym_abstract_enum_class_declaration] = STATE(5952), + [sym_enum_class_declaration] = STATE(5952), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(5952), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -40550,7 +34101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -40574,13 +34125,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -40625,94 +34176,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [130] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4397), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4397), - [sym_expression_statement] = STATE(4397), - [sym_compound_statement] = STATE(4397), - [sym_return_statement] = STATE(4397), - [sym_break_statement] = STATE(4397), - [sym_continue_statement] = STATE(4397), - [sym_throw_statement] = STATE(4397), - [sym_echo_statement] = STATE(4397), - [sym_unset_statement] = STATE(4397), - [sym_concurrent_statement] = STATE(4397), - [sym_use_statement] = STATE(4397), - [sym_if_statement] = STATE(4397), - [sym_switch_statement] = STATE(4397), - [sym_foreach_statement] = STATE(4397), - [sym_while_statement] = STATE(4397), - [sym_do_statement] = STATE(4397), - [sym_for_statement] = STATE(4397), - [sym_try_statement] = STATE(4397), - [sym_using_statement] = STATE(4397), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4326), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4326), + [sym_expression_statement] = STATE(4326), + [sym_compound_statement] = STATE(4326), + [sym_return_statement] = STATE(4326), + [sym_break_statement] = STATE(4326), + [sym_continue_statement] = STATE(4326), + [sym_throw_statement] = STATE(4326), + [sym_echo_statement] = STATE(4326), + [sym_unset_statement] = STATE(4326), + [sym_concurrent_statement] = STATE(4326), + [sym_use_statement] = STATE(4326), + [sym_if_statement] = STATE(4326), + [sym_switch_statement] = STATE(4326), + [sym_foreach_statement] = STATE(4326), + [sym_while_statement] = STATE(4326), + [sym_do_statement] = STATE(4326), + [sym_for_statement] = STATE(4326), + [sym_try_statement] = STATE(4326), + [sym_using_statement] = STATE(4326), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4397), - [sym_function_declaration] = STATE(4397), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4397), - [sym_interface_declaration] = STATE(4397), - [sym_class_declaration] = STATE(4397), - [sym_const_declaration] = STATE(4397), - [sym_enum_declaration] = STATE(4397), - [sym_abstract_enum_class_declaration] = STATE(4397), - [sym_enum_class_declaration] = STATE(4397), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4397), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4326), + [sym_function_declaration] = STATE(4326), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4326), + [sym_interface_declaration] = STATE(4326), + [sym_class_declaration] = STATE(4326), + [sym_const_declaration] = STATE(4326), + [sym_enum_declaration] = STATE(4326), + [sym_abstract_enum_class_declaration] = STATE(4326), + [sym_enum_class_declaration] = STATE(4326), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4326), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -40721,29 +34272,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -40774,258 +34325,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [131] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1360), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1360), - [sym_expression_statement] = STATE(1360), - [sym_compound_statement] = STATE(1360), - [sym_return_statement] = STATE(1360), - [sym_break_statement] = STATE(1360), - [sym_continue_statement] = STATE(1360), - [sym_throw_statement] = STATE(1360), - [sym_echo_statement] = STATE(1360), - [sym_unset_statement] = STATE(1360), - [sym_concurrent_statement] = STATE(1360), - [sym_use_statement] = STATE(1360), - [sym_if_statement] = STATE(1360), - [sym_switch_statement] = STATE(1360), - [sym_foreach_statement] = STATE(1360), - [sym_while_statement] = STATE(1360), - [sym_do_statement] = STATE(1360), - [sym_for_statement] = STATE(1360), - [sym_try_statement] = STATE(1360), - [sym_using_statement] = STATE(1360), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1360), - [sym_function_declaration] = STATE(1360), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1360), - [sym_interface_declaration] = STATE(1360), - [sym_class_declaration] = STATE(1360), - [sym_const_declaration] = STATE(1360), - [sym_enum_declaration] = STATE(1360), - [sym_abstract_enum_class_declaration] = STATE(1360), - [sym_enum_class_declaration] = STATE(1360), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1360), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), - [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [132] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1151), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1151), - [sym_expression_statement] = STATE(1151), - [sym_compound_statement] = STATE(1151), - [sym_return_statement] = STATE(1151), - [sym_break_statement] = STATE(1151), - [sym_continue_statement] = STATE(1151), - [sym_throw_statement] = STATE(1151), - [sym_echo_statement] = STATE(1151), - [sym_unset_statement] = STATE(1151), - [sym_concurrent_statement] = STATE(1151), - [sym_use_statement] = STATE(1151), - [sym_if_statement] = STATE(1151), - [sym_switch_statement] = STATE(1151), - [sym_foreach_statement] = STATE(1151), - [sym_while_statement] = STATE(1151), - [sym_do_statement] = STATE(1151), - [sym_for_statement] = STATE(1151), - [sym_try_statement] = STATE(1151), - [sym_using_statement] = STATE(1151), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1078), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1078), + [sym_expression_statement] = STATE(1078), + [sym_compound_statement] = STATE(1078), + [sym_return_statement] = STATE(1078), + [sym_break_statement] = STATE(1078), + [sym_continue_statement] = STATE(1078), + [sym_throw_statement] = STATE(1078), + [sym_echo_statement] = STATE(1078), + [sym_unset_statement] = STATE(1078), + [sym_concurrent_statement] = STATE(1078), + [sym_use_statement] = STATE(1078), + [sym_if_statement] = STATE(1078), + [sym_switch_statement] = STATE(1078), + [sym_foreach_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_try_statement] = STATE(1078), + [sym_using_statement] = STATE(1078), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1151), - [sym_function_declaration] = STATE(1151), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1078), + [sym_function_declaration] = STATE(1078), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1151), - [sym_interface_declaration] = STATE(1151), - [sym_class_declaration] = STATE(1151), - [sym_const_declaration] = STATE(1151), - [sym_enum_declaration] = STATE(1151), - [sym_abstract_enum_class_declaration] = STATE(1151), - [sym_enum_class_declaration] = STATE(1151), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1151), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1078), + [sym_interface_declaration] = STATE(1078), + [sym_class_declaration] = STATE(1078), + [sym_const_declaration] = STATE(1078), + [sym_enum_declaration] = STATE(1078), + [sym_abstract_enum_class_declaration] = STATE(1078), + [sym_enum_class_declaration] = STATE(1078), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1078), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -41110,84 +34499,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1152), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1152), - [sym_expression_statement] = STATE(1152), - [sym_compound_statement] = STATE(1152), - [sym_return_statement] = STATE(1152), - [sym_break_statement] = STATE(1152), - [sym_continue_statement] = STATE(1152), - [sym_throw_statement] = STATE(1152), - [sym_echo_statement] = STATE(1152), - [sym_unset_statement] = STATE(1152), - [sym_concurrent_statement] = STATE(1152), - [sym_use_statement] = STATE(1152), - [sym_if_statement] = STATE(1152), - [sym_switch_statement] = STATE(1152), - [sym_foreach_statement] = STATE(1152), - [sym_while_statement] = STATE(1152), - [sym_do_statement] = STATE(1152), - [sym_for_statement] = STATE(1152), - [sym_try_statement] = STATE(1152), - [sym_using_statement] = STATE(1152), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [132] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1122), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1122), + [sym_expression_statement] = STATE(1122), + [sym_compound_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_throw_statement] = STATE(1122), + [sym_echo_statement] = STATE(1122), + [sym_unset_statement] = STATE(1122), + [sym_concurrent_statement] = STATE(1122), + [sym_use_statement] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_foreach_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_try_statement] = STATE(1122), + [sym_using_statement] = STATE(1122), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1152), - [sym_function_declaration] = STATE(1152), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1122), + [sym_function_declaration] = STATE(1122), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1152), - [sym_interface_declaration] = STATE(1152), - [sym_class_declaration] = STATE(1152), - [sym_const_declaration] = STATE(1152), - [sym_enum_declaration] = STATE(1152), - [sym_abstract_enum_class_declaration] = STATE(1152), - [sym_enum_class_declaration] = STATE(1152), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1152), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1122), + [sym_interface_declaration] = STATE(1122), + [sym_class_declaration] = STATE(1122), + [sym_const_declaration] = STATE(1122), + [sym_enum_declaration] = STATE(1122), + [sym_abstract_enum_class_declaration] = STATE(1122), + [sym_enum_class_declaration] = STATE(1122), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1122), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -41272,84 +34661,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [134] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1172), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1172), - [sym_expression_statement] = STATE(1172), - [sym_compound_statement] = STATE(1172), - [sym_return_statement] = STATE(1172), - [sym_break_statement] = STATE(1172), - [sym_continue_statement] = STATE(1172), - [sym_throw_statement] = STATE(1172), - [sym_echo_statement] = STATE(1172), - [sym_unset_statement] = STATE(1172), - [sym_concurrent_statement] = STATE(1172), - [sym_use_statement] = STATE(1172), - [sym_if_statement] = STATE(1172), - [sym_switch_statement] = STATE(1172), - [sym_foreach_statement] = STATE(1172), - [sym_while_statement] = STATE(1172), - [sym_do_statement] = STATE(1172), - [sym_for_statement] = STATE(1172), - [sym_try_statement] = STATE(1172), - [sym_using_statement] = STATE(1172), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [133] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1319), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1319), + [sym_expression_statement] = STATE(1319), + [sym_compound_statement] = STATE(1319), + [sym_return_statement] = STATE(1319), + [sym_break_statement] = STATE(1319), + [sym_continue_statement] = STATE(1319), + [sym_throw_statement] = STATE(1319), + [sym_echo_statement] = STATE(1319), + [sym_unset_statement] = STATE(1319), + [sym_concurrent_statement] = STATE(1319), + [sym_use_statement] = STATE(1319), + [sym_if_statement] = STATE(1319), + [sym_switch_statement] = STATE(1319), + [sym_foreach_statement] = STATE(1319), + [sym_while_statement] = STATE(1319), + [sym_do_statement] = STATE(1319), + [sym_for_statement] = STATE(1319), + [sym_try_statement] = STATE(1319), + [sym_using_statement] = STATE(1319), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1172), - [sym_function_declaration] = STATE(1172), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1319), + [sym_function_declaration] = STATE(1319), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1172), - [sym_interface_declaration] = STATE(1172), - [sym_class_declaration] = STATE(1172), - [sym_const_declaration] = STATE(1172), - [sym_enum_declaration] = STATE(1172), - [sym_abstract_enum_class_declaration] = STATE(1172), - [sym_enum_class_declaration] = STATE(1172), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1172), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1319), + [sym_interface_declaration] = STATE(1319), + [sym_class_declaration] = STATE(1319), + [sym_const_declaration] = STATE(1319), + [sym_enum_declaration] = STATE(1319), + [sym_abstract_enum_class_declaration] = STATE(1319), + [sym_enum_class_declaration] = STATE(1319), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1319), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -41434,84 +34823,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1175), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1175), - [sym_expression_statement] = STATE(1175), - [sym_compound_statement] = STATE(1175), - [sym_return_statement] = STATE(1175), - [sym_break_statement] = STATE(1175), - [sym_continue_statement] = STATE(1175), - [sym_throw_statement] = STATE(1175), - [sym_echo_statement] = STATE(1175), - [sym_unset_statement] = STATE(1175), - [sym_concurrent_statement] = STATE(1175), - [sym_use_statement] = STATE(1175), - [sym_if_statement] = STATE(1175), - [sym_switch_statement] = STATE(1175), - [sym_foreach_statement] = STATE(1175), - [sym_while_statement] = STATE(1175), - [sym_do_statement] = STATE(1175), - [sym_for_statement] = STATE(1175), - [sym_try_statement] = STATE(1175), - [sym_using_statement] = STATE(1175), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [134] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1321), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1321), + [sym_expression_statement] = STATE(1321), + [sym_compound_statement] = STATE(1321), + [sym_return_statement] = STATE(1321), + [sym_break_statement] = STATE(1321), + [sym_continue_statement] = STATE(1321), + [sym_throw_statement] = STATE(1321), + [sym_echo_statement] = STATE(1321), + [sym_unset_statement] = STATE(1321), + [sym_concurrent_statement] = STATE(1321), + [sym_use_statement] = STATE(1321), + [sym_if_statement] = STATE(1321), + [sym_switch_statement] = STATE(1321), + [sym_foreach_statement] = STATE(1321), + [sym_while_statement] = STATE(1321), + [sym_do_statement] = STATE(1321), + [sym_for_statement] = STATE(1321), + [sym_try_statement] = STATE(1321), + [sym_using_statement] = STATE(1321), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1175), - [sym_function_declaration] = STATE(1175), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1321), + [sym_function_declaration] = STATE(1321), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1175), - [sym_interface_declaration] = STATE(1175), - [sym_class_declaration] = STATE(1175), - [sym_const_declaration] = STATE(1175), - [sym_enum_declaration] = STATE(1175), - [sym_abstract_enum_class_declaration] = STATE(1175), - [sym_enum_class_declaration] = STATE(1175), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1175), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1321), + [sym_interface_declaration] = STATE(1321), + [sym_class_declaration] = STATE(1321), + [sym_const_declaration] = STATE(1321), + [sym_enum_declaration] = STATE(1321), + [sym_abstract_enum_class_declaration] = STATE(1321), + [sym_enum_class_declaration] = STATE(1321), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1321), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -41596,95 +34985,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1297), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1297), - [sym_expression_statement] = STATE(1297), - [sym_compound_statement] = STATE(1297), - [sym_return_statement] = STATE(1297), - [sym_break_statement] = STATE(1297), - [sym_continue_statement] = STATE(1297), - [sym_throw_statement] = STATE(1297), - [sym_echo_statement] = STATE(1297), - [sym_unset_statement] = STATE(1297), - [sym_concurrent_statement] = STATE(1297), - [sym_use_statement] = STATE(1297), - [sym_if_statement] = STATE(1297), - [sym_switch_statement] = STATE(1297), - [sym_foreach_statement] = STATE(1297), - [sym_while_statement] = STATE(1297), - [sym_do_statement] = STATE(1297), - [sym_for_statement] = STATE(1297), - [sym_try_statement] = STATE(1297), - [sym_using_statement] = STATE(1297), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [135] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1533), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1533), + [sym_expression_statement] = STATE(1533), + [sym_compound_statement] = STATE(1533), + [sym_return_statement] = STATE(1533), + [sym_break_statement] = STATE(1533), + [sym_continue_statement] = STATE(1533), + [sym_throw_statement] = STATE(1533), + [sym_echo_statement] = STATE(1533), + [sym_unset_statement] = STATE(1533), + [sym_concurrent_statement] = STATE(1533), + [sym_use_statement] = STATE(1533), + [sym_if_statement] = STATE(1533), + [sym_switch_statement] = STATE(1533), + [sym_foreach_statement] = STATE(1533), + [sym_while_statement] = STATE(1533), + [sym_do_statement] = STATE(1533), + [sym_for_statement] = STATE(1533), + [sym_try_statement] = STATE(1533), + [sym_using_statement] = STATE(1533), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1297), - [sym_function_declaration] = STATE(1297), - [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1297), - [sym_interface_declaration] = STATE(1297), - [sym_class_declaration] = STATE(1297), - [sym_const_declaration] = STATE(1297), - [sym_enum_declaration] = STATE(1297), - [sym_abstract_enum_class_declaration] = STATE(1297), - [sym_enum_class_declaration] = STATE(1297), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1297), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1533), + [sym_function_declaration] = STATE(1533), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1533), + [sym_interface_declaration] = STATE(1533), + [sym_class_declaration] = STATE(1533), + [sym_const_declaration] = STATE(1533), + [sym_enum_declaration] = STATE(1533), + [sym_abstract_enum_class_declaration] = STATE(1533), + [sym_enum_class_declaration] = STATE(1533), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1533), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(313), - [anon_sym_newtype] = ACTIONS(313), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(315), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -41693,29 +35082,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_echo] = ACTIONS(333), - [anon_sym_unset] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(337), - [anon_sym_use] = ACTIONS(339), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_foreach] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_do] = ACTIONS(353), - [anon_sym_for] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_using] = ACTIONS(359), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -41746,107 +35135,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(361), - [anon_sym_interface] = ACTIONS(363), - [anon_sym_class] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(369), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(371), - [sym_xhp_modifier] = ACTIONS(373), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [137] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1289), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1289), - [sym_expression_statement] = STATE(1289), - [sym_compound_statement] = STATE(1289), - [sym_return_statement] = STATE(1289), - [sym_break_statement] = STATE(1289), - [sym_continue_statement] = STATE(1289), - [sym_throw_statement] = STATE(1289), - [sym_echo_statement] = STATE(1289), - [sym_unset_statement] = STATE(1289), - [sym_concurrent_statement] = STATE(1289), - [sym_use_statement] = STATE(1289), - [sym_if_statement] = STATE(1289), - [sym_switch_statement] = STATE(1289), - [sym_foreach_statement] = STATE(1289), - [sym_while_statement] = STATE(1289), - [sym_do_statement] = STATE(1289), - [sym_for_statement] = STATE(1289), - [sym_try_statement] = STATE(1289), - [sym_using_statement] = STATE(1289), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [136] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1532), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1532), + [sym_expression_statement] = STATE(1532), + [sym_compound_statement] = STATE(1532), + [sym_return_statement] = STATE(1532), + [sym_break_statement] = STATE(1532), + [sym_continue_statement] = STATE(1532), + [sym_throw_statement] = STATE(1532), + [sym_echo_statement] = STATE(1532), + [sym_unset_statement] = STATE(1532), + [sym_concurrent_statement] = STATE(1532), + [sym_use_statement] = STATE(1532), + [sym_if_statement] = STATE(1532), + [sym_switch_statement] = STATE(1532), + [sym_foreach_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_do_statement] = STATE(1532), + [sym_for_statement] = STATE(1532), + [sym_try_statement] = STATE(1532), + [sym_using_statement] = STATE(1532), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1289), - [sym_function_declaration] = STATE(1289), - [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1289), - [sym_interface_declaration] = STATE(1289), - [sym_class_declaration] = STATE(1289), - [sym_const_declaration] = STATE(1289), - [sym_enum_declaration] = STATE(1289), - [sym_abstract_enum_class_declaration] = STATE(1289), - [sym_enum_class_declaration] = STATE(1289), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1289), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1532), + [sym_function_declaration] = STATE(1532), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1532), + [sym_interface_declaration] = STATE(1532), + [sym_class_declaration] = STATE(1532), + [sym_const_declaration] = STATE(1532), + [sym_enum_declaration] = STATE(1532), + [sym_abstract_enum_class_declaration] = STATE(1532), + [sym_enum_class_declaration] = STATE(1532), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1532), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(313), - [anon_sym_newtype] = ACTIONS(313), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(315), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -41855,29 +35244,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(317), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_echo] = ACTIONS(333), - [anon_sym_unset] = ACTIONS(335), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(337), - [anon_sym_use] = ACTIONS(339), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_foreach] = ACTIONS(349), - [anon_sym_while] = ACTIONS(351), - [anon_sym_do] = ACTIONS(353), - [anon_sym_for] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_using] = ACTIONS(359), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -41908,107 +35297,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(361), - [anon_sym_interface] = ACTIONS(363), - [anon_sym_class] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(369), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(371), - [sym_xhp_modifier] = ACTIONS(373), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1442), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1442), - [sym_expression_statement] = STATE(1442), - [sym_compound_statement] = STATE(1442), - [sym_return_statement] = STATE(1442), - [sym_break_statement] = STATE(1442), - [sym_continue_statement] = STATE(1442), - [sym_throw_statement] = STATE(1442), - [sym_echo_statement] = STATE(1442), - [sym_unset_statement] = STATE(1442), - [sym_concurrent_statement] = STATE(1442), - [sym_use_statement] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_switch_statement] = STATE(1442), - [sym_foreach_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_do_statement] = STATE(1442), - [sym_for_statement] = STATE(1442), - [sym_try_statement] = STATE(1442), - [sym_using_statement] = STATE(1442), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [137] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(942), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(942), + [sym_expression_statement] = STATE(942), + [sym_compound_statement] = STATE(942), + [sym_return_statement] = STATE(942), + [sym_break_statement] = STATE(942), + [sym_continue_statement] = STATE(942), + [sym_throw_statement] = STATE(942), + [sym_echo_statement] = STATE(942), + [sym_unset_statement] = STATE(942), + [sym_concurrent_statement] = STATE(942), + [sym_use_statement] = STATE(942), + [sym_if_statement] = STATE(942), + [sym_switch_statement] = STATE(942), + [sym_foreach_statement] = STATE(942), + [sym_while_statement] = STATE(942), + [sym_do_statement] = STATE(942), + [sym_for_statement] = STATE(942), + [sym_try_statement] = STATE(942), + [sym_using_statement] = STATE(942), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1442), - [sym_function_declaration] = STATE(1442), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1442), - [sym_interface_declaration] = STATE(1442), - [sym_class_declaration] = STATE(1442), - [sym_const_declaration] = STATE(1442), - [sym_enum_declaration] = STATE(1442), - [sym_abstract_enum_class_declaration] = STATE(1442), - [sym_enum_class_declaration] = STATE(1442), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1442), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(942), + [sym_function_declaration] = STATE(942), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(942), + [sym_interface_declaration] = STATE(942), + [sym_class_declaration] = STATE(942), + [sym_const_declaration] = STATE(942), + [sym_enum_declaration] = STATE(942), + [sym_abstract_enum_class_declaration] = STATE(942), + [sym_enum_class_declaration] = STATE(942), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(942), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(313), + [anon_sym_newtype] = ACTIONS(313), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -42017,29 +35406,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(317), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_echo] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_foreach] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(353), + [anon_sym_for] = ACTIONS(355), + [anon_sym_try] = ACTIONS(357), + [anon_sym_using] = ACTIONS(359), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -42070,107 +35459,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(369), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(371), + [sym_xhp_modifier] = ACTIONS(373), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1536), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1536), - [sym_expression_statement] = STATE(1536), - [sym_compound_statement] = STATE(1536), - [sym_return_statement] = STATE(1536), - [sym_break_statement] = STATE(1536), - [sym_continue_statement] = STATE(1536), - [sym_throw_statement] = STATE(1536), - [sym_echo_statement] = STATE(1536), - [sym_unset_statement] = STATE(1536), - [sym_concurrent_statement] = STATE(1536), - [sym_use_statement] = STATE(1536), - [sym_if_statement] = STATE(1536), - [sym_switch_statement] = STATE(1536), - [sym_foreach_statement] = STATE(1536), - [sym_while_statement] = STATE(1536), - [sym_do_statement] = STATE(1536), - [sym_for_statement] = STATE(1536), - [sym_try_statement] = STATE(1536), - [sym_using_statement] = STATE(1536), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [138] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(951), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(951), + [sym_expression_statement] = STATE(951), + [sym_compound_statement] = STATE(951), + [sym_return_statement] = STATE(951), + [sym_break_statement] = STATE(951), + [sym_continue_statement] = STATE(951), + [sym_throw_statement] = STATE(951), + [sym_echo_statement] = STATE(951), + [sym_unset_statement] = STATE(951), + [sym_concurrent_statement] = STATE(951), + [sym_use_statement] = STATE(951), + [sym_if_statement] = STATE(951), + [sym_switch_statement] = STATE(951), + [sym_foreach_statement] = STATE(951), + [sym_while_statement] = STATE(951), + [sym_do_statement] = STATE(951), + [sym_for_statement] = STATE(951), + [sym_try_statement] = STATE(951), + [sym_using_statement] = STATE(951), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1536), - [sym_function_declaration] = STATE(1536), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1536), - [sym_interface_declaration] = STATE(1536), - [sym_class_declaration] = STATE(1536), - [sym_const_declaration] = STATE(1536), - [sym_enum_declaration] = STATE(1536), - [sym_abstract_enum_class_declaration] = STATE(1536), - [sym_enum_class_declaration] = STATE(1536), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1536), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(951), + [sym_function_declaration] = STATE(951), + [sym__function_declaration_header] = STATE(4542), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(951), + [sym_interface_declaration] = STATE(951), + [sym_class_declaration] = STATE(951), + [sym_const_declaration] = STATE(951), + [sym_enum_declaration] = STATE(951), + [sym_abstract_enum_class_declaration] = STATE(951), + [sym_enum_class_declaration] = STATE(951), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(951), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(313), + [anon_sym_newtype] = ACTIONS(313), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(315), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -42179,29 +35568,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(317), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_echo] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(337), + [anon_sym_use] = ACTIONS(339), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(345), + [anon_sym_foreach] = ACTIONS(349), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(353), + [anon_sym_for] = ACTIONS(355), + [anon_sym_try] = ACTIONS(357), + [anon_sym_using] = ACTIONS(359), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -42232,96 +35621,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_class] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(369), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(371), + [sym_xhp_modifier] = ACTIONS(373), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [140] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(952), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(952), - [sym_expression_statement] = STATE(952), - [sym_compound_statement] = STATE(952), - [sym_return_statement] = STATE(952), - [sym_break_statement] = STATE(952), - [sym_continue_statement] = STATE(952), - [sym_throw_statement] = STATE(952), - [sym_echo_statement] = STATE(952), - [sym_unset_statement] = STATE(952), - [sym_concurrent_statement] = STATE(952), - [sym_use_statement] = STATE(952), - [sym_if_statement] = STATE(952), - [sym_switch_statement] = STATE(952), - [sym_foreach_statement] = STATE(952), - [sym_while_statement] = STATE(952), - [sym_do_statement] = STATE(952), - [sym_for_statement] = STATE(952), - [sym_try_statement] = STATE(952), - [sym_using_statement] = STATE(952), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [139] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1029), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1029), + [sym_expression_statement] = STATE(1029), + [sym_compound_statement] = STATE(1029), + [sym_return_statement] = STATE(1029), + [sym_break_statement] = STATE(1029), + [sym_continue_statement] = STATE(1029), + [sym_throw_statement] = STATE(1029), + [sym_echo_statement] = STATE(1029), + [sym_unset_statement] = STATE(1029), + [sym_concurrent_statement] = STATE(1029), + [sym_use_statement] = STATE(1029), + [sym_if_statement] = STATE(1029), + [sym_switch_statement] = STATE(1029), + [sym_foreach_statement] = STATE(1029), + [sym_while_statement] = STATE(1029), + [sym_do_statement] = STATE(1029), + [sym_for_statement] = STATE(1029), + [sym_try_statement] = STATE(1029), + [sym_using_statement] = STATE(1029), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(952), - [sym_function_declaration] = STATE(952), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1029), + [sym_function_declaration] = STATE(1029), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(952), - [sym_interface_declaration] = STATE(952), - [sym_class_declaration] = STATE(952), - [sym_const_declaration] = STATE(952), - [sym_enum_declaration] = STATE(952), - [sym_abstract_enum_class_declaration] = STATE(952), - [sym_enum_class_declaration] = STATE(952), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(952), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1029), + [sym_interface_declaration] = STATE(1029), + [sym_class_declaration] = STATE(1029), + [sym_const_declaration] = STATE(1029), + [sym_enum_declaration] = STATE(1029), + [sym_abstract_enum_class_declaration] = STATE(1029), + [sym_enum_class_declaration] = STATE(1029), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1029), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -42406,84 +35795,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1014), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_empty_statement] = STATE(1014), - [sym_expression_statement] = STATE(1014), - [sym_compound_statement] = STATE(1014), - [sym_return_statement] = STATE(1014), - [sym_break_statement] = STATE(1014), - [sym_continue_statement] = STATE(1014), - [sym_throw_statement] = STATE(1014), - [sym_echo_statement] = STATE(1014), - [sym_unset_statement] = STATE(1014), - [sym_concurrent_statement] = STATE(1014), - [sym_use_statement] = STATE(1014), - [sym_if_statement] = STATE(1014), - [sym_switch_statement] = STATE(1014), - [sym_foreach_statement] = STATE(1014), - [sym_while_statement] = STATE(1014), - [sym_do_statement] = STATE(1014), - [sym_for_statement] = STATE(1014), - [sym_try_statement] = STATE(1014), - [sym_using_statement] = STATE(1014), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [140] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1055), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_empty_statement] = STATE(1055), + [sym_expression_statement] = STATE(1055), + [sym_compound_statement] = STATE(1055), + [sym_return_statement] = STATE(1055), + [sym_break_statement] = STATE(1055), + [sym_continue_statement] = STATE(1055), + [sym_throw_statement] = STATE(1055), + [sym_echo_statement] = STATE(1055), + [sym_unset_statement] = STATE(1055), + [sym_concurrent_statement] = STATE(1055), + [sym_use_statement] = STATE(1055), + [sym_if_statement] = STATE(1055), + [sym_switch_statement] = STATE(1055), + [sym_foreach_statement] = STATE(1055), + [sym_while_statement] = STATE(1055), + [sym_do_statement] = STATE(1055), + [sym_for_statement] = STATE(1055), + [sym_try_statement] = STATE(1055), + [sym_using_statement] = STATE(1055), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1014), - [sym_function_declaration] = STATE(1014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1055), + [sym_function_declaration] = STATE(1055), [sym__function_declaration_header] = STATE(4542), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1014), - [sym_interface_declaration] = STATE(1014), - [sym_class_declaration] = STATE(1014), - [sym_const_declaration] = STATE(1014), - [sym_enum_declaration] = STATE(1014), - [sym_abstract_enum_class_declaration] = STATE(1014), - [sym_enum_class_declaration] = STATE(1014), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1014), - [sym_abstract_modifier] = STATE(4022), - [sym_attribute_modifier] = STATE(3526), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6017), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1055), + [sym_interface_declaration] = STATE(1055), + [sym_class_declaration] = STATE(1055), + [sym_const_declaration] = STATE(1055), + [sym_enum_declaration] = STATE(1055), + [sym_abstract_enum_class_declaration] = STATE(1055), + [sym_enum_class_declaration] = STATE(1055), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1055), + [sym_abstract_modifier] = STATE(4018), + [sym_attribute_modifier] = STATE(3525), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6023), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -42568,84 +35957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(749), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(749), - [sym_expression_statement] = STATE(749), - [sym_compound_statement] = STATE(749), - [sym_return_statement] = STATE(749), - [sym_break_statement] = STATE(749), - [sym_continue_statement] = STATE(749), - [sym_throw_statement] = STATE(749), - [sym_echo_statement] = STATE(749), - [sym_unset_statement] = STATE(749), - [sym_concurrent_statement] = STATE(749), - [sym_use_statement] = STATE(749), - [sym_if_statement] = STATE(749), - [sym_switch_statement] = STATE(749), - [sym_foreach_statement] = STATE(749), - [sym_while_statement] = STATE(749), - [sym_do_statement] = STATE(749), - [sym_for_statement] = STATE(749), - [sym_try_statement] = STATE(749), - [sym_using_statement] = STATE(749), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [141] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(889), + [sym_expression_statement] = STATE(889), + [sym_compound_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_echo_statement] = STATE(889), + [sym_unset_statement] = STATE(889), + [sym_concurrent_statement] = STATE(889), + [sym_use_statement] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_foreach_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_using_statement] = STATE(889), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(749), - [sym_function_declaration] = STATE(749), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(889), + [sym_function_declaration] = STATE(889), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(749), - [sym_interface_declaration] = STATE(749), - [sym_class_declaration] = STATE(749), - [sym_const_declaration] = STATE(749), - [sym_enum_declaration] = STATE(749), - [sym_abstract_enum_class_declaration] = STATE(749), - [sym_enum_class_declaration] = STATE(749), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(749), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(889), + [sym_interface_declaration] = STATE(889), + [sym_class_declaration] = STATE(889), + [sym_const_declaration] = STATE(889), + [sym_enum_declaration] = STATE(889), + [sym_abstract_enum_class_declaration] = STATE(889), + [sym_enum_class_declaration] = STATE(889), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(889), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -42730,84 +36119,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(787), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(787), - [sym_expression_statement] = STATE(787), - [sym_compound_statement] = STATE(787), - [sym_return_statement] = STATE(787), - [sym_break_statement] = STATE(787), - [sym_continue_statement] = STATE(787), - [sym_throw_statement] = STATE(787), - [sym_echo_statement] = STATE(787), - [sym_unset_statement] = STATE(787), - [sym_concurrent_statement] = STATE(787), - [sym_use_statement] = STATE(787), - [sym_if_statement] = STATE(787), - [sym_switch_statement] = STATE(787), - [sym_foreach_statement] = STATE(787), - [sym_while_statement] = STATE(787), - [sym_do_statement] = STATE(787), - [sym_for_statement] = STATE(787), - [sym_try_statement] = STATE(787), - [sym_using_statement] = STATE(787), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [142] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(852), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(852), + [sym_expression_statement] = STATE(852), + [sym_compound_statement] = STATE(852), + [sym_return_statement] = STATE(852), + [sym_break_statement] = STATE(852), + [sym_continue_statement] = STATE(852), + [sym_throw_statement] = STATE(852), + [sym_echo_statement] = STATE(852), + [sym_unset_statement] = STATE(852), + [sym_concurrent_statement] = STATE(852), + [sym_use_statement] = STATE(852), + [sym_if_statement] = STATE(852), + [sym_switch_statement] = STATE(852), + [sym_foreach_statement] = STATE(852), + [sym_while_statement] = STATE(852), + [sym_do_statement] = STATE(852), + [sym_for_statement] = STATE(852), + [sym_try_statement] = STATE(852), + [sym_using_statement] = STATE(852), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(787), - [sym_function_declaration] = STATE(787), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(787), - [sym_interface_declaration] = STATE(787), - [sym_class_declaration] = STATE(787), - [sym_const_declaration] = STATE(787), - [sym_enum_declaration] = STATE(787), - [sym_abstract_enum_class_declaration] = STATE(787), - [sym_enum_class_declaration] = STATE(787), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(787), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_const_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_abstract_enum_class_declaration] = STATE(852), + [sym_enum_class_declaration] = STATE(852), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(852), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -42892,84 +36281,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(845), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(853), - [sym_expression_statement] = STATE(857), - [sym_compound_statement] = STATE(903), - [sym_return_statement] = STATE(902), - [sym_break_statement] = STATE(901), - [sym_continue_statement] = STATE(899), - [sym_throw_statement] = STATE(898), - [sym_echo_statement] = STATE(897), - [sym_unset_statement] = STATE(896), - [sym_concurrent_statement] = STATE(894), - [sym_use_statement] = STATE(893), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(888), - [sym_foreach_statement] = STATE(886), - [sym_while_statement] = STATE(885), - [sym_do_statement] = STATE(884), - [sym_for_statement] = STATE(883), - [sym_try_statement] = STATE(882), - [sym_using_statement] = STATE(880), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [143] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(833), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(832), + [sym_expression_statement] = STATE(831), + [sym_compound_statement] = STATE(830), + [sym_return_statement] = STATE(829), + [sym_break_statement] = STATE(828), + [sym_continue_statement] = STATE(827), + [sym_throw_statement] = STATE(826), + [sym_echo_statement] = STATE(825), + [sym_unset_statement] = STATE(824), + [sym_concurrent_statement] = STATE(823), + [sym_use_statement] = STATE(724), + [sym_if_statement] = STATE(821), + [sym_switch_statement] = STATE(820), + [sym_foreach_statement] = STATE(819), + [sym_while_statement] = STATE(818), + [sym_do_statement] = STATE(817), + [sym_for_statement] = STATE(816), + [sym_try_statement] = STATE(810), + [sym_using_statement] = STATE(808), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(879), - [sym_function_declaration] = STATE(878), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(807), + [sym_function_declaration] = STATE(806), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(876), - [sym_interface_declaration] = STATE(872), - [sym_class_declaration] = STATE(868), - [sym_const_declaration] = STATE(867), - [sym_enum_declaration] = STATE(865), - [sym_abstract_enum_class_declaration] = STATE(862), - [sym_enum_class_declaration] = STATE(861), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(860), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(805), + [sym_interface_declaration] = STATE(804), + [sym_class_declaration] = STATE(803), + [sym_const_declaration] = STATE(802), + [sym_enum_declaration] = STATE(800), + [sym_abstract_enum_class_declaration] = STATE(798), + [sym_enum_class_declaration] = STATE(797), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(773), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -43054,84 +36443,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(859), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(859), - [sym_expression_statement] = STATE(859), - [sym_compound_statement] = STATE(859), - [sym_return_statement] = STATE(859), - [sym_break_statement] = STATE(859), - [sym_continue_statement] = STATE(859), - [sym_throw_statement] = STATE(859), - [sym_echo_statement] = STATE(859), - [sym_unset_statement] = STATE(859), - [sym_concurrent_statement] = STATE(859), - [sym_use_statement] = STATE(859), - [sym_if_statement] = STATE(859), - [sym_switch_statement] = STATE(859), - [sym_foreach_statement] = STATE(859), - [sym_while_statement] = STATE(859), - [sym_do_statement] = STATE(859), - [sym_for_statement] = STATE(859), - [sym_try_statement] = STATE(859), - [sym_using_statement] = STATE(859), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [144] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(786), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(786), + [sym_expression_statement] = STATE(786), + [sym_compound_statement] = STATE(786), + [sym_return_statement] = STATE(786), + [sym_break_statement] = STATE(786), + [sym_continue_statement] = STATE(786), + [sym_throw_statement] = STATE(786), + [sym_echo_statement] = STATE(786), + [sym_unset_statement] = STATE(786), + [sym_concurrent_statement] = STATE(786), + [sym_use_statement] = STATE(786), + [sym_if_statement] = STATE(786), + [sym_switch_statement] = STATE(786), + [sym_foreach_statement] = STATE(786), + [sym_while_statement] = STATE(786), + [sym_do_statement] = STATE(786), + [sym_for_statement] = STATE(786), + [sym_try_statement] = STATE(786), + [sym_using_statement] = STATE(786), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(859), - [sym_function_declaration] = STATE(859), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(786), + [sym_function_declaration] = STATE(786), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(859), - [sym_interface_declaration] = STATE(859), - [sym_class_declaration] = STATE(859), - [sym_const_declaration] = STATE(859), - [sym_enum_declaration] = STATE(859), - [sym_abstract_enum_class_declaration] = STATE(859), - [sym_enum_class_declaration] = STATE(859), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(859), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(786), + [sym_interface_declaration] = STATE(786), + [sym_class_declaration] = STATE(786), + [sym_const_declaration] = STATE(786), + [sym_enum_declaration] = STATE(786), + [sym_abstract_enum_class_declaration] = STATE(786), + [sym_enum_class_declaration] = STATE(786), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(786), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -43216,84 +36605,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [146] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(832), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(832), - [sym_expression_statement] = STATE(832), - [sym_compound_statement] = STATE(832), - [sym_return_statement] = STATE(832), - [sym_break_statement] = STATE(832), - [sym_continue_statement] = STATE(832), - [sym_throw_statement] = STATE(832), - [sym_echo_statement] = STATE(832), - [sym_unset_statement] = STATE(832), - [sym_concurrent_statement] = STATE(832), - [sym_use_statement] = STATE(832), - [sym_if_statement] = STATE(832), - [sym_switch_statement] = STATE(832), - [sym_foreach_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_do_statement] = STATE(832), - [sym_for_statement] = STATE(832), - [sym_try_statement] = STATE(832), - [sym_using_statement] = STATE(832), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [145] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(734), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(734), + [sym_expression_statement] = STATE(734), + [sym_compound_statement] = STATE(734), + [sym_return_statement] = STATE(734), + [sym_break_statement] = STATE(734), + [sym_continue_statement] = STATE(734), + [sym_throw_statement] = STATE(734), + [sym_echo_statement] = STATE(734), + [sym_unset_statement] = STATE(734), + [sym_concurrent_statement] = STATE(734), + [sym_use_statement] = STATE(734), + [sym_if_statement] = STATE(734), + [sym_switch_statement] = STATE(734), + [sym_foreach_statement] = STATE(734), + [sym_while_statement] = STATE(734), + [sym_do_statement] = STATE(734), + [sym_for_statement] = STATE(734), + [sym_try_statement] = STATE(734), + [sym_using_statement] = STATE(734), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(832), - [sym_function_declaration] = STATE(832), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(734), + [sym_function_declaration] = STATE(734), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(832), - [sym_interface_declaration] = STATE(832), - [sym_class_declaration] = STATE(832), - [sym_const_declaration] = STATE(832), - [sym_enum_declaration] = STATE(832), - [sym_abstract_enum_class_declaration] = STATE(832), - [sym_enum_class_declaration] = STATE(832), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(832), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(734), + [sym_interface_declaration] = STATE(734), + [sym_class_declaration] = STATE(734), + [sym_const_declaration] = STATE(734), + [sym_enum_declaration] = STATE(734), + [sym_abstract_enum_class_declaration] = STATE(734), + [sym_enum_class_declaration] = STATE(734), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(734), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -43378,84 +36767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [147] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(830), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(830), - [sym_expression_statement] = STATE(830), - [sym_compound_statement] = STATE(830), - [sym_return_statement] = STATE(830), - [sym_break_statement] = STATE(830), - [sym_continue_statement] = STATE(830), - [sym_throw_statement] = STATE(830), - [sym_echo_statement] = STATE(830), - [sym_unset_statement] = STATE(830), - [sym_concurrent_statement] = STATE(830), - [sym_use_statement] = STATE(830), - [sym_if_statement] = STATE(830), - [sym_switch_statement] = STATE(830), - [sym_foreach_statement] = STATE(830), - [sym_while_statement] = STATE(830), - [sym_do_statement] = STATE(830), - [sym_for_statement] = STATE(830), - [sym_try_statement] = STATE(830), - [sym_using_statement] = STATE(830), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [146] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(735), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(735), + [sym_expression_statement] = STATE(735), + [sym_compound_statement] = STATE(735), + [sym_return_statement] = STATE(735), + [sym_break_statement] = STATE(735), + [sym_continue_statement] = STATE(735), + [sym_throw_statement] = STATE(735), + [sym_echo_statement] = STATE(735), + [sym_unset_statement] = STATE(735), + [sym_concurrent_statement] = STATE(735), + [sym_use_statement] = STATE(735), + [sym_if_statement] = STATE(735), + [sym_switch_statement] = STATE(735), + [sym_foreach_statement] = STATE(735), + [sym_while_statement] = STATE(735), + [sym_do_statement] = STATE(735), + [sym_for_statement] = STATE(735), + [sym_try_statement] = STATE(735), + [sym_using_statement] = STATE(735), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(830), - [sym_function_declaration] = STATE(830), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(735), + [sym_function_declaration] = STATE(735), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(830), - [sym_interface_declaration] = STATE(830), - [sym_class_declaration] = STATE(830), - [sym_const_declaration] = STATE(830), - [sym_enum_declaration] = STATE(830), - [sym_abstract_enum_class_declaration] = STATE(830), - [sym_enum_class_declaration] = STATE(830), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(830), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(735), + [sym_interface_declaration] = STATE(735), + [sym_class_declaration] = STATE(735), + [sym_const_declaration] = STATE(735), + [sym_enum_declaration] = STATE(735), + [sym_abstract_enum_class_declaration] = STATE(735), + [sym_enum_class_declaration] = STATE(735), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(735), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -43540,84 +36929,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [148] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(794), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(794), - [sym_expression_statement] = STATE(794), - [sym_compound_statement] = STATE(794), - [sym_return_statement] = STATE(794), - [sym_break_statement] = STATE(794), - [sym_continue_statement] = STATE(794), - [sym_throw_statement] = STATE(794), - [sym_echo_statement] = STATE(794), - [sym_unset_statement] = STATE(794), - [sym_concurrent_statement] = STATE(794), - [sym_use_statement] = STATE(794), - [sym_if_statement] = STATE(794), - [sym_switch_statement] = STATE(794), - [sym_foreach_statement] = STATE(794), - [sym_while_statement] = STATE(794), - [sym_do_statement] = STATE(794), - [sym_for_statement] = STATE(794), - [sym_try_statement] = STATE(794), - [sym_using_statement] = STATE(794), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [147] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(751), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(751), + [sym_expression_statement] = STATE(751), + [sym_compound_statement] = STATE(751), + [sym_return_statement] = STATE(751), + [sym_break_statement] = STATE(751), + [sym_continue_statement] = STATE(751), + [sym_throw_statement] = STATE(751), + [sym_echo_statement] = STATE(751), + [sym_unset_statement] = STATE(751), + [sym_concurrent_statement] = STATE(751), + [sym_use_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_switch_statement] = STATE(751), + [sym_foreach_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_do_statement] = STATE(751), + [sym_for_statement] = STATE(751), + [sym_try_statement] = STATE(751), + [sym_using_statement] = STATE(751), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(794), - [sym_function_declaration] = STATE(794), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(751), + [sym_function_declaration] = STATE(751), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(794), - [sym_interface_declaration] = STATE(794), - [sym_class_declaration] = STATE(794), - [sym_const_declaration] = STATE(794), - [sym_enum_declaration] = STATE(794), - [sym_abstract_enum_class_declaration] = STATE(794), - [sym_enum_class_declaration] = STATE(794), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(794), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(751), + [sym_interface_declaration] = STATE(751), + [sym_class_declaration] = STATE(751), + [sym_const_declaration] = STATE(751), + [sym_enum_declaration] = STATE(751), + [sym_abstract_enum_class_declaration] = STATE(751), + [sym_enum_class_declaration] = STATE(751), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(751), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -43702,95 +37091,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [149] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1406), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1406), - [sym_expression_statement] = STATE(1406), - [sym_compound_statement] = STATE(1406), - [sym_return_statement] = STATE(1406), - [sym_break_statement] = STATE(1406), - [sym_continue_statement] = STATE(1406), - [sym_throw_statement] = STATE(1406), - [sym_echo_statement] = STATE(1406), - [sym_unset_statement] = STATE(1406), - [sym_concurrent_statement] = STATE(1406), - [sym_use_statement] = STATE(1406), - [sym_if_statement] = STATE(1406), - [sym_switch_statement] = STATE(1406), - [sym_foreach_statement] = STATE(1406), - [sym_while_statement] = STATE(1406), - [sym_do_statement] = STATE(1406), - [sym_for_statement] = STATE(1406), - [sym_try_statement] = STATE(1406), - [sym_using_statement] = STATE(1406), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [148] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(752), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(752), + [sym_expression_statement] = STATE(752), + [sym_compound_statement] = STATE(752), + [sym_return_statement] = STATE(752), + [sym_break_statement] = STATE(752), + [sym_continue_statement] = STATE(752), + [sym_throw_statement] = STATE(752), + [sym_echo_statement] = STATE(752), + [sym_unset_statement] = STATE(752), + [sym_concurrent_statement] = STATE(752), + [sym_use_statement] = STATE(752), + [sym_if_statement] = STATE(752), + [sym_switch_statement] = STATE(752), + [sym_foreach_statement] = STATE(752), + [sym_while_statement] = STATE(752), + [sym_do_statement] = STATE(752), + [sym_for_statement] = STATE(752), + [sym_try_statement] = STATE(752), + [sym_using_statement] = STATE(752), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1406), - [sym_function_declaration] = STATE(1406), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1406), - [sym_interface_declaration] = STATE(1406), - [sym_class_declaration] = STATE(1406), - [sym_const_declaration] = STATE(1406), - [sym_enum_declaration] = STATE(1406), - [sym_abstract_enum_class_declaration] = STATE(1406), - [sym_enum_class_declaration] = STATE(1406), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1406), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(752), + [sym_function_declaration] = STATE(752), + [sym__function_declaration_header] = STATE(4786), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(752), + [sym_interface_declaration] = STATE(752), + [sym_class_declaration] = STATE(752), + [sym_const_declaration] = STATE(752), + [sym_enum_declaration] = STATE(752), + [sym_abstract_enum_class_declaration] = STATE(752), + [sym_enum_class_declaration] = STATE(752), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(752), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(683), + [anon_sym_newtype] = ACTIONS(683), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(685), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -43799,29 +37188,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(687), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_return] = ACTIONS(693), + [anon_sym_break] = ACTIONS(695), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_echo] = ACTIONS(701), + [anon_sym_unset] = ACTIONS(703), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(709), + [anon_sym_if] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_foreach] = ACTIONS(715), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(719), + [anon_sym_for] = ACTIONS(721), + [anon_sym_try] = ACTIONS(723), + [anon_sym_using] = ACTIONS(725), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -43852,107 +37241,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(727), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_class] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(733), + [anon_sym_abstract] = ACTIONS(735), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(737), + [sym_xhp_modifier] = ACTIONS(739), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [150] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(780), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(780), - [sym_expression_statement] = STATE(780), - [sym_compound_statement] = STATE(780), - [sym_return_statement] = STATE(780), - [sym_break_statement] = STATE(780), - [sym_continue_statement] = STATE(780), - [sym_throw_statement] = STATE(780), - [sym_echo_statement] = STATE(780), - [sym_unset_statement] = STATE(780), - [sym_concurrent_statement] = STATE(780), - [sym_use_statement] = STATE(780), - [sym_if_statement] = STATE(780), - [sym_switch_statement] = STATE(780), - [sym_foreach_statement] = STATE(780), - [sym_while_statement] = STATE(780), - [sym_do_statement] = STATE(780), - [sym_for_statement] = STATE(780), - [sym_try_statement] = STATE(780), - [sym_using_statement] = STATE(780), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [149] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1057), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1057), + [sym_expression_statement] = STATE(1057), + [sym_compound_statement] = STATE(1057), + [sym_return_statement] = STATE(1057), + [sym_break_statement] = STATE(1057), + [sym_continue_statement] = STATE(1057), + [sym_throw_statement] = STATE(1057), + [sym_echo_statement] = STATE(1057), + [sym_unset_statement] = STATE(1057), + [sym_concurrent_statement] = STATE(1057), + [sym_use_statement] = STATE(1057), + [sym_if_statement] = STATE(1057), + [sym_switch_statement] = STATE(1057), + [sym_foreach_statement] = STATE(1057), + [sym_while_statement] = STATE(1057), + [sym_do_statement] = STATE(1057), + [sym_for_statement] = STATE(1057), + [sym_try_statement] = STATE(1057), + [sym_using_statement] = STATE(1057), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(780), - [sym_function_declaration] = STATE(780), - [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(780), - [sym_interface_declaration] = STATE(780), - [sym_class_declaration] = STATE(780), - [sym_const_declaration] = STATE(780), - [sym_enum_declaration] = STATE(780), - [sym_abstract_enum_class_declaration] = STATE(780), - [sym_enum_class_declaration] = STATE(780), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(780), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1057), + [sym_function_declaration] = STATE(1057), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1057), + [sym_interface_declaration] = STATE(1057), + [sym_class_declaration] = STATE(1057), + [sym_const_declaration] = STATE(1057), + [sym_enum_declaration] = STATE(1057), + [sym_abstract_enum_class_declaration] = STATE(1057), + [sym_enum_class_declaration] = STATE(1057), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1057), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(683), - [anon_sym_newtype] = ACTIONS(683), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(685), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -43961,29 +37350,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(699), - [anon_sym_echo] = ACTIONS(701), - [anon_sym_unset] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_foreach] = ACTIONS(715), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(719), - [anon_sym_for] = ACTIONS(721), - [anon_sym_try] = ACTIONS(723), - [anon_sym_using] = ACTIONS(725), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -44014,96 +37403,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_class] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(737), - [sym_xhp_modifier] = ACTIONS(739), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [151] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(779), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(779), - [sym_expression_statement] = STATE(779), - [sym_compound_statement] = STATE(779), - [sym_return_statement] = STATE(779), - [sym_break_statement] = STATE(779), - [sym_continue_statement] = STATE(779), - [sym_throw_statement] = STATE(779), - [sym_echo_statement] = STATE(779), - [sym_unset_statement] = STATE(779), - [sym_concurrent_statement] = STATE(779), - [sym_use_statement] = STATE(779), - [sym_if_statement] = STATE(779), - [sym_switch_statement] = STATE(779), - [sym_foreach_statement] = STATE(779), - [sym_while_statement] = STATE(779), - [sym_do_statement] = STATE(779), - [sym_for_statement] = STATE(779), - [sym_try_statement] = STATE(779), - [sym_using_statement] = STATE(779), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [150] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(764), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(764), + [sym_expression_statement] = STATE(764), + [sym_compound_statement] = STATE(764), + [sym_return_statement] = STATE(764), + [sym_break_statement] = STATE(764), + [sym_continue_statement] = STATE(764), + [sym_throw_statement] = STATE(764), + [sym_echo_statement] = STATE(764), + [sym_unset_statement] = STATE(764), + [sym_concurrent_statement] = STATE(764), + [sym_use_statement] = STATE(764), + [sym_if_statement] = STATE(764), + [sym_switch_statement] = STATE(764), + [sym_foreach_statement] = STATE(764), + [sym_while_statement] = STATE(764), + [sym_do_statement] = STATE(764), + [sym_for_statement] = STATE(764), + [sym_try_statement] = STATE(764), + [sym_using_statement] = STATE(764), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(779), - [sym_function_declaration] = STATE(779), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(764), + [sym_function_declaration] = STATE(764), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(779), - [sym_interface_declaration] = STATE(779), - [sym_class_declaration] = STATE(779), - [sym_const_declaration] = STATE(779), - [sym_enum_declaration] = STATE(779), - [sym_abstract_enum_class_declaration] = STATE(779), - [sym_enum_class_declaration] = STATE(779), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(779), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(764), + [sym_interface_declaration] = STATE(764), + [sym_class_declaration] = STATE(764), + [sym_const_declaration] = STATE(764), + [sym_enum_declaration] = STATE(764), + [sym_abstract_enum_class_declaration] = STATE(764), + [sym_enum_class_declaration] = STATE(764), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(764), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -44188,84 +37577,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [152] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(765), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(765), - [sym_expression_statement] = STATE(765), - [sym_compound_statement] = STATE(765), - [sym_return_statement] = STATE(765), - [sym_break_statement] = STATE(765), - [sym_continue_statement] = STATE(765), - [sym_throw_statement] = STATE(765), - [sym_echo_statement] = STATE(765), - [sym_unset_statement] = STATE(765), - [sym_concurrent_statement] = STATE(765), - [sym_use_statement] = STATE(765), - [sym_if_statement] = STATE(765), - [sym_switch_statement] = STATE(765), - [sym_foreach_statement] = STATE(765), - [sym_while_statement] = STATE(765), - [sym_do_statement] = STATE(765), - [sym_for_statement] = STATE(765), - [sym_try_statement] = STATE(765), - [sym_using_statement] = STATE(765), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [151] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(779), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_compound_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_throw_statement] = STATE(779), + [sym_echo_statement] = STATE(779), + [sym_unset_statement] = STATE(779), + [sym_concurrent_statement] = STATE(779), + [sym_use_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_foreach_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_try_statement] = STATE(779), + [sym_using_statement] = STATE(779), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(765), - [sym_function_declaration] = STATE(765), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(779), + [sym_function_declaration] = STATE(779), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(765), - [sym_interface_declaration] = STATE(765), - [sym_class_declaration] = STATE(765), - [sym_const_declaration] = STATE(765), - [sym_enum_declaration] = STATE(765), - [sym_abstract_enum_class_declaration] = STATE(765), - [sym_enum_class_declaration] = STATE(765), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(765), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(779), + [sym_interface_declaration] = STATE(779), + [sym_class_declaration] = STATE(779), + [sym_const_declaration] = STATE(779), + [sym_enum_declaration] = STATE(779), + [sym_abstract_enum_class_declaration] = STATE(779), + [sym_enum_class_declaration] = STATE(779), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(779), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -44350,84 +37739,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [153] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(836), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(836), - [sym_expression_statement] = STATE(836), - [sym_compound_statement] = STATE(836), - [sym_return_statement] = STATE(836), - [sym_break_statement] = STATE(836), - [sym_continue_statement] = STATE(836), - [sym_throw_statement] = STATE(836), - [sym_echo_statement] = STATE(836), - [sym_unset_statement] = STATE(836), - [sym_concurrent_statement] = STATE(836), - [sym_use_statement] = STATE(836), - [sym_if_statement] = STATE(836), - [sym_switch_statement] = STATE(836), - [sym_foreach_statement] = STATE(836), - [sym_while_statement] = STATE(836), - [sym_do_statement] = STATE(836), - [sym_for_statement] = STATE(836), - [sym_try_statement] = STATE(836), - [sym_using_statement] = STATE(836), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [152] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(780), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(780), + [sym_expression_statement] = STATE(780), + [sym_compound_statement] = STATE(780), + [sym_return_statement] = STATE(780), + [sym_break_statement] = STATE(780), + [sym_continue_statement] = STATE(780), + [sym_throw_statement] = STATE(780), + [sym_echo_statement] = STATE(780), + [sym_unset_statement] = STATE(780), + [sym_concurrent_statement] = STATE(780), + [sym_use_statement] = STATE(780), + [sym_if_statement] = STATE(780), + [sym_switch_statement] = STATE(780), + [sym_foreach_statement] = STATE(780), + [sym_while_statement] = STATE(780), + [sym_do_statement] = STATE(780), + [sym_for_statement] = STATE(780), + [sym_try_statement] = STATE(780), + [sym_using_statement] = STATE(780), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(780), + [sym_function_declaration] = STATE(780), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_const_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_abstract_enum_class_declaration] = STATE(836), - [sym_enum_class_declaration] = STATE(836), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(836), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(780), + [sym_interface_declaration] = STATE(780), + [sym_class_declaration] = STATE(780), + [sym_const_declaration] = STATE(780), + [sym_enum_declaration] = STATE(780), + [sym_abstract_enum_class_declaration] = STATE(780), + [sym_enum_class_declaration] = STATE(780), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(780), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -44512,84 +37901,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [154] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(740), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(740), - [sym_expression_statement] = STATE(740), - [sym_compound_statement] = STATE(740), - [sym_return_statement] = STATE(740), - [sym_break_statement] = STATE(740), - [sym_continue_statement] = STATE(740), - [sym_throw_statement] = STATE(740), - [sym_echo_statement] = STATE(740), - [sym_unset_statement] = STATE(740), - [sym_concurrent_statement] = STATE(740), - [sym_use_statement] = STATE(740), - [sym_if_statement] = STATE(740), - [sym_switch_statement] = STATE(740), - [sym_foreach_statement] = STATE(740), - [sym_while_statement] = STATE(740), - [sym_do_statement] = STATE(740), - [sym_for_statement] = STATE(740), - [sym_try_statement] = STATE(740), - [sym_using_statement] = STATE(740), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [153] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(791), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(791), + [sym_expression_statement] = STATE(791), + [sym_compound_statement] = STATE(791), + [sym_return_statement] = STATE(791), + [sym_break_statement] = STATE(791), + [sym_continue_statement] = STATE(791), + [sym_throw_statement] = STATE(791), + [sym_echo_statement] = STATE(791), + [sym_unset_statement] = STATE(791), + [sym_concurrent_statement] = STATE(791), + [sym_use_statement] = STATE(791), + [sym_if_statement] = STATE(791), + [sym_switch_statement] = STATE(791), + [sym_foreach_statement] = STATE(791), + [sym_while_statement] = STATE(791), + [sym_do_statement] = STATE(791), + [sym_for_statement] = STATE(791), + [sym_try_statement] = STATE(791), + [sym_using_statement] = STATE(791), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(740), - [sym_function_declaration] = STATE(740), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(791), + [sym_function_declaration] = STATE(791), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(740), - [sym_interface_declaration] = STATE(740), - [sym_class_declaration] = STATE(740), - [sym_const_declaration] = STATE(740), - [sym_enum_declaration] = STATE(740), - [sym_abstract_enum_class_declaration] = STATE(740), - [sym_enum_class_declaration] = STATE(740), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(740), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(791), + [sym_interface_declaration] = STATE(791), + [sym_class_declaration] = STATE(791), + [sym_const_declaration] = STATE(791), + [sym_enum_declaration] = STATE(791), + [sym_abstract_enum_class_declaration] = STATE(791), + [sym_enum_class_declaration] = STATE(791), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(791), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -44674,84 +38063,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [155] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(756), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(756), - [sym_expression_statement] = STATE(756), - [sym_compound_statement] = STATE(756), - [sym_return_statement] = STATE(756), - [sym_break_statement] = STATE(756), - [sym_continue_statement] = STATE(756), - [sym_throw_statement] = STATE(756), - [sym_echo_statement] = STATE(756), - [sym_unset_statement] = STATE(756), - [sym_concurrent_statement] = STATE(756), - [sym_use_statement] = STATE(756), - [sym_if_statement] = STATE(756), - [sym_switch_statement] = STATE(756), - [sym_foreach_statement] = STATE(756), - [sym_while_statement] = STATE(756), - [sym_do_statement] = STATE(756), - [sym_for_statement] = STATE(756), - [sym_try_statement] = STATE(756), - [sym_using_statement] = STATE(756), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [154] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(796), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(796), + [sym_expression_statement] = STATE(796), + [sym_compound_statement] = STATE(796), + [sym_return_statement] = STATE(796), + [sym_break_statement] = STATE(796), + [sym_continue_statement] = STATE(796), + [sym_throw_statement] = STATE(796), + [sym_echo_statement] = STATE(796), + [sym_unset_statement] = STATE(796), + [sym_concurrent_statement] = STATE(796), + [sym_use_statement] = STATE(796), + [sym_if_statement] = STATE(796), + [sym_switch_statement] = STATE(796), + [sym_foreach_statement] = STATE(796), + [sym_while_statement] = STATE(796), + [sym_do_statement] = STATE(796), + [sym_for_statement] = STATE(796), + [sym_try_statement] = STATE(796), + [sym_using_statement] = STATE(796), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(756), - [sym_function_declaration] = STATE(756), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(796), + [sym_function_declaration] = STATE(796), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(756), - [sym_interface_declaration] = STATE(756), - [sym_class_declaration] = STATE(756), - [sym_const_declaration] = STATE(756), - [sym_enum_declaration] = STATE(756), - [sym_abstract_enum_class_declaration] = STATE(756), - [sym_enum_class_declaration] = STATE(756), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(756), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(796), + [sym_interface_declaration] = STATE(796), + [sym_class_declaration] = STATE(796), + [sym_const_declaration] = STATE(796), + [sym_enum_declaration] = STATE(796), + [sym_abstract_enum_class_declaration] = STATE(796), + [sym_enum_class_declaration] = STATE(796), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(796), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -44836,95 +38225,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [156] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1192), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1192), - [sym_expression_statement] = STATE(1192), - [sym_compound_statement] = STATE(1192), - [sym_return_statement] = STATE(1192), - [sym_break_statement] = STATE(1192), - [sym_continue_statement] = STATE(1192), - [sym_throw_statement] = STATE(1192), - [sym_echo_statement] = STATE(1192), - [sym_unset_statement] = STATE(1192), - [sym_concurrent_statement] = STATE(1192), - [sym_use_statement] = STATE(1192), - [sym_if_statement] = STATE(1192), - [sym_switch_statement] = STATE(1192), - [sym_foreach_statement] = STATE(1192), - [sym_while_statement] = STATE(1192), - [sym_do_statement] = STATE(1192), - [sym_for_statement] = STATE(1192), - [sym_try_statement] = STATE(1192), - [sym_using_statement] = STATE(1192), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [155] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1362), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1362), + [sym_expression_statement] = STATE(1362), + [sym_compound_statement] = STATE(1362), + [sym_return_statement] = STATE(1362), + [sym_break_statement] = STATE(1362), + [sym_continue_statement] = STATE(1362), + [sym_throw_statement] = STATE(1362), + [sym_echo_statement] = STATE(1362), + [sym_unset_statement] = STATE(1362), + [sym_concurrent_statement] = STATE(1362), + [sym_use_statement] = STATE(1362), + [sym_if_statement] = STATE(1362), + [sym_switch_statement] = STATE(1362), + [sym_foreach_statement] = STATE(1362), + [sym_while_statement] = STATE(1362), + [sym_do_statement] = STATE(1362), + [sym_for_statement] = STATE(1362), + [sym_try_statement] = STATE(1362), + [sym_using_statement] = STATE(1362), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1192), - [sym_function_declaration] = STATE(1192), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1192), - [sym_interface_declaration] = STATE(1192), - [sym_class_declaration] = STATE(1192), - [sym_const_declaration] = STATE(1192), - [sym_enum_declaration] = STATE(1192), - [sym_abstract_enum_class_declaration] = STATE(1192), - [sym_enum_class_declaration] = STATE(1192), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1192), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1362), + [sym_function_declaration] = STATE(1362), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1362), + [sym_interface_declaration] = STATE(1362), + [sym_class_declaration] = STATE(1362), + [sym_const_declaration] = STATE(1362), + [sym_enum_declaration] = STATE(1362), + [sym_abstract_enum_class_declaration] = STATE(1362), + [sym_enum_class_declaration] = STATE(1362), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1362), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -44933,29 +38322,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -44986,107 +38375,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [157] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(890), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(890), - [sym_expression_statement] = STATE(890), - [sym_compound_statement] = STATE(890), - [sym_return_statement] = STATE(890), - [sym_break_statement] = STATE(890), - [sym_continue_statement] = STATE(890), - [sym_throw_statement] = STATE(890), - [sym_echo_statement] = STATE(890), - [sym_unset_statement] = STATE(890), - [sym_concurrent_statement] = STATE(890), - [sym_use_statement] = STATE(890), - [sym_if_statement] = STATE(890), - [sym_switch_statement] = STATE(890), - [sym_foreach_statement] = STATE(890), - [sym_while_statement] = STATE(890), - [sym_do_statement] = STATE(890), - [sym_for_statement] = STATE(890), - [sym_try_statement] = STATE(890), - [sym_using_statement] = STATE(890), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [156] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1462), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1462), + [sym_expression_statement] = STATE(1462), + [sym_compound_statement] = STATE(1462), + [sym_return_statement] = STATE(1462), + [sym_break_statement] = STATE(1462), + [sym_continue_statement] = STATE(1462), + [sym_throw_statement] = STATE(1462), + [sym_echo_statement] = STATE(1462), + [sym_unset_statement] = STATE(1462), + [sym_concurrent_statement] = STATE(1462), + [sym_use_statement] = STATE(1462), + [sym_if_statement] = STATE(1462), + [sym_switch_statement] = STATE(1462), + [sym_foreach_statement] = STATE(1462), + [sym_while_statement] = STATE(1462), + [sym_do_statement] = STATE(1462), + [sym_for_statement] = STATE(1462), + [sym_try_statement] = STATE(1462), + [sym_using_statement] = STATE(1462), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(890), - [sym_function_declaration] = STATE(890), - [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(890), - [sym_interface_declaration] = STATE(890), - [sym_class_declaration] = STATE(890), - [sym_const_declaration] = STATE(890), - [sym_enum_declaration] = STATE(890), - [sym_abstract_enum_class_declaration] = STATE(890), - [sym_enum_class_declaration] = STATE(890), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(890), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1462), + [sym_function_declaration] = STATE(1462), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1462), + [sym_interface_declaration] = STATE(1462), + [sym_class_declaration] = STATE(1462), + [sym_const_declaration] = STATE(1462), + [sym_enum_declaration] = STATE(1462), + [sym_abstract_enum_class_declaration] = STATE(1462), + [sym_enum_class_declaration] = STATE(1462), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1462), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(683), - [anon_sym_newtype] = ACTIONS(683), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(685), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -45095,29 +38484,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(699), - [anon_sym_echo] = ACTIONS(701), - [anon_sym_unset] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(705), - [anon_sym_use] = ACTIONS(707), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_foreach] = ACTIONS(715), - [anon_sym_while] = ACTIONS(717), - [anon_sym_do] = ACTIONS(719), - [anon_sym_for] = ACTIONS(721), - [anon_sym_try] = ACTIONS(723), - [anon_sym_using] = ACTIONS(725), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -45148,96 +38537,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_class] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(735), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(737), - [sym_xhp_modifier] = ACTIONS(739), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(5857), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(5857), - [sym_expression_statement] = STATE(5857), - [sym_compound_statement] = STATE(5857), - [sym_return_statement] = STATE(5857), - [sym_break_statement] = STATE(5857), - [sym_continue_statement] = STATE(5857), - [sym_throw_statement] = STATE(5857), - [sym_echo_statement] = STATE(5857), - [sym_unset_statement] = STATE(5857), - [sym_concurrent_statement] = STATE(5857), - [sym_use_statement] = STATE(5857), - [sym_if_statement] = STATE(5857), - [sym_switch_statement] = STATE(5857), - [sym_foreach_statement] = STATE(5857), - [sym_while_statement] = STATE(5857), - [sym_do_statement] = STATE(5857), - [sym_for_statement] = STATE(5857), - [sym_try_statement] = STATE(5857), - [sym_using_statement] = STATE(5857), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [157] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1460), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1460), + [sym_expression_statement] = STATE(1460), + [sym_compound_statement] = STATE(1460), + [sym_return_statement] = STATE(1460), + [sym_break_statement] = STATE(1460), + [sym_continue_statement] = STATE(1460), + [sym_throw_statement] = STATE(1460), + [sym_echo_statement] = STATE(1460), + [sym_unset_statement] = STATE(1460), + [sym_concurrent_statement] = STATE(1460), + [sym_use_statement] = STATE(1460), + [sym_if_statement] = STATE(1460), + [sym_switch_statement] = STATE(1460), + [sym_foreach_statement] = STATE(1460), + [sym_while_statement] = STATE(1460), + [sym_do_statement] = STATE(1460), + [sym_for_statement] = STATE(1460), + [sym_try_statement] = STATE(1460), + [sym_using_statement] = STATE(1460), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(5857), - [sym_function_declaration] = STATE(5857), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(5857), - [sym_interface_declaration] = STATE(5857), - [sym_class_declaration] = STATE(5857), - [sym_const_declaration] = STATE(5857), - [sym_enum_declaration] = STATE(5857), - [sym_abstract_enum_class_declaration] = STATE(5857), - [sym_enum_class_declaration] = STATE(5857), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(5857), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1460), + [sym_function_declaration] = STATE(1460), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1460), + [sym_interface_declaration] = STATE(1460), + [sym_class_declaration] = STATE(1460), + [sym_const_declaration] = STATE(1460), + [sym_enum_declaration] = STATE(1460), + [sym_abstract_enum_class_declaration] = STATE(1460), + [sym_enum_class_declaration] = STATE(1460), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1460), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -45248,7 +38637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -45272,13 +38661,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(67), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -45322,95 +38711,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(909), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(909), - [sym_expression_statement] = STATE(909), - [sym_compound_statement] = STATE(909), - [sym_return_statement] = STATE(909), - [sym_break_statement] = STATE(909), - [sym_continue_statement] = STATE(909), - [sym_throw_statement] = STATE(909), - [sym_echo_statement] = STATE(909), - [sym_unset_statement] = STATE(909), - [sym_concurrent_statement] = STATE(909), - [sym_use_statement] = STATE(909), - [sym_if_statement] = STATE(909), - [sym_switch_statement] = STATE(909), - [sym_foreach_statement] = STATE(909), - [sym_while_statement] = STATE(909), - [sym_do_statement] = STATE(909), - [sym_for_statement] = STATE(909), - [sym_try_statement] = STATE(909), - [sym_using_statement] = STATE(909), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [158] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1375), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_compound_statement] = STATE(1375), + [sym_return_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_throw_statement] = STATE(1375), + [sym_echo_statement] = STATE(1375), + [sym_unset_statement] = STATE(1375), + [sym_concurrent_statement] = STATE(1375), + [sym_use_statement] = STATE(1375), + [sym_if_statement] = STATE(1375), + [sym_switch_statement] = STATE(1375), + [sym_foreach_statement] = STATE(1375), + [sym_while_statement] = STATE(1375), + [sym_do_statement] = STATE(1375), + [sym_for_statement] = STATE(1375), + [sym_try_statement] = STATE(1375), + [sym_using_statement] = STATE(1375), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(909), - [sym_function_declaration] = STATE(909), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(909), - [sym_interface_declaration] = STATE(909), - [sym_class_declaration] = STATE(909), - [sym_const_declaration] = STATE(909), - [sym_enum_declaration] = STATE(909), - [sym_abstract_enum_class_declaration] = STATE(909), - [sym_enum_class_declaration] = STATE(909), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(909), - [sym_abstract_modifier] = STATE(4145), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1375), + [sym_function_declaration] = STATE(1375), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1375), + [sym_interface_declaration] = STATE(1375), + [sym_class_declaration] = STATE(1375), + [sym_const_declaration] = STATE(1375), + [sym_enum_declaration] = STATE(1375), + [sym_abstract_enum_class_declaration] = STATE(1375), + [sym_enum_class_declaration] = STATE(1375), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1375), + [sym_abstract_modifier] = STATE(4136), [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -45419,29 +38808,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -45472,107 +38861,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [160] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(911), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(911), - [sym_expression_statement] = STATE(911), - [sym_compound_statement] = STATE(911), - [sym_return_statement] = STATE(911), - [sym_break_statement] = STATE(911), - [sym_continue_statement] = STATE(911), - [sym_throw_statement] = STATE(911), - [sym_echo_statement] = STATE(911), - [sym_unset_statement] = STATE(911), - [sym_concurrent_statement] = STATE(911), - [sym_use_statement] = STATE(911), - [sym_if_statement] = STATE(911), - [sym_switch_statement] = STATE(911), - [sym_foreach_statement] = STATE(911), - [sym_while_statement] = STATE(911), - [sym_do_statement] = STATE(911), - [sym_for_statement] = STATE(911), - [sym_try_statement] = STATE(911), - [sym_using_statement] = STATE(911), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [159] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4323), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4323), + [sym_expression_statement] = STATE(4323), + [sym_compound_statement] = STATE(4323), + [sym_return_statement] = STATE(4323), + [sym_break_statement] = STATE(4323), + [sym_continue_statement] = STATE(4323), + [sym_throw_statement] = STATE(4323), + [sym_echo_statement] = STATE(4323), + [sym_unset_statement] = STATE(4323), + [sym_concurrent_statement] = STATE(4323), + [sym_use_statement] = STATE(4323), + [sym_if_statement] = STATE(4323), + [sym_switch_statement] = STATE(4323), + [sym_foreach_statement] = STATE(4323), + [sym_while_statement] = STATE(4323), + [sym_do_statement] = STATE(4323), + [sym_for_statement] = STATE(4323), + [sym_try_statement] = STATE(4323), + [sym_using_statement] = STATE(4323), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(911), - [sym_function_declaration] = STATE(911), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(911), - [sym_interface_declaration] = STATE(911), - [sym_class_declaration] = STATE(911), - [sym_const_declaration] = STATE(911), - [sym_enum_declaration] = STATE(911), - [sym_abstract_enum_class_declaration] = STATE(911), - [sym_enum_class_declaration] = STATE(911), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(911), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4323), + [sym_function_declaration] = STATE(4323), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4323), + [sym_interface_declaration] = STATE(4323), + [sym_class_declaration] = STATE(4323), + [sym_const_declaration] = STATE(4323), + [sym_enum_declaration] = STATE(4323), + [sym_abstract_enum_class_declaration] = STATE(4323), + [sym_enum_class_declaration] = STATE(4323), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4323), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -45581,29 +38970,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -45634,96 +39023,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [161] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1462), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1462), - [sym_expression_statement] = STATE(1462), - [sym_compound_statement] = STATE(1462), - [sym_return_statement] = STATE(1462), - [sym_break_statement] = STATE(1462), - [sym_continue_statement] = STATE(1462), - [sym_throw_statement] = STATE(1462), - [sym_echo_statement] = STATE(1462), - [sym_unset_statement] = STATE(1462), - [sym_concurrent_statement] = STATE(1462), - [sym_use_statement] = STATE(1462), - [sym_if_statement] = STATE(1462), - [sym_switch_statement] = STATE(1462), - [sym_foreach_statement] = STATE(1462), - [sym_while_statement] = STATE(1462), - [sym_do_statement] = STATE(1462), - [sym_for_statement] = STATE(1462), - [sym_try_statement] = STATE(1462), - [sym_using_statement] = STATE(1462), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [160] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(5860), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(5860), + [sym_expression_statement] = STATE(5860), + [sym_compound_statement] = STATE(5860), + [sym_return_statement] = STATE(5860), + [sym_break_statement] = STATE(5860), + [sym_continue_statement] = STATE(5860), + [sym_throw_statement] = STATE(5860), + [sym_echo_statement] = STATE(5860), + [sym_unset_statement] = STATE(5860), + [sym_concurrent_statement] = STATE(5860), + [sym_use_statement] = STATE(5860), + [sym_if_statement] = STATE(5860), + [sym_switch_statement] = STATE(5860), + [sym_foreach_statement] = STATE(5860), + [sym_while_statement] = STATE(5860), + [sym_do_statement] = STATE(5860), + [sym_for_statement] = STATE(5860), + [sym_try_statement] = STATE(5860), + [sym_using_statement] = STATE(5860), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1462), - [sym_function_declaration] = STATE(1462), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1462), - [sym_interface_declaration] = STATE(1462), - [sym_class_declaration] = STATE(1462), - [sym_const_declaration] = STATE(1462), - [sym_enum_declaration] = STATE(1462), - [sym_abstract_enum_class_declaration] = STATE(1462), - [sym_enum_class_declaration] = STATE(1462), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1462), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(5860), + [sym_function_declaration] = STATE(5860), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(5860), + [sym_interface_declaration] = STATE(5860), + [sym_class_declaration] = STATE(5860), + [sym_const_declaration] = STATE(5860), + [sym_enum_declaration] = STATE(5860), + [sym_abstract_enum_class_declaration] = STATE(5860), + [sym_enum_class_declaration] = STATE(5860), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(5860), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -45734,7 +39123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -45758,13 +39147,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -45808,95 +39197,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [162] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1460), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1460), - [sym_expression_statement] = STATE(1460), - [sym_compound_statement] = STATE(1460), - [sym_return_statement] = STATE(1460), - [sym_break_statement] = STATE(1460), - [sym_continue_statement] = STATE(1460), - [sym_throw_statement] = STATE(1460), - [sym_echo_statement] = STATE(1460), - [sym_unset_statement] = STATE(1460), - [sym_concurrent_statement] = STATE(1460), - [sym_use_statement] = STATE(1460), - [sym_if_statement] = STATE(1460), - [sym_switch_statement] = STATE(1460), - [sym_foreach_statement] = STATE(1460), - [sym_while_statement] = STATE(1460), - [sym_do_statement] = STATE(1460), - [sym_for_statement] = STATE(1460), - [sym_try_statement] = STATE(1460), - [sym_using_statement] = STATE(1460), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [161] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(919), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(919), + [sym_expression_statement] = STATE(919), + [sym_compound_statement] = STATE(919), + [sym_return_statement] = STATE(919), + [sym_break_statement] = STATE(919), + [sym_continue_statement] = STATE(919), + [sym_throw_statement] = STATE(919), + [sym_echo_statement] = STATE(919), + [sym_unset_statement] = STATE(919), + [sym_concurrent_statement] = STATE(919), + [sym_use_statement] = STATE(919), + [sym_if_statement] = STATE(919), + [sym_switch_statement] = STATE(919), + [sym_foreach_statement] = STATE(919), + [sym_while_statement] = STATE(919), + [sym_do_statement] = STATE(919), + [sym_for_statement] = STATE(919), + [sym_try_statement] = STATE(919), + [sym_using_statement] = STATE(919), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1460), - [sym_function_declaration] = STATE(1460), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1460), - [sym_interface_declaration] = STATE(1460), - [sym_class_declaration] = STATE(1460), - [sym_const_declaration] = STATE(1460), - [sym_enum_declaration] = STATE(1460), - [sym_abstract_enum_class_declaration] = STATE(1460), - [sym_enum_class_declaration] = STATE(1460), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1460), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(919), + [sym_function_declaration] = STATE(919), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(919), + [sym_interface_declaration] = STATE(919), + [sym_class_declaration] = STATE(919), + [sym_const_declaration] = STATE(919), + [sym_enum_declaration] = STATE(919), + [sym_abstract_enum_class_declaration] = STATE(919), + [sym_enum_class_declaration] = STATE(919), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(919), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -45905,29 +39294,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -45958,107 +39347,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [163] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1381), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(1381), - [sym_expression_statement] = STATE(1381), - [sym_compound_statement] = STATE(1381), - [sym_return_statement] = STATE(1381), - [sym_break_statement] = STATE(1381), - [sym_continue_statement] = STATE(1381), - [sym_throw_statement] = STATE(1381), - [sym_echo_statement] = STATE(1381), - [sym_unset_statement] = STATE(1381), - [sym_concurrent_statement] = STATE(1381), - [sym_use_statement] = STATE(1381), - [sym_if_statement] = STATE(1381), - [sym_switch_statement] = STATE(1381), - [sym_foreach_statement] = STATE(1381), - [sym_while_statement] = STATE(1381), - [sym_do_statement] = STATE(1381), - [sym_for_statement] = STATE(1381), - [sym_try_statement] = STATE(1381), - [sym_using_statement] = STATE(1381), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [162] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(966), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(966), + [sym_expression_statement] = STATE(966), + [sym_compound_statement] = STATE(966), + [sym_return_statement] = STATE(966), + [sym_break_statement] = STATE(966), + [sym_continue_statement] = STATE(966), + [sym_throw_statement] = STATE(966), + [sym_echo_statement] = STATE(966), + [sym_unset_statement] = STATE(966), + [sym_concurrent_statement] = STATE(966), + [sym_use_statement] = STATE(966), + [sym_if_statement] = STATE(966), + [sym_switch_statement] = STATE(966), + [sym_foreach_statement] = STATE(966), + [sym_while_statement] = STATE(966), + [sym_do_statement] = STATE(966), + [sym_for_statement] = STATE(966), + [sym_try_statement] = STATE(966), + [sym_using_statement] = STATE(966), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1381), - [sym_function_declaration] = STATE(1381), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1381), - [sym_interface_declaration] = STATE(1381), - [sym_class_declaration] = STATE(1381), - [sym_const_declaration] = STATE(1381), - [sym_enum_declaration] = STATE(1381), - [sym_abstract_enum_class_declaration] = STATE(1381), - [sym_enum_class_declaration] = STATE(1381), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1381), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(966), + [sym_function_declaration] = STATE(966), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(966), + [sym_interface_declaration] = STATE(966), + [sym_class_declaration] = STATE(966), + [sym_const_declaration] = STATE(966), + [sym_enum_declaration] = STATE(966), + [sym_abstract_enum_class_declaration] = STATE(966), + [sym_enum_class_declaration] = STATE(966), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(966), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -46067,29 +39456,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -46120,96 +39509,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [164] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(877), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_empty_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_compound_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_throw_statement] = STATE(877), - [sym_echo_statement] = STATE(877), - [sym_unset_statement] = STATE(877), - [sym_concurrent_statement] = STATE(877), - [sym_use_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_foreach_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_try_statement] = STATE(877), - [sym_using_statement] = STATE(877), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [163] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(777), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(777), + [sym_expression_statement] = STATE(777), + [sym_compound_statement] = STATE(777), + [sym_return_statement] = STATE(777), + [sym_break_statement] = STATE(777), + [sym_continue_statement] = STATE(777), + [sym_throw_statement] = STATE(777), + [sym_echo_statement] = STATE(777), + [sym_unset_statement] = STATE(777), + [sym_concurrent_statement] = STATE(777), + [sym_use_statement] = STATE(777), + [sym_if_statement] = STATE(777), + [sym_switch_statement] = STATE(777), + [sym_foreach_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_do_statement] = STATE(777), + [sym_for_statement] = STATE(777), + [sym_try_statement] = STATE(777), + [sym_using_statement] = STATE(777), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(877), - [sym_function_declaration] = STATE(877), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(777), + [sym_function_declaration] = STATE(777), [sym__function_declaration_header] = STATE(4786), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(877), - [sym_interface_declaration] = STATE(877), - [sym_class_declaration] = STATE(877), - [sym_const_declaration] = STATE(877), - [sym_enum_declaration] = STATE(877), - [sym_abstract_enum_class_declaration] = STATE(877), - [sym_enum_class_declaration] = STATE(877), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(877), - [sym_abstract_modifier] = STATE(4044), - [sym_attribute_modifier] = STATE(3527), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5903), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(777), + [sym_interface_declaration] = STATE(777), + [sym_class_declaration] = STATE(777), + [sym_const_declaration] = STATE(777), + [sym_enum_declaration] = STATE(777), + [sym_abstract_enum_class_declaration] = STATE(777), + [sym_enum_class_declaration] = STATE(777), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(777), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -46294,95 +39683,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(914), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(914), - [sym_expression_statement] = STATE(914), - [sym_compound_statement] = STATE(914), - [sym_return_statement] = STATE(914), - [sym_break_statement] = STATE(914), - [sym_continue_statement] = STATE(914), - [sym_throw_statement] = STATE(914), - [sym_echo_statement] = STATE(914), - [sym_unset_statement] = STATE(914), - [sym_concurrent_statement] = STATE(914), - [sym_use_statement] = STATE(914), - [sym_if_statement] = STATE(914), - [sym_switch_statement] = STATE(914), - [sym_foreach_statement] = STATE(914), - [sym_while_statement] = STATE(914), - [sym_do_statement] = STATE(914), - [sym_for_statement] = STATE(914), - [sym_try_statement] = STATE(914), - [sym_using_statement] = STATE(914), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [164] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(905), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(905), + [sym_expression_statement] = STATE(905), + [sym_compound_statement] = STATE(905), + [sym_return_statement] = STATE(905), + [sym_break_statement] = STATE(905), + [sym_continue_statement] = STATE(905), + [sym_throw_statement] = STATE(905), + [sym_echo_statement] = STATE(905), + [sym_unset_statement] = STATE(905), + [sym_concurrent_statement] = STATE(905), + [sym_use_statement] = STATE(905), + [sym_if_statement] = STATE(905), + [sym_switch_statement] = STATE(905), + [sym_foreach_statement] = STATE(905), + [sym_while_statement] = STATE(905), + [sym_do_statement] = STATE(905), + [sym_for_statement] = STATE(905), + [sym_try_statement] = STATE(905), + [sym_using_statement] = STATE(905), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(914), - [sym_function_declaration] = STATE(914), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(914), - [sym_interface_declaration] = STATE(914), - [sym_class_declaration] = STATE(914), - [sym_const_declaration] = STATE(914), - [sym_enum_declaration] = STATE(914), - [sym_abstract_enum_class_declaration] = STATE(914), - [sym_enum_class_declaration] = STATE(914), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(914), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(905), + [sym_function_declaration] = STATE(905), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(905), + [sym_interface_declaration] = STATE(905), + [sym_class_declaration] = STATE(905), + [sym_const_declaration] = STATE(905), + [sym_enum_declaration] = STATE(905), + [sym_abstract_enum_class_declaration] = STATE(905), + [sym_enum_class_declaration] = STATE(905), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(905), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -46391,29 +39780,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -46444,107 +39833,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [166] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(5898), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(5898), - [sym_expression_statement] = STATE(5898), - [sym_compound_statement] = STATE(5898), - [sym_return_statement] = STATE(5898), - [sym_break_statement] = STATE(5898), - [sym_continue_statement] = STATE(5898), - [sym_throw_statement] = STATE(5898), - [sym_echo_statement] = STATE(5898), - [sym_unset_statement] = STATE(5898), - [sym_concurrent_statement] = STATE(5898), - [sym_use_statement] = STATE(5898), - [sym_if_statement] = STATE(5898), - [sym_switch_statement] = STATE(5898), - [sym_foreach_statement] = STATE(5898), - [sym_while_statement] = STATE(5898), - [sym_do_statement] = STATE(5898), - [sym_for_statement] = STATE(5898), - [sym_try_statement] = STATE(5898), - [sym_using_statement] = STATE(5898), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [165] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(890), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_empty_statement] = STATE(890), + [sym_expression_statement] = STATE(890), + [sym_compound_statement] = STATE(890), + [sym_return_statement] = STATE(890), + [sym_break_statement] = STATE(890), + [sym_continue_statement] = STATE(890), + [sym_throw_statement] = STATE(890), + [sym_echo_statement] = STATE(890), + [sym_unset_statement] = STATE(890), + [sym_concurrent_statement] = STATE(890), + [sym_use_statement] = STATE(890), + [sym_if_statement] = STATE(890), + [sym_switch_statement] = STATE(890), + [sym_foreach_statement] = STATE(890), + [sym_while_statement] = STATE(890), + [sym_do_statement] = STATE(890), + [sym_for_statement] = STATE(890), + [sym_try_statement] = STATE(890), + [sym_using_statement] = STATE(890), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(5898), - [sym_function_declaration] = STATE(5898), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(5898), - [sym_interface_declaration] = STATE(5898), - [sym_class_declaration] = STATE(5898), - [sym_const_declaration] = STATE(5898), - [sym_enum_declaration] = STATE(5898), - [sym_abstract_enum_class_declaration] = STATE(5898), - [sym_enum_class_declaration] = STATE(5898), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(5898), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(890), + [sym_function_declaration] = STATE(890), + [sym__function_declaration_header] = STATE(4786), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(890), + [sym_interface_declaration] = STATE(890), + [sym_class_declaration] = STATE(890), + [sym_const_declaration] = STATE(890), + [sym_enum_declaration] = STATE(890), + [sym_abstract_enum_class_declaration] = STATE(890), + [sym_enum_class_declaration] = STATE(890), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(890), + [sym_abstract_modifier] = STATE(4137), + [sym_attribute_modifier] = STATE(3524), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5900), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(683), + [anon_sym_newtype] = ACTIONS(683), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(685), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -46553,29 +39942,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(687), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_return] = ACTIONS(693), + [anon_sym_break] = ACTIONS(695), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(699), + [anon_sym_echo] = ACTIONS(701), + [anon_sym_unset] = ACTIONS(703), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(705), + [anon_sym_use] = ACTIONS(707), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(709), + [anon_sym_if] = ACTIONS(711), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_foreach] = ACTIONS(715), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(719), + [anon_sym_for] = ACTIONS(721), + [anon_sym_try] = ACTIONS(723), + [anon_sym_using] = ACTIONS(725), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -46606,107 +39995,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(727), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_class] = ACTIONS(731), + [anon_sym_enum] = ACTIONS(733), + [anon_sym_abstract] = ACTIONS(735), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(737), + [sym_xhp_modifier] = ACTIONS(739), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [167] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1230), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1230), - [sym_expression_statement] = STATE(1230), - [sym_compound_statement] = STATE(1230), - [sym_return_statement] = STATE(1230), - [sym_break_statement] = STATE(1230), - [sym_continue_statement] = STATE(1230), - [sym_throw_statement] = STATE(1230), - [sym_echo_statement] = STATE(1230), - [sym_unset_statement] = STATE(1230), - [sym_concurrent_statement] = STATE(1230), - [sym_use_statement] = STATE(1230), - [sym_if_statement] = STATE(1230), - [sym_switch_statement] = STATE(1230), - [sym_foreach_statement] = STATE(1230), - [sym_while_statement] = STATE(1230), - [sym_do_statement] = STATE(1230), - [sym_for_statement] = STATE(1230), - [sym_try_statement] = STATE(1230), - [sym_using_statement] = STATE(1230), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [166] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1012), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1012), + [sym_expression_statement] = STATE(1012), + [sym_compound_statement] = STATE(1012), + [sym_return_statement] = STATE(1012), + [sym_break_statement] = STATE(1012), + [sym_continue_statement] = STATE(1012), + [sym_throw_statement] = STATE(1012), + [sym_echo_statement] = STATE(1012), + [sym_unset_statement] = STATE(1012), + [sym_concurrent_statement] = STATE(1012), + [sym_use_statement] = STATE(1012), + [sym_if_statement] = STATE(1012), + [sym_switch_statement] = STATE(1012), + [sym_foreach_statement] = STATE(1012), + [sym_while_statement] = STATE(1012), + [sym_do_statement] = STATE(1012), + [sym_for_statement] = STATE(1012), + [sym_try_statement] = STATE(1012), + [sym_using_statement] = STATE(1012), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1230), - [sym_function_declaration] = STATE(1230), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1230), - [sym_interface_declaration] = STATE(1230), - [sym_class_declaration] = STATE(1230), - [sym_const_declaration] = STATE(1230), - [sym_enum_declaration] = STATE(1230), - [sym_abstract_enum_class_declaration] = STATE(1230), - [sym_enum_class_declaration] = STATE(1230), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1230), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1012), + [sym_function_declaration] = STATE(1012), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1012), + [sym_interface_declaration] = STATE(1012), + [sym_class_declaration] = STATE(1012), + [sym_const_declaration] = STATE(1012), + [sym_enum_declaration] = STATE(1012), + [sym_abstract_enum_class_declaration] = STATE(1012), + [sym_enum_class_declaration] = STATE(1012), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1012), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -46715,29 +40104,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -46768,107 +40157,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [168] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(908), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(908), - [sym_expression_statement] = STATE(908), - [sym_compound_statement] = STATE(908), - [sym_return_statement] = STATE(908), - [sym_break_statement] = STATE(908), - [sym_continue_statement] = STATE(908), - [sym_throw_statement] = STATE(908), - [sym_echo_statement] = STATE(908), - [sym_unset_statement] = STATE(908), - [sym_concurrent_statement] = STATE(908), - [sym_use_statement] = STATE(908), - [sym_if_statement] = STATE(908), - [sym_switch_statement] = STATE(908), - [sym_foreach_statement] = STATE(908), - [sym_while_statement] = STATE(908), - [sym_do_statement] = STATE(908), - [sym_for_statement] = STATE(908), - [sym_try_statement] = STATE(908), - [sym_using_statement] = STATE(908), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [167] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(909), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(909), + [sym_expression_statement] = STATE(909), + [sym_compound_statement] = STATE(909), + [sym_return_statement] = STATE(909), + [sym_break_statement] = STATE(909), + [sym_continue_statement] = STATE(909), + [sym_throw_statement] = STATE(909), + [sym_echo_statement] = STATE(909), + [sym_unset_statement] = STATE(909), + [sym_concurrent_statement] = STATE(909), + [sym_use_statement] = STATE(909), + [sym_if_statement] = STATE(909), + [sym_switch_statement] = STATE(909), + [sym_foreach_statement] = STATE(909), + [sym_while_statement] = STATE(909), + [sym_do_statement] = STATE(909), + [sym_for_statement] = STATE(909), + [sym_try_statement] = STATE(909), + [sym_using_statement] = STATE(909), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(908), - [sym_function_declaration] = STATE(908), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(908), - [sym_interface_declaration] = STATE(908), - [sym_class_declaration] = STATE(908), - [sym_const_declaration] = STATE(908), - [sym_enum_declaration] = STATE(908), - [sym_abstract_enum_class_declaration] = STATE(908), - [sym_enum_class_declaration] = STATE(908), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(908), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(909), + [sym_function_declaration] = STATE(909), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(909), + [sym_interface_declaration] = STATE(909), + [sym_class_declaration] = STATE(909), + [sym_const_declaration] = STATE(909), + [sym_enum_declaration] = STATE(909), + [sym_abstract_enum_class_declaration] = STATE(909), + [sym_enum_class_declaration] = STATE(909), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(909), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -46877,29 +40266,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -46930,107 +40319,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [169] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(915), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_empty_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_compound_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_throw_statement] = STATE(915), - [sym_echo_statement] = STATE(915), - [sym_unset_statement] = STATE(915), - [sym_concurrent_statement] = STATE(915), - [sym_use_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_foreach_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_try_statement] = STATE(915), - [sym_using_statement] = STATE(915), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [168] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(904), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(904), + [sym_expression_statement] = STATE(904), + [sym_compound_statement] = STATE(904), + [sym_return_statement] = STATE(904), + [sym_break_statement] = STATE(904), + [sym_continue_statement] = STATE(904), + [sym_throw_statement] = STATE(904), + [sym_echo_statement] = STATE(904), + [sym_unset_statement] = STATE(904), + [sym_concurrent_statement] = STATE(904), + [sym_use_statement] = STATE(904), + [sym_if_statement] = STATE(904), + [sym_switch_statement] = STATE(904), + [sym_foreach_statement] = STATE(904), + [sym_while_statement] = STATE(904), + [sym_do_statement] = STATE(904), + [sym_for_statement] = STATE(904), + [sym_try_statement] = STATE(904), + [sym_using_statement] = STATE(904), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(915), - [sym_function_declaration] = STATE(915), - [sym__function_declaration_header] = STATE(5260), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(915), - [sym_interface_declaration] = STATE(915), - [sym_class_declaration] = STATE(915), - [sym_const_declaration] = STATE(915), - [sym_enum_declaration] = STATE(915), - [sym_abstract_enum_class_declaration] = STATE(915), - [sym_enum_class_declaration] = STATE(915), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(915), - [sym_abstract_modifier] = STATE(4111), - [sym_attribute_modifier] = STATE(3528), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5865), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(904), + [sym_function_declaration] = STATE(904), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(904), + [sym_interface_declaration] = STATE(904), + [sym_class_declaration] = STATE(904), + [sym_const_declaration] = STATE(904), + [sym_enum_declaration] = STATE(904), + [sym_abstract_enum_class_declaration] = STATE(904), + [sym_enum_class_declaration] = STATE(904), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(904), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(799), - [anon_sym_newtype] = ACTIONS(799), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -47039,29 +40428,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_return] = ACTIONS(809), - [anon_sym_break] = ACTIONS(811), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(815), - [anon_sym_echo] = ACTIONS(817), - [anon_sym_unset] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(821), - [anon_sym_use] = ACTIONS(823), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(825), - [anon_sym_if] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_foreach] = ACTIONS(831), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(835), - [anon_sym_for] = ACTIONS(837), - [anon_sym_try] = ACTIONS(839), - [anon_sym_using] = ACTIONS(841), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -47092,107 +40481,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_class] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(851), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(853), - [sym_xhp_modifier] = ACTIONS(855), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [170] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(905), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(905), - [sym_expression_statement] = STATE(905), - [sym_compound_statement] = STATE(905), - [sym_return_statement] = STATE(905), - [sym_break_statement] = STATE(905), - [sym_continue_statement] = STATE(905), - [sym_throw_statement] = STATE(905), - [sym_echo_statement] = STATE(905), - [sym_unset_statement] = STATE(905), - [sym_concurrent_statement] = STATE(905), - [sym_use_statement] = STATE(905), - [sym_if_statement] = STATE(905), - [sym_switch_statement] = STATE(905), - [sym_foreach_statement] = STATE(905), - [sym_while_statement] = STATE(905), - [sym_do_statement] = STATE(905), - [sym_for_statement] = STATE(905), - [sym_try_statement] = STATE(905), - [sym_using_statement] = STATE(905), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [169] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(906), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(906), + [sym_expression_statement] = STATE(906), + [sym_compound_statement] = STATE(906), + [sym_return_statement] = STATE(906), + [sym_break_statement] = STATE(906), + [sym_continue_statement] = STATE(906), + [sym_throw_statement] = STATE(906), + [sym_echo_statement] = STATE(906), + [sym_unset_statement] = STATE(906), + [sym_concurrent_statement] = STATE(906), + [sym_use_statement] = STATE(906), + [sym_if_statement] = STATE(906), + [sym_switch_statement] = STATE(906), + [sym_foreach_statement] = STATE(906), + [sym_while_statement] = STATE(906), + [sym_do_statement] = STATE(906), + [sym_for_statement] = STATE(906), + [sym_try_statement] = STATE(906), + [sym_using_statement] = STATE(906), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(905), - [sym_function_declaration] = STATE(905), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(905), - [sym_interface_declaration] = STATE(905), - [sym_class_declaration] = STATE(905), - [sym_const_declaration] = STATE(905), - [sym_enum_declaration] = STATE(905), - [sym_abstract_enum_class_declaration] = STATE(905), - [sym_enum_class_declaration] = STATE(905), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(905), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(906), + [sym_function_declaration] = STATE(906), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(906), + [sym_interface_declaration] = STATE(906), + [sym_class_declaration] = STATE(906), + [sym_const_declaration] = STATE(906), + [sym_enum_declaration] = STATE(906), + [sym_abstract_enum_class_declaration] = STATE(906), + [sym_enum_class_declaration] = STATE(906), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(906), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -47201,29 +40590,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -47254,96 +40643,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [171] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1667), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1667), - [sym_expression_statement] = STATE(1667), - [sym_compound_statement] = STATE(1667), - [sym_return_statement] = STATE(1667), - [sym_break_statement] = STATE(1667), - [sym_continue_statement] = STATE(1667), - [sym_throw_statement] = STATE(1667), - [sym_echo_statement] = STATE(1667), - [sym_unset_statement] = STATE(1667), - [sym_concurrent_statement] = STATE(1667), - [sym_use_statement] = STATE(1667), - [sym_if_statement] = STATE(1667), - [sym_switch_statement] = STATE(1667), - [sym_foreach_statement] = STATE(1667), - [sym_while_statement] = STATE(1667), - [sym_do_statement] = STATE(1667), - [sym_for_statement] = STATE(1667), - [sym_try_statement] = STATE(1667), - [sym_using_statement] = STATE(1667), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [170] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1471), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1471), + [sym_expression_statement] = STATE(1471), + [sym_compound_statement] = STATE(1471), + [sym_return_statement] = STATE(1471), + [sym_break_statement] = STATE(1471), + [sym_continue_statement] = STATE(1471), + [sym_throw_statement] = STATE(1471), + [sym_echo_statement] = STATE(1471), + [sym_unset_statement] = STATE(1471), + [sym_concurrent_statement] = STATE(1471), + [sym_use_statement] = STATE(1471), + [sym_if_statement] = STATE(1471), + [sym_switch_statement] = STATE(1471), + [sym_foreach_statement] = STATE(1471), + [sym_while_statement] = STATE(1471), + [sym_do_statement] = STATE(1471), + [sym_for_statement] = STATE(1471), + [sym_try_statement] = STATE(1471), + [sym_using_statement] = STATE(1471), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1667), - [sym_function_declaration] = STATE(1667), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1667), - [sym_interface_declaration] = STATE(1667), - [sym_class_declaration] = STATE(1667), - [sym_const_declaration] = STATE(1667), - [sym_enum_declaration] = STATE(1667), - [sym_abstract_enum_class_declaration] = STATE(1667), - [sym_enum_class_declaration] = STATE(1667), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1667), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1471), + [sym_function_declaration] = STATE(1471), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1471), + [sym_interface_declaration] = STATE(1471), + [sym_class_declaration] = STATE(1471), + [sym_const_declaration] = STATE(1471), + [sym_enum_declaration] = STATE(1471), + [sym_abstract_enum_class_declaration] = STATE(1471), + [sym_enum_class_declaration] = STATE(1471), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1471), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -47428,95 +40817,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [172] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1404), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_empty_statement] = STATE(1404), - [sym_expression_statement] = STATE(1404), - [sym_compound_statement] = STATE(1404), - [sym_return_statement] = STATE(1404), - [sym_break_statement] = STATE(1404), - [sym_continue_statement] = STATE(1404), - [sym_throw_statement] = STATE(1404), - [sym_echo_statement] = STATE(1404), - [sym_unset_statement] = STATE(1404), - [sym_concurrent_statement] = STATE(1404), - [sym_use_statement] = STATE(1404), - [sym_if_statement] = STATE(1404), - [sym_switch_statement] = STATE(1404), - [sym_foreach_statement] = STATE(1404), - [sym_while_statement] = STATE(1404), - [sym_do_statement] = STATE(1404), - [sym_for_statement] = STATE(1404), - [sym_try_statement] = STATE(1404), - [sym_using_statement] = STATE(1404), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [171] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1630), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1630), + [sym_expression_statement] = STATE(1630), + [sym_compound_statement] = STATE(1630), + [sym_return_statement] = STATE(1630), + [sym_break_statement] = STATE(1630), + [sym_continue_statement] = STATE(1630), + [sym_throw_statement] = STATE(1630), + [sym_echo_statement] = STATE(1630), + [sym_unset_statement] = STATE(1630), + [sym_concurrent_statement] = STATE(1630), + [sym_use_statement] = STATE(1630), + [sym_if_statement] = STATE(1630), + [sym_switch_statement] = STATE(1630), + [sym_foreach_statement] = STATE(1630), + [sym_while_statement] = STATE(1630), + [sym_do_statement] = STATE(1630), + [sym_for_statement] = STATE(1630), + [sym_try_statement] = STATE(1630), + [sym_using_statement] = STATE(1630), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1404), - [sym_function_declaration] = STATE(1404), - [sym__function_declaration_header] = STATE(4943), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1404), - [sym_interface_declaration] = STATE(1404), - [sym_class_declaration] = STATE(1404), - [sym_const_declaration] = STATE(1404), - [sym_enum_declaration] = STATE(1404), - [sym_abstract_enum_class_declaration] = STATE(1404), - [sym_enum_class_declaration] = STATE(1404), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1404), - [sym_abstract_modifier] = STATE(4145), - [sym_attribute_modifier] = STATE(3529), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6271), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1630), + [sym_function_declaration] = STATE(1630), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1630), + [sym_interface_declaration] = STATE(1630), + [sym_class_declaration] = STATE(1630), + [sym_const_declaration] = STATE(1630), + [sym_enum_declaration] = STATE(1630), + [sym_abstract_enum_class_declaration] = STATE(1630), + [sym_enum_class_declaration] = STATE(1630), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1630), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(857), - [anon_sym_newtype] = ACTIONS(857), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(859), + [anon_sym_namespace] = ACTIONS(27), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -47525,29 +40914,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(37), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_echo] = ACTIONS(875), - [anon_sym_unset] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(879), - [anon_sym_use] = ACTIONS(881), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(883), - [anon_sym_if] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_foreach] = ACTIONS(889), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(893), - [anon_sym_for] = ACTIONS(895), - [anon_sym_try] = ACTIONS(897), - [anon_sym_using] = ACTIONS(899), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -47578,96 +40967,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_class] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_abstract] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(911), - [sym_xhp_modifier] = ACTIONS(913), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1478), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1478), - [sym_expression_statement] = STATE(1478), - [sym_compound_statement] = STATE(1478), - [sym_return_statement] = STATE(1478), - [sym_break_statement] = STATE(1478), - [sym_continue_statement] = STATE(1478), - [sym_throw_statement] = STATE(1478), - [sym_echo_statement] = STATE(1478), - [sym_unset_statement] = STATE(1478), - [sym_concurrent_statement] = STATE(1478), - [sym_use_statement] = STATE(1478), - [sym_if_statement] = STATE(1478), - [sym_switch_statement] = STATE(1478), - [sym_foreach_statement] = STATE(1478), - [sym_while_statement] = STATE(1478), - [sym_do_statement] = STATE(1478), - [sym_for_statement] = STATE(1478), - [sym_try_statement] = STATE(1478), - [sym_using_statement] = STATE(1478), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [172] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1479), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1479), + [sym_expression_statement] = STATE(1479), + [sym_compound_statement] = STATE(1479), + [sym_return_statement] = STATE(1479), + [sym_break_statement] = STATE(1479), + [sym_continue_statement] = STATE(1479), + [sym_throw_statement] = STATE(1479), + [sym_echo_statement] = STATE(1479), + [sym_unset_statement] = STATE(1479), + [sym_concurrent_statement] = STATE(1479), + [sym_use_statement] = STATE(1479), + [sym_if_statement] = STATE(1479), + [sym_switch_statement] = STATE(1479), + [sym_foreach_statement] = STATE(1479), + [sym_while_statement] = STATE(1479), + [sym_do_statement] = STATE(1479), + [sym_for_statement] = STATE(1479), + [sym_try_statement] = STATE(1479), + [sym_using_statement] = STATE(1479), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1478), - [sym_function_declaration] = STATE(1478), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1478), - [sym_interface_declaration] = STATE(1478), - [sym_class_declaration] = STATE(1478), - [sym_const_declaration] = STATE(1478), - [sym_enum_declaration] = STATE(1478), - [sym_abstract_enum_class_declaration] = STATE(1478), - [sym_enum_class_declaration] = STATE(1478), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1478), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1479), + [sym_function_declaration] = STATE(1479), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1479), + [sym_interface_declaration] = STATE(1479), + [sym_class_declaration] = STATE(1479), + [sym_const_declaration] = STATE(1479), + [sym_enum_declaration] = STATE(1479), + [sym_abstract_enum_class_declaration] = STATE(1479), + [sym_enum_class_declaration] = STATE(1479), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1479), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -47752,84 +41141,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [174] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1480), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1480), - [sym_expression_statement] = STATE(1480), - [sym_compound_statement] = STATE(1480), - [sym_return_statement] = STATE(1480), - [sym_break_statement] = STATE(1480), - [sym_continue_statement] = STATE(1480), - [sym_throw_statement] = STATE(1480), - [sym_echo_statement] = STATE(1480), - [sym_unset_statement] = STATE(1480), - [sym_concurrent_statement] = STATE(1480), - [sym_use_statement] = STATE(1480), - [sym_if_statement] = STATE(1480), - [sym_switch_statement] = STATE(1480), - [sym_foreach_statement] = STATE(1480), - [sym_while_statement] = STATE(1480), - [sym_do_statement] = STATE(1480), - [sym_for_statement] = STATE(1480), - [sym_try_statement] = STATE(1480), - [sym_using_statement] = STATE(1480), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [173] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(5898), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(5898), + [sym_expression_statement] = STATE(5898), + [sym_compound_statement] = STATE(5898), + [sym_return_statement] = STATE(5898), + [sym_break_statement] = STATE(5898), + [sym_continue_statement] = STATE(5898), + [sym_throw_statement] = STATE(5898), + [sym_echo_statement] = STATE(5898), + [sym_unset_statement] = STATE(5898), + [sym_concurrent_statement] = STATE(5898), + [sym_use_statement] = STATE(5898), + [sym_if_statement] = STATE(5898), + [sym_switch_statement] = STATE(5898), + [sym_foreach_statement] = STATE(5898), + [sym_while_statement] = STATE(5898), + [sym_do_statement] = STATE(5898), + [sym_for_statement] = STATE(5898), + [sym_try_statement] = STATE(5898), + [sym_using_statement] = STATE(5898), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1480), - [sym_function_declaration] = STATE(1480), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1480), - [sym_interface_declaration] = STATE(1480), - [sym_class_declaration] = STATE(1480), - [sym_const_declaration] = STATE(1480), - [sym_enum_declaration] = STATE(1480), - [sym_abstract_enum_class_declaration] = STATE(1480), - [sym_enum_class_declaration] = STATE(1480), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1480), - [sym_abstract_modifier] = STATE(4053), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(5898), + [sym_function_declaration] = STATE(5898), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(5898), + [sym_interface_declaration] = STATE(5898), + [sym_class_declaration] = STATE(5898), + [sym_const_declaration] = STATE(5898), + [sym_enum_declaration] = STATE(5898), + [sym_abstract_enum_class_declaration] = STATE(5898), + [sym_enum_class_declaration] = STATE(5898), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(5898), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -47840,7 +41229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -47864,13 +41253,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -47914,95 +41303,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [175] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4511), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4511), - [sym_expression_statement] = STATE(4511), - [sym_compound_statement] = STATE(4511), - [sym_return_statement] = STATE(4511), - [sym_break_statement] = STATE(4511), - [sym_continue_statement] = STATE(4511), - [sym_throw_statement] = STATE(4511), - [sym_echo_statement] = STATE(4511), - [sym_unset_statement] = STATE(4511), - [sym_concurrent_statement] = STATE(4511), - [sym_use_statement] = STATE(4511), - [sym_if_statement] = STATE(4511), - [sym_switch_statement] = STATE(4511), - [sym_foreach_statement] = STATE(4511), - [sym_while_statement] = STATE(4511), - [sym_do_statement] = STATE(4511), - [sym_for_statement] = STATE(4511), - [sym_try_statement] = STATE(4511), - [sym_using_statement] = STATE(4511), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [174] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1388), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_empty_statement] = STATE(1388), + [sym_expression_statement] = STATE(1388), + [sym_compound_statement] = STATE(1388), + [sym_return_statement] = STATE(1388), + [sym_break_statement] = STATE(1388), + [sym_continue_statement] = STATE(1388), + [sym_throw_statement] = STATE(1388), + [sym_echo_statement] = STATE(1388), + [sym_unset_statement] = STATE(1388), + [sym_concurrent_statement] = STATE(1388), + [sym_use_statement] = STATE(1388), + [sym_if_statement] = STATE(1388), + [sym_switch_statement] = STATE(1388), + [sym_foreach_statement] = STATE(1388), + [sym_while_statement] = STATE(1388), + [sym_do_statement] = STATE(1388), + [sym_for_statement] = STATE(1388), + [sym_try_statement] = STATE(1388), + [sym_using_statement] = STATE(1388), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4511), - [sym_function_declaration] = STATE(4511), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4511), - [sym_interface_declaration] = STATE(4511), - [sym_class_declaration] = STATE(4511), - [sym_const_declaration] = STATE(4511), - [sym_enum_declaration] = STATE(4511), - [sym_abstract_enum_class_declaration] = STATE(4511), - [sym_enum_class_declaration] = STATE(4511), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4511), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1388), + [sym_function_declaration] = STATE(1388), + [sym__function_declaration_header] = STATE(4752), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1388), + [sym_interface_declaration] = STATE(1388), + [sym_class_declaration] = STATE(1388), + [sym_const_declaration] = STATE(1388), + [sym_enum_declaration] = STATE(1388), + [sym_abstract_enum_class_declaration] = STATE(1388), + [sym_enum_class_declaration] = STATE(1388), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1388), + [sym_abstract_modifier] = STATE(4078), + [sym_attribute_modifier] = STATE(3526), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6281), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(801), + [anon_sym_newtype] = ACTIONS(801), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(803), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -48011,29 +41400,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(805), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_break] = ACTIONS(813), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(817), + [anon_sym_echo] = ACTIONS(819), + [anon_sym_unset] = ACTIONS(821), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(823), + [anon_sym_use] = ACTIONS(825), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(827), + [anon_sym_if] = ACTIONS(829), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_foreach] = ACTIONS(833), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(837), + [anon_sym_for] = ACTIONS(839), + [anon_sym_try] = ACTIONS(841), + [anon_sym_using] = ACTIONS(843), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -48064,96 +41453,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_class] = ACTIONS(849), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(855), + [sym_xhp_modifier] = ACTIONS(857), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [176] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4510), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4510), - [sym_expression_statement] = STATE(4510), - [sym_compound_statement] = STATE(4510), - [sym_return_statement] = STATE(4510), - [sym_break_statement] = STATE(4510), - [sym_continue_statement] = STATE(4510), - [sym_throw_statement] = STATE(4510), - [sym_echo_statement] = STATE(4510), - [sym_unset_statement] = STATE(4510), - [sym_concurrent_statement] = STATE(4510), - [sym_use_statement] = STATE(4510), - [sym_if_statement] = STATE(4510), - [sym_switch_statement] = STATE(4510), - [sym_foreach_statement] = STATE(4510), - [sym_while_statement] = STATE(4510), - [sym_do_statement] = STATE(4510), - [sym_for_statement] = STATE(4510), - [sym_try_statement] = STATE(4510), - [sym_using_statement] = STATE(4510), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [175] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1042), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1042), + [sym_expression_statement] = STATE(1042), + [sym_compound_statement] = STATE(1042), + [sym_return_statement] = STATE(1042), + [sym_break_statement] = STATE(1042), + [sym_continue_statement] = STATE(1042), + [sym_throw_statement] = STATE(1042), + [sym_echo_statement] = STATE(1042), + [sym_unset_statement] = STATE(1042), + [sym_concurrent_statement] = STATE(1042), + [sym_use_statement] = STATE(1042), + [sym_if_statement] = STATE(1042), + [sym_switch_statement] = STATE(1042), + [sym_foreach_statement] = STATE(1042), + [sym_while_statement] = STATE(1042), + [sym_do_statement] = STATE(1042), + [sym_for_statement] = STATE(1042), + [sym_try_statement] = STATE(1042), + [sym_using_statement] = STATE(1042), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4510), - [sym_function_declaration] = STATE(4510), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4510), - [sym_interface_declaration] = STATE(4510), - [sym_class_declaration] = STATE(4510), - [sym_const_declaration] = STATE(4510), - [sym_enum_declaration] = STATE(4510), - [sym_abstract_enum_class_declaration] = STATE(4510), - [sym_enum_class_declaration] = STATE(4510), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4510), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1042), + [sym_function_declaration] = STATE(1042), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1042), + [sym_interface_declaration] = STATE(1042), + [sym_class_declaration] = STATE(1042), + [sym_const_declaration] = STATE(1042), + [sym_enum_declaration] = STATE(1042), + [sym_abstract_enum_class_declaration] = STATE(1042), + [sym_enum_class_declaration] = STATE(1042), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1042), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -48238,13 +41627,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), + [176] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), [sym_module_attribute] = STATE(5831), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), [sym_empty_statement] = STATE(5831), [sym_expression_statement] = STATE(5831), [sym_compound_statement] = STATE(5831), @@ -48264,39 +41653,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_statement] = STATE(5831), [sym_try_statement] = STATE(5831), [sym_using_statement] = STATE(5831), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), [sym_alias_declaration] = STATE(5831), [sym_function_declaration] = STATE(5831), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), [sym_trait_declaration] = STATE(5831), [sym_interface_declaration] = STATE(5831), [sym_class_declaration] = STATE(5831), @@ -48304,18 +41693,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_declaration] = STATE(5831), [sym_abstract_enum_class_declaration] = STATE(5831), [sym_enum_class_declaration] = STATE(5831), - [sym_enum_class_label] = STATE(1929), + [sym_enum_class_label] = STATE(1942), [sym_namespace_declaration] = STATE(5831), - [sym_abstract_modifier] = STATE(4053), + [sym_abstract_modifier] = STATE(4142), [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), + [sym_async_modifier] = STATE(3913), [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -48326,7 +41715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(915), + [anon_sym_namespace] = ACTIONS(859), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -48350,13 +41739,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(917), + [anon_sym_if] = ACTIONS(861), [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(919), - [anon_sym_while] = ACTIONS(921), + [anon_sym_foreach] = ACTIONS(863), + [anon_sym_while] = ACTIONS(865), [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), + [anon_sym_for] = ACTIONS(867), + [anon_sym_try] = ACTIONS(869), [anon_sym_using] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), @@ -48400,95 +41789,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [178] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1560), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1560), - [sym_expression_statement] = STATE(1560), - [sym_compound_statement] = STATE(1560), - [sym_return_statement] = STATE(1560), - [sym_break_statement] = STATE(1560), - [sym_continue_statement] = STATE(1560), - [sym_throw_statement] = STATE(1560), - [sym_echo_statement] = STATE(1560), - [sym_unset_statement] = STATE(1560), - [sym_concurrent_statement] = STATE(1560), - [sym_use_statement] = STATE(1560), - [sym_if_statement] = STATE(1560), - [sym_switch_statement] = STATE(1560), - [sym_foreach_statement] = STATE(1560), - [sym_while_statement] = STATE(1560), - [sym_do_statement] = STATE(1560), - [sym_for_statement] = STATE(1560), - [sym_try_statement] = STATE(1560), - [sym_using_statement] = STATE(1560), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [177] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(912), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(912), + [sym_expression_statement] = STATE(912), + [sym_compound_statement] = STATE(912), + [sym_return_statement] = STATE(912), + [sym_break_statement] = STATE(912), + [sym_continue_statement] = STATE(912), + [sym_throw_statement] = STATE(912), + [sym_echo_statement] = STATE(912), + [sym_unset_statement] = STATE(912), + [sym_concurrent_statement] = STATE(912), + [sym_use_statement] = STATE(912), + [sym_if_statement] = STATE(912), + [sym_switch_statement] = STATE(912), + [sym_foreach_statement] = STATE(912), + [sym_while_statement] = STATE(912), + [sym_do_statement] = STATE(912), + [sym_for_statement] = STATE(912), + [sym_try_statement] = STATE(912), + [sym_using_statement] = STATE(912), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1560), - [sym_function_declaration] = STATE(1560), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1560), - [sym_interface_declaration] = STATE(1560), - [sym_class_declaration] = STATE(1560), - [sym_const_declaration] = STATE(1560), - [sym_enum_declaration] = STATE(1560), - [sym_abstract_enum_class_declaration] = STATE(1560), - [sym_enum_class_declaration] = STATE(1560), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1560), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(912), + [sym_function_declaration] = STATE(912), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(912), + [sym_interface_declaration] = STATE(912), + [sym_class_declaration] = STATE(912), + [sym_const_declaration] = STATE(912), + [sym_enum_declaration] = STATE(912), + [sym_abstract_enum_class_declaration] = STATE(912), + [sym_enum_class_declaration] = STATE(912), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(912), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(741), + [anon_sym_newtype] = ACTIONS(741), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(743), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -48497,29 +41886,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(745), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_return] = ACTIONS(751), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(755), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_echo] = ACTIONS(759), + [anon_sym_unset] = ACTIONS(761), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(763), + [anon_sym_use] = ACTIONS(765), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(767), + [anon_sym_if] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(771), + [anon_sym_foreach] = ACTIONS(773), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(777), + [anon_sym_for] = ACTIONS(779), + [anon_sym_try] = ACTIONS(781), + [anon_sym_using] = ACTIONS(783), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -48550,107 +41939,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(785), + [anon_sym_interface] = ACTIONS(787), + [anon_sym_class] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(791), + [anon_sym_abstract] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(795), + [sym_xhp_modifier] = ACTIONS(797), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(1556), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_empty_statement] = STATE(1556), - [sym_expression_statement] = STATE(1556), - [sym_compound_statement] = STATE(1556), - [sym_return_statement] = STATE(1556), - [sym_break_statement] = STATE(1556), - [sym_continue_statement] = STATE(1556), - [sym_throw_statement] = STATE(1556), - [sym_echo_statement] = STATE(1556), - [sym_unset_statement] = STATE(1556), - [sym_concurrent_statement] = STATE(1556), - [sym_use_statement] = STATE(1556), - [sym_if_statement] = STATE(1556), - [sym_switch_statement] = STATE(1556), - [sym_foreach_statement] = STATE(1556), - [sym_while_statement] = STATE(1556), - [sym_do_statement] = STATE(1556), - [sym_for_statement] = STATE(1556), - [sym_try_statement] = STATE(1556), - [sym_using_statement] = STATE(1556), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [178] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4195), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4195), + [sym_expression_statement] = STATE(4195), + [sym_compound_statement] = STATE(4195), + [sym_return_statement] = STATE(4195), + [sym_break_statement] = STATE(4195), + [sym_continue_statement] = STATE(4195), + [sym_throw_statement] = STATE(4195), + [sym_echo_statement] = STATE(4195), + [sym_unset_statement] = STATE(4195), + [sym_concurrent_statement] = STATE(4195), + [sym_use_statement] = STATE(4195), + [sym_if_statement] = STATE(4195), + [sym_switch_statement] = STATE(4195), + [sym_foreach_statement] = STATE(4195), + [sym_while_statement] = STATE(4195), + [sym_do_statement] = STATE(4195), + [sym_for_statement] = STATE(4195), + [sym_try_statement] = STATE(4195), + [sym_using_statement] = STATE(4195), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(1556), - [sym_function_declaration] = STATE(1556), - [sym__function_declaration_header] = STATE(4853), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(1556), - [sym_interface_declaration] = STATE(1556), - [sym_class_declaration] = STATE(1556), - [sym_const_declaration] = STATE(1556), - [sym_enum_declaration] = STATE(1556), - [sym_abstract_enum_class_declaration] = STATE(1556), - [sym_enum_class_declaration] = STATE(1556), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(1556), - [sym_abstract_modifier] = STATE(4053), - [sym_attribute_modifier] = STATE(3530), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(5961), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4195), + [sym_function_declaration] = STATE(4195), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4195), + [sym_interface_declaration] = STATE(4195), + [sym_class_declaration] = STATE(4195), + [sym_const_declaration] = STATE(4195), + [sym_enum_declaration] = STATE(4195), + [sym_abstract_enum_class_declaration] = STATE(4195), + [sym_enum_class_declaration] = STATE(4195), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4195), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_newtype] = ACTIONS(15), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(27), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -48659,29 +42048,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_echo] = ACTIONS(53), - [anon_sym_unset] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(59), - [anon_sym_use] = ACTIONS(61), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_switch] = ACTIONS(69), - [anon_sym_foreach] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_try] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -48712,96 +42101,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(111), - [anon_sym_interface] = ACTIONS(113), - [anon_sym_class] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(117), - [anon_sym_abstract] = ACTIONS(119), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(123), - [sym_xhp_modifier] = ACTIONS(125), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [180] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4208), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4208), - [sym_expression_statement] = STATE(4208), - [sym_compound_statement] = STATE(4208), - [sym_return_statement] = STATE(4208), - [sym_break_statement] = STATE(4208), - [sym_continue_statement] = STATE(4208), - [sym_throw_statement] = STATE(4208), - [sym_echo_statement] = STATE(4208), - [sym_unset_statement] = STATE(4208), - [sym_concurrent_statement] = STATE(4208), - [sym_use_statement] = STATE(4208), - [sym_if_statement] = STATE(4208), - [sym_switch_statement] = STATE(4208), - [sym_foreach_statement] = STATE(4208), - [sym_while_statement] = STATE(4208), - [sym_do_statement] = STATE(4208), - [sym_for_statement] = STATE(4208), - [sym_try_statement] = STATE(4208), - [sym_using_statement] = STATE(4208), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [179] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1045), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1045), + [sym_expression_statement] = STATE(1045), + [sym_compound_statement] = STATE(1045), + [sym_return_statement] = STATE(1045), + [sym_break_statement] = STATE(1045), + [sym_continue_statement] = STATE(1045), + [sym_throw_statement] = STATE(1045), + [sym_echo_statement] = STATE(1045), + [sym_unset_statement] = STATE(1045), + [sym_concurrent_statement] = STATE(1045), + [sym_use_statement] = STATE(1045), + [sym_if_statement] = STATE(1045), + [sym_switch_statement] = STATE(1045), + [sym_foreach_statement] = STATE(1045), + [sym_while_statement] = STATE(1045), + [sym_do_statement] = STATE(1045), + [sym_for_statement] = STATE(1045), + [sym_try_statement] = STATE(1045), + [sym_using_statement] = STATE(1045), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4208), - [sym_function_declaration] = STATE(4208), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4208), - [sym_interface_declaration] = STATE(4208), - [sym_class_declaration] = STATE(4208), - [sym_const_declaration] = STATE(4208), - [sym_enum_declaration] = STATE(4208), - [sym_abstract_enum_class_declaration] = STATE(4208), - [sym_enum_class_declaration] = STATE(4208), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4208), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1045), + [sym_function_declaration] = STATE(1045), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1045), + [sym_interface_declaration] = STATE(1045), + [sym_class_declaration] = STATE(1045), + [sym_const_declaration] = STATE(1045), + [sym_enum_declaration] = STATE(1045), + [sym_abstract_enum_class_declaration] = STATE(1045), + [sym_enum_class_declaration] = STATE(1045), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1045), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -48886,84 +42275,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4494), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4494), - [sym_expression_statement] = STATE(4494), - [sym_compound_statement] = STATE(4494), - [sym_return_statement] = STATE(4494), - [sym_break_statement] = STATE(4494), - [sym_continue_statement] = STATE(4494), - [sym_throw_statement] = STATE(4494), - [sym_echo_statement] = STATE(4494), - [sym_unset_statement] = STATE(4494), - [sym_concurrent_statement] = STATE(4494), - [sym_use_statement] = STATE(4494), - [sym_if_statement] = STATE(4494), - [sym_switch_statement] = STATE(4494), - [sym_foreach_statement] = STATE(4494), - [sym_while_statement] = STATE(4494), - [sym_do_statement] = STATE(4494), - [sym_for_statement] = STATE(4494), - [sym_try_statement] = STATE(4494), - [sym_using_statement] = STATE(4494), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [180] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1056), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_empty_statement] = STATE(1056), + [sym_expression_statement] = STATE(1056), + [sym_compound_statement] = STATE(1056), + [sym_return_statement] = STATE(1056), + [sym_break_statement] = STATE(1056), + [sym_continue_statement] = STATE(1056), + [sym_throw_statement] = STATE(1056), + [sym_echo_statement] = STATE(1056), + [sym_unset_statement] = STATE(1056), + [sym_concurrent_statement] = STATE(1056), + [sym_use_statement] = STATE(1056), + [sym_if_statement] = STATE(1056), + [sym_switch_statement] = STATE(1056), + [sym_foreach_statement] = STATE(1056), + [sym_while_statement] = STATE(1056), + [sym_do_statement] = STATE(1056), + [sym_for_statement] = STATE(1056), + [sym_try_statement] = STATE(1056), + [sym_using_statement] = STATE(1056), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4494), - [sym_function_declaration] = STATE(4494), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4494), - [sym_interface_declaration] = STATE(4494), - [sym_class_declaration] = STATE(4494), - [sym_const_declaration] = STATE(4494), - [sym_enum_declaration] = STATE(4494), - [sym_abstract_enum_class_declaration] = STATE(4494), - [sym_enum_class_declaration] = STATE(4494), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4494), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1056), + [sym_function_declaration] = STATE(1056), + [sym__function_declaration_header] = STATE(4971), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1056), + [sym_interface_declaration] = STATE(1056), + [sym_class_declaration] = STATE(1056), + [sym_const_declaration] = STATE(1056), + [sym_enum_declaration] = STATE(1056), + [sym_abstract_enum_class_declaration] = STATE(1056), + [sym_enum_class_declaration] = STATE(1056), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1056), + [sym_abstract_modifier] = STATE(4136), + [sym_attribute_modifier] = STATE(3529), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6461), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -49048,95 +42437,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, + [181] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(1590), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_empty_statement] = STATE(1590), + [sym_expression_statement] = STATE(1590), + [sym_compound_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_throw_statement] = STATE(1590), + [sym_echo_statement] = STATE(1590), + [sym_unset_statement] = STATE(1590), + [sym_concurrent_statement] = STATE(1590), + [sym_use_statement] = STATE(1590), + [sym_if_statement] = STATE(1590), + [sym_switch_statement] = STATE(1590), + [sym_foreach_statement] = STATE(1590), + [sym_while_statement] = STATE(1590), + [sym_do_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_try_statement] = STATE(1590), + [sym_using_statement] = STATE(1590), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(1590), + [sym_function_declaration] = STATE(1590), + [sym__function_declaration_header] = STATE(4858), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(1590), + [sym_interface_declaration] = STATE(1590), + [sym_class_declaration] = STATE(1590), + [sym_const_declaration] = STATE(1590), + [sym_enum_declaration] = STATE(1590), + [sym_abstract_enum_class_declaration] = STATE(1590), + [sym_enum_class_declaration] = STATE(1590), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(1590), + [sym_abstract_modifier] = STATE(4142), + [sym_attribute_modifier] = STATE(3530), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(5961), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_newtype] = ACTIONS(15), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(27), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_echo] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_concurrent] = ACTIONS(59), + [anon_sym_use] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_const] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_foreach] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_try] = ACTIONS(79), + [anon_sym_using] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_trait] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(113), + [anon_sym_class] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(117), + [anon_sym_abstract] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), + [sym_final_modifier] = ACTIONS(123), + [sym_xhp_modifier] = ACTIONS(125), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, [182] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4833), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4833), - [sym_expression_statement] = STATE(4833), - [sym_compound_statement] = STATE(4833), - [sym_return_statement] = STATE(4833), - [sym_break_statement] = STATE(4833), - [sym_continue_statement] = STATE(4833), - [sym_throw_statement] = STATE(4833), - [sym_echo_statement] = STATE(4833), - [sym_unset_statement] = STATE(4833), - [sym_concurrent_statement] = STATE(4833), - [sym_use_statement] = STATE(4833), - [sym_if_statement] = STATE(4833), - [sym_switch_statement] = STATE(4833), - [sym_foreach_statement] = STATE(4833), - [sym_while_statement] = STATE(4833), - [sym_do_statement] = STATE(4833), - [sym_for_statement] = STATE(4833), - [sym_try_statement] = STATE(4833), - [sym_using_statement] = STATE(4833), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4853), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4853), + [sym_expression_statement] = STATE(4853), + [sym_compound_statement] = STATE(4853), + [sym_return_statement] = STATE(4853), + [sym_break_statement] = STATE(4853), + [sym_continue_statement] = STATE(4853), + [sym_throw_statement] = STATE(4853), + [sym_echo_statement] = STATE(4853), + [sym_unset_statement] = STATE(4853), + [sym_concurrent_statement] = STATE(4853), + [sym_use_statement] = STATE(4853), + [sym_if_statement] = STATE(4853), + [sym_switch_statement] = STATE(4853), + [sym_foreach_statement] = STATE(4853), + [sym_while_statement] = STATE(4853), + [sym_do_statement] = STATE(4853), + [sym_for_statement] = STATE(4853), + [sym_try_statement] = STATE(4853), + [sym_using_statement] = STATE(4853), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4833), - [sym_function_declaration] = STATE(4833), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4833), - [sym_interface_declaration] = STATE(4833), - [sym_class_declaration] = STATE(4833), - [sym_const_declaration] = STATE(4833), - [sym_enum_declaration] = STATE(4833), - [sym_abstract_enum_class_declaration] = STATE(4833), - [sym_enum_class_declaration] = STATE(4833), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4833), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4853), + [sym_function_declaration] = STATE(4853), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4853), + [sym_interface_declaration] = STATE(4853), + [sym_class_declaration] = STATE(4853), + [sym_const_declaration] = STATE(4853), + [sym_enum_declaration] = STATE(4853), + [sym_abstract_enum_class_declaration] = STATE(4853), + [sym_enum_class_declaration] = STATE(4853), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4853), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -49145,29 +42696,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -49198,107 +42749,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [183] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4175), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4175), - [sym_expression_statement] = STATE(4175), - [sym_compound_statement] = STATE(4175), - [sym_return_statement] = STATE(4175), - [sym_break_statement] = STATE(4175), - [sym_continue_statement] = STATE(4175), - [sym_throw_statement] = STATE(4175), - [sym_echo_statement] = STATE(4175), - [sym_unset_statement] = STATE(4175), - [sym_concurrent_statement] = STATE(4175), - [sym_use_statement] = STATE(4175), - [sym_if_statement] = STATE(4175), - [sym_switch_statement] = STATE(4175), - [sym_foreach_statement] = STATE(4175), - [sym_while_statement] = STATE(4175), - [sym_do_statement] = STATE(4175), - [sym_for_statement] = STATE(4175), - [sym_try_statement] = STATE(4175), - [sym_using_statement] = STATE(4175), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4188), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4188), + [sym_expression_statement] = STATE(4188), + [sym_compound_statement] = STATE(4188), + [sym_return_statement] = STATE(4188), + [sym_break_statement] = STATE(4188), + [sym_continue_statement] = STATE(4188), + [sym_throw_statement] = STATE(4188), + [sym_echo_statement] = STATE(4188), + [sym_unset_statement] = STATE(4188), + [sym_concurrent_statement] = STATE(4188), + [sym_use_statement] = STATE(4188), + [sym_if_statement] = STATE(4188), + [sym_switch_statement] = STATE(4188), + [sym_foreach_statement] = STATE(4188), + [sym_while_statement] = STATE(4188), + [sym_do_statement] = STATE(4188), + [sym_for_statement] = STATE(4188), + [sym_try_statement] = STATE(4188), + [sym_using_statement] = STATE(4188), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4175), - [sym_function_declaration] = STATE(4175), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4175), - [sym_interface_declaration] = STATE(4175), - [sym_class_declaration] = STATE(4175), - [sym_const_declaration] = STATE(4175), - [sym_enum_declaration] = STATE(4175), - [sym_abstract_enum_class_declaration] = STATE(4175), - [sym_enum_class_declaration] = STATE(4175), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4175), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4188), + [sym_function_declaration] = STATE(4188), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4188), + [sym_interface_declaration] = STATE(4188), + [sym_class_declaration] = STATE(4188), + [sym_const_declaration] = STATE(4188), + [sym_enum_declaration] = STATE(4188), + [sym_abstract_enum_class_declaration] = STATE(4188), + [sym_enum_class_declaration] = STATE(4188), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4188), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -49307,29 +42858,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -49360,107 +42911,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [184] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_module_attribute] = STATE(4826), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_empty_statement] = STATE(4826), - [sym_expression_statement] = STATE(4826), - [sym_compound_statement] = STATE(4826), - [sym_return_statement] = STATE(4826), - [sym_break_statement] = STATE(4826), - [sym_continue_statement] = STATE(4826), - [sym_throw_statement] = STATE(4826), - [sym_echo_statement] = STATE(4826), - [sym_unset_statement] = STATE(4826), - [sym_concurrent_statement] = STATE(4826), - [sym_use_statement] = STATE(4826), - [sym_if_statement] = STATE(4826), - [sym_switch_statement] = STATE(4826), - [sym_foreach_statement] = STATE(4826), - [sym_while_statement] = STATE(4826), - [sym_do_statement] = STATE(4826), - [sym_for_statement] = STATE(4826), - [sym_try_statement] = STATE(4826), - [sym_using_statement] = STATE(4826), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_module_attribute] = STATE(4856), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_empty_statement] = STATE(4856), + [sym_expression_statement] = STATE(4856), + [sym_compound_statement] = STATE(4856), + [sym_return_statement] = STATE(4856), + [sym_break_statement] = STATE(4856), + [sym_continue_statement] = STATE(4856), + [sym_throw_statement] = STATE(4856), + [sym_echo_statement] = STATE(4856), + [sym_unset_statement] = STATE(4856), + [sym_concurrent_statement] = STATE(4856), + [sym_use_statement] = STATE(4856), + [sym_if_statement] = STATE(4856), + [sym_switch_statement] = STATE(4856), + [sym_foreach_statement] = STATE(4856), + [sym_while_statement] = STATE(4856), + [sym_do_statement] = STATE(4856), + [sym_for_statement] = STATE(4856), + [sym_try_statement] = STATE(4856), + [sym_using_statement] = STATE(4856), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_alias_declaration] = STATE(4826), - [sym_function_declaration] = STATE(4826), - [sym__function_declaration_header] = STATE(4664), - [sym_parameters] = STATE(4449), - [sym_trait_declaration] = STATE(4826), - [sym_interface_declaration] = STATE(4826), - [sym_class_declaration] = STATE(4826), - [sym_const_declaration] = STATE(4826), - [sym_enum_declaration] = STATE(4826), - [sym_abstract_enum_class_declaration] = STATE(4826), - [sym_enum_class_declaration] = STATE(4826), - [sym_enum_class_label] = STATE(1929), - [sym_namespace_declaration] = STATE(4826), - [sym_abstract_modifier] = STATE(4097), - [sym_attribute_modifier] = STATE(3525), - [sym_async_modifier] = STATE(4006), - [sym_await_modifier] = STATE(6154), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_alias_declaration] = STATE(4856), + [sym_function_declaration] = STATE(4856), + [sym__function_declaration_header] = STATE(5209), + [sym_parameters] = STATE(4197), + [sym_trait_declaration] = STATE(4856), + [sym_interface_declaration] = STATE(4856), + [sym_class_declaration] = STATE(4856), + [sym_const_declaration] = STATE(4856), + [sym_enum_declaration] = STATE(4856), + [sym_abstract_enum_class_declaration] = STATE(4856), + [sym_enum_class_declaration] = STATE(4856), + [sym_enum_class_label] = STATE(1942), + [sym_namespace_declaration] = STATE(4856), + [sym_abstract_modifier] = STATE(4093), + [sym_attribute_modifier] = STATE(3528), + [sym_async_modifier] = STATE(3913), + [sym_await_modifier] = STATE(6147), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_type] = ACTIONS(741), - [anon_sym_newtype] = ACTIONS(741), + [anon_sym_type] = ACTIONS(871), + [anon_sym_newtype] = ACTIONS(871), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(743), + [anon_sym_namespace] = ACTIONS(873), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -49469,29 +43020,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(875), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(755), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_echo] = ACTIONS(759), - [anon_sym_unset] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_echo] = ACTIONS(889), + [anon_sym_unset] = ACTIONS(891), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_concurrent] = ACTIONS(763), - [anon_sym_use] = ACTIONS(765), + [anon_sym_concurrent] = ACTIONS(893), + [anon_sym_use] = ACTIONS(895), [anon_sym_function] = ACTIONS(63), - [anon_sym_const] = ACTIONS(767), - [anon_sym_if] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(773), - [anon_sym_while] = ACTIONS(775), - [anon_sym_do] = ACTIONS(777), - [anon_sym_for] = ACTIONS(779), - [anon_sym_try] = ACTIONS(781), - [anon_sym_using] = ACTIONS(783), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_foreach] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_using] = ACTIONS(913), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -49522,72 +43073,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(105), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_interface] = ACTIONS(787), - [anon_sym_class] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(793), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_interface] = ACTIONS(917), + [anon_sym_class] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_abstract] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(121), - [sym_final_modifier] = ACTIONS(795), - [sym_xhp_modifier] = ACTIONS(797), + [sym_final_modifier] = ACTIONS(925), + [sym_xhp_modifier] = ACTIONS(927), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [185] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2091), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(2146), + [sym_scoped_identifier] = STATE(2551), + [sym_scope_identifier] = STATE(2422), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2538), + [sym_subscript_expression] = STATE(2538), + [sym_list_expression] = STATE(2538), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2538), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2538), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(943), + [sym_pipe_variable] = ACTIONS(945), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -49596,17 +43147,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -49620,7 +43171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -49628,117 +43179,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(957), + [sym_xhp_class_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), }, [186] = { - [sym_qualified_identifier] = STATE(2145), - [sym_scoped_identifier] = STATE(2532), - [sym_scope_identifier] = STATE(2459), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2530), - [sym_subscript_expression] = STATE(2530), - [sym_list_expression] = STATE(2530), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2082), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2530), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2530), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(953), - [sym_pipe_variable] = ACTIONS(955), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -49747,17 +43298,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -49771,7 +43322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -49779,108 +43330,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(957), - [sym_xhp_class_identifier] = ACTIONS(955), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [187] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2007), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2036), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -49889,7 +43440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -49898,17 +43449,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -49922,7 +43473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -49930,108 +43481,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [188] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1994), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2076), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -50040,7 +43591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -50049,17 +43600,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -50073,7 +43624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -50081,108 +43632,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2019), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2075), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -50191,7 +43742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -50200,17 +43751,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -50224,7 +43775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -50232,108 +43783,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [190] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2019), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2075), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -50342,7 +43893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -50351,14 +43902,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -50372,7 +43923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -50380,109 +43931,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), - [anon_sym_ATrequired] = ACTIONS(947), - [anon_sym_ATlateinit] = ACTIONS(947), + [anon_sym_ATrequired] = ACTIONS(951), + [anon_sym_ATlateinit] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, [191] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1994), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2076), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -50491,7 +44042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -50500,14 +44051,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -50521,7 +44072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -50529,109 +44080,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), - [anon_sym_ATrequired] = ACTIONS(947), - [anon_sym_ATlateinit] = ACTIONS(947), + [anon_sym_ATrequired] = ACTIONS(951), + [anon_sym_ATlateinit] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, [192] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2007), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2082), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -50640,7 +44191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -50649,14 +44200,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -50670,7 +44221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -50678,118 +44229,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), - [anon_sym_ATrequired] = ACTIONS(947), - [anon_sym_ATlateinit] = ACTIONS(947), + [anon_sym_ATrequired] = ACTIONS(951), + [anon_sym_ATlateinit] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, [193] = { - [sym_qualified_identifier] = STATE(2145), - [sym_scoped_identifier] = STATE(2532), - [sym_scope_identifier] = STATE(2459), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2530), - [sym_subscript_expression] = STATE(2530), - [sym_list_expression] = STATE(2530), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(2146), + [sym_scoped_identifier] = STATE(2551), + [sym_scope_identifier] = STATE(2422), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2538), + [sym_subscript_expression] = STATE(2538), + [sym_list_expression] = STATE(2538), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2530), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2530), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2538), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2538), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(953), - [sym_pipe_variable] = ACTIONS(955), + [sym_variable] = ACTIONS(943), + [sym_pipe_variable] = ACTIONS(945), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -50798,14 +44349,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -50819,7 +44370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -50827,109 +44378,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(957), - [sym_xhp_class_identifier] = ACTIONS(955), - [anon_sym_ATrequired] = ACTIONS(947), - [anon_sym_ATlateinit] = ACTIONS(947), + [sym_xhp_class_identifier] = ACTIONS(945), + [anon_sym_ATrequired] = ACTIONS(951), + [anon_sym_ATlateinit] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, [194] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2091), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2036), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -50938,7 +44489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -50947,14 +44498,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -50968,7 +44519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -50976,109 +44527,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(951), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), - [anon_sym_ATrequired] = ACTIONS(947), - [anon_sym_ATlateinit] = ACTIONS(947), + [anon_sym_ATrequired] = ACTIONS(951), + [anon_sym_ATlateinit] = ACTIONS(951), [sym_comment] = ACTIONS(3), }, [195] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2019), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2036), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -51087,7 +44638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -51096,13 +44647,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_as2] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_as2] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -51116,7 +44667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -51124,107 +44675,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(945), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(949), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [196] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1994), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2075), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -51233,7 +44784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -51242,13 +44793,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_as2] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_as2] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -51262,7 +44813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -51270,107 +44821,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(945), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(949), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [197] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2007), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2076), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -51379,7 +44930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -51388,13 +44939,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_as2] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_as2] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -51408,7 +44959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -51416,116 +44967,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(945), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(949), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [198] = { - [sym_qualified_identifier] = STATE(2145), - [sym_scoped_identifier] = STATE(2532), - [sym_scope_identifier] = STATE(2459), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2530), - [sym_subscript_expression] = STATE(2530), - [sym_list_expression] = STATE(2530), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2082), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2530), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2530), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(953), - [sym_pipe_variable] = ACTIONS(955), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -51534,13 +45085,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_as2] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_as2] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -51554,7 +45105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -51562,116 +45113,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(945), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(949), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(957), - [sym_xhp_class_identifier] = ACTIONS(955), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [199] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2091), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(2146), + [sym_scoped_identifier] = STATE(2551), + [sym_scope_identifier] = STATE(2422), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2538), + [sym_subscript_expression] = STATE(2538), + [sym_list_expression] = STATE(2538), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2538), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2538), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(943), + [sym_pipe_variable] = ACTIONS(945), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -51680,13 +45231,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_function] = ACTIONS(949), - [anon_sym_as2] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_function] = ACTIONS(953), + [anon_sym_as2] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(951), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -51700,7 +45251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(949), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -51708,118 +45259,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_list] = ACTIONS(103), - [anon_sym_PIPE_GT] = ACTIONS(947), - [anon_sym_QMARK_QMARK] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ_GT] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_STAR_STAR] = ACTIONS(945), - [anon_sym_QMARK_COLON] = ACTIONS(947), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(947), - [anon_sym_DOT_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_STAR_STAR_EQ] = ACTIONS(947), + [anon_sym_PIPE_GT] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_STAR_STAR] = ACTIONS(949), + [anon_sym_QMARK_COLON] = ACTIONS(951), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(951), + [anon_sym_DOT_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_STAR_STAR_EQ] = ACTIONS(951), [anon_sym_BANG] = ACTIONS(101), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_await] = ACTIONS(945), - [anon_sym_is] = ACTIONS(945), - [anon_sym_as3] = ACTIONS(945), - [anon_sym_QMARKas] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_await] = ACTIONS(949), + [anon_sym_is] = ACTIONS(949), + [anon_sym_as3] = ACTIONS(949), + [anon_sym_QMARKas] = ACTIONS(951), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), - [anon_sym_QMARK_DASH_GT] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_QMARK_DASH_GT] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(957), + [sym_xhp_class_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), }, [200] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2282), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2370), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -51841,7 +45392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -51891,67 +45442,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [201] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2519), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2261), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -51973,7 +45525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -52023,67 +45575,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [202] = { - [sym_qualified_identifier] = STATE(1883), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2660), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2490), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3996), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(3996), - [sym_function_type_specifier] = STATE(3996), - [sym_shape_type_specifier] = STATE(3996), - [sym_type_constant] = STATE(3996), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1879), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2615), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2502), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(3983), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(3983), + [sym_function_type_specifier] = STATE(3983), + [sym_shape_type_specifier] = STATE(3983), + [sym_type_constant] = STATE(3983), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -52148,74 +45701,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1037), [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, [203] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2626), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2769), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -52237,7 +45791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(1025), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -52280,74 +45834,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [204] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2660), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2615), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -52369,7 +45924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(1025), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -52386,17 +45941,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(989), [anon_sym_TILDE] = ACTIONS(1031), [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_array] = ACTIONS(1033), + [anon_sym_array] = ACTIONS(995), [anon_sym_varray] = ACTIONS(997), [anon_sym_darray] = ACTIONS(997), [anon_sym_vec] = ACTIONS(997), [anon_sym_dict] = ACTIONS(997), [anon_sym_keyset] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(1035), - [anon_sym_float] = ACTIONS(1035), - [anon_sym_int] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_float] = ACTIONS(999), + [anon_sym_int] = ACTIONS(999), [anon_sym_num] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(999), [anon_sym_arraykey] = ACTIONS(1001), [anon_sym_void] = ACTIONS(1001), [anon_sym_nonnull] = ACTIONS(1001), @@ -52412,96 +45967,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [205] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2241), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2615), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), - [sym_variable] = ACTIONS(963), + [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), + [anon_sym_print] = ACTIONS(25), [anon_sym_namespace] = ACTIONS(971), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(977), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(979), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(1025), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -52514,21 +46070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(985), [anon_sym_NULL] = ACTIONS(985), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(1029), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(1031), [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_array] = ACTIONS(995), + [anon_sym_array] = ACTIONS(1033), [anon_sym_varray] = ACTIONS(997), [anon_sym_darray] = ACTIONS(997), [anon_sym_vec] = ACTIONS(997), [anon_sym_dict] = ACTIONS(997), [anon_sym_keyset] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_float] = ACTIONS(999), - [anon_sym_int] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_float] = ACTIONS(1035), + [anon_sym_int] = ACTIONS(1035), [anon_sym_num] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(999), + [anon_sym_string] = ACTIONS(1035), [anon_sym_arraykey] = ACTIONS(1001), [anon_sym_void] = ACTIONS(1001), [anon_sym_nonnull] = ACTIONS(1001), @@ -52538,80 +46094,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nothing] = ACTIONS(1001), [anon_sym_resource] = ACTIONS(1001), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [206] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2430), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2448), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -52633,7 +46190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -52683,89 +46240,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [207] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2660), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2384), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), - [sym_variable] = ACTIONS(1021), + [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(965), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), + [anon_sym_print] = ACTIONS(969), [anon_sym_namespace] = ACTIONS(971), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(977), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(979), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -52778,9 +46336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(985), [anon_sym_NULL] = ACTIONS(985), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(987), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(991), [anon_sym_DOT_DOT_DOT] = ACTIONS(993), [anon_sym_array] = ACTIONS(995), [anon_sym_varray] = ACTIONS(997), @@ -52802,80 +46360,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nothing] = ACTIONS(1001), [anon_sym_resource] = ACTIONS(1001), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [208] = { - [sym_qualified_identifier] = STATE(1883), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2626), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2490), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3996), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(3996), - [sym_function_type_specifier] = STATE(3996), - [sym_shape_type_specifier] = STATE(3996), - [sym_type_constant] = STATE(3996), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1879), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2769), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2502), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(3983), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(3983), + [sym_function_type_specifier] = STATE(3983), + [sym_shape_type_specifier] = STATE(3983), + [sym_type_constant] = STATE(3983), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -52940,74 +46499,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1037), [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, [209] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2626), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2769), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -53029,7 +46589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(1025), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -53072,74 +46632,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [210] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2294), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2420), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -53161,7 +46722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -53211,67 +46772,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [211] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2383), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2340), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -53293,7 +46855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -53343,67 +46905,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [212] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2286), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2447), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -53425,7 +46988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -53475,67 +47038,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [213] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2268), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2284), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -53557,7 +47121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -53607,67 +47171,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [214] = { - [sym_qualified_identifier] = STATE(1883), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2660), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2490), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3996), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(3996), - [sym_function_type_specifier] = STATE(3996), - [sym_shape_type_specifier] = STATE(3996), - [sym_type_constant] = STATE(3996), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1879), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2615), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2502), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(3983), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(3983), + [sym_function_type_specifier] = STATE(3983), + [sym_shape_type_specifier] = STATE(3983), + [sym_type_constant] = STATE(3983), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -53706,17 +47271,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(989), [anon_sym_TILDE] = ACTIONS(1031), [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_array] = ACTIONS(1045), + [anon_sym_array] = ACTIONS(995), [anon_sym_varray] = ACTIONS(997), [anon_sym_darray] = ACTIONS(997), [anon_sym_vec] = ACTIONS(997), [anon_sym_dict] = ACTIONS(997), [anon_sym_keyset] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(1047), - [anon_sym_float] = ACTIONS(1047), - [anon_sym_int] = ACTIONS(1047), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_float] = ACTIONS(999), + [anon_sym_int] = ACTIONS(999), [anon_sym_num] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(1047), + [anon_sym_string] = ACTIONS(999), [anon_sym_arraykey] = ACTIONS(1001), [anon_sym_void] = ACTIONS(1001), [anon_sym_nonnull] = ACTIONS(1001), @@ -53732,74 +47297,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1037), [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, [215] = { - [sym_qualified_identifier] = STATE(1883), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2660), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2490), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(3996), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(3996), - [sym_function_type_specifier] = STATE(3996), - [sym_shape_type_specifier] = STATE(3996), - [sym_type_constant] = STATE(3996), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1879), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2615), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2502), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(3983), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(3983), + [sym_function_type_specifier] = STATE(3983), + [sym_shape_type_specifier] = STATE(3983), + [sym_type_constant] = STATE(3983), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -53838,17 +47404,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(989), [anon_sym_TILDE] = ACTIONS(1031), [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_array] = ACTIONS(995), + [anon_sym_array] = ACTIONS(1045), [anon_sym_varray] = ACTIONS(997), [anon_sym_darray] = ACTIONS(997), [anon_sym_vec] = ACTIONS(997), [anon_sym_dict] = ACTIONS(997), [anon_sym_keyset] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_float] = ACTIONS(999), - [anon_sym_int] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(1047), + [anon_sym_float] = ACTIONS(1047), + [anon_sym_int] = ACTIONS(1047), [anon_sym_num] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(999), + [anon_sym_string] = ACTIONS(1047), [anon_sym_arraykey] = ACTIONS(1001), [anon_sym_void] = ACTIONS(1001), [anon_sym_nonnull] = ACTIONS(1001), @@ -53864,74 +47430,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1037), [sym_xhp_class_identifier] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, [216] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2660), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2356), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), + [sym_identifier] = ACTIONS(961), + [sym_variable] = ACTIONS(963), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(965), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(971), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(977), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(985), + [anon_sym_Null] = ACTIONS(985), + [anon_sym_NULL] = ACTIONS(985), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [anon_sym_array] = ACTIONS(995), + [anon_sym_varray] = ACTIONS(997), + [anon_sym_darray] = ACTIONS(997), + [anon_sym_vec] = ACTIONS(997), + [anon_sym_dict] = ACTIONS(997), + [anon_sym_keyset] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_float] = ACTIONS(999), + [anon_sym_int] = ACTIONS(999), + [anon_sym_num] = ACTIONS(1001), + [anon_sym_string] = ACTIONS(999), + [anon_sym_arraykey] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_nonnull] = ACTIONS(1001), + [anon_sym_mixed] = ACTIONS(1001), + [anon_sym_dynamic] = ACTIONS(1001), + [anon_sym_noreturn] = ACTIONS(1001), + [anon_sym_nothing] = ACTIONS(1001), + [anon_sym_resource] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), + [sym_inout_modifier] = ACTIONS(1015), + [sym_xhp_identifier] = ACTIONS(1017), + [sym_xhp_class_identifier] = ACTIONS(1019), + [sym_comment] = ACTIONS(3), + }, + [217] = { + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2615), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2081), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1967), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(1021), [sym_pipe_variable] = ACTIONS(13), @@ -53953,7 +47653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(1025), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -53996,206 +47696,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), - [sym_inout_modifier] = ACTIONS(1015), - [sym_xhp_identifier] = ACTIONS(1017), - [sym_xhp_class_identifier] = ACTIONS(1019), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2497), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), - [sym_identifier] = ACTIONS(961), - [sym_variable] = ACTIONS(963), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(965), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(971), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(977), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(985), - [anon_sym_Null] = ACTIONS(985), - [anon_sym_NULL] = ACTIONS(985), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(987), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_array] = ACTIONS(995), - [anon_sym_varray] = ACTIONS(997), - [anon_sym_darray] = ACTIONS(997), - [anon_sym_vec] = ACTIONS(997), - [anon_sym_dict] = ACTIONS(997), - [anon_sym_keyset] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_float] = ACTIONS(999), - [anon_sym_int] = ACTIONS(999), - [anon_sym_num] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(999), - [anon_sym_arraykey] = ACTIONS(1001), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_nonnull] = ACTIONS(1001), - [anon_sym_mixed] = ACTIONS(1001), - [anon_sym_dynamic] = ACTIONS(1001), - [anon_sym_noreturn] = ACTIONS(1001), - [anon_sym_nothing] = ACTIONS(1001), - [anon_sym_resource] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(121), - [anon_sym_public] = ACTIONS(1013), - [anon_sym_protected] = ACTIONS(1013), - [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [218] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2300), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2361), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -54217,7 +47786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -54267,67 +47836,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [219] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2283), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2465), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -54349,7 +47919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -54399,67 +47969,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [220] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2428), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2350), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -54481,7 +48052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -54531,67 +48102,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [221] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2308), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2249), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -54613,7 +48185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -54663,67 +48235,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [222] = { - [sym_qualified_identifier] = STATE(1881), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2400), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2323), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(4981), - [sym__type_modifier] = STATE(3443), - [sym_tuple_type_specifier] = STATE(4981), - [sym_function_type_specifier] = STATE(4981), - [sym_shape_type_specifier] = STATE(4981), - [sym_type_constant] = STATE(4981), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1883), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2358), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2488), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(4984), + [sym__type_modifier] = STATE(3448), + [sym_tuple_type_specifier] = STATE(4984), + [sym_function_type_specifier] = STATE(4984), + [sym_shape_type_specifier] = STATE(4984), + [sym_type_constant] = STATE(4984), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_parameter] = STATE(4963), - [sym_enum_class_label] = STATE(1929), - [sym_visibility_modifier] = STATE(2938), - [sym_attribute_modifier] = STATE(2004), - [sym_variadic_modifier] = STATE(5739), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1821), - [aux_sym_type_specifier_repeat1] = STATE(3443), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_parameter] = STATE(4965), + [sym_enum_class_label] = STATE(1942), + [sym_visibility_modifier] = STATE(2920), + [sym_attribute_modifier] = STATE(1952), + [sym_variadic_modifier] = STATE(5738), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1829), + [aux_sym_type_specifier_repeat1] = STATE(3448), [sym_identifier] = ACTIONS(961), [sym_variable] = ACTIONS(963), [sym_pipe_variable] = ACTIONS(13), @@ -54745,7 +48318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -54795,64 +48368,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_public] = ACTIONS(1013), [anon_sym_protected] = ACTIONS(1013), [anon_sym_private] = ACTIONS(1013), + [anon_sym_internal] = ACTIONS(1013), [sym_inout_modifier] = ACTIONS(1015), [sym_xhp_identifier] = ACTIONS(1017), [sym_xhp_class_identifier] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [223] = { - [sym_qualified_identifier] = STATE(1795), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2036), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1894), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(5250), - [sym__type_modifier] = STATE(3437), - [sym_tuple_type_specifier] = STATE(5250), - [sym_function_type_specifier] = STATE(5250), - [sym_shape_type_specifier] = STATE(5250), - [sym_type_constant] = STATE(5250), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1803), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2087), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1893), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(5255), + [sym__type_modifier] = STATE(3452), + [sym_tuple_type_specifier] = STATE(5255), + [sym_function_type_specifier] = STATE(5255), + [sym_shape_type_specifier] = STATE(5255), + [sym_type_constant] = STATE(5255), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [aux_sym_type_specifier_repeat1] = STATE(3437), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [aux_sym_type_specifier_repeat1] = STATE(3452), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -54861,7 +48435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -54873,7 +48447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -54925,58 +48499,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [224] = { - [sym_qualified_identifier] = STATE(1811), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2132), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1894), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(5250), - [sym__type_modifier] = STATE(3437), - [sym_tuple_type_specifier] = STATE(5250), - [sym_function_type_specifier] = STATE(5250), - [sym_shape_type_specifier] = STATE(5250), - [sym_type_constant] = STATE(5250), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1861), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2135), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1893), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(5255), + [sym__type_modifier] = STATE(3452), + [sym_tuple_type_specifier] = STATE(5255), + [sym_function_type_specifier] = STATE(5255), + [sym_shape_type_specifier] = STATE(5255), + [sym_type_constant] = STATE(5255), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [aux_sym_type_specifier_repeat1] = STATE(3437), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [aux_sym_type_specifier_repeat1] = STATE(3452), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -54985,7 +48559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -54997,7 +48571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -55049,67 +48623,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [225] = { - [sym_qualified_identifier] = STATE(1786), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2061), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2089), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_type_specifier] = STATE(5250), - [sym__type_modifier] = STATE(3437), - [sym_tuple_type_specifier] = STATE(5250), - [sym_function_type_specifier] = STATE(5250), - [sym_shape_type_specifier] = STATE(5250), - [sym_type_constant] = STATE(5250), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1878), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2360), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2476), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_type_specifier] = STATE(5255), + [sym__type_modifier] = STATE(3452), + [sym_tuple_type_specifier] = STATE(5255), + [sym_function_type_specifier] = STATE(5255), + [sym_shape_type_specifier] = STATE(5255), + [sym_type_constant] = STATE(5255), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [aux_sym_type_specifier_repeat1] = STATE(3452), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1101), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1137), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(1139), + [anon_sym_array] = ACTIONS(1141), + [anon_sym_varray] = ACTIONS(1141), + [anon_sym_darray] = ACTIONS(1141), + [anon_sym_vec] = ACTIONS(1141), + [anon_sym_dict] = ACTIONS(1141), + [anon_sym_keyset] = ACTIONS(1141), + [anon_sym_bool] = ACTIONS(1055), + [anon_sym_float] = ACTIONS(1055), + [anon_sym_int] = ACTIONS(1055), + [anon_sym_num] = ACTIONS(1055), + [anon_sym_string] = ACTIONS(1055), + [anon_sym_arraykey] = ACTIONS(1055), + [anon_sym_void] = ACTIONS(1055), + [anon_sym_nonnull] = ACTIONS(1055), + [anon_sym_mixed] = ACTIONS(1055), + [anon_sym_dynamic] = ACTIONS(1055), + [anon_sym_noreturn] = ACTIONS(1055), + [anon_sym_nothing] = ACTIONS(1055), + [anon_sym_resource] = ACTIONS(1055), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1161), + [sym_xhp_class_identifier] = ACTIONS(1163), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_qualified_identifier] = STATE(1794), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2009), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2086), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_type_specifier] = STATE(5255), + [sym__type_modifier] = STATE(3452), + [sym_tuple_type_specifier] = STATE(5255), + [sym_function_type_specifier] = STATE(5255), + [sym_shape_type_specifier] = STATE(5255), + [sym_type_constant] = STATE(5255), + [sym__type_constant] = STATE(2623), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [aux_sym_type_specifier_repeat1] = STATE(3437), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [aux_sym_type_specifier_repeat1] = STATE(3452), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(1095), + [anon_sym_shape] = ACTIONS(1165), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -55121,7 +48819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -55164,208 +48862,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1097), - [sym_xhp_class_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [sym_qualified_identifier] = STATE(1887), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2272), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2424), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_type_specifier] = STATE(5250), - [sym__type_modifier] = STATE(3437), - [sym_tuple_type_specifier] = STATE(5250), - [sym_function_type_specifier] = STATE(5250), - [sym_shape_type_specifier] = STATE(5250), - [sym_type_constant] = STATE(5250), - [sym__type_constant] = STATE(2653), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [aux_sym_type_specifier_repeat1] = STATE(3437), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1107), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1129), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1143), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_array] = ACTIONS(1147), - [anon_sym_varray] = ACTIONS(1147), - [anon_sym_darray] = ACTIONS(1147), - [anon_sym_vec] = ACTIONS(1147), - [anon_sym_dict] = ACTIONS(1147), - [anon_sym_keyset] = ACTIONS(1147), - [anon_sym_bool] = ACTIONS(1055), - [anon_sym_float] = ACTIONS(1055), - [anon_sym_int] = ACTIONS(1055), - [anon_sym_num] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_arraykey] = ACTIONS(1055), - [anon_sym_void] = ACTIONS(1055), - [anon_sym_nonnull] = ACTIONS(1055), - [anon_sym_mixed] = ACTIONS(1055), - [anon_sym_dynamic] = ACTIONS(1055), - [anon_sym_noreturn] = ACTIONS(1055), - [anon_sym_nothing] = ACTIONS(1055), - [anon_sym_resource] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), [sym_xhp_identifier] = ACTIONS(1167), [sym_xhp_class_identifier] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, [227] = { - [sym_qualified_identifier] = STATE(1990), - [sym_scoped_identifier] = STATE(2216), - [sym_scope_identifier] = STATE(2200), - [sym_heredoc] = STATE(1929), - [sym_braced_expression] = STATE(2372), - [sym__expression] = STATE(2807), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(2353), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2345), - [sym_subscript_expression] = STATE(2345), - [sym_list_expression] = STATE(2345), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2806), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1778), + [sym_scoped_identifier] = STATE(1802), + [sym_scope_identifier] = STATE(1807), + [sym_heredoc] = STATE(1942), + [sym_braced_expression] = STATE(1836), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1851), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1826), + [sym_subscript_expression] = STATE(1826), + [sym_list_expression] = STATE(1826), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2345), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2345), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1171), - [sym_variable] = ACTIONS(1173), - [sym_pipe_variable] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1177), - [anon_sym_newtype] = ACTIONS(1177), - [anon_sym_shape] = ACTIONS(1179), - [anon_sym_tuple] = ACTIONS(1181), - [anon_sym_clone] = ACTIONS(1183), - [anon_sym_new] = ACTIONS(1185), - [anon_sym_print] = ACTIONS(1187), - [anon_sym_namespace] = ACTIONS(1189), - [anon_sym_include] = ACTIONS(1191), - [anon_sym_include_once] = ACTIONS(1191), - [anon_sym_require] = ACTIONS(1193), - [anon_sym_require_once] = ACTIONS(1193), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), + [sym_call_expression] = STATE(1826), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1826), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1171), + [sym_pipe_variable] = ACTIONS(1173), + [anon_sym_type] = ACTIONS(1175), + [anon_sym_newtype] = ACTIONS(1175), + [anon_sym_shape] = ACTIONS(1177), + [anon_sym_tuple] = ACTIONS(1179), + [anon_sym_clone] = ACTIONS(1181), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_print] = ACTIONS(1185), + [anon_sym_namespace] = ACTIONS(1187), + [anon_sym_include] = ACTIONS(1189), + [anon_sym_include_once] = ACTIONS(1189), + [anon_sym_require] = ACTIONS(1191), + [anon_sym_require_once] = ACTIONS(1191), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -55374,116 +48948,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(89), [anon_sym_False] = ACTIONS(89), [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(1199), - [anon_sym_Null] = ACTIONS(1199), - [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_null] = ACTIONS(1195), + [anon_sym_Null] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(1201), - [anon_sym_varray] = ACTIONS(1201), - [anon_sym_darray] = ACTIONS(1201), - [anon_sym_vec] = ACTIONS(1201), - [anon_sym_dict] = ACTIONS(1201), - [anon_sym_keyset] = ACTIONS(1201), - [anon_sym_bool] = ACTIONS(1177), - [anon_sym_float] = ACTIONS(1177), - [anon_sym_int] = ACTIONS(1177), - [anon_sym_num] = ACTIONS(1177), - [anon_sym_string] = ACTIONS(1177), - [anon_sym_arraykey] = ACTIONS(1177), - [anon_sym_void] = ACTIONS(1177), - [anon_sym_nonnull] = ACTIONS(1177), - [anon_sym_mixed] = ACTIONS(1177), - [anon_sym_dynamic] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_nothing] = ACTIONS(1177), - [anon_sym_resource] = ACTIONS(1177), + [anon_sym_array] = ACTIONS(1197), + [anon_sym_varray] = ACTIONS(1197), + [anon_sym_darray] = ACTIONS(1197), + [anon_sym_vec] = ACTIONS(1197), + [anon_sym_dict] = ACTIONS(1197), + [anon_sym_keyset] = ACTIONS(1197), + [anon_sym_bool] = ACTIONS(1175), + [anon_sym_float] = ACTIONS(1175), + [anon_sym_int] = ACTIONS(1175), + [anon_sym_num] = ACTIONS(1175), + [anon_sym_string] = ACTIONS(1175), + [anon_sym_arraykey] = ACTIONS(1175), + [anon_sym_void] = ACTIONS(1175), + [anon_sym_nonnull] = ACTIONS(1175), + [anon_sym_mixed] = ACTIONS(1175), + [anon_sym_dynamic] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_nothing] = ACTIONS(1175), + [anon_sym_resource] = ACTIONS(1175), [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(101), [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(1153), + [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1203), - [sym_xhp_class_identifier] = ACTIONS(1175), + [sym_xhp_identifier] = ACTIONS(1199), + [sym_xhp_class_identifier] = ACTIONS(1173), [sym_comment] = ACTIONS(3), }, [228] = { - [sym_qualified_identifier] = STATE(1779), - [sym_scoped_identifier] = STATE(1800), - [sym_scope_identifier] = STATE(1799), - [sym_heredoc] = STATE(1929), - [sym_braced_expression] = STATE(1818), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1819), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1842), - [sym_subscript_expression] = STATE(1842), - [sym_list_expression] = STATE(1842), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1778), + [sym_scoped_identifier] = STATE(1802), + [sym_scope_identifier] = STATE(1807), + [sym_heredoc] = STATE(1942), + [sym_braced_expression] = STATE(1836), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1851), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1826), + [sym_subscript_expression] = STATE(1826), + [sym_list_expression] = STATE(1826), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1842), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1842), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1826), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1826), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1205), - [sym_pipe_variable] = ACTIONS(1207), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_newtype] = ACTIONS(1209), - [anon_sym_shape] = ACTIONS(1211), - [anon_sym_tuple] = ACTIONS(1213), - [anon_sym_clone] = ACTIONS(1215), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_namespace] = ACTIONS(1221), - [anon_sym_include] = ACTIONS(1223), - [anon_sym_include_once] = ACTIONS(1223), - [anon_sym_require] = ACTIONS(1225), - [anon_sym_require_once] = ACTIONS(1225), + [sym_variable] = ACTIONS(1171), + [sym_pipe_variable] = ACTIONS(1173), + [anon_sym_type] = ACTIONS(1175), + [anon_sym_newtype] = ACTIONS(1175), + [anon_sym_shape] = ACTIONS(1177), + [anon_sym_tuple] = ACTIONS(1179), + [anon_sym_clone] = ACTIONS(1201), + [anon_sym_new] = ACTIONS(1203), + [anon_sym_print] = ACTIONS(1205), + [anon_sym_namespace] = ACTIONS(1187), + [anon_sym_include] = ACTIONS(1207), + [anon_sym_include_once] = ACTIONS(1207), + [anon_sym_require] = ACTIONS(1209), + [anon_sym_require_once] = ACTIONS(1209), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1193), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -55492,31 +49066,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(89), [anon_sym_False] = ACTIONS(89), [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(1229), - [anon_sym_Null] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1195), + [anon_sym_Null] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(1231), - [anon_sym_varray] = ACTIONS(1231), - [anon_sym_darray] = ACTIONS(1231), - [anon_sym_vec] = ACTIONS(1231), - [anon_sym_dict] = ACTIONS(1231), - [anon_sym_keyset] = ACTIONS(1231), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_float] = ACTIONS(1209), - [anon_sym_int] = ACTIONS(1209), - [anon_sym_num] = ACTIONS(1209), - [anon_sym_string] = ACTIONS(1209), - [anon_sym_arraykey] = ACTIONS(1209), - [anon_sym_void] = ACTIONS(1209), - [anon_sym_nonnull] = ACTIONS(1209), - [anon_sym_mixed] = ACTIONS(1209), - [anon_sym_dynamic] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_nothing] = ACTIONS(1209), - [anon_sym_resource] = ACTIONS(1209), + [anon_sym_array] = ACTIONS(1197), + [anon_sym_varray] = ACTIONS(1197), + [anon_sym_darray] = ACTIONS(1197), + [anon_sym_vec] = ACTIONS(1197), + [anon_sym_dict] = ACTIONS(1197), + [anon_sym_keyset] = ACTIONS(1197), + [anon_sym_bool] = ACTIONS(1175), + [anon_sym_float] = ACTIONS(1175), + [anon_sym_int] = ACTIONS(1175), + [anon_sym_num] = ACTIONS(1175), + [anon_sym_string] = ACTIONS(1175), + [anon_sym_arraykey] = ACTIONS(1175), + [anon_sym_void] = ACTIONS(1175), + [anon_sym_nonnull] = ACTIONS(1175), + [anon_sym_mixed] = ACTIONS(1175), + [anon_sym_dynamic] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_nothing] = ACTIONS(1175), + [anon_sym_resource] = ACTIONS(1175), [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(101), [anon_sym_DASH] = ACTIONS(101), @@ -55524,84 +49098,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1207), + [sym_xhp_identifier] = ACTIONS(1199), + [sym_xhp_class_identifier] = ACTIONS(1173), [sym_comment] = ACTIONS(3), }, [229] = { - [sym_qualified_identifier] = STATE(1779), - [sym_scoped_identifier] = STATE(1800), - [sym_scope_identifier] = STATE(1799), - [sym_heredoc] = STATE(1929), - [sym_braced_expression] = STATE(1818), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1819), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1842), - [sym_subscript_expression] = STATE(1842), - [sym_list_expression] = STATE(1842), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1910), + [sym_scoped_identifier] = STATE(2194), + [sym_scope_identifier] = STATE(2175), + [sym_heredoc] = STATE(1942), + [sym_braced_expression] = STATE(2433), + [sym__expression] = STATE(2872), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(2432), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2351), + [sym_subscript_expression] = STATE(2351), + [sym_list_expression] = STATE(2351), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2863), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1842), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1842), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1205), - [sym_pipe_variable] = ACTIONS(1207), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_newtype] = ACTIONS(1209), - [anon_sym_shape] = ACTIONS(1211), - [anon_sym_tuple] = ACTIONS(1213), - [anon_sym_clone] = ACTIONS(1235), - [anon_sym_new] = ACTIONS(1237), - [anon_sym_print] = ACTIONS(1239), - [anon_sym_namespace] = ACTIONS(1221), - [anon_sym_include] = ACTIONS(1241), - [anon_sym_include_once] = ACTIONS(1241), - [anon_sym_require] = ACTIONS(1243), - [anon_sym_require_once] = ACTIONS(1243), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), + [sym_call_expression] = STATE(2351), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2351), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1211), + [sym_variable] = ACTIONS(1213), + [sym_pipe_variable] = ACTIONS(1215), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_newtype] = ACTIONS(1217), + [anon_sym_shape] = ACTIONS(1219), + [anon_sym_tuple] = ACTIONS(1221), + [anon_sym_clone] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_print] = ACTIONS(1227), + [anon_sym_namespace] = ACTIONS(1229), + [anon_sym_include] = ACTIONS(1231), + [anon_sym_include_once] = ACTIONS(1231), + [anon_sym_require] = ACTIONS(1233), + [anon_sym_require_once] = ACTIONS(1233), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -55610,206 +49184,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(89), [anon_sym_False] = ACTIONS(89), [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(1229), - [anon_sym_Null] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), + [anon_sym_null] = ACTIONS(1239), + [anon_sym_Null] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(1231), - [anon_sym_varray] = ACTIONS(1231), - [anon_sym_darray] = ACTIONS(1231), - [anon_sym_vec] = ACTIONS(1231), - [anon_sym_dict] = ACTIONS(1231), - [anon_sym_keyset] = ACTIONS(1231), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_float] = ACTIONS(1209), - [anon_sym_int] = ACTIONS(1209), - [anon_sym_num] = ACTIONS(1209), - [anon_sym_string] = ACTIONS(1209), - [anon_sym_arraykey] = ACTIONS(1209), - [anon_sym_void] = ACTIONS(1209), - [anon_sym_nonnull] = ACTIONS(1209), - [anon_sym_mixed] = ACTIONS(1209), - [anon_sym_dynamic] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_nothing] = ACTIONS(1209), - [anon_sym_resource] = ACTIONS(1209), + [anon_sym_array] = ACTIONS(1241), + [anon_sym_varray] = ACTIONS(1241), + [anon_sym_darray] = ACTIONS(1241), + [anon_sym_vec] = ACTIONS(1241), + [anon_sym_dict] = ACTIONS(1241), + [anon_sym_keyset] = ACTIONS(1241), + [anon_sym_bool] = ACTIONS(1217), + [anon_sym_float] = ACTIONS(1217), + [anon_sym_int] = ACTIONS(1217), + [anon_sym_num] = ACTIONS(1217), + [anon_sym_string] = ACTIONS(1217), + [anon_sym_arraykey] = ACTIONS(1217), + [anon_sym_void] = ACTIONS(1217), + [anon_sym_nonnull] = ACTIONS(1217), + [anon_sym_mixed] = ACTIONS(1217), + [anon_sym_dynamic] = ACTIONS(1217), + [anon_sym_noreturn] = ACTIONS(1217), + [anon_sym_nothing] = ACTIONS(1217), + [anon_sym_resource] = ACTIONS(1217), [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(101), [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), + [anon_sym_list] = ACTIONS(1147), [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1233), - [sym_xhp_class_identifier] = ACTIONS(1207), + [sym_xhp_identifier] = ACTIONS(1243), + [sym_xhp_class_identifier] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [230] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2506), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1253), - [anon_sym_float] = ACTIONS(1253), - [anon_sym_int] = ACTIONS(1253), - [anon_sym_num] = ACTIONS(1253), - [anon_sym_string] = ACTIONS(1253), - [anon_sym_arraykey] = ACTIONS(1253), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_nonnull] = ACTIONS(1253), - [anon_sym_mixed] = ACTIONS(1253), - [anon_sym_dynamic] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_nothing] = ACTIONS(1253), - [anon_sym_resource] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2042), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2016), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -55818,7 +49277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -55830,7 +49289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -55844,7 +49303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1245), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -55852,19 +49311,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_bool] = ACTIONS(1253), - [anon_sym_float] = ACTIONS(1253), - [anon_sym_int] = ACTIONS(1253), - [anon_sym_num] = ACTIONS(1253), - [anon_sym_string] = ACTIONS(1253), - [anon_sym_arraykey] = ACTIONS(1253), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_nonnull] = ACTIONS(1253), - [anon_sym_mixed] = ACTIONS(1253), - [anon_sym_dynamic] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_nothing] = ACTIONS(1253), - [anon_sym_resource] = ACTIONS(1253), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_float] = ACTIONS(1247), + [anon_sym_int] = ACTIONS(1247), + [anon_sym_num] = ACTIONS(1247), + [anon_sym_string] = ACTIONS(1247), + [anon_sym_arraykey] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_nonnull] = ACTIONS(1247), + [anon_sym_mixed] = ACTIONS(1247), + [anon_sym_dynamic] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_nothing] = ACTIONS(1247), + [anon_sym_resource] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(101), [anon_sym_DASH] = ACTIONS(101), @@ -55872,7 +49331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -55880,51 +49339,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2067), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [231] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2084), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -55933,7 +49392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -55944,8 +49403,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -55959,7 +49418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1251), [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -55967,19 +49426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_float] = ACTIONS(1261), - [anon_sym_int] = ACTIONS(1261), - [anon_sym_num] = ACTIONS(1261), - [anon_sym_string] = ACTIONS(1261), - [anon_sym_arraykey] = ACTIONS(1261), - [anon_sym_void] = ACTIONS(1261), - [anon_sym_nonnull] = ACTIONS(1261), - [anon_sym_mixed] = ACTIONS(1261), - [anon_sym_dynamic] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_nothing] = ACTIONS(1261), - [anon_sym_resource] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_float] = ACTIONS(1253), + [anon_sym_int] = ACTIONS(1253), + [anon_sym_num] = ACTIONS(1253), + [anon_sym_string] = ACTIONS(1253), + [anon_sym_arraykey] = ACTIONS(1253), + [anon_sym_void] = ACTIONS(1253), + [anon_sym_nonnull] = ACTIONS(1253), + [anon_sym_mixed] = ACTIONS(1253), + [anon_sym_dynamic] = ACTIONS(1253), + [anon_sym_noreturn] = ACTIONS(1253), + [anon_sym_nothing] = ACTIONS(1253), + [anon_sym_resource] = ACTIONS(1253), [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), @@ -55995,51 +49454,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, + [232] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2116), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(1067), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_float] = ACTIONS(1247), + [anon_sym_int] = ACTIONS(1247), + [anon_sym_num] = ACTIONS(1247), + [anon_sym_string] = ACTIONS(1247), + [anon_sym_arraykey] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_nonnull] = ACTIONS(1247), + [anon_sym_mixed] = ACTIONS(1247), + [anon_sym_dynamic] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_nothing] = ACTIONS(1247), + [anon_sym_resource] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + }, [233] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2096), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -56048,7 +49622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -56059,8 +49633,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -56074,7 +49648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(1085), - [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1251), [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), @@ -56106,306 +49680,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, [234] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2498), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2499), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_float] = ACTIONS(1261), - [anon_sym_int] = ACTIONS(1261), - [anon_sym_num] = ACTIONS(1261), - [anon_sym_string] = ACTIONS(1261), - [anon_sym_arraykey] = ACTIONS(1261), - [anon_sym_void] = ACTIONS(1261), - [anon_sym_nonnull] = ACTIONS(1261), - [anon_sym_mixed] = ACTIONS(1261), - [anon_sym_dynamic] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_nothing] = ACTIONS(1261), - [anon_sym_resource] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_float] = ACTIONS(1247), + [anon_sym_int] = ACTIONS(1247), + [anon_sym_num] = ACTIONS(1247), + [anon_sym_string] = ACTIONS(1247), + [anon_sym_arraykey] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_nonnull] = ACTIONS(1247), + [anon_sym_mixed] = ACTIONS(1247), + [anon_sym_dynamic] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_nothing] = ACTIONS(1247), + [anon_sym_resource] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, [235] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2038), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2501), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_float] = ACTIONS(1261), - [anon_sym_int] = ACTIONS(1261), - [anon_sym_num] = ACTIONS(1261), - [anon_sym_string] = ACTIONS(1261), - [anon_sym_arraykey] = ACTIONS(1261), - [anon_sym_void] = ACTIONS(1261), - [anon_sym_nonnull] = ACTIONS(1261), - [anon_sym_mixed] = ACTIONS(1261), - [anon_sym_dynamic] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_nothing] = ACTIONS(1261), - [anon_sym_resource] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_float] = ACTIONS(1253), + [anon_sym_int] = ACTIONS(1253), + [anon_sym_num] = ACTIONS(1253), + [anon_sym_string] = ACTIONS(1253), + [anon_sym_arraykey] = ACTIONS(1253), + [anon_sym_void] = ACTIONS(1253), + [anon_sym_nonnull] = ACTIONS(1253), + [anon_sym_mixed] = ACTIONS(1253), + [anon_sym_dynamic] = ACTIONS(1253), + [anon_sym_noreturn] = ACTIONS(1253), + [anon_sym_nothing] = ACTIONS(1253), + [anon_sym_resource] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, [236] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2148), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2085), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -56418,109 +49992,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_QMARK] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), [anon_sym_vec] = ACTIONS(97), [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_float] = ACTIONS(1261), - [anon_sym_int] = ACTIONS(1261), - [anon_sym_num] = ACTIONS(1261), - [anon_sym_string] = ACTIONS(1261), - [anon_sym_arraykey] = ACTIONS(1261), - [anon_sym_void] = ACTIONS(1261), - [anon_sym_nonnull] = ACTIONS(1261), - [anon_sym_mixed] = ACTIONS(1261), - [anon_sym_dynamic] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_nothing] = ACTIONS(1261), - [anon_sym_resource] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_float] = ACTIONS(1247), + [anon_sym_int] = ACTIONS(1247), + [anon_sym_num] = ACTIONS(1247), + [anon_sym_string] = ACTIONS(1247), + [anon_sym_arraykey] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_nonnull] = ACTIONS(1247), + [anon_sym_mixed] = ACTIONS(1247), + [anon_sym_dynamic] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_nothing] = ACTIONS(1247), + [anon_sym_resource] = ACTIONS(1247), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [237] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2065), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2052), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -56533,9 +50107,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -56556,67 +50130,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nothing] = ACTIONS(1253), [anon_sym_resource] = ACTIONS(1253), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [238] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(4978), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -56625,7 +50199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -56636,9 +50210,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -56677,52 +50251,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [239] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(4897), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -56731,7 +50305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -56742,9 +50316,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -56783,74 +50357,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [240] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(2534), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5133), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_field_initializer] = STATE(5124), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -56862,10 +50436,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(91), [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [sym_string] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -56873,68 +50448,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [241] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(2571), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5136), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(4962), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(2534), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5133), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_field_initializer] = STATE(5124), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -56943,7 +50517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -56955,8 +50529,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -56968,11 +50542,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(91), [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(1277), + [sym_string] = ACTIONS(1275), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -56986,7 +50560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -56995,52 +50569,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [242] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57049,7 +50623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -57060,9 +50634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57101,52 +50675,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [243] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57155,7 +50729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -57166,9 +50740,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57207,52 +50781,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [244] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57261,7 +50835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -57272,9 +50846,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57313,74 +50887,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [245] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(2571), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5136), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(5139), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1289), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57392,11 +50966,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(91), [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -57404,89 +50977,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [246] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(2534), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5133), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_field_initializer] = STATE(5056), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1291), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57498,10 +51072,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(91), [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [sym_string] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -57509,68 +51084,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [247] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(4978), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57579,7 +51153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -57590,9 +51164,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1293), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57631,52 +51205,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [248] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(5084), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57685,7 +51259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -57696,9 +51270,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1295), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57737,52 +51311,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [249] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(2571), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5136), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(5139), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(2534), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5133), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_field_initializer] = STATE(5124), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57791,7 +51365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -57804,7 +51378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1297), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57816,11 +51390,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(91), [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(1277), + [sym_string] = ACTIONS(1275), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -57834,7 +51408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -57843,52 +51417,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [250] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5249), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(5256), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -57897,7 +51471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -57908,9 +51482,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1299), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -57949,52 +51523,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [251] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5238), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(4877), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58003,7 +51577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -58014,9 +51588,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58055,74 +51629,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [252] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(2571), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5136), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(5139), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58134,11 +51708,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(91), [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -58146,67 +51719,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [253] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58215,7 +51789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -58226,9 +51800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58267,52 +51841,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [254] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(2571), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5136), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_field_initializer] = STATE(5139), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(2534), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5133), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_field_initializer] = STATE(5124), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58321,7 +51895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -58334,7 +51908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58346,11 +51920,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(91), [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(1277), + [sym_string] = ACTIONS(1275), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -58364,7 +51938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -58373,51 +51947,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [255] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58426,7 +52000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -58439,7 +52013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58453,7 +52027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -58469,7 +52043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -58478,51 +52052,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [256] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58531,7 +52105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -58544,7 +52118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58558,7 +52132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -58574,7 +52148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -58583,51 +52157,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [257] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4592), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4641), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58636,7 +52210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -58649,7 +52223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1315), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58663,7 +52237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), [anon_sym_array] = ACTIONS(97), @@ -58679,7 +52253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -58688,51 +52262,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [258] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5139), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58741,7 +52315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -58754,7 +52328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58768,9 +52342,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1321), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -58784,7 +52358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -58793,51 +52367,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [259] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58846,7 +52420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -58858,8 +52432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1323), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58873,7 +52447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -58889,7 +52463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -58898,51 +52472,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [260] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4676), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4954), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -58951,7 +52525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -58963,8 +52537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1323), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -58978,9 +52552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -58994,7 +52568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59003,51 +52577,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [261] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59056,7 +52630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59068,8 +52642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59083,7 +52657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -59099,7 +52673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59108,51 +52682,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [262] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59161,7 +52735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59173,8 +52747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1331), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59188,7 +52762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -59204,7 +52778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59213,51 +52787,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [263] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59266,7 +52840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59278,8 +52852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59293,7 +52867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -59309,7 +52883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59318,73 +52892,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [264] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2602), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_argument] = STATE(5342), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_variadic_modifier] = STATE(602), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59397,10 +52971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -59408,66 +52981,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), + [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [265] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59476,7 +53050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59489,7 +53063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59503,7 +53077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -59519,7 +53093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59528,51 +53102,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [266] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59581,7 +53155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59594,7 +53168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59608,7 +53182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -59624,7 +53198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59633,51 +53207,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [267] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4635), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59686,7 +53260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59699,7 +53273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59713,9 +53287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -59729,7 +53303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59738,51 +53312,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [268] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59791,7 +53365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59803,8 +53377,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59818,7 +53392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -59834,7 +53408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59843,51 +53417,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [269] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -59896,7 +53470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -59908,8 +53482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -59923,7 +53497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -59939,7 +53513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -59948,51 +53522,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [270] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60001,7 +53575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60013,8 +53587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60028,7 +53602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -60044,7 +53618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60053,51 +53627,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [271] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5182), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60106,7 +53680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60118,8 +53692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60133,9 +53707,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -60149,7 +53723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60158,51 +53732,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [272] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60211,7 +53785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60223,8 +53797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60238,7 +53812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -60254,7 +53828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60263,51 +53837,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [273] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60316,7 +53890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60328,8 +53902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1351), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60343,7 +53917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -60359,7 +53933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60368,51 +53942,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [274] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60421,7 +53995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60433,8 +54007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60448,7 +54022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -60464,7 +54038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60473,51 +54047,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [275] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5136), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60526,7 +54100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60538,8 +54112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1355), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60553,9 +54127,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -60569,7 +54143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60578,51 +54152,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [276] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5129), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60631,7 +54205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60643,8 +54217,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60658,9 +54232,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -60674,7 +54248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60683,51 +54257,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [277] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5133), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60736,7 +54310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60748,8 +54322,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60763,9 +54337,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -60779,7 +54353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60788,51 +54362,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [278] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60841,7 +54415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60853,8 +54427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60868,7 +54442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -60884,7 +54458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60893,51 +54467,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [279] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -60946,7 +54520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -60958,8 +54532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -60973,7 +54547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -60989,7 +54563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -60998,51 +54572,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [280] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4879), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61051,7 +54625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61063,8 +54637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61078,9 +54652,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -61094,7 +54668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61103,51 +54677,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [281] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4836), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61156,7 +54730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61168,8 +54742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61183,9 +54757,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -61199,7 +54773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61208,51 +54782,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [282] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4612), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61261,7 +54835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61273,8 +54847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61288,9 +54862,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -61304,7 +54878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61313,51 +54887,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [283] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61366,7 +54940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61378,8 +54952,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61393,7 +54967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -61409,7 +54983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61418,51 +54992,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [284] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4572), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4592), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61471,7 +55045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61483,8 +55057,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61498,9 +55072,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -61514,7 +55088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61523,51 +55097,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [285] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4728), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61576,7 +55150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61588,8 +55162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61603,9 +55177,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -61619,7 +55193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61628,51 +55202,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [286] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4816), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61681,7 +55255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61693,8 +55267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61708,9 +55282,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -61724,7 +55298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61733,51 +55307,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [287] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61786,7 +55360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61799,7 +55373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61813,7 +55387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -61829,7 +55403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61838,51 +55412,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [288] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61891,7 +55465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -61904,7 +55478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -61918,7 +55492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -61934,7 +55508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -61943,51 +55517,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [289] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -61996,7 +55570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62009,7 +55583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62023,7 +55597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -62039,7 +55613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62048,51 +55622,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [290] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62101,7 +55675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62114,7 +55688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62128,7 +55702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -62144,7 +55718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62153,51 +55727,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [291] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62206,7 +55780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62219,7 +55793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62233,7 +55807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -62249,7 +55823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62258,51 +55832,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [292] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62311,7 +55885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62324,7 +55898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62338,7 +55912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -62354,7 +55928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62363,51 +55937,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [293] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62416,7 +55990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62429,7 +56003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62443,7 +56017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -62459,7 +56033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62468,51 +56042,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [294] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4827), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62521,7 +56095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62534,7 +56108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62548,9 +56122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -62564,7 +56138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62573,51 +56147,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [295] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4867), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62626,7 +56200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62638,8 +56212,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1405), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62653,9 +56227,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -62669,7 +56243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62678,51 +56252,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [296] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62731,7 +56305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62743,8 +56317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62758,7 +56332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -62774,7 +56348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62783,51 +56357,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [297] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62836,7 +56410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62848,8 +56422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62863,7 +56437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -62879,7 +56453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62888,51 +56462,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [298] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4879), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -62941,7 +56515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -62953,8 +56527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -62968,9 +56542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -62984,7 +56558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -62993,51 +56567,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [299] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63046,7 +56620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63058,8 +56632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1413), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63073,7 +56647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -63089,7 +56663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63098,51 +56672,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [300] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(4836), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63151,7 +56725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63163,8 +56737,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63178,9 +56752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -63194,7 +56768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63203,51 +56777,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [301] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63256,7 +56830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63268,8 +56842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63283,7 +56857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -63299,7 +56873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63308,51 +56882,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [302] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4635), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63361,7 +56935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63373,8 +56947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63388,9 +56962,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -63404,7 +56978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63413,51 +56987,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [303] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4947), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63466,7 +57040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63478,8 +57052,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1425), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5145), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [305] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63493,7 +57277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -63509,7 +57293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63517,52 +57301,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [306] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63571,7 +57355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63583,8 +57367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1431), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63598,7 +57382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -63614,7 +57398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63622,52 +57406,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [307] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(4764), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63676,7 +57460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63688,8 +57472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63703,9 +57487,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -63719,7 +57503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63727,52 +57511,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [308] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63781,7 +57565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63793,8 +57577,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63808,7 +57592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -63824,7 +57608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63832,52 +57616,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [309] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5241), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63886,7 +57670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -63898,8 +57682,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -63913,9 +57697,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1443), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -63929,7 +57713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -63937,52 +57721,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5021), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [310] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -63991,7 +57775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64003,8 +57787,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64018,9 +57802,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -64034,7 +57818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64042,74 +57826,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2525), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [311] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_argument] = STATE(5342), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_variadic_modifier] = STATE(631), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64122,9 +57906,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -64132,67 +57917,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_inout_modifier] = ACTIONS(1269), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [312] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64201,7 +57985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64213,8 +57997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1443), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1449), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64228,7 +58012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -64244,7 +58028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64252,52 +58036,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [313] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64306,7 +58090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64318,8 +58102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64333,7 +58117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -64349,7 +58133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64357,52 +58141,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [314] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64411,7 +58195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64423,8 +58207,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1453), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64438,7 +58222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -64454,7 +58238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64462,52 +58246,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [313] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [315] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64516,7 +58300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64528,8 +58312,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64543,7 +58327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -64559,7 +58343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64567,52 +58351,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [316] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64621,7 +58405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64633,8 +58417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1451), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64648,7 +58432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -64664,7 +58448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64672,52 +58456,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [315] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [317] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64726,7 +58510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64738,8 +58522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64753,7 +58537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -64769,7 +58553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64777,52 +58561,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [316] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5099), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [318] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64831,7 +58615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64843,8 +58627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1455), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1461), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64858,9 +58642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -64874,7 +58658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64882,52 +58666,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [319] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2756), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_field_specifier] = STATE(5283), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -64936,7 +58720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -64948,8 +58732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1459), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -64963,7 +58746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), [anon_sym_TILDE] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), [anon_sym_array] = ACTIONS(97), @@ -64979,7 +58762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -64987,74 +58770,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [320] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2367), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [aux_sym_list_expression_repeat1] = STATE(5101), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1463), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1461), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65067,10 +58851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -65078,66 +58860,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2454), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [321] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2404), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [aux_sym_list_expression_repeat1] = STATE(4991), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [aux_sym_list_expression_repeat1] = STATE(5260), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -65146,7 +58928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -65156,11 +58938,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_COMMA] = ACTIONS(1467), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65196,52 +58978,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2396), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [322] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2065), + [sym_compound_statement] = STATE(1975), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [aux_sym_list_expression_repeat1] = STATE(5255), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -65250,7 +59032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -65260,11 +59042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1467), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65300,73 +59081,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2679), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_field_specifier] = STATE(5528), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [323] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65379,10 +59161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -65390,88 +59170,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2076), - [sym_compound_statement] = STATE(1896), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [324] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65484,8 +59263,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -65493,66 +59272,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1473), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [325] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2000), + [sym_compound_statement] = STATE(1969), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -65561,7 +59341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -65572,8 +59352,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65597,7 +59378,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1471), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -65610,51 +59390,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [326] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2572), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -65663,7 +59443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -65673,11 +59453,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1475), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65713,74 +59493,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2177), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(5148), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [327] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2063), + [sym_compound_statement] = STATE(1934), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65793,8 +59573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -65802,66 +59582,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [328] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -65870,7 +59650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -65881,9 +59661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -65907,6 +59686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1480), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -65919,52 +59699,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [329] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2572), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -65973,7 +59752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -65983,9 +59762,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1475), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -66009,7 +59790,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1482), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -66022,52 +59802,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2220), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4949), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [330] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -66076,7 +59856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -66087,9 +59867,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -66125,155 +59905,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [330] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2179), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(5047), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [331] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2572), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -66282,7 +59958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -66292,9 +59968,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1475), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -66318,7 +59996,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1489), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -66331,52 +60008,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2187), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4999), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [332] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -66385,7 +60062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -66396,9 +60073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -66422,6 +60098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1487), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -66434,361 +60111,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2466), - [sym_compound_statement] = STATE(2768), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, [333] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2513), - [sym_compound_statement] = STATE(2651), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [334] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2500), - [sym_compound_statement] = STATE(2666), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2188), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4982), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2572), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -66797,7 +60164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -66807,9 +60174,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1475), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -66833,7 +60202,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1495), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -66846,52 +60214,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [334] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2205), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4922), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -66900,7 +60268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -66911,8 +60279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -66936,7 +60305,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1497), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -66949,177 +60317,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2413), - [sym_compound_statement] = STATE(2636), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [338] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2039), - [sym_compound_statement] = STATE(1896), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [335] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2098), + [sym_compound_statement] = STATE(1969), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -67132,8 +60397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -67141,66 +60406,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2014), - [sym_compound_statement] = STATE(1897), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [336] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -67209,7 +60474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -67220,9 +60485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -67246,6 +60510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1494), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -67258,51 +60523,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [337] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2219), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(5204), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -67311,7 +60577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -67321,11 +60587,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1473), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -67361,258 +60626,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2151), - [sym_compound_statement] = STATE(1896), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2078), - [sym_compound_statement] = STATE(1966), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [343] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2008), - [sym_compound_statement] = STATE(1942), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [338] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2572), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -67621,7 +60679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -67631,10 +60689,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1475), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -67670,52 +60729,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2156), - [sym_compound_statement] = STATE(1897), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [339] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2158), + [sym_compound_statement] = STATE(1911), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -67724,7 +60783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -67735,9 +60794,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -67769,56 +60828,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2006), - [sym_compound_statement] = STATE(1944), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [340] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2223), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(5190), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -67827,7 +60886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -67838,9 +60897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -67864,6 +60922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1501), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -67876,52 +60935,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [346] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1996), - [sym_compound_statement] = STATE(1991), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [341] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2018), + [sym_compound_statement] = STATE(1969), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -67930,7 +60989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -67941,9 +61000,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -67971,7 +61030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -67979,52 +61038,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2161), - [sym_compound_statement] = STATE(1942), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [342] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2164), + [sym_compound_statement] = STATE(1982), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -68033,7 +61092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -68044,9 +61103,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68078,56 +61137,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2162), - [sym_compound_statement] = STATE(1944), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [343] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2165), + [sym_compound_statement] = STATE(1975), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -68136,7 +61298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -68147,9 +61309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68181,78 +61343,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1998), - [sym_compound_statement] = STATE(1991), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [345] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2026), + [sym_compound_statement] = STATE(1975), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68265,8 +61427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -68274,88 +61436,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1999), - [sym_compound_statement] = STATE(1987), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [346] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2002), + [sym_compound_statement] = STATE(1982), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68368,8 +61530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -68377,66 +61539,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [347] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2239), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(5121), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -68445,7 +61607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -68456,9 +61618,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68494,51 +61656,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [348] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2179), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(5096), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -68547,7 +61710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -68557,11 +61720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1473), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1473), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68585,6 +61746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1507), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -68597,74 +61759,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [349] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2077), + [sym_compound_statement] = STATE(1911), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1473), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68677,8 +61839,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -68686,66 +61848,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2119), - [sym_compound_statement] = STATE(1991), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [350] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2160), + [sym_compound_statement] = STATE(1948), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -68754,7 +61916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -68765,9 +61927,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68799,56 +61961,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2112), - [sym_compound_statement] = STATE(1987), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [351] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2159), + [sym_compound_statement] = STATE(1954), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -68857,7 +62019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -68868,9 +62030,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -68902,262 +62064,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2467), - [sym_compound_statement] = STATE(2758), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [357] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2069), - [sym_compound_statement] = STATE(1944), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [358] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [352] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2238), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(5194), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69166,7 +62122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -69177,8 +62133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -69202,7 +62158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1507), + [anon_sym_RBRACK] = ACTIONS(1509), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -69215,154 +62171,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2463), - [sym_compound_statement] = STATE(2773), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [353] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2079), + [sym_compound_statement] = STATE(1911), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69371,7 +62225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -69381,11 +62235,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1473), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -69421,52 +62274,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2010), - [sym_compound_statement] = STATE(1966), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [354] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2572), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69475,7 +62327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -69485,10 +62337,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1475), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -69524,52 +62377,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [355] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69578,7 +62431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -69589,9 +62442,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -69627,52 +62480,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [356] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2070), + [sym_compound_statement] = STATE(1982), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69681,7 +62534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -69692,9 +62545,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -69730,52 +62583,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [364] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2049), - [sym_compound_statement] = STATE(1987), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [357] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2150), + [sym_compound_statement] = STATE(1906), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(1067), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2081), + [sym_compound_statement] = STATE(1906), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69784,7 +62740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -69795,9 +62751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -69825,7 +62781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -69833,74 +62789,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2093), - [sym_compound_statement] = STATE(1966), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [359] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2030), + [sym_compound_statement] = STATE(1948), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -69913,8 +62869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -69922,66 +62878,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [360] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2017), + [sym_compound_statement] = STATE(1954), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -69990,7 +62946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -70001,8 +62957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70026,7 +62983,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1516), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -70039,74 +62995,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2031), - [sym_compound_statement] = STATE(1897), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [361] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70119,8 +63075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -70128,66 +63084,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [362] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2327), + [sym_compound_statement] = STATE(2728), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2014), + [sym_compound_statement] = STATE(1906), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -70196,7 +63255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -70207,9 +63266,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70245,74 +63304,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2580), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [364] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2045), + [sym_compound_statement] = STATE(1948), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1473), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70325,8 +63384,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -70334,66 +63393,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2017), - [sym_compound_statement] = STATE(1890), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [365] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2206), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(5242), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -70402,7 +63461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -70413,9 +63472,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70451,52 +63510,773 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, + [366] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2372), + [sym_compound_statement] = STATE(2693), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [367] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2442), + [sym_compound_statement] = STATE(2635), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [368] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2460), + [sym_compound_statement] = STATE(2616), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [369] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2512), + [sym_compound_statement] = STATE(2742), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [370] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2509), + [sym_compound_statement] = STATE(2739), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, [371] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2214), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(5194), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2479), + [sym_compound_statement] = STATE(2661), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [372] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2455), + [sym_compound_statement] = STATE(2634), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [373] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -70505,7 +64285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -70516,8 +64296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70541,7 +64321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1523), + [anon_sym_RBRACK] = ACTIONS(1522), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -70554,52 +64334,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [374] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2222), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(5049), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -70608,7 +64388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -70619,8 +64399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70644,7 +64424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_RBRACK] = ACTIONS(1524), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -70657,52 +64437,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2053), - [sym_compound_statement] = STATE(1942), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [375] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2037), + [sym_compound_statement] = STATE(1954), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -70711,7 +64491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -70722,9 +64502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70752,7 +64532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -70760,155 +64540,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2410), - [sym_compound_statement] = STATE(2762), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [375] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2229), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(5056), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [376] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -70917,7 +64594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -70928,8 +64605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -70953,7 +64631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1527), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -70966,52 +64643,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [377] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2029), + [sym_compound_statement] = STATE(1934), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -71020,7 +64697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -71031,9 +64708,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71069,52 +64746,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2105), - [sym_compound_statement] = STATE(1890), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [378] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2140), + [sym_compound_statement] = STATE(1934), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -71123,7 +64800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -71134,9 +64811,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71168,262 +64845,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2343), - [sym_compound_statement] = STATE(2739), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, [379] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2058), - [sym_compound_statement] = STATE(1890), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [380] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2191), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(5253), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2572), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -71432,7 +64902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -71442,10 +64912,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1475), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71481,51 +64952,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2379), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [380] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -71534,7 +65006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -71545,9 +65017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71571,6 +65042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1531), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(1005), [anon_sym_PLUS_PLUS] = ACTIONS(1007), @@ -71583,51 +65055,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2473), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [381] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2300), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -71636,7 +65108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -71647,9 +65119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1535), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71685,73 +65157,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2248), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [382] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_expression_statement] = STATE(1550), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71764,8 +65236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -71773,87 +65245,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2478), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [383] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2701), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71866,8 +65338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -71875,87 +65347,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2448), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [384] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_expression_statement] = STATE(991), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -71968,8 +65440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -71977,87 +65449,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2471), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [385] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2759), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72070,8 +65542,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -72079,87 +65551,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2360), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [386] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2712), + [sym_expression_statement] = STATE(952), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72172,8 +65644,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -72181,65 +65653,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2621), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [387] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2709), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -72248,7 +65720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -72259,9 +65731,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72289,7 +65761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -72297,51 +65769,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2502), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [388] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2353), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -72350,7 +65822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -72361,9 +65833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72399,73 +65871,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2444), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [389] = { + [sym_qualified_identifier] = STATE(1983), + [sym_scoped_identifier] = STATE(2230), + [sym_scope_identifier] = STATE(2196), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_list_expression] = STATE(2286), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2286), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2286), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1549), + [sym_pipe_variable] = ACTIONS(1551), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72478,8 +65950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -72487,65 +65959,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1555), + [sym_xhp_class_identifier] = ACTIONS(1551), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2417), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [390] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2399), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -72554,7 +66026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -72565,9 +66037,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72603,51 +66075,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2269), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [391] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2296), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -72656,7 +66128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -72667,9 +66139,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72705,51 +66177,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2288), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [392] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2368), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -72758,7 +66230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -72769,9 +66241,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72807,73 +66279,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2622), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [393] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2348), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72886,8 +66358,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -72895,86 +66367,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2652), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [394] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2193), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(4519), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -72987,9 +66460,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -72997,65 +66469,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2623), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [395] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2765), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -73064,7 +66536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -73075,9 +66547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1563), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73092,6 +66563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = ACTIONS(83), [anon_sym_AT] = ACTIONS(93), [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1565), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -73105,7 +66577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -73113,51 +66585,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2450), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [396] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2345), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -73166,7 +66638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -73177,9 +66649,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73215,175 +66687,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_expression_statement] = STATE(1010), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [399] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2617), - [sym_expression_statement] = STATE(951), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [397] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2413), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73396,8 +66766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -73405,65 +66775,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2409), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [398] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2307), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -73472,7 +66842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -73483,9 +66853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73521,72 +66891,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2691), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [399] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2240), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73599,8 +66970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -73608,88 +66979,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_expression_statement] = STATE(938), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [400] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2256), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73702,8 +67072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -73711,65 +67081,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2484), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [401] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2279), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -73778,7 +67148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -73789,9 +67159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73827,73 +67197,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2509), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [402] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_expression_statement] = STATE(1251), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -73906,8 +67276,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -73915,65 +67285,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2429), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [403] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2425), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -73982,7 +67352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -73993,9 +67363,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74031,51 +67401,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2296), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [404] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2248), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -74084,7 +67454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -74095,9 +67465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74133,51 +67503,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2658), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [405] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2774), + [sym_expression_statement] = STATE(1293), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -74186,7 +67557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -74197,9 +67568,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74227,7 +67597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -74235,64 +67605,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2453), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [406] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2771), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), @@ -74300,8 +67670,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74314,8 +67684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -74323,87 +67693,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2627), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [407] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2435), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74416,8 +67786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -74425,65 +67795,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2629), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [408] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2772), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -74492,7 +67862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -74505,7 +67875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_SEMI] = ACTIONS(1591), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74533,7 +67903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -74541,51 +67911,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2336), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [409] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2436), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -74594,7 +67964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -74605,9 +67975,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1249), [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74643,51 +68013,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2404), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [410] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2271), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -74696,7 +68066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -74707,9 +68077,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74745,73 +68115,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, + [411] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2632), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [412] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2626), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, [413] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2503), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2625), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74824,8 +68398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -74833,65 +68407,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [414] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2480), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2491), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -74900,7 +68474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -74911,9 +68485,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -74950,59 +68524,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [415] = { - [sym_qualified_identifier] = STATE(1921), - [sym_scoped_identifier] = STATE(2236), - [sym_scope_identifier] = STATE(2173), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2295), - [sym_subscript_expression] = STATE(2295), - [sym_list_expression] = STATE(2295), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_expression_statement] = STATE(4774), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2295), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2295), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1601), - [sym_pipe_variable] = ACTIONS(1603), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -75013,9 +68588,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75043,81 +68617,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1607), - [sym_xhp_class_identifier] = ACTIONS(1603), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [416] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2328), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2773), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75130,8 +68704,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -75139,65 +68713,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [417] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2433), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2247), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -75206,7 +68780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -75217,9 +68791,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75256,72 +68830,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [418] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2347), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1921), + [sym_scoped_identifier] = STATE(2180), + [sym_scope_identifier] = STATE(2169), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2280), + [sym_subscript_expression] = STATE(2280), + [sym_list_expression] = STATE(2280), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2280), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1611), + [sym_pipe_variable] = ACTIONS(1613), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1613), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1615), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75334,8 +68908,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -75343,65 +68917,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1617), + [sym_xhp_class_identifier] = ACTIONS(1613), [sym_comment] = ACTIONS(3), }, [419] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2252), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2466), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -75410,7 +68984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -75421,9 +68995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1615), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75460,50 +69034,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [420] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2255), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2244), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -75512,7 +69086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -75523,9 +69097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75562,50 +69136,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [421] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2278), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2314), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -75614,7 +69188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -75625,9 +69199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75664,152 +69238,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [422] = { - [sym_qualified_identifier] = STATE(1971), - [sym_scoped_identifier] = STATE(2211), - [sym_scope_identifier] = STATE(2206), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2392), - [sym_subscript_expression] = STATE(2392), - [sym_list_expression] = STATE(2392), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2392), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2392), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1621), - [sym_pipe_variable] = ACTIONS(1623), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1625), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1627), - [sym_xhp_class_identifier] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - }, - [423] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2240), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2477), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -75818,7 +69290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -75829,9 +69301,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75867,51 +69339,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2264), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [423] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2371), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -75920,7 +69392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -75931,9 +69403,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -75969,162 +69441,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2507), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1633), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [426] = { - [sym_qualified_identifier] = STATE(1932), - [sym_scoped_identifier] = STATE(2234), - [sym_scope_identifier] = STATE(2235), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2242), - [sym_subscript_expression] = STATE(2242), - [sym_list_expression] = STATE(2242), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [424] = { + [sym_qualified_identifier] = STATE(1984), + [sym_scoped_identifier] = STATE(2199), + [sym_scope_identifier] = STATE(2189), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2328), + [sym_subscript_expression] = STATE(2328), + [sym_list_expression] = STATE(2328), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2242), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2242), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2328), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2328), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1635), - [sym_pipe_variable] = ACTIONS(1637), + [sym_variable] = ACTIONS(1629), + [sym_pipe_variable] = ACTIONS(1631), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -76136,8 +69506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_function] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76165,59 +69535,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1641), - [sym_xhp_class_identifier] = ACTIONS(1637), + [sym_xhp_identifier] = ACTIONS(1635), + [sym_xhp_class_identifier] = ACTIONS(1631), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2254), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [425] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2439), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76226,7 +69596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -76237,9 +69607,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76275,51 +69645,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2418), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [426] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2486), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76328,7 +69698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -76339,9 +69709,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76377,51 +69747,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2252), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [427] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2272), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76430,7 +69800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -76441,9 +69811,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76479,51 +69849,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2397), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [428] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2339), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76532,7 +69902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -76543,9 +69913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76581,73 +69951,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [431] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2742), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [429] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2456), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76660,8 +70030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -76669,167 +70039,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2521), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_element_initializer] = STATE(2750), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [433] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2281), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [430] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2498), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76838,7 +70106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -76849,9 +70117,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76887,51 +70155,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2483), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [431] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2276), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -76940,7 +70208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -76951,9 +70219,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -76989,52 +70257,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2199), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(4547), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [432] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2246), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77043,7 +70310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -77054,8 +70321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77091,51 +70359,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2401), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [433] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2419), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77144,7 +70412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -77155,9 +70423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77193,73 +70461,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_expression_statement] = STATE(1672), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [434] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2331), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77272,8 +70540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -77281,65 +70549,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2707), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [435] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2508), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [436] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2763), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77348,7 +70718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -77359,8 +70729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1659), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77384,12 +70755,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(101), [anon_sym_DASH] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(1661), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -77397,73 +70767,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2419), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [437] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2761), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77476,8 +70846,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -77485,65 +70855,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2743), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [438] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2760), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77552,7 +70922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -77563,9 +70933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1663), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77593,7 +70963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -77601,51 +70971,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2415), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [439] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2318), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77654,7 +71024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -77665,9 +71035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77703,51 +71073,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2744), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [440] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_expression_statement] = STATE(1017), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77756,7 +71127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -77767,9 +71138,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77797,7 +71167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -77805,51 +71175,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2334), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [441] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2320), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77858,7 +71228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -77869,9 +71239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77907,51 +71277,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2643), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [442] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2745), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -77960,7 +71330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -77971,9 +71341,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1673), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -77997,11 +71366,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(101), [anon_sym_DASH] = ACTIONS(101), + [anon_sym_RBRACK] = ACTIONS(1671), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -78009,73 +71379,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2252), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [443] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2779), + [sym_expression_statement] = STATE(1061), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78088,8 +71458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -78097,87 +71467,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2632), - [sym_expression_statement] = STATE(975), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [444] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2246), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78190,8 +71560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -78199,87 +71569,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2644), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [445] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2506), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78292,8 +71662,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -78301,65 +71671,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2615), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [446] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2706), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -78368,7 +71738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -78379,9 +71749,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1679), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78409,7 +71779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -78417,52 +71787,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_expression_statement] = STATE(838), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [447] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2713), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -78471,7 +71840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -78482,8 +71851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78507,11 +71876,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_PLUS] = ACTIONS(101), [anon_sym_DASH] = ACTIONS(101), + [anon_sym_RBRACK] = ACTIONS(1681), [anon_sym_list] = ACTIONS(103), [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -78519,51 +71889,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2406), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [448] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2496), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -78572,7 +71942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -78583,9 +71953,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78621,51 +71991,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2436), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [449] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2400), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -78674,7 +72044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -78685,9 +72055,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78723,73 +72093,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2642), - [sym_expression_statement] = STATE(1694), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [450] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2317), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78802,8 +72172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -78811,87 +72181,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_qualified_identifier] = STATE(1974), - [sym_scoped_identifier] = STATE(2238), - [sym_scope_identifier] = STATE(2224), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_list_expression] = STATE(2284), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [451] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2378), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2284), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2284), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1691), - [sym_pipe_variable] = ACTIONS(1693), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -78904,8 +72274,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -78913,87 +72283,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1697), - [sym_xhp_class_identifier] = ACTIONS(1693), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2631), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [452] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2426), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79006,8 +72376,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -79015,87 +72385,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2633), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [453] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2482), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79108,8 +72478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -79117,87 +72487,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2634), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [454] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2472), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79210,8 +72580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -79219,66 +72589,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_expression_statement] = STATE(1411), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [455] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2640), + [sym_expression_statement] = STATE(1694), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -79287,7 +72657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -79298,8 +72668,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79327,7 +72697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -79335,52 +72705,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2639), - [sym_expression_statement] = STATE(727), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [456] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2682), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -79389,7 +72758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -79400,8 +72769,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79429,7 +72799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -79437,52 +72807,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2062), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(1950), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [457] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2686), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -79491,7 +72860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -79502,8 +72871,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1701), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79531,7 +72901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -79539,51 +72909,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [460] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2524), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [458] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2469), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -79592,7 +72962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -79603,9 +72973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79641,51 +73011,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2369), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [459] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2246), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -79694,7 +73064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -79705,9 +73075,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79743,162 +73113,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2520), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [460] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_expression_statement] = STATE(1513), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [463] = { - [sym_qualified_identifier] = STATE(1960), - [sym_scoped_identifier] = STATE(2198), - [sym_scope_identifier] = STATE(2205), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2421), - [sym_subscript_expression] = STATE(2421), - [sym_list_expression] = STATE(2421), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2421), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2421), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1715), - [sym_pipe_variable] = ACTIONS(1717), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -79909,9 +73178,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -79939,60 +73207,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1721), - [sym_xhp_class_identifier] = ACTIONS(1717), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [464] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_expression_statement] = STATE(1618), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [461] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2678), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -80001,7 +73268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -80012,8 +73279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80041,7 +73309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -80049,73 +73317,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2741), - [sym_expression_statement] = STATE(1393), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [462] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2458), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80128,8 +73396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -80137,74 +73405,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [466] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2090), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [463] = { + [sym_qualified_identifier] = STATE(1994), + [sym_scoped_identifier] = STATE(2172), + [sym_scope_identifier] = STATE(2204), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2450), + [sym_subscript_expression] = STATE(2450), + [sym_list_expression] = STATE(2450), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2450), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2450), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1713), + [sym_pipe_variable] = ACTIONS(1715), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -80216,8 +73484,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [anon_sym_using] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80245,59 +73513,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1719), + [sym_xhp_class_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(3), }, - [467] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2335), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [464] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2490), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -80306,7 +73574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -80317,9 +73585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80355,51 +73623,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [468] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2363), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [465] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2467), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -80408,7 +73676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -80419,9 +73687,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80457,73 +73725,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [469] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2437), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [466] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2619), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80536,8 +73804,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -80545,74 +73813,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [470] = { - [sym_qualified_identifier] = STATE(1943), - [sym_scoped_identifier] = STATE(2208), - [sym_scope_identifier] = STATE(2197), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2331), - [sym_subscript_expression] = STATE(2331), - [sym_list_expression] = STATE(2331), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [467] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2620), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2331), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2331), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1735), - [sym_pipe_variable] = ACTIONS(1737), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -80623,9 +73891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1727), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1739), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80653,59 +73921,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1741), - [sym_xhp_class_identifier] = ACTIONS(1737), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [471] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2365), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [468] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2459), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -80714,7 +73982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -80725,9 +73993,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80763,51 +74031,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2362), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [469] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2023), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(1958), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -80816,7 +74085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -80827,9 +74096,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80865,51 +74133,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, + [470] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2621), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_expression_statement] = STATE(883), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2618), + [sym_expression_statement] = STATE(882), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, [473] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2368), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2359), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -80918,7 +74492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -80929,9 +74503,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -80968,51 +74542,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [474] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2708), - [sym_expression_statement] = STATE(1559), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2673), + [sym_expression_statement] = STATE(4833), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81021,7 +74595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -81032,8 +74606,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81061,7 +74635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -81070,72 +74644,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [475] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2346), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1965), + [sym_scoped_identifier] = STATE(2224), + [sym_scope_identifier] = STATE(2229), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2342), + [sym_subscript_expression] = STATE(2342), + [sym_list_expression] = STATE(2342), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2342), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2342), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1741), + [sym_pipe_variable] = ACTIONS(1743), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1745), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81148,8 +74722,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -81157,65 +74731,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1747), + [sym_xhp_class_identifier] = ACTIONS(1743), [sym_comment] = ACTIONS(3), }, [476] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2317), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2484), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_element_initializer] = STATE(2680), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [477] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2438), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81224,7 +74900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -81235,9 +74911,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81273,51 +74949,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [477] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2277), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [478] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2519), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81326,7 +75002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -81337,9 +75013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81375,153 +75051,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [478] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_expression_statement] = STATE(4765), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, [479] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2263), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2385), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81530,7 +75104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -81541,9 +75115,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81580,50 +75154,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [480] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2280), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2349), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81632,7 +75206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -81643,9 +75217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81682,50 +75256,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [481] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2333), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2412), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -81734,7 +75308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -81745,9 +75319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1757), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81784,72 +75358,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [482] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2778), - [sym_expression_statement] = STATE(4810), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2449), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -81862,8 +75436,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -81871,269 +75445,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [483] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2767), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2470), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [484] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2706), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [485] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2358), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -82142,7 +75512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -82153,9 +75523,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -82191,51 +75561,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2306), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [484] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2355), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -82244,7 +75614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -82255,9 +75625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -82293,255 +75663,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2720), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [488] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2327), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [489] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2326), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [485] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2492), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -82550,7 +75716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -82561,9 +75727,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -82599,51 +75765,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [490] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2318), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [486] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2289), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -82652,7 +75818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -82663,9 +75829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -82701,51 +75867,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2310), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [487] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2258), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -82754,7 +75920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -82765,9 +75931,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -82803,51 +75969,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2302), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [488] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2401), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -82856,7 +76022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -82867,9 +76033,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -82905,51 +76071,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [493] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2723), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [489] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2071), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -82958,7 +76124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -82969,9 +76135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1787), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), + [anon_sym_using] = ACTIONS(1773), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -82999,7 +76165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -83007,73 +76173,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2672), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [490] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2299), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83086,8 +76252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -83095,65 +76261,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [495] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2292), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [491] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2325), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -83162,7 +76328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -83173,9 +76339,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83211,73 +76377,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2719), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [492] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2396), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1779), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83290,8 +76456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -83299,66 +76465,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [497] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1995), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(1950), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [493] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2395), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -83367,7 +76532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -83378,8 +76543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83415,51 +76581,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [498] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), + [494] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), [sym__expression] = STATE(2389), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -83468,7 +76634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -83479,9 +76645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1783), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83517,51 +76683,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [499] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2252), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [495] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2369), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -83570,7 +76736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -83581,9 +76747,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83619,73 +76785,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [500] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2289), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [496] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2038), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(1958), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83698,8 +76864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -83707,65 +76873,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [501] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2446), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [497] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2362), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -83774,7 +76940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -83785,9 +76951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83823,51 +76989,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [502] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2438), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [498] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2727), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [499] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2246), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -83876,7 +77144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -83887,9 +77155,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -83925,51 +77193,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [503] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2439), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [500] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2347), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -83978,7 +77246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -83989,9 +77257,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1793), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84027,51 +77295,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [504] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2338), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [501] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2515), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -84080,7 +77348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -84091,9 +77359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1807), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84129,51 +77397,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [505] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2287), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [502] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2518), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -84182,7 +77450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -84193,9 +77461,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84231,51 +77499,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [506] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2249), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [503] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2344), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -84284,7 +77552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -84295,9 +77563,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84333,60 +77601,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [507] = { - [sym_qualified_identifier] = STATE(1898), - [sym_scoped_identifier] = STATE(2232), - [sym_scope_identifier] = STATE(2239), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2285), - [sym_list_expression] = STATE(2285), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [504] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2767), + [sym_expression_statement] = STATE(1593), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2285), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2285), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1813), - [sym_pipe_variable] = ACTIONS(1815), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -84397,9 +77666,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84427,81 +77695,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1819), - [sym_xhp_class_identifier] = ACTIONS(1815), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [508] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2144), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_element_initializer] = STATE(1950), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [505] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2341), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84514,8 +77782,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -84523,87 +77791,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [509] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2489), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [506] = { + [sym_qualified_identifier] = STATE(1995), + [sym_scoped_identifier] = STATE(2226), + [sym_scope_identifier] = STATE(2228), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2333), + [sym_list_expression] = STATE(2333), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2333), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2333), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1805), + [sym_pipe_variable] = ACTIONS(1807), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1809), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84616,8 +77884,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -84625,166 +77893,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [510] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2272), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(1811), + [sym_xhp_class_identifier] = ACTIONS(1807), [sym_comment] = ACTIONS(3), }, - [511] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2000), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [507] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2749), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -84793,7 +77960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -84804,8 +77971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(1813), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84833,7 +78001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -84841,72 +78009,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [512] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2586), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [508] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2112), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_element_initializer] = STATE(1958), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -84919,8 +78088,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -84928,187 +78097,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [513] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2431), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [514] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2033), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [509] = { + [sym_qualified_identifier] = STATE(1902), + [sym_scoped_identifier] = STATE(2201), + [sym_scope_identifier] = STATE(2207), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2241), + [sym_subscript_expression] = STATE(2241), + [sym_list_expression] = STATE(2241), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2241), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2241), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1815), + [sym_pipe_variable] = ACTIONS(1817), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -85121,8 +78190,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -85130,166 +78199,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [515] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2355), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(1821), + [sym_xhp_class_identifier] = ACTIONS(1817), [sym_comment] = ACTIONS(3), }, - [516] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2091), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [510] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2721), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -85298,7 +78266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -85310,7 +78278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -85338,7 +78306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -85346,161 +78314,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [517] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2035), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [511] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2633), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [518] = { - [sym_qualified_identifier] = STATE(2040), - [sym_scoped_identifier] = STATE(2452), - [sym_scope_identifier] = STATE(2445), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2564), - [sym_subscript_expression] = STATE(2564), - [sym_list_expression] = STATE(2564), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2564), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2564), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1823), - [sym_pipe_variable] = ACTIONS(1825), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -85512,7 +78379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -85540,80 +78407,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1827), - [sym_xhp_class_identifier] = ACTIONS(1825), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [519] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2036), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [512] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2123), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -85626,8 +78493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -85635,65 +78502,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [520] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2703), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [513] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2440), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [514] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2710), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -85702,7 +78670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -85714,7 +78682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -85742,7 +78710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -85750,60 +78718,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [521] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2685), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [515] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2332), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [516] = { + [sym_qualified_identifier] = STATE(2011), + [sym_scoped_identifier] = STATE(2464), + [sym_scope_identifier] = STATE(2461), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2608), + [sym_subscript_expression] = STATE(2608), + [sym_list_expression] = STATE(2608), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2608), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2608), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1823), + [sym_pipe_variable] = ACTIONS(1825), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -85815,7 +78884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -85843,80 +78912,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1827), + [sym_xhp_class_identifier] = ACTIONS(1825), [sym_comment] = ACTIONS(3), }, - [522] = { - [sym_qualified_identifier] = STATE(2145), - [sym_scoped_identifier] = STATE(2532), - [sym_scope_identifier] = STATE(2459), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2530), - [sym_subscript_expression] = STATE(2530), - [sym_list_expression] = STATE(2530), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [517] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2083), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2530), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2530), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(953), - [sym_pipe_variable] = ACTIONS(955), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -85929,8 +78998,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -85938,74 +79007,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(957), - [sym_xhp_class_identifier] = ACTIONS(955), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [523] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2007), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [518] = { + [sym_qualified_identifier] = STATE(2064), + [sym_scoped_identifier] = STATE(2485), + [sym_scope_identifier] = STATE(2483), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2573), + [sym_subscript_expression] = STATE(2573), + [sym_list_expression] = STATE(2573), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2573), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2573), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1829), + [sym_pipe_variable] = ACTIONS(1831), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -86017,7 +79086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86045,80 +79114,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1833), + [sym_xhp_class_identifier] = ACTIONS(1831), [sym_comment] = ACTIONS(3), }, - [524] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2037), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [519] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2375), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [520] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2009), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86131,8 +79301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -86140,65 +79310,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [525] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2729), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [521] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2288), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [522] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2315), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [523] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2297), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [524] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2036), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -86207,7 +79680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -86219,7 +79692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86247,7 +79720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -86255,60 +79728,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [526] = { - [sym_qualified_identifier] = STATE(2034), - [sym_scoped_identifier] = STATE(2386), - [sym_scope_identifier] = STATE(2298), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2556), - [sym_subscript_expression] = STATE(2556), - [sym_list_expression] = STATE(2556), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [525] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2711), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2556), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2556), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1829), - [sym_pipe_variable] = ACTIONS(1831), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -86320,7 +79793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86348,68 +79821,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1833), - [sym_xhp_class_identifier] = ACTIONS(1831), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [527] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(1994), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [526] = { + [sym_qualified_identifier] = STATE(2062), + [sym_scoped_identifier] = STATE(2497), + [sym_scope_identifier] = STATE(2500), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2563), + [sym_subscript_expression] = STATE(2563), + [sym_list_expression] = STATE(2563), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2563), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2563), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1835), + [sym_pipe_variable] = ACTIONS(1837), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -86421,7 +79894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86449,80 +79922,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1839), + [sym_xhp_class_identifier] = ACTIONS(1837), + [sym_comment] = ACTIONS(3), + }, + [527] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2305), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, [528] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2019), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2303), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [529] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2074), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86535,8 +80210,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -86544,175 +80219,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [529] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2267), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, [530] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2016), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(2142), + [sym_scoped_identifier] = STATE(2581), + [sym_scope_identifier] = STATE(2592), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2695), + [sym_subscript_expression] = STATE(2695), + [sym_list_expression] = STATE(2695), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2695), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2695), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1841), + [sym_pipe_variable] = ACTIONS(1843), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -86724,7 +80298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86752,169 +80326,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1845), + [sym_xhp_class_identifier] = ACTIONS(1843), [sym_comment] = ACTIONS(3), }, [531] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2244), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2301), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, [532] = { - [sym_qualified_identifier] = STATE(2073), - [sym_scoped_identifier] = STATE(2367), - [sym_scope_identifier] = STATE(2375), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2549), - [sym_subscript_expression] = STATE(2549), - [sym_list_expression] = STATE(2549), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(2145), + [sym_scoped_identifier] = STATE(2565), + [sym_scope_identifier] = STATE(2567), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2719), + [sym_subscript_expression] = STATE(2719), + [sym_list_expression] = STATE(2719), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2549), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2549), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2719), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2719), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1835), - [sym_pipe_variable] = ACTIONS(1837), + [sym_variable] = ACTIONS(1847), + [sym_pipe_variable] = ACTIONS(1849), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -86926,7 +80500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -86954,68 +80528,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1839), - [sym_xhp_class_identifier] = ACTIONS(1837), + [sym_xhp_identifier] = ACTIONS(1851), + [sym_xhp_class_identifier] = ACTIONS(1849), [sym_comment] = ACTIONS(3), }, [533] = { - [sym_qualified_identifier] = STATE(2003), - [sym_scoped_identifier] = STATE(2510), - [sym_scope_identifier] = STATE(2516), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2599), - [sym_subscript_expression] = STATE(2599), - [sym_list_expression] = STATE(2599), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2298), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [534] = { + [sym_qualified_identifier] = STATE(2146), + [sym_scoped_identifier] = STATE(2551), + [sym_scope_identifier] = STATE(2422), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2538), + [sym_subscript_expression] = STATE(2538), + [sym_list_expression] = STATE(2538), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2599), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2599), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2538), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2538), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1841), - [sym_pipe_variable] = ACTIONS(1843), + [sym_variable] = ACTIONS(943), + [sym_pipe_variable] = ACTIONS(945), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -87027,7 +80702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87055,80 +80730,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1845), - [sym_xhp_class_identifier] = ACTIONS(1843), + [sym_xhp_identifier] = ACTIONS(957), + [sym_xhp_class_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), }, - [534] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2705), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [535] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2557), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87141,8 +80816,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -87150,65 +80825,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [535] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2539), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [536] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2294), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [537] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2293), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [538] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2291), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [539] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2278), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [540] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2555), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -87217,7 +81296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -87228,8 +81307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87265,72 +81344,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [536] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2290), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [541] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2277), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [542] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2082), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87343,8 +81523,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -87352,86 +81532,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym_qualified_identifier] = STATE(2100), - [sym_scoped_identifier] = STATE(2590), - [sym_scope_identifier] = STATE(2570), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2657), - [sym_subscript_expression] = STATE(2657), - [sym_list_expression] = STATE(2657), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [543] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2114), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2657), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2657), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1847), - [sym_pipe_variable] = ACTIONS(1849), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87444,8 +81624,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -87453,86 +81633,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1851), - [sym_xhp_class_identifier] = ACTIONS(1849), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2659), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [544] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2269), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [545] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2125), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87545,8 +81826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -87554,166 +81835,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2293), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), + [546] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2253), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2538), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [547] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2423), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [548] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2088), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -87722,7 +82104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -87733,8 +82115,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87770,72 +82152,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2613), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [549] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2116), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(1067), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2096), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(1067), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + }, + [551] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2089), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87848,8 +82432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -87857,65 +82441,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2699), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [552] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2295), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [553] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2758), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -87924,7 +82609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -87936,7 +82621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -87964,7 +82649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -87972,152 +82657,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2381), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [544] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2385), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [554] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2387), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -88126,7 +82710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -88137,8 +82721,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88174,51 +82758,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [545] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), + [555] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), [sym__expression] = STATE(2684), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -88227,7 +82811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -88239,7 +82823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88267,7 +82851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -88275,72 +82859,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [546] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2582), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [556] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2119), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88353,8 +82937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -88362,166 +82946,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [547] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2266), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), + [557] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2360), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2146), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [558] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2124), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -88530,7 +83114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -88541,8 +83125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88574,76 +83158,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [549] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2038), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [559] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2128), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88656,8 +83240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -88665,74 +83249,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [550] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2042), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [560] = { + [sym_qualified_identifier] = STATE(2106), + [sym_scoped_identifier] = STATE(2600), + [sym_scope_identifier] = STATE(2418), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2594), + [sym_subscript_expression] = STATE(2594), + [sym_list_expression] = STATE(2594), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2594), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2594), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1853), + [sym_pipe_variable] = ACTIONS(1855), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -88744,7 +83328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88772,80 +83356,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1857), + [sym_xhp_class_identifier] = ACTIONS(1855), [sym_comment] = ACTIONS(3), }, - [551] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2472), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [561] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2136), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88858,8 +83442,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -88867,86 +83451,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2776), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [562] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2363), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2493), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [564] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2517), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -88959,8 +83745,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -88968,65 +83754,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2027), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [565] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2499), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [566] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2091), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -89035,7 +83922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -89046,8 +83933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89083,60 +83970,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [554] = { - [sym_qualified_identifier] = STATE(2167), - [sym_scoped_identifier] = STATE(2527), - [sym_scope_identifier] = STATE(2528), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2614), - [sym_subscript_expression] = STATE(2614), - [sym_list_expression] = STATE(2614), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [567] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2501), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [568] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2505), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [569] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2055), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2614), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1853), - [sym_pipe_variable] = ACTIONS(1855), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -89148,7 +84237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89176,59 +84265,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1857), - [sym_xhp_class_identifier] = ACTIONS(1855), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [555] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2147), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [570] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2510), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [571] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2131), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -89237,7 +84427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -89248,8 +84438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89281,76 +84471,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [556] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2148), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [572] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2513), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [573] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2092), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89363,8 +84654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -89372,74 +84663,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [557] = { - [sym_qualified_identifier] = STATE(2157), - [sym_scoped_identifier] = STATE(2534), - [sym_scope_identifier] = STATE(2535), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2683), - [sym_subscript_expression] = STATE(2683), - [sym_list_expression] = STATE(2683), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [574] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2087), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [575] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2049), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2683), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2683), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1859), - [sym_pipe_variable] = ACTIONS(1861), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -89451,7 +84843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89479,68 +84871,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1863), - [sym_xhp_class_identifier] = ACTIONS(1861), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [558] = { - [sym_qualified_identifier] = STATE(2164), - [sym_scoped_identifier] = STATE(2548), - [sym_scope_identifier] = STATE(2540), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2756), - [sym_subscript_expression] = STATE(2756), - [sym_list_expression] = STATE(2756), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [576] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2076), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2756), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2756), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1865), - [sym_pipe_variable] = ACTIONS(1867), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -89552,7 +84944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89580,80 +84972,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1869), - [sym_xhp_class_identifier] = ACTIONS(1867), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [559] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2435), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [577] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2132), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89666,8 +85058,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -89675,65 +85067,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [560] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2412), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [578] = { + [sym_qualified_identifier] = STATE(2053), + [sym_scoped_identifier] = STATE(2507), + [sym_scope_identifier] = STATE(2511), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2548), + [sym_subscript_expression] = STATE(2548), + [sym_list_expression] = STATE(2548), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2548), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2548), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1859), + [sym_pipe_variable] = ACTIONS(1861), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(1863), + [sym_xhp_class_identifier] = ACTIONS(1861), + [sym_comment] = ACTIONS(3), + }, + [579] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2085), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -89742,7 +85235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -89753,8 +85246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89790,51 +85283,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [561] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2630), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [580] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2016), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -89843,7 +85336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -89855,7 +85348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89883,7 +85376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -89891,51 +85384,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [562] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2149), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [581] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2134), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -89944,7 +85437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -89955,8 +85448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -89988,76 +85481,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [563] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2150), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [582] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2093), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90070,8 +85563,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -90079,65 +85572,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [564] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2152), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [583] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2135), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -90146,7 +85639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -90157,8 +85650,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90190,156 +85683,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [565] = { - [sym_qualified_identifier] = STATE(2133), - [sym_scoped_identifier] = STATE(2603), - [sym_scope_identifier] = STATE(2399), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2601), - [sym_subscript_expression] = STATE(2601), - [sym_list_expression] = STATE(2601), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2601), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2601), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1871), - [sym_pipe_variable] = ACTIONS(1873), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1875), - [sym_xhp_class_identifier] = ACTIONS(1873), - [sym_comment] = ACTIONS(3), - }, - [566] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2153), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [584] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2120), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -90348,7 +85740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -90359,8 +85751,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90392,76 +85784,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [567] = { - [sym_qualified_identifier] = STATE(2139), - [sym_scoped_identifier] = STATE(2594), - [sym_scope_identifier] = STATE(2592), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2612), - [sym_subscript_expression] = STATE(2612), - [sym_list_expression] = STATE(2612), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [585] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2107), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2612), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2612), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1877), - [sym_pipe_variable] = ACTIONS(1879), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90474,8 +85866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -90483,65 +85875,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1881), - [sym_xhp_class_identifier] = ACTIONS(1879), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [568] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2645), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [586] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2768), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -90550,7 +85942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -90562,7 +85954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90590,7 +85982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -90598,60 +85990,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [569] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(2668), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [587] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2075), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2668), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2668), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1883), + [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -90663,7 +86055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90691,7 +86083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -90699,51 +86091,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [570] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2026), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [588] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2094), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -90752,7 +86144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -90763,8 +86155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90800,60 +86192,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [571] = { - [sym_qualified_identifier] = STATE(2155), - [sym_scoped_identifier] = STATE(2557), - [sym_scope_identifier] = STATE(2560), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2717), - [sym_subscript_expression] = STATE(2717), - [sym_list_expression] = STATE(2717), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [589] = { + [sym_qualified_identifier] = STATE(2033), + [sym_scoped_identifier] = STATE(2521), + [sym_scope_identifier] = STATE(2445), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_list_expression] = STATE(2530), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2717), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2717), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2530), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2530), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1885), - [sym_pipe_variable] = ACTIONS(1887), + [sym_variable] = ACTIONS(1865), + [sym_pipe_variable] = ACTIONS(1867), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -90865,7 +86257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90893,80 +86285,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1889), - [sym_xhp_class_identifier] = ACTIONS(1887), + [sym_xhp_identifier] = ACTIONS(1869), + [sym_xhp_class_identifier] = ACTIONS(1867), [sym_comment] = ACTIONS(3), }, - [572] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2252), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [590] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2105), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -90979,8 +86371,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -90988,86 +86380,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [573] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2013), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [591] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2494), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91080,8 +86472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -91089,86 +86481,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [574] = { - [sym_qualified_identifier] = STATE(2028), - [sym_scoped_identifier] = STATE(2468), - [sym_scope_identifier] = STATE(2465), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2537), - [sym_subscript_expression] = STATE(2537), - [sym_list_expression] = STATE(2537), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [592] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2104), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2537), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1891), - [sym_pipe_variable] = ACTIONS(1893), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91181,8 +86573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -91190,65 +86582,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1895), - [sym_xhp_class_identifier] = ACTIONS(1893), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [575] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2568), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [593] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2042), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -91257,7 +86649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -91268,8 +86660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91305,72 +86697,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [576] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2542), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [594] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2137), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91383,8 +86775,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -91392,74 +86784,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [577] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2068), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [595] = { + [sym_qualified_identifier] = STATE(2133), + [sym_scoped_identifier] = STATE(2587), + [sym_scope_identifier] = STATE(2571), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2666), + [sym_subscript_expression] = STATE(2666), + [sym_list_expression] = STATE(2666), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2666), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2666), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1871), + [sym_pipe_variable] = ACTIONS(1873), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -91471,7 +86863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91499,80 +86891,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1875), + [sym_xhp_class_identifier] = ACTIONS(1873), [sym_comment] = ACTIONS(3), }, - [578] = { - [sym_qualified_identifier] = STATE(2048), - [sym_scoped_identifier] = STATE(2434), - [sym_scope_identifier] = STATE(2426), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2541), - [sym_list_expression] = STATE(2541), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [596] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2118), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2541), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2541), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1897), - [sym_pipe_variable] = ACTIONS(1899), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91585,8 +86977,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -91594,86 +86986,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1901), - [sym_xhp_class_identifier] = ACTIONS(1899), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [579] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2090), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [597] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2264), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [598] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2531), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91686,8 +87179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -91695,65 +87188,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [580] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2536), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [599] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2532), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -91762,7 +87255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -91773,8 +87266,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91810,51 +87303,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [581] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2025), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [600] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2533), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -91863,7 +87356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -91874,8 +87367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -91911,51 +87404,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [582] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2024), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [601] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2004), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [602] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2566), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -91964,7 +87558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -91975,8 +87569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92012,51 +87606,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [583] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2171), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [603] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2099), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -92065,7 +87659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -92076,8 +87670,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92109,55 +87703,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [584] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2652), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [604] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2622), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -92166,7 +87760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -92178,7 +87772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92206,7 +87800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -92214,51 +87808,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [585] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2690), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [605] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2047), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -92267,7 +87861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -92279,7 +87873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92307,7 +87901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -92315,72 +87909,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [586] = { - [sym_qualified_identifier] = STATE(2009), - [sym_scoped_identifier] = STATE(2501), - [sym_scope_identifier] = STATE(2491), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2533), - [sym_subscript_expression] = STATE(2533), - [sym_list_expression] = STATE(2533), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [606] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2462), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2533), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2533), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1903), - [sym_pipe_variable] = ACTIONS(1905), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92393,8 +87987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -92402,65 +87996,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1907), - [sym_xhp_class_identifier] = ACTIONS(1905), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [587] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2356), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [607] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2010), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -92469,7 +88063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -92480,8 +88074,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92517,60 +88111,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [588] = { - [sym_qualified_identifier] = STATE(2041), - [sym_scoped_identifier] = STATE(2440), - [sym_scope_identifier] = STATE(2443), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2581), - [sym_subscript_expression] = STATE(2581), - [sym_list_expression] = STATE(2581), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [608] = { + [sym_qualified_identifier] = STATE(2167), + [sym_scoped_identifier] = STATE(2541), + [sym_scope_identifier] = STATE(2540), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2747), + [sym_subscript_expression] = STATE(2747), + [sym_list_expression] = STATE(2747), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2581), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2581), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2747), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2747), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1909), - [sym_pipe_variable] = ACTIONS(1911), + [sym_variable] = ACTIONS(1877), + [sym_pipe_variable] = ACTIONS(1879), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -92582,7 +88176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92610,80 +88204,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1913), - [sym_xhp_class_identifier] = ACTIONS(1911), + [sym_xhp_identifier] = ACTIONS(1881), + [sym_xhp_class_identifier] = ACTIONS(1879), [sym_comment] = ACTIONS(3), }, - [589] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2745), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [609] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2514), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [610] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2139), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92696,8 +88391,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -92705,65 +88400,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [590] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2715), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [611] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2690), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -92772,7 +88467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -92784,7 +88479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -92812,7 +88507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -92820,152 +88515,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [591] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2023), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [592] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2022), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [612] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2549), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -92974,7 +88568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -92985,8 +88579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93022,72 +88616,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [593] = { - [sym_qualified_identifier] = STATE(2154), - [sym_scoped_identifier] = STATE(2558), - [sym_scope_identifier] = STATE(2559), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2710), - [sym_subscript_expression] = STATE(2710), - [sym_list_expression] = STATE(2710), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [613] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2122), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2710), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2710), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1915), - [sym_pipe_variable] = ACTIONS(1917), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93100,8 +88694,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -93109,65 +88703,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1919), - [sym_xhp_class_identifier] = ACTIONS(1917), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [594] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2021), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [614] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2552), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -93176,7 +88770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -93187,8 +88781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93224,72 +88818,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [595] = { - [sym_qualified_identifier] = STATE(2158), - [sym_scoped_identifier] = STATE(2562), - [sym_scope_identifier] = STATE(2563), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2701), - [sym_subscript_expression] = STATE(2701), - [sym_list_expression] = STATE(2701), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [615] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2212), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2701), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2701), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1921), - [sym_pipe_variable] = ACTIONS(1923), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93302,8 +88896,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -93311,65 +88905,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1925), - [sym_xhp_class_identifier] = ACTIONS(1923), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [596] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2012), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [616] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2716), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -93378,7 +88972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -93390,7 +88984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93418,7 +89012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -93426,152 +89020,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [597] = { - [sym_qualified_identifier] = STATE(2059), - [sym_scoped_identifier] = STATE(2325), - [sym_scope_identifier] = STATE(2245), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2567), - [sym_subscript_expression] = STATE(2567), - [sym_list_expression] = STATE(2567), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [617] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2270), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2567), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2567), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1927), - [sym_pipe_variable] = ACTIONS(1929), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1931), - [sym_xhp_class_identifier] = ACTIONS(1929), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), [sym_comment] = ACTIONS(3), }, - [598] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2553), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [618] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2048), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -93580,7 +89174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -93591,8 +89185,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93628,51 +89222,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [599] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2102), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [619] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2144), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -93681,7 +89275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -93692,8 +89286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93725,55 +89319,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [600] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2020), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [620] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2556), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -93782,7 +89376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -93793,8 +89387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -93830,253 +89424,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [601] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2461), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [602] = { - [sym_qualified_identifier] = STATE(2086), - [sym_scoped_identifier] = STATE(2297), - [sym_scope_identifier] = STATE(2305), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2578), - [sym_subscript_expression] = STATE(2578), - [sym_list_expression] = STATE(2578), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2578), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2578), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1933), - [sym_pipe_variable] = ACTIONS(1935), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1937), - [sym_xhp_class_identifier] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - }, - [603] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2572), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [621] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2554), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -94085,7 +89477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -94096,8 +89488,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -94133,72 +89525,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [604] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2574), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [622] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2148), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1063), + [sym_pipe_variable] = ACTIONS(1065), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(1069), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(1071), + [anon_sym_include_once] = ACTIONS(1071), + [anon_sym_require] = ACTIONS(1073), + [anon_sym_require_once] = ACTIONS(1073), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -94211,8 +89603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -94220,86 +89612,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1087), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1257), + [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [605] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2094), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [623] = { + [sym_qualified_identifier] = STATE(2078), + [sym_scoped_identifier] = STATE(2275), + [sym_scope_identifier] = STATE(2273), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2537), + [sym_subscript_expression] = STATE(2537), + [sym_list_expression] = STATE(2537), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2537), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2537), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(1883), + [sym_pipe_variable] = ACTIONS(1885), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -94312,8 +89704,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -94321,65 +89713,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(1887), + [sym_xhp_class_identifier] = ACTIONS(1885), [sym_comment] = ACTIONS(3), }, - [606] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2099), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [624] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2156), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -94388,7 +89780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -94399,8 +89791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -94432,76 +89824,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [607] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2047), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [625] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2463), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [626] = { + [sym_qualified_identifier] = STATE(2069), + [sym_scoped_identifier] = STATE(2292), + [sym_scope_identifier] = STATE(2290), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2542), + [sym_subscript_expression] = STATE(2542), + [sym_list_expression] = STATE(2542), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2542), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2542), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1889), + [sym_pipe_variable] = ACTIONS(1891), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -94514,8 +90007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -94523,74 +90016,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1893), + [sym_xhp_class_identifier] = ACTIONS(1891), [sym_comment] = ACTIONS(3), }, - [608] = { - [sym_qualified_identifier] = STATE(2074), - [sym_scoped_identifier] = STATE(2366), - [sym_scope_identifier] = STATE(2371), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2609), - [sym_subscript_expression] = STATE(2609), - [sym_list_expression] = STATE(2609), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [627] = { + [sym_qualified_identifier] = STATE(2152), + [sym_scoped_identifier] = STATE(2535), + [sym_scope_identifier] = STATE(2536), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2757), + [sym_subscript_expression] = STATE(2757), + [sym_list_expression] = STATE(2757), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2609), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2609), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2757), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2757), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1939), - [sym_pipe_variable] = ACTIONS(1941), + [sym_variable] = ACTIONS(1895), + [sym_pipe_variable] = ACTIONS(1897), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -94602,7 +90095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -94630,59 +90123,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1943), - [sym_xhp_class_identifier] = ACTIONS(1941), + [sym_xhp_identifier] = ACTIONS(1899), + [sym_xhp_class_identifier] = ACTIONS(1897), [sym_comment] = ACTIONS(3), }, - [609] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2001), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [628] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2051), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -94691,7 +90184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -94703,7 +90196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -94731,7 +90224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -94739,253 +90232,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [610] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2395), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [611] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2307), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), + [629] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2084), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [612] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2029), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [630] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2570), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -94994,7 +90386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -95005,8 +90397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95042,161 +90434,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [613] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2377), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), + [631] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2044), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [614] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2063), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [632] = { + [sym_qualified_identifier] = STATE(2161), + [sym_scoped_identifier] = STATE(2545), + [sym_scope_identifier] = STATE(2544), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2740), + [sym_subscript_expression] = STATE(2740), + [sym_list_expression] = STATE(2740), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2740), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2740), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1901), + [sym_pipe_variable] = ACTIONS(1903), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -95208,7 +90600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95236,80 +90628,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1905), + [sym_xhp_class_identifier] = ACTIONS(1903), [sym_comment] = ACTIONS(3), }, - [615] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2735), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [633] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2588), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95322,8 +90714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -95331,65 +90723,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [616] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2018), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [634] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2590), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -95398,7 +90790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -95409,8 +90801,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95446,51 +90838,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [617] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2573), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [635] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2591), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -95499,7 +90891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -95510,8 +90902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95547,60 +90939,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [618] = { - [sym_qualified_identifier] = STATE(2066), - [sym_scoped_identifier] = STATE(2259), - [sym_scope_identifier] = STATE(2270), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2552), - [sym_subscript_expression] = STATE(2552), - [sym_list_expression] = STATE(2552), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [636] = { + [sym_qualified_identifier] = STATE(2147), + [sym_scoped_identifier] = STATE(2559), + [sym_scope_identifier] = STATE(2547), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2722), + [sym_subscript_expression] = STATE(2722), + [sym_list_expression] = STATE(2722), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2552), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2552), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2722), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2722), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1945), - [sym_pipe_variable] = ACTIONS(1947), + [sym_variable] = ACTIONS(1907), + [sym_pipe_variable] = ACTIONS(1909), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -95612,7 +91004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95640,80 +91032,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1949), - [sym_xhp_class_identifier] = ACTIONS(1947), + [sym_xhp_identifier] = ACTIONS(1911), + [sym_xhp_class_identifier] = ACTIONS(1909), [sym_comment] = ACTIONS(3), }, - [619] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2576), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [637] = { + [sym_qualified_identifier] = STATE(2166), + [sym_scoped_identifier] = STATE(2601), + [sym_scope_identifier] = STATE(2598), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2696), + [sym_subscript_expression] = STATE(2696), + [sym_list_expression] = STATE(2696), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2696), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2696), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(1913), + [sym_pipe_variable] = ACTIONS(1915), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(1917), + [sym_xhp_class_identifier] = ACTIONS(1915), + [sym_comment] = ACTIONS(3), + }, + [638] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2717), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95726,8 +91219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -95735,65 +91228,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [620] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2584), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [639] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2606), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -95802,7 +91295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -95813,8 +91306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95850,51 +91343,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [621] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2751), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [640] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2700), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -95903,7 +91396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -95915,7 +91408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -95943,7 +91436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -95951,51 +91444,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [622] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2610), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [641] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2366), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -96004,7 +91497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -96015,8 +91508,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96052,60 +91545,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [623] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2044), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [642] = { + [sym_qualified_identifier] = STATE(2109), + [sym_scoped_identifier] = STATE(2612), + [sym_scope_identifier] = STATE(2609), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2642), + [sym_subscript_expression] = STATE(2642), + [sym_list_expression] = STATE(2642), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2642), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2642), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1919), + [sym_pipe_variable] = ACTIONS(1921), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -96117,7 +91610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96145,59 +91638,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1923), + [sym_xhp_class_identifier] = ACTIONS(1921), [sym_comment] = ACTIONS(3), }, - [624] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2046), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [643] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2765), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -96206,7 +91699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -96218,7 +91711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96246,7 +91739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -96254,51 +91747,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [625] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2050), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [644] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2731), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -96307,7 +91800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -96319,7 +91812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96347,7 +91840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -96355,60 +91848,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [626] = { - [sym_qualified_identifier] = STATE(2137), - [sym_scoped_identifier] = STATE(2597), - [sym_scope_identifier] = STATE(2611), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2625), - [sym_subscript_expression] = STATE(2625), - [sym_list_expression] = STATE(2625), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [645] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2308), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [646] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2041), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [647] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2080), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2625), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2625), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1951), - [sym_pipe_variable] = ACTIONS(1953), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -96420,7 +92115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96448,59 +92143,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1955), - [sym_xhp_class_identifier] = ACTIONS(1953), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [627] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2106), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [648] = { + [sym_qualified_identifier] = STATE(1834), + [sym_scoped_identifier] = STATE(2008), + [sym_scope_identifier] = STATE(2005), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2227), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2103), + [sym_subscript_expression] = STATE(2103), + [sym_list_expression] = STATE(2103), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(2103), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(5825), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2103), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2103), + [sym_parameters] = STATE(4213), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3786), + [sym_async_modifier] = STATE(3868), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(1063), [sym_pipe_variable] = ACTIONS(1065), @@ -96509,7 +92204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(1067), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(1071), [anon_sym_include_once] = ACTIONS(1071), [anon_sym_require] = ACTIONS(1073), @@ -96520,8 +92215,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96553,55 +92248,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(1089), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_identifier] = ACTIONS(1257), [sym_xhp_class_identifier] = ACTIONS(1065), [sym_comment] = ACTIONS(3), }, - [628] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2713), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [649] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2685), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -96610,7 +92305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -96622,7 +92317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96650,7 +92345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -96658,274 +92353,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [629] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2340), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [630] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2330), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [631] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2575), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [650] = { + [sym_qualified_identifier] = STATE(2058), + [sym_scoped_identifier] = STATE(2391), + [sym_scope_identifier] = STATE(2388), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2558), + [sym_subscript_expression] = STATE(2558), + [sym_list_expression] = STATE(2558), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2558), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2558), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1925), + [sym_pipe_variable] = ACTIONS(1927), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -96938,8 +92431,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -96947,187 +92440,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [632] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2322), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(1929), + [sym_xhp_class_identifier] = ACTIONS(1927), [sym_comment] = ACTIONS(3), }, - [633] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2109), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [651] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2052), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -97140,8 +92532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -97149,86 +92541,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [634] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2111), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [652] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2776), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -97241,8 +92633,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -97250,187 +92642,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - }, - [635] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2320), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [636] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2117), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [653] = { + [sym_qualified_identifier] = STATE(2003), + [sym_scoped_identifier] = STATE(2475), + [sym_scope_identifier] = STATE(2473), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2596), + [sym_subscript_expression] = STATE(2596), + [sym_list_expression] = STATE(2596), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2596), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2596), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(1931), + [sym_pipe_variable] = ACTIONS(1933), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -97443,8 +92734,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -97452,86 +92743,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(1935), + [sym_xhp_class_identifier] = ACTIONS(1933), [sym_comment] = ACTIONS(3), }, - [637] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2121), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [654] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2528), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -97544,8 +92835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -97553,288 +92844,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - }, - [638] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2319), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [639] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2315), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [640] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2122), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [655] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2040), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -97847,8 +92936,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -97856,74 +92945,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [641] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2087), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [656] = { + [sym_qualified_identifier] = STATE(2073), + [sym_scoped_identifier] = STATE(2441), + [sym_scope_identifier] = STATE(2443), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2605), + [sym_subscript_expression] = STATE(2605), + [sym_list_expression] = STATE(2605), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2605), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2605), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1937), + [sym_pipe_variable] = ACTIONS(1939), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -97935,7 +93024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -97963,261 +93052,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1941), + [sym_xhp_class_identifier] = ACTIONS(1939), [sym_comment] = ACTIONS(3), }, - [642] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2168), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - }, - [643] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2313), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [644] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2065), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [657] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2546), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -98226,7 +93113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -98237,8 +93124,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -98274,72 +93161,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [645] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2124), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [658] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2617), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -98352,8 +93239,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -98361,86 +93248,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [646] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2125), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [659] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2246), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -98453,8 +93340,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -98462,74 +93349,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [647] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2051), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [660] = { + [sym_qualified_identifier] = STATE(2050), + [sym_scoped_identifier] = STATE(2410), + [sym_scope_identifier] = STATE(2406), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2595), + [sym_subscript_expression] = STATE(2595), + [sym_list_expression] = STATE(2595), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2595), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2595), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1943), + [sym_pipe_variable] = ACTIONS(1945), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -98541,7 +93428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -98569,68 +93456,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1947), + [sym_xhp_class_identifier] = ACTIONS(1945), [sym_comment] = ACTIONS(3), }, - [648] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2061), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [661] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(2778), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2778), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2778), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), + [sym_variable] = ACTIONS(1949), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -98642,7 +93529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -98670,7 +93557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -98678,72 +93565,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [649] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2126), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [662] = { + [sym_qualified_identifier] = STATE(2095), + [sym_scoped_identifier] = STATE(2415), + [sym_scope_identifier] = STATE(2503), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2597), + [sym_subscript_expression] = STATE(2597), + [sym_list_expression] = STATE(2597), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2597), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2597), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(1951), + [sym_pipe_variable] = ACTIONS(1953), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -98756,8 +93643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -98765,86 +93652,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(1955), + [sym_xhp_class_identifier] = ACTIONS(1953), [sym_comment] = ACTIONS(3), }, - [650] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2128), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [663] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2019), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -98857,8 +93744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -98866,187 +93753,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - }, - [651] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2312), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [652] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2130), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [664] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2718), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99059,8 +93845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -99068,86 +93854,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [653] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2131), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [665] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2615), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99160,8 +93946,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -99169,187 +93955,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - }, - [654] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2442), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [655] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2132), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [666] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2603), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99362,8 +94047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -99371,86 +94056,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [656] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2135), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [667] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2071), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99463,8 +94148,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -99472,86 +94157,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [657] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2547), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [668] = { + [sym_qualified_identifier] = STATE(2138), + [sym_scoped_identifier] = STATE(2526), + [sym_scope_identifier] = STATE(2604), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2777), + [sym_subscript_expression] = STATE(2777), + [sym_list_expression] = STATE(2777), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2777), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2777), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1957), + [sym_pipe_variable] = ACTIONS(1959), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99564,8 +94249,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -99573,74 +94258,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1961), + [sym_xhp_class_identifier] = ACTIONS(1959), [sym_comment] = ACTIONS(3), }, - [658] = { - [sym_qualified_identifier] = STATE(2088), - [sym_scoped_identifier] = STATE(2321), - [sym_scope_identifier] = STATE(2324), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2591), - [sym_subscript_expression] = STATE(2591), - [sym_list_expression] = STATE(2591), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [669] = { + [sym_qualified_identifier] = STATE(2108), + [sym_scoped_identifier] = STATE(2525), + [sym_scope_identifier] = STATE(2599), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2646), + [sym_subscript_expression] = STATE(2646), + [sym_list_expression] = STATE(2646), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2591), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2591), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2646), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2646), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1957), - [sym_pipe_variable] = ACTIONS(1959), + [sym_variable] = ACTIONS(1963), + [sym_pipe_variable] = ACTIONS(1965), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -99652,7 +94337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99680,80 +94365,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1961), - [sym_xhp_class_identifier] = ACTIONS(1959), + [sym_xhp_identifier] = ACTIONS(1967), + [sym_xhp_class_identifier] = ACTIONS(1965), [sym_comment] = ACTIONS(3), }, - [659] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2545), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [670] = { + [sym_qualified_identifier] = STATE(2129), + [sym_scoped_identifier] = STATE(2589), + [sym_scope_identifier] = STATE(2593), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2667), + [sym_subscript_expression] = STATE(2667), + [sym_list_expression] = STATE(2667), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2667), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2667), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1969), + [sym_pipe_variable] = ACTIONS(1971), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99766,8 +94451,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -99775,187 +94460,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [660] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2311), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(1973), + [sym_xhp_class_identifier] = ACTIONS(1971), [sym_comment] = ACTIONS(3), }, - [661] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2543), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [671] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2021), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -99968,8 +94552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -99977,86 +94561,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [662] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2067), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [672] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2022), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100069,8 +94653,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -100078,86 +94662,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [663] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2071), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [673] = { + [sym_qualified_identifier] = STATE(2127), + [sym_scoped_identifier] = STATE(2584), + [sym_scope_identifier] = STATE(2586), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2674), + [sym_subscript_expression] = STATE(2674), + [sym_list_expression] = STATE(2674), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2674), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2674), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(1975), + [sym_pipe_variable] = ACTIONS(1977), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100170,8 +94754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -100179,86 +94763,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(1979), + [sym_xhp_class_identifier] = ACTIONS(1977), [sym_comment] = ACTIONS(3), }, - [664] = { - [sym_qualified_identifier] = STATE(1817), - [sym_scoped_identifier] = STATE(2082), - [sym_scope_identifier] = STATE(2084), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2107), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2108), - [sym_subscript_expression] = STATE(2108), - [sym_list_expression] = STATE(2108), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(2108), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5825), + [674] = { + [sym_qualified_identifier] = STATE(2110), + [sym_scoped_identifier] = STATE(2607), + [sym_scope_identifier] = STATE(2610), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2644), + [sym_subscript_expression] = STATE(2644), + [sym_list_expression] = STATE(2644), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2108), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2108), - [sym_parameters] = STATE(4259), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3792), - [sym_async_modifier] = STATE(3915), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2644), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1063), - [sym_pipe_variable] = ACTIONS(1065), + [sym_variable] = ACTIONS(1981), + [sym_pipe_variable] = ACTIONS(1983), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(1067), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(1069), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(1071), - [anon_sym_include_once] = ACTIONS(1071), - [anon_sym_require] = ACTIONS(1073), - [anon_sym_require_once] = ACTIONS(1073), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100271,8 +94855,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -100280,86 +94864,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1265), - [sym_xhp_class_identifier] = ACTIONS(1065), + [sym_xhp_identifier] = ACTIONS(1985), + [sym_xhp_class_identifier] = ACTIONS(1983), [sym_comment] = ACTIONS(3), }, - [665] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2015), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [675] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2034), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100372,8 +94956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -100381,65 +94965,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), [sym_xhp_identifier] = ACTIONS(127), [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [666] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2052), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [676] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2624), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -100448,7 +95032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -100460,7 +95044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100488,7 +95072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -100496,51 +95080,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [667] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2011), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [677] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2454), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -100549,7 +95133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -100560,8 +95144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100597,51 +95181,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [668] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2072), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [678] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2090), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -100650,7 +95234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -100661,8 +95245,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100698,51 +95282,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [669] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2075), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [679] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2060), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(21), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [680] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2254), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -100751,7 +95436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -100762,8 +95447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100799,51 +95484,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [670] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2057), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [681] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(1997), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -100852,7 +95537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -100864,7 +95549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -100892,7 +95577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -100900,51 +95585,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [671] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2080), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [682] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2027), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -100953,7 +95638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -100964,8 +95649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -101001,60 +95686,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [672] = { - [sym_qualified_identifier] = STATE(2005), - [sym_scoped_identifier] = STATE(2505), - [sym_scope_identifier] = STATE(2499), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2531), - [sym_subscript_expression] = STATE(2531), - [sym_list_expression] = STATE(2531), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [683] = { + [sym_qualified_identifier] = STATE(1998), + [sym_scoped_identifier] = STATE(2326), + [sym_scope_identifier] = STATE(2329), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2550), + [sym_subscript_expression] = STATE(2550), + [sym_list_expression] = STATE(2550), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2531), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2531), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2550), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2550), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1963), - [sym_pipe_variable] = ACTIONS(1965), + [sym_variable] = ACTIONS(1987), + [sym_pipe_variable] = ACTIONS(1989), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -101066,7 +95751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -101094,68 +95779,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1967), - [sym_xhp_class_identifier] = ACTIONS(1965), + [sym_xhp_identifier] = ACTIONS(1991), + [sym_xhp_class_identifier] = ACTIONS(1989), [sym_comment] = ACTIONS(3), }, - [673] = { - [sym_qualified_identifier] = STATE(2095), - [sym_scoped_identifier] = STATE(2577), - [sym_scope_identifier] = STATE(2579), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2670), - [sym_subscript_expression] = STATE(2670), - [sym_list_expression] = STATE(2670), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [684] = { + [sym_qualified_identifier] = STATE(2054), + [sym_scoped_identifier] = STATE(2390), + [sym_scope_identifier] = STATE(2392), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2579), + [sym_subscript_expression] = STATE(2579), + [sym_list_expression] = STATE(2579), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2670), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2670), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2579), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2579), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1969), - [sym_pipe_variable] = ACTIONS(1971), + [sym_variable] = ACTIONS(1993), + [sym_pipe_variable] = ACTIONS(1995), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -101167,7 +95852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -101195,68 +95880,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1973), - [sym_xhp_class_identifier] = ACTIONS(1971), + [sym_xhp_identifier] = ACTIONS(1997), + [sym_xhp_class_identifier] = ACTIONS(1995), [sym_comment] = ACTIONS(3), }, - [674] = { - [sym_qualified_identifier] = STATE(2098), - [sym_scoped_identifier] = STATE(2587), - [sym_scope_identifier] = STATE(2588), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2664), - [sym_subscript_expression] = STATE(2664), - [sym_list_expression] = STATE(2664), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [685] = { + [sym_qualified_identifier] = STATE(2039), + [sym_scoped_identifier] = STATE(2374), + [sym_scope_identifier] = STATE(2376), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2575), + [sym_subscript_expression] = STATE(2575), + [sym_list_expression] = STATE(2575), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2664), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2664), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2575), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2575), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1975), - [sym_pipe_variable] = ACTIONS(1977), + [sym_variable] = ACTIONS(1999), + [sym_pipe_variable] = ACTIONS(2001), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -101268,7 +95953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -101296,80 +95981,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1979), - [sym_xhp_class_identifier] = ACTIONS(1977), + [sym_xhp_identifier] = ACTIONS(2003), + [sym_xhp_class_identifier] = ACTIONS(2001), [sym_comment] = ACTIONS(3), }, - [675] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2002), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [686] = { + [sym_qualified_identifier] = STATE(2121), + [sym_scoped_identifier] = STATE(2568), + [sym_scope_identifier] = STATE(2569), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2708), + [sym_subscript_expression] = STATE(2708), + [sym_list_expression] = STATE(2708), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2708), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2708), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(2005), + [sym_pipe_variable] = ACTIONS(2007), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -101382,8 +96067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -101391,74 +96076,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), + [sym_xhp_identifier] = ACTIONS(2009), + [sym_xhp_class_identifier] = ACTIONS(2007), [sym_comment] = ACTIONS(3), }, - [676] = { - [sym_qualified_identifier] = STATE(2092), - [sym_scoped_identifier] = STATE(2314), - [sym_scope_identifier] = STATE(2316), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2589), - [sym_subscript_expression] = STATE(2589), - [sym_list_expression] = STATE(2589), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [687] = { + [sym_qualified_identifier] = STATE(2117), + [sym_scoped_identifier] = STATE(2561), + [sym_scope_identifier] = STATE(2564), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2720), + [sym_subscript_expression] = STATE(2720), + [sym_list_expression] = STATE(2720), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2589), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2589), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2720), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2720), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1981), - [sym_pipe_variable] = ACTIONS(1983), + [sym_variable] = ACTIONS(2011), + [sym_pipe_variable] = ACTIONS(2013), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -101470,7 +96155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -101498,59 +96183,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1985), - [sym_xhp_class_identifier] = ACTIONS(1983), + [sym_xhp_identifier] = ACTIONS(2015), + [sym_xhp_class_identifier] = ACTIONS(2013), [sym_comment] = ACTIONS(3), }, - [677] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2064), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [688] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2035), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -101559,7 +96244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -101570,8 +96255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -101607,556 +96292,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [678] = { - [sym_qualified_identifier] = STATE(1997), - [sym_scoped_identifier] = STATE(2390), - [sym_scope_identifier] = STATE(2522), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2529), - [sym_subscript_expression] = STATE(2529), - [sym_list_expression] = STATE(2529), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2529), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2529), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1987), - [sym_pipe_variable] = ACTIONS(1989), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1991), - [sym_xhp_class_identifier] = ACTIONS(1989), - [sym_comment] = ACTIONS(3), - }, - [679] = { - [sym_qualified_identifier] = STATE(2163), - [sym_scoped_identifier] = STATE(2546), - [sym_scope_identifier] = STATE(2544), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2759), - [sym_subscript_expression] = STATE(2759), - [sym_list_expression] = STATE(2759), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2759), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2759), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1993), - [sym_pipe_variable] = ACTIONS(1995), - [anon_sym_shape] = ACTIONS(17), - [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), - [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(35), - [anon_sym_parent] = ACTIONS(35), - [anon_sym_static] = ACTIONS(35), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), - [sym_float] = ACTIONS(83), - [sym_integer] = ACTIONS(85), - [anon_sym_true] = ACTIONS(87), - [anon_sym_True] = ACTIONS(87), - [anon_sym_TRUE] = ACTIONS(87), - [anon_sym_false] = ACTIONS(89), - [anon_sym_False] = ACTIONS(89), - [anon_sym_FALSE] = ACTIONS(89), - [anon_sym_null] = ACTIONS(91), - [anon_sym_Null] = ACTIONS(91), - [anon_sym_NULL] = ACTIONS(91), - [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_array] = ACTIONS(97), - [anon_sym_varray] = ACTIONS(97), - [anon_sym_darray] = ACTIONS(97), - [anon_sym_vec] = ACTIONS(97), - [anon_sym_dict] = ACTIONS(97), - [anon_sym_keyset] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), - [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), - [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), - [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(1997), - [sym_xhp_class_identifier] = ACTIONS(1995), - [sym_comment] = ACTIONS(3), - }, - [680] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2276), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [681] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2274), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [682] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2258), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [683] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2585), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [689] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2056), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -102165,7 +96345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -102176,8 +96356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102213,51 +96393,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [684] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2647), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [690] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2664), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -102266,7 +96446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -102278,7 +96458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102306,7 +96486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -102314,60 +96494,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [685] = { - [sym_qualified_identifier] = STATE(2159), - [sym_scoped_identifier] = STATE(2555), - [sym_scope_identifier] = STATE(2551), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2700), - [sym_subscript_expression] = STATE(2700), - [sym_list_expression] = STATE(2700), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [691] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2024), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2700), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2700), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(1999), - [sym_pipe_variable] = ACTIONS(2001), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -102379,7 +96559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102407,59 +96587,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(2003), - [sym_xhp_class_identifier] = ACTIONS(2001), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [686] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2056), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [692] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2028), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -102468,7 +96648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -102480,7 +96660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102508,7 +96688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -102516,51 +96696,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [687] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2698), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [693] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2032), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -102569,7 +96749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -102581,7 +96761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102609,7 +96789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -102617,51 +96797,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [688] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2624), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [694] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2043), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -102670,7 +96850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -102682,7 +96862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102710,7 +96890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -102718,72 +96898,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [689] = { - [sym_qualified_identifier] = STATE(2097), - [sym_scoped_identifier] = STATE(2600), - [sym_scope_identifier] = STATE(2526), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2655), - [sym_subscript_expression] = STATE(2655), - [sym_list_expression] = STATE(2655), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [695] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2066), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2655), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2655), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(2005), - [sym_pipe_variable] = ACTIONS(2007), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102796,8 +96976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -102805,65 +96985,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(2009), - [sym_xhp_class_identifier] = ACTIONS(2007), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [690] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2055), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [696] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2013), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -102872,7 +97052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -102884,7 +97064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -102912,7 +97092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -102920,51 +97100,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [691] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2660), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [697] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2046), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -102973,7 +97153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -102985,7 +97165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -103013,7 +97193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -103021,72 +97201,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [692] = { - [sym_qualified_identifier] = STATE(2103), - [sym_scoped_identifier] = STATE(2608), - [sym_scope_identifier] = STATE(2598), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2654), - [sym_subscript_expression] = STATE(2654), - [sym_list_expression] = STATE(2654), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [698] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2072), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2654), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2654), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(2011), - [sym_pipe_variable] = ACTIONS(2013), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -103099,8 +97279,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -103108,65 +97288,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(2015), - [sym_xhp_class_identifier] = ACTIONS(2013), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [693] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2054), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [699] = { + [sym_qualified_identifier] = STATE(1962), + [sym_scoped_identifier] = STATE(2190), + [sym_scope_identifier] = STATE(2184), + [sym_heredoc] = STATE(2741), + [sym__expression] = STATE(2520), + [sym_true] = STATE(2741), + [sym_false] = STATE(2741), + [sym_null] = STATE(2741), + [sym_expression_tree] = STATE(2741), + [sym_prefixed_string] = STATE(2741), + [sym_array] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_shape] = STATE(2741), + [sym_collection] = STATE(2741), + [sym_include_expression] = STATE(2741), + [sym_require_expression] = STATE(2741), + [sym_parenthesized_expression] = STATE(2522), + [sym_subscript_expression] = STATE(2522), + [sym_list_expression] = STATE(2522), + [sym_binary_expression] = STATE(2741), + [sym_prefix_unary_expression] = STATE(2741), + [sym_postfix_unary_expression] = STATE(2741), + [sym_is_expression] = STATE(2741), + [sym_as_expression] = STATE(2522), + [sym_awaitable_expression] = STATE(2741), + [sym_yield_expression] = STATE(2741), + [sym_cast_expression] = STATE(2741), + [sym_ternary_expression] = STATE(2741), + [sym_lambda_expression] = STATE(2741), + [sym__single_parameter_parameters] = STATE(5843), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(2522), + [sym_new_expression] = STATE(2741), + [sym_selection_expression] = STATE(2522), + [sym_parameters] = STATE(4235), + [sym_enum_class_label] = STATE(2741), + [sym_attribute_modifier] = STATE(3799), + [sym_async_modifier] = STATE(3848), + [sym_xhp_expression] = STATE(2741), + [sym_xhp_open] = STATE(3605), + [sym_xhp_open_close] = STATE(2689), + [sym_function_pointer] = STATE(2741), + [sym_anonymous_function_expression] = STATE(2741), + [aux_sym_qualified_identifier_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(1095), + [sym_variable] = ACTIONS(1097), + [sym_pipe_variable] = ACTIONS(1099), + [anon_sym_shape] = ACTIONS(1259), + [anon_sym_tuple] = ACTIONS(1103), + [anon_sym_clone] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_include] = ACTIONS(1113), + [anon_sym_include_once] = ACTIONS(1113), + [anon_sym_require] = ACTIONS(1115), + [anon_sym_require_once] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1125), + [sym_float] = ACTIONS(1127), + [sym_integer] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_True] = ACTIONS(1131), + [anon_sym_TRUE] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1133), + [anon_sym_False] = ACTIONS(1133), + [anon_sym_FALSE] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_Null] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [sym_string] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_varray] = ACTIONS(1263), + [anon_sym_darray] = ACTIONS(1263), + [anon_sym_vec] = ACTIONS(1263), + [anon_sym_dict] = ACTIONS(1263), + [anon_sym_keyset] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_await] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1159), + [sym_xhp_identifier] = ACTIONS(1265), + [sym_xhp_class_identifier] = ACTIONS(1099), + [sym_comment] = ACTIONS(3), + }, + [700] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2627), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -103175,7 +97456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -103187,7 +97468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -103215,7 +97496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -103223,51 +97504,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [694] = { - [sym_qualified_identifier] = STATE(2079), - [sym_scoped_identifier] = STATE(2350), - [sym_scope_identifier] = STATE(2359), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2595), - [sym_subscript_expression] = STATE(2595), - [sym_list_expression] = STATE(2595), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [701] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2015), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), + [sym__single_parameter] = STATE(6014), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), + [sym_identifier] = ACTIONS(7), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), + [anon_sym_shape] = ACTIONS(17), + [anon_sym_tuple] = ACTIONS(19), + [anon_sym_clone] = ACTIONS(967), + [anon_sym_new] = ACTIONS(23), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(35), + [anon_sym_parent] = ACTIONS(35), + [anon_sym_static] = ACTIONS(35), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), + [sym_float] = ACTIONS(83), + [sym_integer] = ACTIONS(85), + [anon_sym_true] = ACTIONS(87), + [anon_sym_True] = ACTIONS(87), + [anon_sym_TRUE] = ACTIONS(87), + [anon_sym_false] = ACTIONS(89), + [anon_sym_False] = ACTIONS(89), + [anon_sym_FALSE] = ACTIONS(89), + [anon_sym_null] = ACTIONS(91), + [anon_sym_Null] = ACTIONS(91), + [anon_sym_NULL] = ACTIONS(91), + [sym_string] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_array] = ACTIONS(97), + [anon_sym_varray] = ACTIONS(97), + [anon_sym_darray] = ACTIONS(97), + [anon_sym_vec] = ACTIONS(97), + [anon_sym_dict] = ACTIONS(97), + [anon_sym_keyset] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(121), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + }, + [702] = { + [sym_qualified_identifier] = STATE(2061), + [sym_scoped_identifier] = STATE(2304), + [sym_scope_identifier] = STATE(2310), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2543), + [sym_subscript_expression] = STATE(2543), + [sym_list_expression] = STATE(2543), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2595), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2595), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2543), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2543), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(2017), [sym_pipe_variable] = ACTIONS(2019), @@ -103276,7 +97658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -103288,7 +97670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -103316,7 +97698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -103324,274 +97706,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2019), [sym_comment] = ACTIONS(3), }, - [695] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2447), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [696] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2451), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [697] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2604), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [703] = { + [sym_qualified_identifier] = STATE(2012), + [sym_scoped_identifier] = STATE(2334), + [sym_scope_identifier] = STATE(2335), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2782), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(2553), + [sym_subscript_expression] = STATE(2553), + [sym_list_expression] = STATE(2553), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(2553), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(2553), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(11), - [sym_pipe_variable] = ACTIONS(13), + [sym_variable] = ACTIONS(2023), + [sym_pipe_variable] = ACTIONS(2025), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(967), + [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(973), - [anon_sym_include_once] = ACTIONS(973), - [anon_sym_require] = ACTIONS(975), - [anon_sym_require_once] = ACTIONS(975), + [anon_sym_print] = ACTIONS(25), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(29), + [anon_sym_include_once] = ACTIONS(29), + [anon_sym_require] = ACTIONS(31), + [anon_sym_require_once] = ACTIONS(31), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -103604,8 +97784,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -103613,469 +97793,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(127), - [sym_xhp_class_identifier] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - }, - [698] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2455), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [699] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2458), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [700] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2498), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [701] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2506), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), + [sym_xhp_identifier] = ACTIONS(2027), + [sym_xhp_class_identifier] = ACTIONS(2025), [sym_comment] = ACTIONS(3), }, - [702] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2414), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(5787), + [704] = { + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2577), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4427), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3791), - [sym_async_modifier] = STATE(3932), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -104084,7 +97860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(969), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(973), [anon_sym_include_once] = ACTIONS(973), [anon_sym_require] = ACTIONS(975), @@ -104095,8 +97871,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -104132,274 +97908,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, - [703] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2271), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, - [704] = { - [sym_qualified_identifier] = STATE(1957), - [sym_scoped_identifier] = STATE(2196), - [sym_scope_identifier] = STATE(2209), - [sym_heredoc] = STATE(2693), - [sym__expression] = STATE(2517), - [sym_true] = STATE(2693), - [sym_false] = STATE(2693), - [sym_null] = STATE(2693), - [sym_expression_tree] = STATE(2693), - [sym_prefixed_string] = STATE(2693), - [sym_array] = STATE(2693), - [sym_tuple] = STATE(2693), - [sym_shape] = STATE(2693), - [sym_collection] = STATE(2693), - [sym_include_expression] = STATE(2693), - [sym_require_expression] = STATE(2693), - [sym_parenthesized_expression] = STATE(2425), - [sym_subscript_expression] = STATE(2425), - [sym_list_expression] = STATE(2425), - [sym_binary_expression] = STATE(2693), - [sym_prefix_unary_expression] = STATE(2693), - [sym_postfix_unary_expression] = STATE(2693), - [sym_is_expression] = STATE(2693), - [sym_as_expression] = STATE(2425), - [sym_awaitable_expression] = STATE(2693), - [sym_yield_expression] = STATE(2693), - [sym_cast_expression] = STATE(2693), - [sym_ternary_expression] = STATE(2693), - [sym_lambda_expression] = STATE(2693), - [sym__single_parameter_parameters] = STATE(5795), - [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2425), - [sym_new_expression] = STATE(2693), - [sym_selection_expression] = STATE(2425), - [sym_parameters] = STATE(4400), - [sym_enum_class_label] = STATE(2693), - [sym_attribute_modifier] = STATE(3765), - [sym_async_modifier] = STATE(3877), - [sym_xhp_expression] = STATE(2693), - [sym_xhp_open] = STATE(3596), - [sym_xhp_open_close] = STATE(2748), - [sym_function_pointer] = STATE(2693), - [sym_anonymous_function_expression] = STATE(2693), - [aux_sym_qualified_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(1101), - [sym_variable] = ACTIONS(1103), - [sym_pipe_variable] = ACTIONS(1105), - [anon_sym_shape] = ACTIONS(1245), - [anon_sym_tuple] = ACTIONS(1109), - [anon_sym_clone] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_print] = ACTIONS(1115), - [anon_sym_namespace] = ACTIONS(1117), - [anon_sym_include] = ACTIONS(1119), - [anon_sym_include_once] = ACTIONS(1119), - [anon_sym_require] = ACTIONS(1121), - [anon_sym_require_once] = ACTIONS(1121), - [anon_sym_BSLASH] = ACTIONS(1123), - [anon_sym_self] = ACTIONS(1125), - [anon_sym_parent] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_LT_LT_LT] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_function] = ACTIONS(1131), - [sym_float] = ACTIONS(1133), - [sym_integer] = ACTIONS(1135), - [anon_sym_true] = ACTIONS(1137), - [anon_sym_True] = ACTIONS(1137), - [anon_sym_TRUE] = ACTIONS(1137), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_False] = ACTIONS(1139), - [anon_sym_FALSE] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1141), - [anon_sym_Null] = ACTIONS(1141), - [anon_sym_NULL] = ACTIONS(1141), - [sym_string] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_array] = ACTIONS(1251), - [anon_sym_varray] = ACTIONS(1251), - [anon_sym_darray] = ACTIONS(1251), - [anon_sym_vec] = ACTIONS(1251), - [anon_sym_dict] = ACTIONS(1251), - [anon_sym_keyset] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_list] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1159), - [anon_sym_async] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1163), - [anon_sym_POUND] = ACTIONS(1165), - [sym_xhp_identifier] = ACTIONS(1255), - [sym_xhp_class_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - }, [705] = { - [sym_qualified_identifier] = STATE(2160), - [sym_scoped_identifier] = STATE(2566), - [sym_scope_identifier] = STATE(2561), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2798), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(2692), - [sym_subscript_expression] = STATE(2692), - [sym_list_expression] = STATE(2692), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), - [sym__single_parameter_parameters] = STATE(6019), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2578), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), + [sym__single_parameter_parameters] = STATE(5768), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(2692), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(2692), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4222), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3794), + [sym_async_modifier] = STATE(3818), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), - [sym_variable] = ACTIONS(2023), - [sym_pipe_variable] = ACTIONS(2025), + [sym_variable] = ACTIONS(11), + [sym_pipe_variable] = ACTIONS(13), [anon_sym_shape] = ACTIONS(17), [anon_sym_tuple] = ACTIONS(19), - [anon_sym_clone] = ACTIONS(21), + [anon_sym_clone] = ACTIONS(967), [anon_sym_new] = ACTIONS(23), - [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(29), - [anon_sym_include_once] = ACTIONS(29), - [anon_sym_require] = ACTIONS(31), - [anon_sym_require_once] = ACTIONS(31), + [anon_sym_print] = ACTIONS(969), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(973), + [anon_sym_include_once] = ACTIONS(973), + [anon_sym_require] = ACTIONS(975), + [anon_sym_require_once] = ACTIONS(975), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_self] = ACTIONS(35), [anon_sym_parent] = ACTIONS(35), [anon_sym_static] = ACTIONS(35), [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -104412,8 +97986,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Null] = ACTIONS(91), [anon_sym_NULL] = ACTIONS(91), [sym_string] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), [anon_sym_array] = ACTIONS(97), [anon_sym_varray] = ACTIONS(97), [anon_sym_darray] = ACTIONS(97), @@ -104421,65 +97995,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_dict] = ACTIONS(97), [anon_sym_keyset] = ACTIONS(97), [anon_sym_LT] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), [anon_sym_list] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), [anon_sym_async] = ACTIONS(107), - [anon_sym_yield] = ACTIONS(109), + [anon_sym_yield] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(121), - [sym_xhp_identifier] = ACTIONS(2027), - [sym_xhp_class_identifier] = ACTIONS(2025), + [sym_xhp_identifier] = ACTIONS(127), + [sym_xhp_class_identifier] = ACTIONS(13), [sym_comment] = ACTIONS(3), }, [706] = { - [sym_qualified_identifier] = STATE(1790), - [sym_scoped_identifier] = STATE(1876), - [sym_scope_identifier] = STATE(1878), - [sym_heredoc] = STATE(1929), - [sym__expression] = STATE(2628), - [sym_true] = STATE(1929), - [sym_false] = STATE(1929), - [sym_null] = STATE(1929), - [sym_expression_tree] = STATE(1929), - [sym_prefixed_string] = STATE(1929), - [sym_array] = STATE(1929), - [sym_tuple] = STATE(1929), - [sym_shape] = STATE(1929), - [sym_collection] = STATE(1929), - [sym_include_expression] = STATE(1929), - [sym_require_expression] = STATE(1929), - [sym_parenthesized_expression] = STATE(1892), - [sym_subscript_expression] = STATE(1892), - [sym_list_expression] = STATE(1892), - [sym_binary_expression] = STATE(1929), - [sym_prefix_unary_expression] = STATE(1929), - [sym_postfix_unary_expression] = STATE(1929), - [sym_is_expression] = STATE(1929), - [sym_as_expression] = STATE(1892), - [sym_awaitable_expression] = STATE(1929), - [sym_yield_expression] = STATE(1929), - [sym_cast_expression] = STATE(1929), - [sym_ternary_expression] = STATE(1929), - [sym_lambda_expression] = STATE(1929), + [sym_qualified_identifier] = STATE(1787), + [sym_scoped_identifier] = STATE(1877), + [sym_scope_identifier] = STATE(1889), + [sym_heredoc] = STATE(1942), + [sym__expression] = STATE(2639), + [sym_true] = STATE(1942), + [sym_false] = STATE(1942), + [sym_null] = STATE(1942), + [sym_expression_tree] = STATE(1942), + [sym_prefixed_string] = STATE(1942), + [sym_array] = STATE(1942), + [sym_tuple] = STATE(1942), + [sym_shape] = STATE(1942), + [sym_collection] = STATE(1942), + [sym_include_expression] = STATE(1942), + [sym_require_expression] = STATE(1942), + [sym_parenthesized_expression] = STATE(1951), + [sym_subscript_expression] = STATE(1951), + [sym_list_expression] = STATE(1951), + [sym_binary_expression] = STATE(1942), + [sym_prefix_unary_expression] = STATE(1942), + [sym_postfix_unary_expression] = STATE(1942), + [sym_is_expression] = STATE(1942), + [sym_as_expression] = STATE(1951), + [sym_awaitable_expression] = STATE(1942), + [sym_yield_expression] = STATE(1942), + [sym_cast_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_lambda_expression] = STATE(1942), [sym__single_parameter_parameters] = STATE(6019), [sym__single_parameter] = STATE(6014), - [sym_call_expression] = STATE(1892), - [sym_new_expression] = STATE(1929), - [sym_selection_expression] = STATE(1892), - [sym_parameters] = STATE(4449), - [sym_enum_class_label] = STATE(1929), - [sym_attribute_modifier] = STATE(3756), - [sym_async_modifier] = STATE(3954), - [sym_xhp_expression] = STATE(1929), - [sym_xhp_open] = STATE(3590), - [sym_xhp_open_close] = STATE(1930), - [sym_function_pointer] = STATE(1929), - [sym_anonymous_function_expression] = STATE(1929), - [aux_sym_qualified_identifier_repeat1] = STATE(1777), + [sym_call_expression] = STATE(1951), + [sym_new_expression] = STATE(1942), + [sym_selection_expression] = STATE(1951), + [sym_parameters] = STATE(4197), + [sym_enum_class_label] = STATE(1942), + [sym_attribute_modifier] = STATE(3752), + [sym_async_modifier] = STATE(4012), + [sym_xhp_expression] = STATE(1942), + [sym_xhp_open] = STATE(3584), + [sym_xhp_open_close] = STATE(1949), + [sym_function_pointer] = STATE(1942), + [sym_anonymous_function_expression] = STATE(1942), + [aux_sym_qualified_identifier_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(7), [sym_variable] = ACTIONS(11), [sym_pipe_variable] = ACTIONS(13), @@ -104488,7 +98062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(21), [anon_sym_new] = ACTIONS(23), [anon_sym_print] = ACTIONS(25), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(29), [anon_sym_include_once] = ACTIONS(29), [anon_sym_require] = ACTIONS(31), @@ -104500,7 +98074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1051), [anon_sym_LT_LT_LT] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_function] = ACTIONS(949), + [anon_sym_function] = ACTIONS(953), [sym_float] = ACTIONS(83), [sym_integer] = ACTIONS(85), [anon_sym_true] = ACTIONS(87), @@ -104528,7 +98102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(95), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_await] = ACTIONS(951), + [anon_sym_await] = ACTIONS(955), [anon_sym_async] = ACTIONS(107), [anon_sym_yield] = ACTIONS(109), [anon_sym_POUND] = ACTIONS(121), @@ -104538,8 +98112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [707] = { [sym_qualified_identifier] = STATE(4788), - [sym_compound_statement] = STATE(854), - [aux_sym_qualified_identifier_repeat1] = STATE(2043), + [sym_compound_statement] = STATE(856), + [aux_sym_qualified_identifier_repeat1] = STATE(2006), [sym_identifier] = ACTIONS(2029), [sym_variable] = ACTIONS(2031), [sym_pipe_variable] = ACTIONS(2031), @@ -104550,7 +98124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(2033), [anon_sym_new] = ACTIONS(2033), [anon_sym_print] = ACTIONS(2033), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(2033), [anon_sym_include_once] = ACTIONS(2033), [anon_sym_require] = ACTIONS(2033), @@ -104676,8 +98250,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(2035), [anon_sym_for] = ACTIONS(2035), [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_finally] = ACTIONS(2035), [anon_sym_using] = ACTIONS(2035), [sym_float] = ACTIONS(2037), [sym_integer] = ACTIONS(2035), @@ -104722,279 +98296,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [709] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_elseif] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_case] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_elseif] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_case] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), [anon_sym_catch] = ACTIONS(2039), [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, [710] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_elseif] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_case] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_finally] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2043), + [sym_variable] = ACTIONS(2045), + [sym_pipe_variable] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_newtype] = ACTIONS(2043), + [anon_sym_shape] = ACTIONS(2043), + [anon_sym_tuple] = ACTIONS(2043), + [anon_sym_clone] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_print] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_include] = ACTIONS(2043), + [anon_sym_include_once] = ACTIONS(2043), + [anon_sym_require] = ACTIONS(2043), + [anon_sym_require_once] = ACTIONS(2043), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_self] = ACTIONS(2043), + [anon_sym_parent] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_throw] = ACTIONS(2043), + [anon_sym_echo] = ACTIONS(2043), + [anon_sym_unset] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_concurrent] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_function] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_elseif] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_switch] = ACTIONS(2043), + [anon_sym_case] = ACTIONS(2043), + [anon_sym_default] = ACTIONS(2043), + [anon_sym_foreach] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(2043), + [sym_float] = ACTIONS(2045), + [sym_integer] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_True] = ACTIONS(2043), + [anon_sym_TRUE] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_False] = ACTIONS(2043), + [anon_sym_FALSE] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [anon_sym_Null] = ACTIONS(2043), + [anon_sym_NULL] = ACTIONS(2043), + [sym_string] = ACTIONS(2045), + [anon_sym_AT] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_array] = ACTIONS(2043), + [anon_sym_varray] = ACTIONS(2043), + [anon_sym_darray] = ACTIONS(2043), + [anon_sym_vec] = ACTIONS(2043), + [anon_sym_dict] = ACTIONS(2043), + [anon_sym_keyset] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2045), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_interface] = ACTIONS(2043), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_abstract] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_final_modifier] = ACTIONS(2043), + [sym_xhp_modifier] = ACTIONS(2043), + [sym_xhp_identifier] = ACTIONS(2043), + [sym_xhp_class_identifier] = ACTIONS(2045), [sym_comment] = ACTIONS(3), }, [711] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_elseif] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_finally] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_elseif] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_case] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, [712] = { @@ -105044,8 +98618,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(2053), [anon_sym_for] = ACTIONS(2053), [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_finally] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), [anon_sym_using] = ACTIONS(2053), [sym_float] = ACTIONS(2055), [sym_integer] = ACTIONS(2053), @@ -105090,6 +98664,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [713] = { + [sym_qualified_identifier] = STATE(4770), + [sym_compound_statement] = STATE(1003), + [aux_sym_qualified_identifier_repeat1] = STATE(2006), + [sym_identifier] = ACTIONS(2029), + [sym_variable] = ACTIONS(2031), + [sym_pipe_variable] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_newtype] = ACTIONS(2033), + [anon_sym_shape] = ACTIONS(2033), + [anon_sym_tuple] = ACTIONS(2033), + [anon_sym_clone] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(2033), + [anon_sym_include_once] = ACTIONS(2033), + [anon_sym_require] = ACTIONS(2033), + [anon_sym_require_once] = ACTIONS(2033), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(2033), + [anon_sym_parent] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_LT_LT] = ACTIONS(2033), + [anon_sym_LT_LT_LT] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_throw] = ACTIONS(2033), + [anon_sym_echo] = ACTIONS(2033), + [anon_sym_unset] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_concurrent] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_function] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_elseif] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_switch] = ACTIONS(2033), + [anon_sym_foreach] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_using] = ACTIONS(2033), + [sym_float] = ACTIONS(2031), + [sym_integer] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_True] = ACTIONS(2033), + [anon_sym_TRUE] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_False] = ACTIONS(2033), + [anon_sym_FALSE] = ACTIONS(2033), + [anon_sym_null] = ACTIONS(2033), + [anon_sym_Null] = ACTIONS(2033), + [anon_sym_NULL] = ACTIONS(2033), + [sym_string] = ACTIONS(2031), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_array] = ACTIONS(2033), + [anon_sym_varray] = ACTIONS(2033), + [anon_sym_darray] = ACTIONS(2033), + [anon_sym_vec] = ACTIONS(2033), + [anon_sym_dict] = ACTIONS(2033), + [anon_sym_keyset] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_interface] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_abstract] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2031), + [sym_final_modifier] = ACTIONS(2033), + [sym_xhp_modifier] = ACTIONS(2033), + [sym_xhp_identifier] = ACTIONS(2033), + [sym_xhp_class_identifier] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + }, + [714] = { [aux_sym_if_statement_repeat1] = STATE(721), [sym_identifier] = ACTIONS(2057), [sym_variable] = ACTIONS(2059), @@ -105180,190 +98845,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(3), }, - [714] = { - [sym_qualified_identifier] = STATE(4544), - [sym_compound_statement] = STATE(932), - [aux_sym_qualified_identifier_repeat1] = STATE(2043), - [sym_identifier] = ACTIONS(2029), - [sym_variable] = ACTIONS(2031), - [sym_pipe_variable] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2033), - [anon_sym_newtype] = ACTIONS(2033), - [anon_sym_shape] = ACTIONS(2033), - [anon_sym_tuple] = ACTIONS(2033), - [anon_sym_clone] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_print] = ACTIONS(2033), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(2033), - [anon_sym_include_once] = ACTIONS(2033), - [anon_sym_require] = ACTIONS(2033), - [anon_sym_require_once] = ACTIONS(2033), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(2033), - [anon_sym_parent] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_LT_LT] = ACTIONS(2033), - [anon_sym_LT_LT_LT] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_echo] = ACTIONS(2033), - [anon_sym_unset] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_concurrent] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_function] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_switch] = ACTIONS(2033), - [anon_sym_case] = ACTIONS(2033), - [anon_sym_default] = ACTIONS(2033), - [anon_sym_foreach] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_using] = ACTIONS(2033), - [sym_float] = ACTIONS(2031), - [sym_integer] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_True] = ACTIONS(2033), - [anon_sym_TRUE] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_False] = ACTIONS(2033), - [anon_sym_FALSE] = ACTIONS(2033), - [anon_sym_null] = ACTIONS(2033), - [anon_sym_Null] = ACTIONS(2033), - [anon_sym_NULL] = ACTIONS(2033), - [sym_string] = ACTIONS(2031), - [anon_sym_AT] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2031), - [anon_sym_array] = ACTIONS(2033), - [anon_sym_varray] = ACTIONS(2033), - [anon_sym_darray] = ACTIONS(2033), - [anon_sym_vec] = ACTIONS(2033), - [anon_sym_dict] = ACTIONS(2033), - [anon_sym_keyset] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2033), - [anon_sym_trait] = ACTIONS(2033), - [anon_sym_interface] = ACTIONS(2033), - [anon_sym_class] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2033), - [anon_sym_abstract] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2031), - [sym_final_modifier] = ACTIONS(2033), - [sym_xhp_modifier] = ACTIONS(2033), - [sym_xhp_identifier] = ACTIONS(2033), - [sym_xhp_class_identifier] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - }, [715] = { - [sym_qualified_identifier] = STATE(4938), - [sym_compound_statement] = STATE(1388), - [aux_sym_qualified_identifier_repeat1] = STATE(2043), - [sym_identifier] = ACTIONS(2029), - [sym_variable] = ACTIONS(2031), - [sym_pipe_variable] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2033), - [anon_sym_newtype] = ACTIONS(2033), - [anon_sym_shape] = ACTIONS(2033), - [anon_sym_tuple] = ACTIONS(2033), - [anon_sym_clone] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_print] = ACTIONS(2033), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(2033), - [anon_sym_include_once] = ACTIONS(2033), - [anon_sym_require] = ACTIONS(2033), - [anon_sym_require_once] = ACTIONS(2033), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(2033), - [anon_sym_parent] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_LT_LT] = ACTIONS(2033), - [anon_sym_LT_LT_LT] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_echo] = ACTIONS(2033), - [anon_sym_unset] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_concurrent] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_function] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_elseif] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_switch] = ACTIONS(2033), - [anon_sym_foreach] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_using] = ACTIONS(2033), - [sym_float] = ACTIONS(2031), - [sym_integer] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_True] = ACTIONS(2033), - [anon_sym_TRUE] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_False] = ACTIONS(2033), - [anon_sym_FALSE] = ACTIONS(2033), - [anon_sym_null] = ACTIONS(2033), - [anon_sym_Null] = ACTIONS(2033), - [anon_sym_NULL] = ACTIONS(2033), - [sym_string] = ACTIONS(2031), - [anon_sym_AT] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2031), - [anon_sym_array] = ACTIONS(2033), - [anon_sym_varray] = ACTIONS(2033), - [anon_sym_darray] = ACTIONS(2033), - [anon_sym_vec] = ACTIONS(2033), - [anon_sym_dict] = ACTIONS(2033), - [anon_sym_keyset] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2033), - [anon_sym_trait] = ACTIONS(2033), - [anon_sym_interface] = ACTIONS(2033), - [anon_sym_class] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2033), - [anon_sym_abstract] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2031), - [sym_final_modifier] = ACTIONS(2033), - [sym_xhp_modifier] = ACTIONS(2033), - [sym_xhp_identifier] = ACTIONS(2033), - [sym_xhp_class_identifier] = ACTIONS(2031), + [aux_sym_if_statement_repeat1] = STATE(716), + [sym_identifier] = ACTIONS(2061), + [sym_variable] = ACTIONS(2063), + [sym_pipe_variable] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_newtype] = ACTIONS(2061), + [anon_sym_shape] = ACTIONS(2061), + [anon_sym_tuple] = ACTIONS(2061), + [anon_sym_clone] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_print] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_include] = ACTIONS(2061), + [anon_sym_include_once] = ACTIONS(2061), + [anon_sym_require] = ACTIONS(2061), + [anon_sym_require_once] = ACTIONS(2061), + [anon_sym_BSLASH] = ACTIONS(2063), + [anon_sym_self] = ACTIONS(2061), + [anon_sym_parent] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_LT_LT_LT] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_echo] = ACTIONS(2061), + [anon_sym_unset] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_concurrent] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_elseif] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_case] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_foreach] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_using] = ACTIONS(2061), + [sym_float] = ACTIONS(2063), + [sym_integer] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_True] = ACTIONS(2061), + [anon_sym_TRUE] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_False] = ACTIONS(2061), + [anon_sym_FALSE] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [anon_sym_Null] = ACTIONS(2061), + [anon_sym_NULL] = ACTIONS(2061), + [sym_string] = ACTIONS(2063), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_array] = ACTIONS(2061), + [anon_sym_varray] = ACTIONS(2061), + [anon_sym_darray] = ACTIONS(2061), + [anon_sym_vec] = ACTIONS(2061), + [anon_sym_dict] = ACTIONS(2061), + [anon_sym_keyset] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2063), + [sym_final_modifier] = ACTIONS(2061), + [sym_xhp_modifier] = ACTIONS(2061), + [sym_xhp_identifier] = ACTIONS(2061), + [sym_xhp_class_identifier] = ACTIONS(2063), [sym_comment] = ACTIONS(3), }, [716] = { - [aux_sym_if_statement_repeat1] = STATE(718), + [aux_sym_if_statement_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(2069), + [sym_variable] = ACTIONS(2071), + [sym_pipe_variable] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_newtype] = ACTIONS(2069), + [anon_sym_shape] = ACTIONS(2069), + [anon_sym_tuple] = ACTIONS(2069), + [anon_sym_clone] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_print] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2069), + [anon_sym_include] = ACTIONS(2069), + [anon_sym_include_once] = ACTIONS(2069), + [anon_sym_require] = ACTIONS(2069), + [anon_sym_require_once] = ACTIONS(2069), + [anon_sym_BSLASH] = ACTIONS(2071), + [anon_sym_self] = ACTIONS(2069), + [anon_sym_parent] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_LT_LT_LT] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_echo] = ACTIONS(2069), + [anon_sym_unset] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_concurrent] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_function] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2073), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_case] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_foreach] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_using] = ACTIONS(2069), + [sym_float] = ACTIONS(2071), + [sym_integer] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_True] = ACTIONS(2069), + [anon_sym_TRUE] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_False] = ACTIONS(2069), + [anon_sym_FALSE] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_Null] = ACTIONS(2069), + [anon_sym_NULL] = ACTIONS(2069), + [sym_string] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_array] = ACTIONS(2069), + [anon_sym_varray] = ACTIONS(2069), + [anon_sym_darray] = ACTIONS(2069), + [anon_sym_vec] = ACTIONS(2069), + [anon_sym_dict] = ACTIONS(2069), + [anon_sym_keyset] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_list] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_abstract] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2071), + [sym_final_modifier] = ACTIONS(2069), + [sym_xhp_modifier] = ACTIONS(2069), + [sym_xhp_identifier] = ACTIONS(2069), + [sym_xhp_class_identifier] = ACTIONS(2071), + [sym_comment] = ACTIONS(3), + }, + [717] = { + [aux_sym_if_statement_repeat1] = STATE(716), [sym_identifier] = ACTIONS(2057), [sym_variable] = ACTIONS(2059), [sym_pipe_variable] = ACTIONS(2059), @@ -105453,8 +99118,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(3), }, - [717] = { - [aux_sym_if_statement_repeat1] = STATE(717), + [718] = { + [sym_qualified_identifier] = STATE(4963), + [sym_compound_statement] = STATE(1315), + [aux_sym_qualified_identifier_repeat1] = STATE(2006), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2029), + [sym_variable] = ACTIONS(2031), + [sym_pipe_variable] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_newtype] = ACTIONS(2033), + [anon_sym_shape] = ACTIONS(2033), + [anon_sym_tuple] = ACTIONS(2033), + [anon_sym_clone] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(2033), + [anon_sym_include_once] = ACTIONS(2033), + [anon_sym_require] = ACTIONS(2033), + [anon_sym_require_once] = ACTIONS(2033), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(2033), + [anon_sym_parent] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_LT_LT] = ACTIONS(2033), + [anon_sym_LT_LT_LT] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_throw] = ACTIONS(2033), + [anon_sym_echo] = ACTIONS(2033), + [anon_sym_unset] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_concurrent] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_function] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_elseif] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_switch] = ACTIONS(2033), + [anon_sym_foreach] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_using] = ACTIONS(2033), + [sym_float] = ACTIONS(2031), + [sym_integer] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_True] = ACTIONS(2033), + [anon_sym_TRUE] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_False] = ACTIONS(2033), + [anon_sym_FALSE] = ACTIONS(2033), + [anon_sym_null] = ACTIONS(2033), + [anon_sym_Null] = ACTIONS(2033), + [anon_sym_NULL] = ACTIONS(2033), + [sym_string] = ACTIONS(2031), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_array] = ACTIONS(2033), + [anon_sym_varray] = ACTIONS(2033), + [anon_sym_darray] = ACTIONS(2033), + [anon_sym_vec] = ACTIONS(2033), + [anon_sym_dict] = ACTIONS(2033), + [anon_sym_keyset] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_interface] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_abstract] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2031), + [sym_final_modifier] = ACTIONS(2033), + [sym_xhp_modifier] = ACTIONS(2033), + [sym_xhp_identifier] = ACTIONS(2033), + [sym_xhp_class_identifier] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + }, + [719] = { + [aux_sym_if_statement_repeat1] = STATE(721), [sym_identifier] = ACTIONS(2061), [sym_variable] = ACTIONS(2063), [sym_pipe_variable] = ACTIONS(2063), @@ -105492,7 +99248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2061), [anon_sym_if] = ACTIONS(2061), [anon_sym_elseif] = ACTIONS(2065), - [anon_sym_else] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2075), [anon_sym_switch] = ACTIONS(2061), [anon_sym_case] = ACTIONS(2061), [anon_sym_default] = ACTIONS(2061), @@ -105544,193 +99300,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2063), [sym_comment] = ACTIONS(3), }, - [718] = { - [aux_sym_if_statement_repeat1] = STATE(717), - [sym_identifier] = ACTIONS(2071), - [sym_variable] = ACTIONS(2073), - [sym_pipe_variable] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_newtype] = ACTIONS(2071), - [anon_sym_shape] = ACTIONS(2071), - [anon_sym_tuple] = ACTIONS(2071), - [anon_sym_clone] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_print] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_include] = ACTIONS(2071), - [anon_sym_include_once] = ACTIONS(2071), - [anon_sym_require] = ACTIONS(2071), - [anon_sym_require_once] = ACTIONS(2071), - [anon_sym_BSLASH] = ACTIONS(2073), - [anon_sym_self] = ACTIONS(2071), - [anon_sym_parent] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LT_LT_LT] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_throw] = ACTIONS(2071), - [anon_sym_echo] = ACTIONS(2071), - [anon_sym_unset] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_concurrent] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_function] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_elseif] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_case] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_foreach] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_using] = ACTIONS(2071), - [sym_float] = ACTIONS(2073), - [sym_integer] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_True] = ACTIONS(2071), - [anon_sym_TRUE] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_False] = ACTIONS(2071), - [anon_sym_FALSE] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [anon_sym_Null] = ACTIONS(2071), - [anon_sym_NULL] = ACTIONS(2071), - [sym_string] = ACTIONS(2073), - [anon_sym_AT] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_array] = ACTIONS(2071), - [anon_sym_varray] = ACTIONS(2071), - [anon_sym_darray] = ACTIONS(2071), - [anon_sym_vec] = ACTIONS(2071), - [anon_sym_dict] = ACTIONS(2071), - [anon_sym_keyset] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_interface] = ACTIONS(2071), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_abstract] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2073), - [sym_final_modifier] = ACTIONS(2071), - [sym_xhp_modifier] = ACTIONS(2071), - [sym_xhp_identifier] = ACTIONS(2071), - [sym_xhp_class_identifier] = ACTIONS(2073), + [720] = { + [aux_sym_if_statement_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(2077), + [sym_variable] = ACTIONS(2079), + [sym_pipe_variable] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_newtype] = ACTIONS(2077), + [anon_sym_shape] = ACTIONS(2077), + [anon_sym_tuple] = ACTIONS(2077), + [anon_sym_clone] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_print] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_include] = ACTIONS(2077), + [anon_sym_include_once] = ACTIONS(2077), + [anon_sym_require] = ACTIONS(2077), + [anon_sym_require_once] = ACTIONS(2077), + [anon_sym_BSLASH] = ACTIONS(2079), + [anon_sym_self] = ACTIONS(2077), + [anon_sym_parent] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_LT_LT] = ACTIONS(2077), + [anon_sym_LT_LT_LT] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_echo] = ACTIONS(2077), + [anon_sym_unset] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_concurrent] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_elseif] = ACTIONS(2081), + [anon_sym_else] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_case] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_foreach] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [sym_float] = ACTIONS(2079), + [sym_integer] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_True] = ACTIONS(2077), + [anon_sym_TRUE] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_False] = ACTIONS(2077), + [anon_sym_FALSE] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2077), + [anon_sym_Null] = ACTIONS(2077), + [anon_sym_NULL] = ACTIONS(2077), + [sym_string] = ACTIONS(2079), + [anon_sym_AT] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_array] = ACTIONS(2077), + [anon_sym_varray] = ACTIONS(2077), + [anon_sym_darray] = ACTIONS(2077), + [anon_sym_vec] = ACTIONS(2077), + [anon_sym_dict] = ACTIONS(2077), + [anon_sym_keyset] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_list] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_PLUS_PLUS] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2079), + [sym_final_modifier] = ACTIONS(2077), + [sym_xhp_modifier] = ACTIONS(2077), + [sym_xhp_identifier] = ACTIONS(2077), + [sym_xhp_class_identifier] = ACTIONS(2079), [sym_comment] = ACTIONS(3), }, - [719] = { - [aux_sym_if_statement_repeat1] = STATE(718), - [sym_identifier] = ACTIONS(2079), - [sym_variable] = ACTIONS(2081), - [sym_pipe_variable] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_newtype] = ACTIONS(2079), - [anon_sym_shape] = ACTIONS(2079), - [anon_sym_tuple] = ACTIONS(2079), - [anon_sym_clone] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_print] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_include] = ACTIONS(2079), - [anon_sym_include_once] = ACTIONS(2079), - [anon_sym_require] = ACTIONS(2079), - [anon_sym_require_once] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(2081), - [anon_sym_self] = ACTIONS(2079), - [anon_sym_parent] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_LT_LT_LT] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_throw] = ACTIONS(2079), - [anon_sym_echo] = ACTIONS(2079), - [anon_sym_unset] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_concurrent] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_function] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_elseif] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2083), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_case] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_foreach] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(2079), - [sym_float] = ACTIONS(2081), - [sym_integer] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_True] = ACTIONS(2079), - [anon_sym_TRUE] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_False] = ACTIONS(2079), - [anon_sym_FALSE] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [anon_sym_Null] = ACTIONS(2079), - [anon_sym_NULL] = ACTIONS(2079), - [sym_string] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_array] = ACTIONS(2079), - [anon_sym_varray] = ACTIONS(2079), - [anon_sym_darray] = ACTIONS(2079), - [anon_sym_vec] = ACTIONS(2079), - [anon_sym_dict] = ACTIONS(2079), - [anon_sym_keyset] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_class] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_abstract] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2081), - [sym_final_modifier] = ACTIONS(2079), - [sym_xhp_modifier] = ACTIONS(2079), - [sym_xhp_identifier] = ACTIONS(2079), - [sym_xhp_class_identifier] = ACTIONS(2081), + [721] = { + [aux_sym_if_statement_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(2069), + [sym_variable] = ACTIONS(2071), + [sym_pipe_variable] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_newtype] = ACTIONS(2069), + [anon_sym_shape] = ACTIONS(2069), + [anon_sym_tuple] = ACTIONS(2069), + [anon_sym_clone] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_print] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2069), + [anon_sym_include] = ACTIONS(2069), + [anon_sym_include_once] = ACTIONS(2069), + [anon_sym_require] = ACTIONS(2069), + [anon_sym_require_once] = ACTIONS(2069), + [anon_sym_BSLASH] = ACTIONS(2071), + [anon_sym_self] = ACTIONS(2069), + [anon_sym_parent] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_LT_LT_LT] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_echo] = ACTIONS(2069), + [anon_sym_unset] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_concurrent] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_function] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2087), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_case] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_foreach] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_using] = ACTIONS(2069), + [sym_float] = ACTIONS(2071), + [sym_integer] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_True] = ACTIONS(2069), + [anon_sym_TRUE] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_False] = ACTIONS(2069), + [anon_sym_FALSE] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_Null] = ACTIONS(2069), + [anon_sym_NULL] = ACTIONS(2069), + [sym_string] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_array] = ACTIONS(2069), + [anon_sym_varray] = ACTIONS(2069), + [anon_sym_darray] = ACTIONS(2069), + [anon_sym_vec] = ACTIONS(2069), + [anon_sym_dict] = ACTIONS(2069), + [anon_sym_keyset] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_list] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_abstract] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2071), + [sym_final_modifier] = ACTIONS(2069), + [sym_xhp_modifier] = ACTIONS(2069), + [sym_xhp_identifier] = ACTIONS(2069), + [sym_xhp_class_identifier] = ACTIONS(2071), [sym_comment] = ACTIONS(3), }, - [720] = { - [sym_qualified_identifier] = STATE(5263), - [sym_compound_statement] = STATE(1032), - [aux_sym_qualified_identifier_repeat1] = STATE(2043), - [ts_builtin_sym_end] = ACTIONS(2031), + [722] = { + [sym_qualified_identifier] = STATE(4544), + [sym_compound_statement] = STATE(997), + [aux_sym_qualified_identifier_repeat1] = STATE(2006), [sym_identifier] = ACTIONS(2029), [sym_variable] = ACTIONS(2031), [sym_pipe_variable] = ACTIONS(2031), @@ -105741,7 +99496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_clone] = ACTIONS(2033), [anon_sym_new] = ACTIONS(2033), [anon_sym_print] = ACTIONS(2033), - [anon_sym_namespace] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(947), [anon_sym_include] = ACTIONS(2033), [anon_sym_include_once] = ACTIONS(2033), [anon_sym_require] = ACTIONS(2033), @@ -105752,7 +99507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2033), [anon_sym_LT_LT] = ACTIONS(2033), [anon_sym_LT_LT_LT] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(321), [anon_sym_SEMI] = ACTIONS(2031), [anon_sym_return] = ACTIONS(2033), [anon_sym_break] = ACTIONS(2033), @@ -105766,9 +99522,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2033), [anon_sym_const] = ACTIONS(2033), [anon_sym_if] = ACTIONS(2033), - [anon_sym_elseif] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), [anon_sym_switch] = ACTIONS(2033), + [anon_sym_case] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(2033), [anon_sym_foreach] = ACTIONS(2033), [anon_sym_while] = ACTIONS(2033), [anon_sym_do] = ACTIONS(2033), @@ -105817,188 +99573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2031), [sym_comment] = ACTIONS(3), }, - [721] = { - [aux_sym_if_statement_repeat1] = STATE(717), - [sym_identifier] = ACTIONS(2071), - [sym_variable] = ACTIONS(2073), - [sym_pipe_variable] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_newtype] = ACTIONS(2071), - [anon_sym_shape] = ACTIONS(2071), - [anon_sym_tuple] = ACTIONS(2071), - [anon_sym_clone] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_print] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_include] = ACTIONS(2071), - [anon_sym_include_once] = ACTIONS(2071), - [anon_sym_require] = ACTIONS(2071), - [anon_sym_require_once] = ACTIONS(2071), - [anon_sym_BSLASH] = ACTIONS(2073), - [anon_sym_self] = ACTIONS(2071), - [anon_sym_parent] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LT_LT_LT] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_throw] = ACTIONS(2071), - [anon_sym_echo] = ACTIONS(2071), - [anon_sym_unset] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_concurrent] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_function] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_elseif] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_case] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_foreach] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_using] = ACTIONS(2071), - [sym_float] = ACTIONS(2073), - [sym_integer] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_True] = ACTIONS(2071), - [anon_sym_TRUE] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_False] = ACTIONS(2071), - [anon_sym_FALSE] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [anon_sym_Null] = ACTIONS(2071), - [anon_sym_NULL] = ACTIONS(2071), - [sym_string] = ACTIONS(2073), - [anon_sym_AT] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_array] = ACTIONS(2071), - [anon_sym_varray] = ACTIONS(2071), - [anon_sym_darray] = ACTIONS(2071), - [anon_sym_vec] = ACTIONS(2071), - [anon_sym_dict] = ACTIONS(2071), - [anon_sym_keyset] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_interface] = ACTIONS(2071), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_abstract] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2073), - [sym_final_modifier] = ACTIONS(2071), - [sym_xhp_modifier] = ACTIONS(2071), - [sym_xhp_identifier] = ACTIONS(2071), - [sym_xhp_class_identifier] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - }, - [722] = { - [aux_sym_if_statement_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(2079), - [sym_variable] = ACTIONS(2081), - [sym_pipe_variable] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_newtype] = ACTIONS(2079), - [anon_sym_shape] = ACTIONS(2079), - [anon_sym_tuple] = ACTIONS(2079), - [anon_sym_clone] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_print] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_include] = ACTIONS(2079), - [anon_sym_include_once] = ACTIONS(2079), - [anon_sym_require] = ACTIONS(2079), - [anon_sym_require_once] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(2081), - [anon_sym_self] = ACTIONS(2079), - [anon_sym_parent] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_LT_LT_LT] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_throw] = ACTIONS(2079), - [anon_sym_echo] = ACTIONS(2079), - [anon_sym_unset] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_concurrent] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_function] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_elseif] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2087), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_case] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_foreach] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(2079), - [sym_float] = ACTIONS(2081), - [sym_integer] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_True] = ACTIONS(2079), - [anon_sym_TRUE] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_False] = ACTIONS(2079), - [anon_sym_FALSE] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [anon_sym_Null] = ACTIONS(2079), - [anon_sym_NULL] = ACTIONS(2079), - [sym_string] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_array] = ACTIONS(2079), - [anon_sym_varray] = ACTIONS(2079), - [anon_sym_darray] = ACTIONS(2079), - [anon_sym_vec] = ACTIONS(2079), - [anon_sym_dict] = ACTIONS(2079), - [anon_sym_keyset] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_class] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_abstract] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2081), - [sym_final_modifier] = ACTIONS(2079), - [sym_xhp_modifier] = ACTIONS(2079), - [sym_xhp_identifier] = ACTIONS(2079), - [sym_xhp_class_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(3), - }, [723] = { [sym_identifier] = ACTIONS(2089), [sym_variable] = ACTIONS(2091), @@ -107080,96 +100654,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [735] = { - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_elseif] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_case] = ACTIONS(2035), - [anon_sym_default] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - }, - [736] = { [sym_identifier] = ACTIONS(2137), [sym_variable] = ACTIONS(2139), [sym_pipe_variable] = ACTIONS(2139), @@ -107259,7 +100743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2139), [sym_comment] = ACTIONS(3), }, - [737] = { + [736] = { [sym_identifier] = ACTIONS(2141), [sym_variable] = ACTIONS(2143), [sym_pipe_variable] = ACTIONS(2143), @@ -107349,7 +100833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2143), [sym_comment] = ACTIONS(3), }, - [738] = { + [737] = { [sym_identifier] = ACTIONS(2145), [sym_variable] = ACTIONS(2147), [sym_pipe_variable] = ACTIONS(2147), @@ -107439,7 +100923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(3), }, - [739] = { + [738] = { [sym_identifier] = ACTIONS(2149), [sym_variable] = ACTIONS(2151), [sym_pipe_variable] = ACTIONS(2151), @@ -107529,7 +101013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2151), [sym_comment] = ACTIONS(3), }, - [740] = { + [739] = { [sym_identifier] = ACTIONS(2153), [sym_variable] = ACTIONS(2155), [sym_pipe_variable] = ACTIONS(2155), @@ -107619,7 +101103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2155), [sym_comment] = ACTIONS(3), }, - [741] = { + [740] = { [sym_identifier] = ACTIONS(2157), [sym_variable] = ACTIONS(2159), [sym_pipe_variable] = ACTIONS(2159), @@ -107709,7 +101193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2159), [sym_comment] = ACTIONS(3), }, - [742] = { + [741] = { [sym_identifier] = ACTIONS(2161), [sym_variable] = ACTIONS(2163), [sym_pipe_variable] = ACTIONS(2163), @@ -107799,187 +101283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2163), [sym_comment] = ACTIONS(3), }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_elseif] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_finally] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - }, - [744] = { - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_elseif] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_finally] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), - [sym_comment] = ACTIONS(3), - }, - [745] = { + [742] = { [sym_identifier] = ACTIONS(2165), [sym_variable] = ACTIONS(2167), [sym_pipe_variable] = ACTIONS(2167), @@ -108069,277 +101373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2167), [sym_comment] = ACTIONS(3), }, - [746] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_elseif] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_finally] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - }, - [747] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_finally] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - }, - [748] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_case] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_finally] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), - [sym_comment] = ACTIONS(3), - }, - [749] = { + [743] = { [sym_identifier] = ACTIONS(2169), [sym_variable] = ACTIONS(2171), [sym_pipe_variable] = ACTIONS(2171), @@ -108429,7 +101463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2171), [sym_comment] = ACTIONS(3), }, - [750] = { + [744] = { [sym_identifier] = ACTIONS(2173), [sym_variable] = ACTIONS(2175), [sym_pipe_variable] = ACTIONS(2175), @@ -108519,7 +101553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(3), }, - [751] = { + [745] = { [sym_identifier] = ACTIONS(2177), [sym_variable] = ACTIONS(2179), [sym_pipe_variable] = ACTIONS(2179), @@ -108609,7 +101643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(3), }, - [752] = { + [746] = { [sym_identifier] = ACTIONS(2181), [sym_variable] = ACTIONS(2183), [sym_pipe_variable] = ACTIONS(2183), @@ -108699,7 +101733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(3), }, - [753] = { + [747] = { [sym_identifier] = ACTIONS(2185), [sym_variable] = ACTIONS(2187), [sym_pipe_variable] = ACTIONS(2187), @@ -108789,7 +101823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(3), }, - [754] = { + [748] = { [sym_identifier] = ACTIONS(2189), [sym_variable] = ACTIONS(2191), [sym_pipe_variable] = ACTIONS(2191), @@ -108879,7 +101913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(3), }, - [755] = { + [749] = { [sym_identifier] = ACTIONS(2193), [sym_variable] = ACTIONS(2195), [sym_pipe_variable] = ACTIONS(2195), @@ -108969,7 +102003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2195), [sym_comment] = ACTIONS(3), }, - [756] = { + [750] = { [sym_identifier] = ACTIONS(2197), [sym_variable] = ACTIONS(2199), [sym_pipe_variable] = ACTIONS(2199), @@ -109059,187 +102093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2199), [sym_comment] = ACTIONS(3), }, - [757] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_elseif] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_case] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), - [sym_comment] = ACTIONS(3), - }, - [758] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_elseif] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - }, - [759] = { + [751] = { [sym_identifier] = ACTIONS(2201), [sym_variable] = ACTIONS(2203), [sym_pipe_variable] = ACTIONS(2203), @@ -109329,97 +102183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(3), }, - [760] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_elseif] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_case] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), - [sym_comment] = ACTIONS(3), - }, - [761] = { + [752] = { [sym_identifier] = ACTIONS(2205), [sym_variable] = ACTIONS(2207), [sym_pipe_variable] = ACTIONS(2207), @@ -109509,7 +102273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2207), [sym_comment] = ACTIONS(3), }, - [762] = { + [753] = { [sym_identifier] = ACTIONS(2209), [sym_variable] = ACTIONS(2211), [sym_pipe_variable] = ACTIONS(2211), @@ -109599,7 +102363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [763] = { + [754] = { [sym_identifier] = ACTIONS(2213), [sym_variable] = ACTIONS(2215), [sym_pipe_variable] = ACTIONS(2215), @@ -109689,7 +102453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2215), [sym_comment] = ACTIONS(3), }, - [764] = { + [755] = { [sym_identifier] = ACTIONS(2217), [sym_variable] = ACTIONS(2219), [sym_pipe_variable] = ACTIONS(2219), @@ -109779,7 +102543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2219), [sym_comment] = ACTIONS(3), }, - [765] = { + [756] = { [sym_identifier] = ACTIONS(2221), [sym_variable] = ACTIONS(2223), [sym_pipe_variable] = ACTIONS(2223), @@ -109869,7 +102633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2223), [sym_comment] = ACTIONS(3), }, - [766] = { + [757] = { [sym_identifier] = ACTIONS(2225), [sym_variable] = ACTIONS(2227), [sym_pipe_variable] = ACTIONS(2227), @@ -109959,7 +102723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(3), }, - [767] = { + [758] = { [sym_identifier] = ACTIONS(2229), [sym_variable] = ACTIONS(2231), [sym_pipe_variable] = ACTIONS(2231), @@ -110049,7 +102813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2231), [sym_comment] = ACTIONS(3), }, - [768] = { + [759] = { [sym_identifier] = ACTIONS(2233), [sym_variable] = ACTIONS(2235), [sym_pipe_variable] = ACTIONS(2235), @@ -110139,7 +102903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2235), [sym_comment] = ACTIONS(3), }, - [769] = { + [760] = { [sym_identifier] = ACTIONS(2237), [sym_variable] = ACTIONS(2239), [sym_pipe_variable] = ACTIONS(2239), @@ -110229,7 +102993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2239), [sym_comment] = ACTIONS(3), }, - [770] = { + [761] = { [sym_identifier] = ACTIONS(2241), [sym_variable] = ACTIONS(2243), [sym_pipe_variable] = ACTIONS(2243), @@ -110319,7 +103083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2243), [sym_comment] = ACTIONS(3), }, - [771] = { + [762] = { [sym_identifier] = ACTIONS(2245), [sym_variable] = ACTIONS(2247), [sym_pipe_variable] = ACTIONS(2247), @@ -110409,7 +103173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [772] = { + [763] = { [sym_identifier] = ACTIONS(2249), [sym_variable] = ACTIONS(2251), [sym_pipe_variable] = ACTIONS(2251), @@ -110499,7 +103263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2251), [sym_comment] = ACTIONS(3), }, - [773] = { + [764] = { [sym_identifier] = ACTIONS(2253), [sym_variable] = ACTIONS(2255), [sym_pipe_variable] = ACTIONS(2255), @@ -110589,7 +103353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(3), }, - [774] = { + [765] = { [sym_identifier] = ACTIONS(2257), [sym_variable] = ACTIONS(2259), [sym_pipe_variable] = ACTIONS(2259), @@ -110679,7 +103443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2259), [sym_comment] = ACTIONS(3), }, - [775] = { + [766] = { [sym_identifier] = ACTIONS(2261), [sym_variable] = ACTIONS(2263), [sym_pipe_variable] = ACTIONS(2263), @@ -110769,7 +103533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2263), [sym_comment] = ACTIONS(3), }, - [776] = { + [767] = { [sym_identifier] = ACTIONS(2265), [sym_variable] = ACTIONS(2267), [sym_pipe_variable] = ACTIONS(2267), @@ -110859,7 +103623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2267), [sym_comment] = ACTIONS(3), }, - [777] = { + [768] = { [sym_identifier] = ACTIONS(2269), [sym_variable] = ACTIONS(2271), [sym_pipe_variable] = ACTIONS(2271), @@ -110949,7 +103713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(3), }, - [778] = { + [769] = { [sym_identifier] = ACTIONS(2273), [sym_variable] = ACTIONS(2275), [sym_pipe_variable] = ACTIONS(2275), @@ -111039,7 +103803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), }, - [779] = { + [770] = { [sym_identifier] = ACTIONS(2277), [sym_variable] = ACTIONS(2279), [sym_pipe_variable] = ACTIONS(2279), @@ -111129,7 +103893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2279), [sym_comment] = ACTIONS(3), }, - [780] = { + [771] = { [sym_identifier] = ACTIONS(2281), [sym_variable] = ACTIONS(2283), [sym_pipe_variable] = ACTIONS(2283), @@ -111219,7 +103983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2283), [sym_comment] = ACTIONS(3), }, - [781] = { + [772] = { [sym_identifier] = ACTIONS(2285), [sym_variable] = ACTIONS(2287), [sym_pipe_variable] = ACTIONS(2287), @@ -111309,7 +104073,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2287), [sym_comment] = ACTIONS(3), }, - [782] = { + [773] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [774] = { [sym_identifier] = ACTIONS(2289), [sym_variable] = ACTIONS(2291), [sym_pipe_variable] = ACTIONS(2291), @@ -111399,7 +104253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2291), [sym_comment] = ACTIONS(3), }, - [783] = { + [775] = { [sym_identifier] = ACTIONS(2293), [sym_variable] = ACTIONS(2295), [sym_pipe_variable] = ACTIONS(2295), @@ -111489,7 +104343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2295), [sym_comment] = ACTIONS(3), }, - [784] = { + [776] = { [sym_identifier] = ACTIONS(2297), [sym_variable] = ACTIONS(2299), [sym_pipe_variable] = ACTIONS(2299), @@ -111579,7 +104433,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2299), [sym_comment] = ACTIONS(3), }, - [785] = { + [777] = { + [sym_identifier] = ACTIONS(2057), + [sym_variable] = ACTIONS(2059), + [sym_pipe_variable] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_newtype] = ACTIONS(2057), + [anon_sym_shape] = ACTIONS(2057), + [anon_sym_tuple] = ACTIONS(2057), + [anon_sym_clone] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_include_once] = ACTIONS(2057), + [anon_sym_require] = ACTIONS(2057), + [anon_sym_require_once] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_self] = ACTIONS(2057), + [anon_sym_parent] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_LT_LT_LT] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_echo] = ACTIONS(2057), + [anon_sym_unset] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_concurrent] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_elseif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_foreach] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [sym_integer] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_True] = ACTIONS(2057), + [anon_sym_TRUE] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_False] = ACTIONS(2057), + [anon_sym_FALSE] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_Null] = ACTIONS(2057), + [anon_sym_NULL] = ACTIONS(2057), + [sym_string] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_array] = ACTIONS(2057), + [anon_sym_varray] = ACTIONS(2057), + [anon_sym_darray] = ACTIONS(2057), + [anon_sym_vec] = ACTIONS(2057), + [anon_sym_dict] = ACTIONS(2057), + [anon_sym_keyset] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_list] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2059), + [sym_final_modifier] = ACTIONS(2057), + [sym_xhp_modifier] = ACTIONS(2057), + [sym_xhp_identifier] = ACTIONS(2057), + [sym_xhp_class_identifier] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + }, + [778] = { [sym_identifier] = ACTIONS(2301), [sym_variable] = ACTIONS(2303), [sym_pipe_variable] = ACTIONS(2303), @@ -111669,7 +104613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(3), }, - [786] = { + [779] = { [sym_identifier] = ACTIONS(2305), [sym_variable] = ACTIONS(2307), [sym_pipe_variable] = ACTIONS(2307), @@ -111759,7 +104703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(3), }, - [787] = { + [780] = { [sym_identifier] = ACTIONS(2309), [sym_variable] = ACTIONS(2311), [sym_pipe_variable] = ACTIONS(2311), @@ -111849,7 +104793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2311), [sym_comment] = ACTIONS(3), }, - [788] = { + [781] = { [sym_identifier] = ACTIONS(2313), [sym_variable] = ACTIONS(2315), [sym_pipe_variable] = ACTIONS(2315), @@ -111939,7 +104883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2315), [sym_comment] = ACTIONS(3), }, - [789] = { + [782] = { [sym_identifier] = ACTIONS(2317), [sym_variable] = ACTIONS(2319), [sym_pipe_variable] = ACTIONS(2319), @@ -112029,7 +104973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2319), [sym_comment] = ACTIONS(3), }, - [790] = { + [783] = { [sym_identifier] = ACTIONS(2321), [sym_variable] = ACTIONS(2323), [sym_pipe_variable] = ACTIONS(2323), @@ -112119,7 +105063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [791] = { + [784] = { [sym_identifier] = ACTIONS(2325), [sym_variable] = ACTIONS(2327), [sym_pipe_variable] = ACTIONS(2327), @@ -112209,7 +105153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [792] = { + [785] = { [sym_identifier] = ACTIONS(2329), [sym_variable] = ACTIONS(2331), [sym_pipe_variable] = ACTIONS(2331), @@ -112299,7 +105243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(3), }, - [793] = { + [786] = { [sym_identifier] = ACTIONS(2333), [sym_variable] = ACTIONS(2335), [sym_pipe_variable] = ACTIONS(2335), @@ -112389,7 +105333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, - [794] = { + [787] = { [sym_identifier] = ACTIONS(2337), [sym_variable] = ACTIONS(2339), [sym_pipe_variable] = ACTIONS(2339), @@ -112479,7 +105423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(3), }, - [795] = { + [788] = { [sym_identifier] = ACTIONS(2341), [sym_variable] = ACTIONS(2343), [sym_pipe_variable] = ACTIONS(2343), @@ -112569,7 +105513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2343), [sym_comment] = ACTIONS(3), }, - [796] = { + [789] = { [sym_identifier] = ACTIONS(2345), [sym_variable] = ACTIONS(2347), [sym_pipe_variable] = ACTIONS(2347), @@ -112659,7 +105603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(3), }, - [797] = { + [790] = { [sym_identifier] = ACTIONS(2349), [sym_variable] = ACTIONS(2351), [sym_pipe_variable] = ACTIONS(2351), @@ -112749,7 +105693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(3), }, - [798] = { + [791] = { [sym_identifier] = ACTIONS(2353), [sym_variable] = ACTIONS(2355), [sym_pipe_variable] = ACTIONS(2355), @@ -112839,6 +105783,636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2355), [sym_comment] = ACTIONS(3), }, + [792] = { + [sym_identifier] = ACTIONS(2357), + [sym_variable] = ACTIONS(2359), + [sym_pipe_variable] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_newtype] = ACTIONS(2357), + [anon_sym_shape] = ACTIONS(2357), + [anon_sym_tuple] = ACTIONS(2357), + [anon_sym_clone] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_print] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_include] = ACTIONS(2357), + [anon_sym_include_once] = ACTIONS(2357), + [anon_sym_require] = ACTIONS(2357), + [anon_sym_require_once] = ACTIONS(2357), + [anon_sym_BSLASH] = ACTIONS(2359), + [anon_sym_self] = ACTIONS(2357), + [anon_sym_parent] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_LT_LT] = ACTIONS(2357), + [anon_sym_LT_LT_LT] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_echo] = ACTIONS(2357), + [anon_sym_unset] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_concurrent] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_function] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_elseif] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_case] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_foreach] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [sym_float] = ACTIONS(2359), + [sym_integer] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_True] = ACTIONS(2357), + [anon_sym_TRUE] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_False] = ACTIONS(2357), + [anon_sym_FALSE] = ACTIONS(2357), + [anon_sym_null] = ACTIONS(2357), + [anon_sym_Null] = ACTIONS(2357), + [anon_sym_NULL] = ACTIONS(2357), + [sym_string] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_array] = ACTIONS(2357), + [anon_sym_varray] = ACTIONS(2357), + [anon_sym_darray] = ACTIONS(2357), + [anon_sym_vec] = ACTIONS(2357), + [anon_sym_dict] = ACTIONS(2357), + [anon_sym_keyset] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_list] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_interface] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_abstract] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2359), + [sym_final_modifier] = ACTIONS(2357), + [sym_xhp_modifier] = ACTIONS(2357), + [sym_xhp_identifier] = ACTIONS(2357), + [sym_xhp_class_identifier] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + }, + [793] = { + [sym_identifier] = ACTIONS(2043), + [sym_variable] = ACTIONS(2045), + [sym_pipe_variable] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_newtype] = ACTIONS(2043), + [anon_sym_shape] = ACTIONS(2043), + [anon_sym_tuple] = ACTIONS(2043), + [anon_sym_clone] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_print] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_include] = ACTIONS(2043), + [anon_sym_include_once] = ACTIONS(2043), + [anon_sym_require] = ACTIONS(2043), + [anon_sym_require_once] = ACTIONS(2043), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_self] = ACTIONS(2043), + [anon_sym_parent] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_throw] = ACTIONS(2043), + [anon_sym_echo] = ACTIONS(2043), + [anon_sym_unset] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_concurrent] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_function] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_elseif] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_switch] = ACTIONS(2043), + [anon_sym_foreach] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(2043), + [sym_float] = ACTIONS(2045), + [sym_integer] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_True] = ACTIONS(2043), + [anon_sym_TRUE] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_False] = ACTIONS(2043), + [anon_sym_FALSE] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [anon_sym_Null] = ACTIONS(2043), + [anon_sym_NULL] = ACTIONS(2043), + [sym_string] = ACTIONS(2045), + [anon_sym_AT] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_array] = ACTIONS(2043), + [anon_sym_varray] = ACTIONS(2043), + [anon_sym_darray] = ACTIONS(2043), + [anon_sym_vec] = ACTIONS(2043), + [anon_sym_dict] = ACTIONS(2043), + [anon_sym_keyset] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2045), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_interface] = ACTIONS(2043), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_abstract] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_final_modifier] = ACTIONS(2043), + [sym_xhp_modifier] = ACTIONS(2043), + [sym_xhp_identifier] = ACTIONS(2043), + [sym_xhp_class_identifier] = ACTIONS(2045), + [sym_comment] = ACTIONS(3), + }, + [794] = { + [sym_identifier] = ACTIONS(2361), + [sym_variable] = ACTIONS(2363), + [sym_pipe_variable] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_newtype] = ACTIONS(2361), + [anon_sym_shape] = ACTIONS(2361), + [anon_sym_tuple] = ACTIONS(2361), + [anon_sym_clone] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_print] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_include] = ACTIONS(2361), + [anon_sym_include_once] = ACTIONS(2361), + [anon_sym_require] = ACTIONS(2361), + [anon_sym_require_once] = ACTIONS(2361), + [anon_sym_BSLASH] = ACTIONS(2363), + [anon_sym_self] = ACTIONS(2361), + [anon_sym_parent] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_LT_LT] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_echo] = ACTIONS(2361), + [anon_sym_unset] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_concurrent] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_elseif] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_foreach] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [sym_float] = ACTIONS(2363), + [sym_integer] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_True] = ACTIONS(2361), + [anon_sym_TRUE] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_False] = ACTIONS(2361), + [anon_sym_FALSE] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_Null] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [sym_string] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_array] = ACTIONS(2361), + [anon_sym_varray] = ACTIONS(2361), + [anon_sym_darray] = ACTIONS(2361), + [anon_sym_vec] = ACTIONS(2361), + [anon_sym_dict] = ACTIONS(2361), + [anon_sym_keyset] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_list] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_interface] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2363), + [sym_final_modifier] = ACTIONS(2361), + [sym_xhp_modifier] = ACTIONS(2361), + [sym_xhp_identifier] = ACTIONS(2361), + [sym_xhp_class_identifier] = ACTIONS(2363), + [sym_comment] = ACTIONS(3), + }, + [795] = { + [sym_identifier] = ACTIONS(2365), + [sym_variable] = ACTIONS(2367), + [sym_pipe_variable] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_newtype] = ACTIONS(2365), + [anon_sym_shape] = ACTIONS(2365), + [anon_sym_tuple] = ACTIONS(2365), + [anon_sym_clone] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_print] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_include] = ACTIONS(2365), + [anon_sym_include_once] = ACTIONS(2365), + [anon_sym_require] = ACTIONS(2365), + [anon_sym_require_once] = ACTIONS(2365), + [anon_sym_BSLASH] = ACTIONS(2367), + [anon_sym_self] = ACTIONS(2365), + [anon_sym_parent] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_LT_LT] = ACTIONS(2365), + [anon_sym_LT_LT_LT] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_echo] = ACTIONS(2365), + [anon_sym_unset] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_concurrent] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_elseif] = ACTIONS(2365), + [anon_sym_else] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_foreach] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [sym_float] = ACTIONS(2367), + [sym_integer] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_True] = ACTIONS(2365), + [anon_sym_TRUE] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_False] = ACTIONS(2365), + [anon_sym_FALSE] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [anon_sym_Null] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [sym_string] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_array] = ACTIONS(2365), + [anon_sym_varray] = ACTIONS(2365), + [anon_sym_darray] = ACTIONS(2365), + [anon_sym_vec] = ACTIONS(2365), + [anon_sym_dict] = ACTIONS(2365), + [anon_sym_keyset] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_list] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2367), + [sym_final_modifier] = ACTIONS(2365), + [sym_xhp_modifier] = ACTIONS(2365), + [sym_xhp_identifier] = ACTIONS(2365), + [sym_xhp_class_identifier] = ACTIONS(2367), + [sym_comment] = ACTIONS(3), + }, + [796] = { + [sym_identifier] = ACTIONS(2369), + [sym_variable] = ACTIONS(2371), + [sym_pipe_variable] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_newtype] = ACTIONS(2369), + [anon_sym_shape] = ACTIONS(2369), + [anon_sym_tuple] = ACTIONS(2369), + [anon_sym_clone] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_print] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_include] = ACTIONS(2369), + [anon_sym_include_once] = ACTIONS(2369), + [anon_sym_require] = ACTIONS(2369), + [anon_sym_require_once] = ACTIONS(2369), + [anon_sym_BSLASH] = ACTIONS(2371), + [anon_sym_self] = ACTIONS(2369), + [anon_sym_parent] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_LT_LT] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_echo] = ACTIONS(2369), + [anon_sym_unset] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_concurrent] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_function] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_elseif] = ACTIONS(2369), + [anon_sym_else] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_case] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_foreach] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [sym_float] = ACTIONS(2371), + [sym_integer] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_True] = ACTIONS(2369), + [anon_sym_TRUE] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_False] = ACTIONS(2369), + [anon_sym_FALSE] = ACTIONS(2369), + [anon_sym_null] = ACTIONS(2369), + [anon_sym_Null] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [sym_string] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_array] = ACTIONS(2369), + [anon_sym_varray] = ACTIONS(2369), + [anon_sym_darray] = ACTIONS(2369), + [anon_sym_vec] = ACTIONS(2369), + [anon_sym_dict] = ACTIONS(2369), + [anon_sym_keyset] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_list] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_interface] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_abstract] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2371), + [sym_final_modifier] = ACTIONS(2369), + [sym_xhp_modifier] = ACTIONS(2369), + [sym_xhp_identifier] = ACTIONS(2369), + [sym_xhp_class_identifier] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + }, + [797] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [798] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, [799] = { [sym_identifier] = ACTIONS(2035), [sym_variable] = ACTIONS(2037), @@ -112876,6 +106450,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2035), [anon_sym_const] = ACTIONS(2035), [anon_sym_if] = ACTIONS(2035), + [anon_sym_elseif] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), [anon_sym_switch] = ACTIONS(2035), [anon_sym_case] = ACTIONS(2035), [anon_sym_default] = ACTIONS(2035), @@ -112884,8 +106460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(2035), [anon_sym_for] = ACTIONS(2035), [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), [anon_sym_using] = ACTIONS(2035), [sym_float] = ACTIONS(2037), [sym_integer] = ACTIONS(2035), @@ -112930,5947 +106504,6216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [800] = { - [sym_identifier] = ACTIONS(2357), - [sym_variable] = ACTIONS(2359), - [sym_pipe_variable] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_newtype] = ACTIONS(2357), - [anon_sym_shape] = ACTIONS(2357), - [anon_sym_tuple] = ACTIONS(2357), - [anon_sym_clone] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_print] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_LT_LT_LT] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_echo] = ACTIONS(2357), - [anon_sym_unset] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_concurrent] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_elseif] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_foreach] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_using] = ACTIONS(2357), - [sym_float] = ACTIONS(2359), - [sym_integer] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_True] = ACTIONS(2357), - [anon_sym_TRUE] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [anon_sym_False] = ACTIONS(2357), - [anon_sym_FALSE] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2357), - [anon_sym_Null] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2357), - [sym_string] = ACTIONS(2359), - [anon_sym_AT] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_array] = ACTIONS(2357), - [anon_sym_varray] = ACTIONS(2357), - [anon_sym_darray] = ACTIONS(2357), - [anon_sym_vec] = ACTIONS(2357), - [anon_sym_dict] = ACTIONS(2357), - [anon_sym_keyset] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_trait] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(2359), - [sym_final_modifier] = ACTIONS(2357), - [sym_xhp_modifier] = ACTIONS(2357), - [sym_xhp_identifier] = ACTIONS(2357), - [sym_xhp_class_identifier] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [801] = { - [sym_identifier] = ACTIONS(2361), - [sym_variable] = ACTIONS(2363), - [sym_pipe_variable] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_newtype] = ACTIONS(2361), - [anon_sym_shape] = ACTIONS(2361), - [anon_sym_tuple] = ACTIONS(2361), - [anon_sym_clone] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_print] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_echo] = ACTIONS(2361), - [anon_sym_unset] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_concurrent] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_elseif] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_foreach] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [sym_float] = ACTIONS(2363), - [sym_integer] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_True] = ACTIONS(2361), - [anon_sym_TRUE] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_False] = ACTIONS(2361), - [anon_sym_FALSE] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [anon_sym_Null] = ACTIONS(2361), - [anon_sym_NULL] = ACTIONS(2361), - [sym_string] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_array] = ACTIONS(2361), - [anon_sym_varray] = ACTIONS(2361), - [anon_sym_darray] = ACTIONS(2361), - [anon_sym_vec] = ACTIONS(2361), - [anon_sym_dict] = ACTIONS(2361), - [anon_sym_keyset] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_interface] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2363), - [sym_final_modifier] = ACTIONS(2361), - [sym_xhp_modifier] = ACTIONS(2361), - [sym_xhp_identifier] = ACTIONS(2361), - [sym_xhp_class_identifier] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_elseif] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_case] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, [802] = { - [sym_identifier] = ACTIONS(2365), - [sym_variable] = ACTIONS(2367), - [sym_pipe_variable] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_newtype] = ACTIONS(2365), - [anon_sym_shape] = ACTIONS(2365), - [anon_sym_tuple] = ACTIONS(2365), - [anon_sym_clone] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_print] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2365), - [anon_sym_LT_LT_LT] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_throw] = ACTIONS(2365), - [anon_sym_echo] = ACTIONS(2365), - [anon_sym_unset] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_concurrent] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_elseif] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_case] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_foreach] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_using] = ACTIONS(2365), - [sym_float] = ACTIONS(2367), - [sym_integer] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_True] = ACTIONS(2365), - [anon_sym_TRUE] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_False] = ACTIONS(2365), - [anon_sym_FALSE] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_Null] = ACTIONS(2365), - [anon_sym_NULL] = ACTIONS(2365), - [sym_string] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_array] = ACTIONS(2365), - [anon_sym_varray] = ACTIONS(2365), - [anon_sym_darray] = ACTIONS(2365), - [anon_sym_vec] = ACTIONS(2365), - [anon_sym_dict] = ACTIONS(2365), - [anon_sym_keyset] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2367), - [sym_final_modifier] = ACTIONS(2365), - [sym_xhp_modifier] = ACTIONS(2365), - [sym_xhp_identifier] = ACTIONS(2365), - [sym_xhp_class_identifier] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [803] = { - [sym_identifier] = ACTIONS(2369), - [sym_variable] = ACTIONS(2371), - [sym_pipe_variable] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_newtype] = ACTIONS(2369), - [anon_sym_shape] = ACTIONS(2369), - [anon_sym_tuple] = ACTIONS(2369), - [anon_sym_clone] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_print] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_throw] = ACTIONS(2369), - [anon_sym_echo] = ACTIONS(2369), - [anon_sym_unset] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_concurrent] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_elseif] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_switch] = ACTIONS(2369), - [anon_sym_case] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_foreach] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_using] = ACTIONS(2369), - [sym_float] = ACTIONS(2371), - [sym_integer] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_True] = ACTIONS(2369), - [anon_sym_TRUE] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_False] = ACTIONS(2369), - [anon_sym_FALSE] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [anon_sym_Null] = ACTIONS(2369), - [anon_sym_NULL] = ACTIONS(2369), - [sym_string] = ACTIONS(2371), - [anon_sym_AT] = ACTIONS(2371), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_array] = ACTIONS(2369), - [anon_sym_varray] = ACTIONS(2369), - [anon_sym_darray] = ACTIONS(2369), - [anon_sym_vec] = ACTIONS(2369), - [anon_sym_dict] = ACTIONS(2369), - [anon_sym_keyset] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2371), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_interface] = ACTIONS(2369), - [anon_sym_class] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_abstract] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(2371), - [sym_final_modifier] = ACTIONS(2369), - [sym_xhp_modifier] = ACTIONS(2369), - [sym_xhp_identifier] = ACTIONS(2369), - [sym_xhp_class_identifier] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [804] = { - [sym_identifier] = ACTIONS(2373), - [sym_variable] = ACTIONS(2375), - [sym_pipe_variable] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_newtype] = ACTIONS(2373), - [anon_sym_shape] = ACTIONS(2373), - [anon_sym_tuple] = ACTIONS(2373), - [anon_sym_clone] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_print] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_LT_LT_LT] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2373), - [anon_sym_echo] = ACTIONS(2373), - [anon_sym_unset] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_concurrent] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_function] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_elseif] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_switch] = ACTIONS(2373), - [anon_sym_case] = ACTIONS(2373), - [anon_sym_default] = ACTIONS(2373), - [anon_sym_foreach] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_using] = ACTIONS(2373), - [sym_float] = ACTIONS(2375), - [sym_integer] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_True] = ACTIONS(2373), - [anon_sym_TRUE] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_False] = ACTIONS(2373), - [anon_sym_FALSE] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_Null] = ACTIONS(2373), - [anon_sym_NULL] = ACTIONS(2373), - [sym_string] = ACTIONS(2375), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_array] = ACTIONS(2373), - [anon_sym_varray] = ACTIONS(2373), - [anon_sym_darray] = ACTIONS(2373), - [anon_sym_vec] = ACTIONS(2373), - [anon_sym_dict] = ACTIONS(2373), - [anon_sym_keyset] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_class] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_abstract] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2375), - [sym_final_modifier] = ACTIONS(2373), - [sym_xhp_modifier] = ACTIONS(2373), - [sym_xhp_identifier] = ACTIONS(2373), - [sym_xhp_class_identifier] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [805] = { - [sym_identifier] = ACTIONS(2377), - [sym_variable] = ACTIONS(2379), - [sym_pipe_variable] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_newtype] = ACTIONS(2377), - [anon_sym_shape] = ACTIONS(2377), - [anon_sym_tuple] = ACTIONS(2377), - [anon_sym_clone] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_print] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_LT_LT_LT] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_echo] = ACTIONS(2377), - [anon_sym_unset] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_concurrent] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_elseif] = ACTIONS(2377), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_case] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_foreach] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_using] = ACTIONS(2377), - [sym_float] = ACTIONS(2379), - [sym_integer] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_True] = ACTIONS(2377), - [anon_sym_TRUE] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [anon_sym_False] = ACTIONS(2377), - [anon_sym_FALSE] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(2377), - [anon_sym_Null] = ACTIONS(2377), - [anon_sym_NULL] = ACTIONS(2377), - [sym_string] = ACTIONS(2379), - [anon_sym_AT] = ACTIONS(2379), - [anon_sym_TILDE] = ACTIONS(2379), - [anon_sym_array] = ACTIONS(2377), - [anon_sym_varray] = ACTIONS(2377), - [anon_sym_darray] = ACTIONS(2377), - [anon_sym_vec] = ACTIONS(2377), - [anon_sym_dict] = ACTIONS(2377), - [anon_sym_keyset] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(2379), - [sym_final_modifier] = ACTIONS(2377), - [sym_xhp_modifier] = ACTIONS(2377), - [sym_xhp_identifier] = ACTIONS(2377), - [sym_xhp_class_identifier] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [806] = { - [sym_identifier] = ACTIONS(2381), - [sym_variable] = ACTIONS(2383), - [sym_pipe_variable] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_newtype] = ACTIONS(2381), - [anon_sym_shape] = ACTIONS(2381), - [anon_sym_tuple] = ACTIONS(2381), - [anon_sym_clone] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_print] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_LT_LT_LT] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_echo] = ACTIONS(2381), - [anon_sym_unset] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_concurrent] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_function] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_elseif] = ACTIONS(2381), - [anon_sym_else] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_case] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_foreach] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [sym_float] = ACTIONS(2383), - [sym_integer] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_True] = ACTIONS(2381), - [anon_sym_TRUE] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_False] = ACTIONS(2381), - [anon_sym_FALSE] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [anon_sym_Null] = ACTIONS(2381), - [anon_sym_NULL] = ACTIONS(2381), - [sym_string] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_array] = ACTIONS(2381), - [anon_sym_varray] = ACTIONS(2381), - [anon_sym_darray] = ACTIONS(2381), - [anon_sym_vec] = ACTIONS(2381), - [anon_sym_dict] = ACTIONS(2381), - [anon_sym_keyset] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_abstract] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(2383), - [sym_final_modifier] = ACTIONS(2381), - [sym_xhp_modifier] = ACTIONS(2381), - [sym_xhp_identifier] = ACTIONS(2381), - [sym_xhp_class_identifier] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [807] = { - [sym_identifier] = ACTIONS(2385), - [sym_variable] = ACTIONS(2387), - [sym_pipe_variable] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_newtype] = ACTIONS(2385), - [anon_sym_shape] = ACTIONS(2385), - [anon_sym_tuple] = ACTIONS(2385), - [anon_sym_clone] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_print] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_LT_LT] = ACTIONS(2385), - [anon_sym_LT_LT_LT] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_echo] = ACTIONS(2385), - [anon_sym_unset] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_concurrent] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_function] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_elseif] = ACTIONS(2385), - [anon_sym_else] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_case] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_foreach] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [sym_float] = ACTIONS(2387), - [sym_integer] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_True] = ACTIONS(2385), - [anon_sym_TRUE] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_False] = ACTIONS(2385), - [anon_sym_FALSE] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2385), - [anon_sym_Null] = ACTIONS(2385), - [anon_sym_NULL] = ACTIONS(2385), - [sym_string] = ACTIONS(2387), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_array] = ACTIONS(2385), - [anon_sym_varray] = ACTIONS(2385), - [anon_sym_darray] = ACTIONS(2385), - [anon_sym_vec] = ACTIONS(2385), - [anon_sym_dict] = ACTIONS(2385), - [anon_sym_keyset] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_interface] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_abstract] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(2387), - [sym_final_modifier] = ACTIONS(2385), - [sym_xhp_modifier] = ACTIONS(2385), - [sym_xhp_identifier] = ACTIONS(2385), - [sym_xhp_class_identifier] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [808] = { - [sym_identifier] = ACTIONS(2389), - [sym_variable] = ACTIONS(2391), - [sym_pipe_variable] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_newtype] = ACTIONS(2389), - [anon_sym_shape] = ACTIONS(2389), - [anon_sym_tuple] = ACTIONS(2389), - [anon_sym_clone] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_print] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2389), - [anon_sym_LT_LT_LT] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_echo] = ACTIONS(2389), - [anon_sym_unset] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_concurrent] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_elseif] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_case] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_foreach] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_using] = ACTIONS(2389), - [sym_float] = ACTIONS(2391), - [sym_integer] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_True] = ACTIONS(2389), - [anon_sym_TRUE] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [anon_sym_False] = ACTIONS(2389), - [anon_sym_FALSE] = ACTIONS(2389), - [anon_sym_null] = ACTIONS(2389), - [anon_sym_Null] = ACTIONS(2389), - [anon_sym_NULL] = ACTIONS(2389), - [sym_string] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_array] = ACTIONS(2389), - [anon_sym_varray] = ACTIONS(2389), - [anon_sym_darray] = ACTIONS(2389), - [anon_sym_vec] = ACTIONS(2389), - [anon_sym_dict] = ACTIONS(2389), - [anon_sym_keyset] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_class] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2391), - [sym_final_modifier] = ACTIONS(2389), - [sym_xhp_modifier] = ACTIONS(2389), - [sym_xhp_identifier] = ACTIONS(2389), - [sym_xhp_class_identifier] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [809] = { - [sym_identifier] = ACTIONS(2393), - [sym_variable] = ACTIONS(2395), - [sym_pipe_variable] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_newtype] = ACTIONS(2393), - [anon_sym_shape] = ACTIONS(2393), - [anon_sym_tuple] = ACTIONS(2393), - [anon_sym_clone] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_print] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_LT_LT_LT] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_echo] = ACTIONS(2393), - [anon_sym_unset] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_concurrent] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_elseif] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_case] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_foreach] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [sym_float] = ACTIONS(2395), - [sym_integer] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_True] = ACTIONS(2393), - [anon_sym_TRUE] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_False] = ACTIONS(2393), - [anon_sym_FALSE] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2393), - [anon_sym_Null] = ACTIONS(2393), - [anon_sym_NULL] = ACTIONS(2393), - [sym_string] = ACTIONS(2395), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_array] = ACTIONS(2393), - [anon_sym_varray] = ACTIONS(2393), - [anon_sym_darray] = ACTIONS(2393), - [anon_sym_vec] = ACTIONS(2393), - [anon_sym_dict] = ACTIONS(2393), - [anon_sym_keyset] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2395), - [sym_final_modifier] = ACTIONS(2393), - [sym_xhp_modifier] = ACTIONS(2393), - [sym_xhp_identifier] = ACTIONS(2393), - [sym_xhp_class_identifier] = ACTIONS(2395), + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_elseif] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_finally] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [810] = { - [sym_identifier] = ACTIONS(2397), - [sym_variable] = ACTIONS(2399), - [sym_pipe_variable] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_newtype] = ACTIONS(2397), - [anon_sym_shape] = ACTIONS(2397), - [anon_sym_tuple] = ACTIONS(2397), - [anon_sym_clone] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_print] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LT_LT_LT] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_echo] = ACTIONS(2397), - [anon_sym_unset] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_concurrent] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_elseif] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_case] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_foreach] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [sym_float] = ACTIONS(2399), - [sym_integer] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_True] = ACTIONS(2397), - [anon_sym_TRUE] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [anon_sym_False] = ACTIONS(2397), - [anon_sym_FALSE] = ACTIONS(2397), - [anon_sym_null] = ACTIONS(2397), - [anon_sym_Null] = ACTIONS(2397), - [anon_sym_NULL] = ACTIONS(2397), - [sym_string] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_array] = ACTIONS(2397), - [anon_sym_varray] = ACTIONS(2397), - [anon_sym_darray] = ACTIONS(2397), - [anon_sym_vec] = ACTIONS(2397), - [anon_sym_dict] = ACTIONS(2397), - [anon_sym_keyset] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_interface] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_abstract] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(2399), - [sym_final_modifier] = ACTIONS(2397), - [sym_xhp_modifier] = ACTIONS(2397), - [sym_xhp_identifier] = ACTIONS(2397), - [sym_xhp_class_identifier] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [811] = { - [sym_identifier] = ACTIONS(2401), - [sym_variable] = ACTIONS(2403), - [sym_pipe_variable] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_newtype] = ACTIONS(2401), - [anon_sym_shape] = ACTIONS(2401), - [anon_sym_tuple] = ACTIONS(2401), - [anon_sym_clone] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_print] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), - [anon_sym_LT_LT_LT] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_echo] = ACTIONS(2401), - [anon_sym_unset] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_concurrent] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_elseif] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_foreach] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [sym_float] = ACTIONS(2403), - [sym_integer] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_True] = ACTIONS(2401), - [anon_sym_TRUE] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [anon_sym_False] = ACTIONS(2401), - [anon_sym_FALSE] = ACTIONS(2401), - [anon_sym_null] = ACTIONS(2401), - [anon_sym_Null] = ACTIONS(2401), - [anon_sym_NULL] = ACTIONS(2401), - [sym_string] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_array] = ACTIONS(2401), - [anon_sym_varray] = ACTIONS(2401), - [anon_sym_darray] = ACTIONS(2401), - [anon_sym_vec] = ACTIONS(2401), - [anon_sym_dict] = ACTIONS(2401), - [anon_sym_keyset] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2403), - [sym_final_modifier] = ACTIONS(2401), - [sym_xhp_modifier] = ACTIONS(2401), - [sym_xhp_identifier] = ACTIONS(2401), - [sym_xhp_class_identifier] = ACTIONS(2403), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_elseif] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_finally] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, [812] = { - [sym_identifier] = ACTIONS(2405), - [sym_variable] = ACTIONS(2407), - [sym_pipe_variable] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_newtype] = ACTIONS(2405), - [anon_sym_shape] = ACTIONS(2405), - [anon_sym_tuple] = ACTIONS(2405), - [anon_sym_clone] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), - [anon_sym_LT_LT_LT] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_echo] = ACTIONS(2405), - [anon_sym_unset] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_concurrent] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_elseif] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_foreach] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [sym_float] = ACTIONS(2407), - [sym_integer] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_True] = ACTIONS(2405), - [anon_sym_TRUE] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [anon_sym_False] = ACTIONS(2405), - [anon_sym_FALSE] = ACTIONS(2405), - [anon_sym_null] = ACTIONS(2405), - [anon_sym_Null] = ACTIONS(2405), - [anon_sym_NULL] = ACTIONS(2405), - [sym_string] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_array] = ACTIONS(2405), - [anon_sym_varray] = ACTIONS(2405), - [anon_sym_darray] = ACTIONS(2405), - [anon_sym_vec] = ACTIONS(2405), - [anon_sym_dict] = ACTIONS(2405), - [anon_sym_keyset] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_trait] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_abstract] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2407), - [sym_final_modifier] = ACTIONS(2405), - [sym_xhp_modifier] = ACTIONS(2405), - [sym_xhp_identifier] = ACTIONS(2405), - [sym_xhp_class_identifier] = ACTIONS(2407), - [sym_comment] = ACTIONS(3), - }, - [813] = { - [sym_identifier] = ACTIONS(2409), - [sym_variable] = ACTIONS(2411), - [sym_pipe_variable] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_newtype] = ACTIONS(2409), - [anon_sym_shape] = ACTIONS(2409), - [anon_sym_tuple] = ACTIONS(2409), - [anon_sym_clone] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(2409), - [anon_sym_LT_LT_LT] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_echo] = ACTIONS(2409), - [anon_sym_unset] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_concurrent] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_function] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_elseif] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_case] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_foreach] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [sym_float] = ACTIONS(2411), - [sym_integer] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_True] = ACTIONS(2409), - [anon_sym_TRUE] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [anon_sym_False] = ACTIONS(2409), - [anon_sym_FALSE] = ACTIONS(2409), - [anon_sym_null] = ACTIONS(2409), - [anon_sym_Null] = ACTIONS(2409), - [anon_sym_NULL] = ACTIONS(2409), - [sym_string] = ACTIONS(2411), - [anon_sym_AT] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_array] = ACTIONS(2409), - [anon_sym_varray] = ACTIONS(2409), - [anon_sym_darray] = ACTIONS(2409), - [anon_sym_vec] = ACTIONS(2409), - [anon_sym_dict] = ACTIONS(2409), - [anon_sym_keyset] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_trait] = ACTIONS(2409), - [anon_sym_interface] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_abstract] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(2411), - [sym_final_modifier] = ACTIONS(2409), - [sym_xhp_modifier] = ACTIONS(2409), - [sym_xhp_identifier] = ACTIONS(2409), - [sym_xhp_class_identifier] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_elseif] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_finally] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [813] = { + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_elseif] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_finally] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, [814] = { - [sym_identifier] = ACTIONS(2413), - [sym_variable] = ACTIONS(2415), - [sym_pipe_variable] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_newtype] = ACTIONS(2413), - [anon_sym_shape] = ACTIONS(2413), - [anon_sym_tuple] = ACTIONS(2413), - [anon_sym_clone] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_print] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_LT_LT] = ACTIONS(2413), - [anon_sym_LT_LT_LT] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_echo] = ACTIONS(2413), - [anon_sym_unset] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_concurrent] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_elseif] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_case] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_foreach] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [sym_float] = ACTIONS(2415), - [sym_integer] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_True] = ACTIONS(2413), - [anon_sym_TRUE] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [anon_sym_False] = ACTIONS(2413), - [anon_sym_FALSE] = ACTIONS(2413), - [anon_sym_null] = ACTIONS(2413), - [anon_sym_Null] = ACTIONS(2413), - [anon_sym_NULL] = ACTIONS(2413), - [sym_string] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_array] = ACTIONS(2413), - [anon_sym_varray] = ACTIONS(2413), - [anon_sym_darray] = ACTIONS(2413), - [anon_sym_vec] = ACTIONS(2413), - [anon_sym_dict] = ACTIONS(2413), - [anon_sym_keyset] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_await] = ACTIONS(2413), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2413), - [anon_sym_trait] = ACTIONS(2413), - [anon_sym_interface] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_abstract] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2415), - [sym_final_modifier] = ACTIONS(2413), - [sym_xhp_modifier] = ACTIONS(2413), - [sym_xhp_identifier] = ACTIONS(2413), - [sym_xhp_class_identifier] = ACTIONS(2415), + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_case] = ACTIONS(2035), + [anon_sym_default] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_finally] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [815] = { - [sym_identifier] = ACTIONS(2417), - [sym_variable] = ACTIONS(2419), - [sym_pipe_variable] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_newtype] = ACTIONS(2417), - [anon_sym_shape] = ACTIONS(2417), - [anon_sym_tuple] = ACTIONS(2417), - [anon_sym_clone] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_print] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), - [anon_sym_LT_LT_LT] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_echo] = ACTIONS(2417), - [anon_sym_unset] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_concurrent] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_function] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_elseif] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_case] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_foreach] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [sym_float] = ACTIONS(2419), - [sym_integer] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_True] = ACTIONS(2417), - [anon_sym_TRUE] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [anon_sym_False] = ACTIONS(2417), - [anon_sym_FALSE] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2417), - [anon_sym_Null] = ACTIONS(2417), - [anon_sym_NULL] = ACTIONS(2417), - [sym_string] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_array] = ACTIONS(2417), - [anon_sym_varray] = ACTIONS(2417), - [anon_sym_darray] = ACTIONS(2417), - [anon_sym_vec] = ACTIONS(2417), - [anon_sym_dict] = ACTIONS(2417), - [anon_sym_keyset] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_trait] = ACTIONS(2417), - [anon_sym_interface] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_abstract] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2419), - [sym_final_modifier] = ACTIONS(2417), - [sym_xhp_modifier] = ACTIONS(2417), - [sym_xhp_identifier] = ACTIONS(2417), - [sym_xhp_class_identifier] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_case] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_finally] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, [816] = { - [sym_identifier] = ACTIONS(2421), - [sym_variable] = ACTIONS(2423), - [sym_pipe_variable] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_newtype] = ACTIONS(2421), - [anon_sym_shape] = ACTIONS(2421), - [anon_sym_tuple] = ACTIONS(2421), - [anon_sym_clone] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LT_LT_LT] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_echo] = ACTIONS(2421), - [anon_sym_unset] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_concurrent] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_elseif] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_foreach] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [sym_float] = ACTIONS(2423), - [sym_integer] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_True] = ACTIONS(2421), - [anon_sym_TRUE] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [anon_sym_False] = ACTIONS(2421), - [anon_sym_FALSE] = ACTIONS(2421), - [anon_sym_null] = ACTIONS(2421), - [anon_sym_Null] = ACTIONS(2421), - [anon_sym_NULL] = ACTIONS(2421), - [sym_string] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_array] = ACTIONS(2421), - [anon_sym_varray] = ACTIONS(2421), - [anon_sym_darray] = ACTIONS(2421), - [anon_sym_vec] = ACTIONS(2421), - [anon_sym_dict] = ACTIONS(2421), - [anon_sym_keyset] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_interface] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_abstract] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2423), - [sym_final_modifier] = ACTIONS(2421), - [sym_xhp_modifier] = ACTIONS(2421), - [sym_xhp_identifier] = ACTIONS(2421), - [sym_xhp_class_identifier] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [817] = { - [sym_identifier] = ACTIONS(2425), - [sym_variable] = ACTIONS(2427), - [sym_pipe_variable] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_newtype] = ACTIONS(2425), - [anon_sym_shape] = ACTIONS(2425), - [anon_sym_tuple] = ACTIONS(2425), - [anon_sym_clone] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_LT_LT] = ACTIONS(2425), - [anon_sym_LT_LT_LT] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_echo] = ACTIONS(2425), - [anon_sym_unset] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_concurrent] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_function] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_elseif] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_case] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_foreach] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [sym_float] = ACTIONS(2427), - [sym_integer] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_True] = ACTIONS(2425), - [anon_sym_TRUE] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [anon_sym_False] = ACTIONS(2425), - [anon_sym_FALSE] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(2425), - [anon_sym_Null] = ACTIONS(2425), - [anon_sym_NULL] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_array] = ACTIONS(2425), - [anon_sym_varray] = ACTIONS(2425), - [anon_sym_darray] = ACTIONS(2425), - [anon_sym_vec] = ACTIONS(2425), - [anon_sym_dict] = ACTIONS(2425), - [anon_sym_keyset] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_interface] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_abstract] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(2427), - [sym_final_modifier] = ACTIONS(2425), - [sym_xhp_modifier] = ACTIONS(2425), - [sym_xhp_identifier] = ACTIONS(2425), - [sym_xhp_class_identifier] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [818] = { - [sym_identifier] = ACTIONS(2429), - [sym_variable] = ACTIONS(2431), - [sym_pipe_variable] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_newtype] = ACTIONS(2429), - [anon_sym_shape] = ACTIONS(2429), - [anon_sym_tuple] = ACTIONS(2429), - [anon_sym_clone] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), - [anon_sym_LT_LT_LT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_echo] = ACTIONS(2429), - [anon_sym_unset] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_concurrent] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_elseif] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_foreach] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [sym_float] = ACTIONS(2431), - [sym_integer] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_True] = ACTIONS(2429), - [anon_sym_TRUE] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [anon_sym_False] = ACTIONS(2429), - [anon_sym_FALSE] = ACTIONS(2429), - [anon_sym_null] = ACTIONS(2429), - [anon_sym_Null] = ACTIONS(2429), - [anon_sym_NULL] = ACTIONS(2429), - [sym_string] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_array] = ACTIONS(2429), - [anon_sym_varray] = ACTIONS(2429), - [anon_sym_darray] = ACTIONS(2429), - [anon_sym_vec] = ACTIONS(2429), - [anon_sym_dict] = ACTIONS(2429), - [anon_sym_keyset] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_interface] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_abstract] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2431), - [sym_final_modifier] = ACTIONS(2429), - [sym_xhp_modifier] = ACTIONS(2429), - [sym_xhp_identifier] = ACTIONS(2429), - [sym_xhp_class_identifier] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [819] = { - [sym_identifier] = ACTIONS(2433), - [sym_variable] = ACTIONS(2435), - [sym_pipe_variable] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_newtype] = ACTIONS(2433), - [anon_sym_shape] = ACTIONS(2433), - [anon_sym_tuple] = ACTIONS(2433), - [anon_sym_clone] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_print] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_LT_LT_LT] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_echo] = ACTIONS(2433), - [anon_sym_unset] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_concurrent] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_elseif] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_case] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_foreach] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [sym_float] = ACTIONS(2435), - [sym_integer] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_True] = ACTIONS(2433), - [anon_sym_TRUE] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [anon_sym_False] = ACTIONS(2433), - [anon_sym_FALSE] = ACTIONS(2433), - [anon_sym_null] = ACTIONS(2433), - [anon_sym_Null] = ACTIONS(2433), - [anon_sym_NULL] = ACTIONS(2433), - [sym_string] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_array] = ACTIONS(2433), - [anon_sym_varray] = ACTIONS(2433), - [anon_sym_darray] = ACTIONS(2433), - [anon_sym_vec] = ACTIONS(2433), - [anon_sym_dict] = ACTIONS(2433), - [anon_sym_keyset] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_abstract] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2435), - [sym_final_modifier] = ACTIONS(2433), - [sym_xhp_modifier] = ACTIONS(2433), - [sym_xhp_identifier] = ACTIONS(2433), - [sym_xhp_class_identifier] = ACTIONS(2435), - [sym_comment] = ACTIONS(3), - }, - [820] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_case] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), - [sym_comment] = ACTIONS(3), - }, - [821] = { - [sym_identifier] = ACTIONS(2437), - [sym_variable] = ACTIONS(2439), - [sym_pipe_variable] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_newtype] = ACTIONS(2437), - [anon_sym_shape] = ACTIONS(2437), - [anon_sym_tuple] = ACTIONS(2437), - [anon_sym_clone] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_print] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), - [anon_sym_LT_LT_LT] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_echo] = ACTIONS(2437), - [anon_sym_unset] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_concurrent] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_case] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_foreach] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [sym_float] = ACTIONS(2439), - [sym_integer] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_True] = ACTIONS(2437), - [anon_sym_TRUE] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_False] = ACTIONS(2437), - [anon_sym_FALSE] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_Null] = ACTIONS(2437), - [anon_sym_NULL] = ACTIONS(2437), - [sym_string] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_array] = ACTIONS(2437), - [anon_sym_varray] = ACTIONS(2437), - [anon_sym_darray] = ACTIONS(2437), - [anon_sym_vec] = ACTIONS(2437), - [anon_sym_dict] = ACTIONS(2437), - [anon_sym_keyset] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_abstract] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2439), - [sym_final_modifier] = ACTIONS(2437), - [sym_xhp_modifier] = ACTIONS(2437), - [sym_xhp_identifier] = ACTIONS(2437), - [sym_xhp_class_identifier] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [820] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [821] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [822] = { - [sym_identifier] = ACTIONS(2441), - [sym_variable] = ACTIONS(2443), - [sym_pipe_variable] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_newtype] = ACTIONS(2441), - [anon_sym_shape] = ACTIONS(2441), - [anon_sym_tuple] = ACTIONS(2441), - [anon_sym_clone] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_LT] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2441), - [anon_sym_echo] = ACTIONS(2441), - [anon_sym_unset] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_concurrent] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_elseif] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2441), - [anon_sym_case] = ACTIONS(2441), - [anon_sym_default] = ACTIONS(2441), - [anon_sym_foreach] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_using] = ACTIONS(2441), - [sym_float] = ACTIONS(2443), - [sym_integer] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_True] = ACTIONS(2441), - [anon_sym_TRUE] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [anon_sym_False] = ACTIONS(2441), - [anon_sym_FALSE] = ACTIONS(2441), - [anon_sym_null] = ACTIONS(2441), - [anon_sym_Null] = ACTIONS(2441), - [anon_sym_NULL] = ACTIONS(2441), - [sym_string] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_array] = ACTIONS(2441), - [anon_sym_varray] = ACTIONS(2441), - [anon_sym_darray] = ACTIONS(2441), - [anon_sym_vec] = ACTIONS(2441), - [anon_sym_dict] = ACTIONS(2441), - [anon_sym_keyset] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_interface] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_abstract] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2443), - [sym_final_modifier] = ACTIONS(2441), - [sym_xhp_modifier] = ACTIONS(2441), - [sym_xhp_identifier] = ACTIONS(2441), - [sym_xhp_class_identifier] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2373), + [sym_variable] = ACTIONS(2375), + [sym_pipe_variable] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_newtype] = ACTIONS(2373), + [anon_sym_shape] = ACTIONS(2373), + [anon_sym_tuple] = ACTIONS(2373), + [anon_sym_clone] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_print] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_include] = ACTIONS(2373), + [anon_sym_include_once] = ACTIONS(2373), + [anon_sym_require] = ACTIONS(2373), + [anon_sym_require_once] = ACTIONS(2373), + [anon_sym_BSLASH] = ACTIONS(2375), + [anon_sym_self] = ACTIONS(2373), + [anon_sym_parent] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_LT_LT_LT] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_echo] = ACTIONS(2373), + [anon_sym_unset] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_concurrent] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_elseif] = ACTIONS(2373), + [anon_sym_else] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_foreach] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [sym_float] = ACTIONS(2375), + [sym_integer] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_True] = ACTIONS(2373), + [anon_sym_TRUE] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_False] = ACTIONS(2373), + [anon_sym_FALSE] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_Null] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [sym_string] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_array] = ACTIONS(2373), + [anon_sym_varray] = ACTIONS(2373), + [anon_sym_darray] = ACTIONS(2373), + [anon_sym_vec] = ACTIONS(2373), + [anon_sym_dict] = ACTIONS(2373), + [anon_sym_keyset] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_list] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_abstract] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2375), + [sym_final_modifier] = ACTIONS(2373), + [sym_xhp_modifier] = ACTIONS(2373), + [sym_xhp_identifier] = ACTIONS(2373), + [sym_xhp_class_identifier] = ACTIONS(2375), [sym_comment] = ACTIONS(3), }, [823] = { - [sym_identifier] = ACTIONS(2445), - [sym_variable] = ACTIONS(2447), - [sym_pipe_variable] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_newtype] = ACTIONS(2445), - [anon_sym_shape] = ACTIONS(2445), - [anon_sym_tuple] = ACTIONS(2445), - [anon_sym_clone] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_print] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_LT_LT_LT] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_echo] = ACTIONS(2445), - [anon_sym_unset] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_concurrent] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_elseif] = ACTIONS(2445), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_case] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_foreach] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [sym_float] = ACTIONS(2447), - [sym_integer] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_True] = ACTIONS(2445), - [anon_sym_TRUE] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [anon_sym_False] = ACTIONS(2445), - [anon_sym_FALSE] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(2445), - [anon_sym_Null] = ACTIONS(2445), - [anon_sym_NULL] = ACTIONS(2445), - [sym_string] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_array] = ACTIONS(2445), - [anon_sym_varray] = ACTIONS(2445), - [anon_sym_darray] = ACTIONS(2445), - [anon_sym_vec] = ACTIONS(2445), - [anon_sym_dict] = ACTIONS(2445), - [anon_sym_keyset] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_abstract] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2447), - [sym_final_modifier] = ACTIONS(2445), - [sym_xhp_modifier] = ACTIONS(2445), - [sym_xhp_identifier] = ACTIONS(2445), - [sym_xhp_class_identifier] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [824] = { - [sym_identifier] = ACTIONS(2449), - [sym_variable] = ACTIONS(2451), - [sym_pipe_variable] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_newtype] = ACTIONS(2449), - [anon_sym_shape] = ACTIONS(2449), - [anon_sym_tuple] = ACTIONS(2449), - [anon_sym_clone] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_print] = ACTIONS(2449), - [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_LT_LT_LT] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_echo] = ACTIONS(2449), - [anon_sym_unset] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_concurrent] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_switch] = ACTIONS(2449), - [anon_sym_case] = ACTIONS(2449), - [anon_sym_default] = ACTIONS(2449), - [anon_sym_foreach] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_using] = ACTIONS(2449), - [sym_float] = ACTIONS(2451), - [sym_integer] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_True] = ACTIONS(2449), - [anon_sym_TRUE] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_False] = ACTIONS(2449), - [anon_sym_FALSE] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [anon_sym_Null] = ACTIONS(2449), - [anon_sym_NULL] = ACTIONS(2449), - [sym_string] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_array] = ACTIONS(2449), - [anon_sym_varray] = ACTIONS(2449), - [anon_sym_darray] = ACTIONS(2449), - [anon_sym_vec] = ACTIONS(2449), - [anon_sym_dict] = ACTIONS(2449), - [anon_sym_keyset] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_class] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_abstract] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2451), - [sym_final_modifier] = ACTIONS(2449), - [sym_xhp_modifier] = ACTIONS(2449), - [sym_xhp_identifier] = ACTIONS(2449), - [sym_xhp_class_identifier] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [825] = { - [sym_identifier] = ACTIONS(2453), - [sym_variable] = ACTIONS(2455), - [sym_pipe_variable] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_newtype] = ACTIONS(2453), - [anon_sym_shape] = ACTIONS(2453), - [anon_sym_tuple] = ACTIONS(2453), - [anon_sym_clone] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_LT_LT_LT] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_echo] = ACTIONS(2453), - [anon_sym_unset] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_concurrent] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_elseif] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_case] = ACTIONS(2453), - [anon_sym_default] = ACTIONS(2453), - [anon_sym_foreach] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [sym_float] = ACTIONS(2455), - [sym_integer] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_True] = ACTIONS(2453), - [anon_sym_TRUE] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_False] = ACTIONS(2453), - [anon_sym_FALSE] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [anon_sym_Null] = ACTIONS(2453), - [anon_sym_NULL] = ACTIONS(2453), - [sym_string] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_array] = ACTIONS(2453), - [anon_sym_varray] = ACTIONS(2453), - [anon_sym_darray] = ACTIONS(2453), - [anon_sym_vec] = ACTIONS(2453), - [anon_sym_dict] = ACTIONS(2453), - [anon_sym_keyset] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_trait] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [anon_sym_abstract] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2455), - [sym_final_modifier] = ACTIONS(2453), - [sym_xhp_modifier] = ACTIONS(2453), - [sym_xhp_identifier] = ACTIONS(2453), - [sym_xhp_class_identifier] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - }, - [826] = { - [sym_identifier] = ACTIONS(2457), - [sym_variable] = ACTIONS(2459), - [sym_pipe_variable] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_newtype] = ACTIONS(2457), - [anon_sym_shape] = ACTIONS(2457), - [anon_sym_tuple] = ACTIONS(2457), - [anon_sym_clone] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_print] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), - [anon_sym_LT_LT_LT] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_echo] = ACTIONS(2457), - [anon_sym_unset] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_concurrent] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_elseif] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_case] = ACTIONS(2457), - [anon_sym_default] = ACTIONS(2457), - [anon_sym_foreach] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_integer] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_True] = ACTIONS(2457), - [anon_sym_TRUE] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [anon_sym_False] = ACTIONS(2457), - [anon_sym_FALSE] = ACTIONS(2457), - [anon_sym_null] = ACTIONS(2457), - [anon_sym_Null] = ACTIONS(2457), - [anon_sym_NULL] = ACTIONS(2457), - [sym_string] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_array] = ACTIONS(2457), - [anon_sym_varray] = ACTIONS(2457), - [anon_sym_darray] = ACTIONS(2457), - [anon_sym_vec] = ACTIONS(2457), - [anon_sym_dict] = ACTIONS(2457), - [anon_sym_keyset] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_trait] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2459), - [sym_final_modifier] = ACTIONS(2457), - [sym_xhp_modifier] = ACTIONS(2457), - [sym_xhp_identifier] = ACTIONS(2457), - [sym_xhp_class_identifier] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [826] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [827] = { - [sym_identifier] = ACTIONS(2461), - [sym_variable] = ACTIONS(2463), - [sym_pipe_variable] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_newtype] = ACTIONS(2461), - [anon_sym_shape] = ACTIONS(2461), - [anon_sym_tuple] = ACTIONS(2461), - [anon_sym_clone] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_LT_LT_LT] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_echo] = ACTIONS(2461), - [anon_sym_unset] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_concurrent] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_elseif] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_case] = ACTIONS(2461), - [anon_sym_default] = ACTIONS(2461), - [anon_sym_foreach] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [sym_float] = ACTIONS(2463), - [sym_integer] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_True] = ACTIONS(2461), - [anon_sym_TRUE] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_False] = ACTIONS(2461), - [anon_sym_FALSE] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2461), - [anon_sym_Null] = ACTIONS(2461), - [anon_sym_NULL] = ACTIONS(2461), - [sym_string] = ACTIONS(2463), - [anon_sym_AT] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_array] = ACTIONS(2461), - [anon_sym_varray] = ACTIONS(2461), - [anon_sym_darray] = ACTIONS(2461), - [anon_sym_vec] = ACTIONS(2461), - [anon_sym_dict] = ACTIONS(2461), - [anon_sym_keyset] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_trait] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(2463), - [sym_final_modifier] = ACTIONS(2461), - [sym_xhp_modifier] = ACTIONS(2461), - [sym_xhp_identifier] = ACTIONS(2461), - [sym_xhp_class_identifier] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [828] = { - [sym_identifier] = ACTIONS(2465), - [sym_variable] = ACTIONS(2467), - [sym_pipe_variable] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_newtype] = ACTIONS(2465), - [anon_sym_shape] = ACTIONS(2465), - [anon_sym_tuple] = ACTIONS(2465), - [anon_sym_clone] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_print] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_LT_LT_LT] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_echo] = ACTIONS(2465), - [anon_sym_unset] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_concurrent] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_foreach] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [sym_float] = ACTIONS(2467), - [sym_integer] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_True] = ACTIONS(2465), - [anon_sym_TRUE] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [anon_sym_False] = ACTIONS(2465), - [anon_sym_FALSE] = ACTIONS(2465), - [anon_sym_null] = ACTIONS(2465), - [anon_sym_Null] = ACTIONS(2465), - [anon_sym_NULL] = ACTIONS(2465), - [sym_string] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_array] = ACTIONS(2465), - [anon_sym_varray] = ACTIONS(2465), - [anon_sym_darray] = ACTIONS(2465), - [anon_sym_vec] = ACTIONS(2465), - [anon_sym_dict] = ACTIONS(2465), - [anon_sym_keyset] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_trait] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2467), - [sym_final_modifier] = ACTIONS(2465), - [sym_xhp_modifier] = ACTIONS(2465), - [sym_xhp_identifier] = ACTIONS(2465), - [sym_xhp_class_identifier] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [829] = { - [sym_identifier] = ACTIONS(2469), - [sym_variable] = ACTIONS(2471), - [sym_pipe_variable] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_newtype] = ACTIONS(2469), - [anon_sym_shape] = ACTIONS(2469), - [anon_sym_tuple] = ACTIONS(2469), - [anon_sym_clone] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_print] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_echo] = ACTIONS(2469), - [anon_sym_unset] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_concurrent] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_function] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_elseif] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_case] = ACTIONS(2469), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_foreach] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [sym_float] = ACTIONS(2471), - [sym_integer] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_True] = ACTIONS(2469), - [anon_sym_TRUE] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [anon_sym_False] = ACTIONS(2469), - [anon_sym_FALSE] = ACTIONS(2469), - [anon_sym_null] = ACTIONS(2469), - [anon_sym_Null] = ACTIONS(2469), - [anon_sym_NULL] = ACTIONS(2469), - [sym_string] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_array] = ACTIONS(2469), - [anon_sym_varray] = ACTIONS(2469), - [anon_sym_darray] = ACTIONS(2469), - [anon_sym_vec] = ACTIONS(2469), - [anon_sym_dict] = ACTIONS(2469), - [anon_sym_keyset] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_trait] = ACTIONS(2469), - [anon_sym_interface] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_abstract] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2471), - [sym_final_modifier] = ACTIONS(2469), - [sym_xhp_modifier] = ACTIONS(2469), - [sym_xhp_identifier] = ACTIONS(2469), - [sym_xhp_class_identifier] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [830] = { - [sym_identifier] = ACTIONS(2473), - [sym_variable] = ACTIONS(2475), - [sym_pipe_variable] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_newtype] = ACTIONS(2473), - [anon_sym_shape] = ACTIONS(2473), - [anon_sym_tuple] = ACTIONS(2473), - [anon_sym_clone] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_print] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_LT_LT_LT] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_throw] = ACTIONS(2473), - [anon_sym_echo] = ACTIONS(2473), - [anon_sym_unset] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_concurrent] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_switch] = ACTIONS(2473), - [anon_sym_case] = ACTIONS(2473), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_foreach] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_using] = ACTIONS(2473), - [sym_float] = ACTIONS(2475), - [sym_integer] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_True] = ACTIONS(2473), - [anon_sym_TRUE] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [anon_sym_False] = ACTIONS(2473), - [anon_sym_FALSE] = ACTIONS(2473), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_Null] = ACTIONS(2473), - [anon_sym_NULL] = ACTIONS(2473), - [sym_string] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_array] = ACTIONS(2473), - [anon_sym_varray] = ACTIONS(2473), - [anon_sym_darray] = ACTIONS(2473), - [anon_sym_vec] = ACTIONS(2473), - [anon_sym_dict] = ACTIONS(2473), - [anon_sym_keyset] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_trait] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2475), - [sym_final_modifier] = ACTIONS(2473), - [sym_xhp_modifier] = ACTIONS(2473), - [sym_xhp_identifier] = ACTIONS(2473), - [sym_xhp_class_identifier] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [831] = { - [sym_identifier] = ACTIONS(2477), - [sym_variable] = ACTIONS(2479), - [sym_pipe_variable] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_newtype] = ACTIONS(2477), - [anon_sym_shape] = ACTIONS(2477), - [anon_sym_tuple] = ACTIONS(2477), - [anon_sym_clone] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_print] = ACTIONS(2477), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_LT_LT_LT] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2477), - [anon_sym_echo] = ACTIONS(2477), - [anon_sym_unset] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_concurrent] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_switch] = ACTIONS(2477), - [anon_sym_case] = ACTIONS(2477), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_foreach] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_using] = ACTIONS(2477), - [sym_float] = ACTIONS(2479), - [sym_integer] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_True] = ACTIONS(2477), - [anon_sym_TRUE] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [anon_sym_False] = ACTIONS(2477), - [anon_sym_FALSE] = ACTIONS(2477), - [anon_sym_null] = ACTIONS(2477), - [anon_sym_Null] = ACTIONS(2477), - [anon_sym_NULL] = ACTIONS(2477), - [sym_string] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_array] = ACTIONS(2477), - [anon_sym_varray] = ACTIONS(2477), - [anon_sym_darray] = ACTIONS(2477), - [anon_sym_vec] = ACTIONS(2477), - [anon_sym_dict] = ACTIONS(2477), - [anon_sym_keyset] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_trait] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_abstract] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2479), - [sym_final_modifier] = ACTIONS(2477), - [sym_xhp_modifier] = ACTIONS(2477), - [sym_xhp_identifier] = ACTIONS(2477), - [sym_xhp_class_identifier] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - }, - [832] = { - [sym_identifier] = ACTIONS(2481), - [sym_variable] = ACTIONS(2483), - [sym_pipe_variable] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_newtype] = ACTIONS(2481), - [anon_sym_shape] = ACTIONS(2481), - [anon_sym_tuple] = ACTIONS(2481), - [anon_sym_clone] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2481), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_LT_LT_LT] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_throw] = ACTIONS(2481), - [anon_sym_echo] = ACTIONS(2481), - [anon_sym_unset] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_concurrent] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_case] = ACTIONS(2481), - [anon_sym_default] = ACTIONS(2481), - [anon_sym_foreach] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_using] = ACTIONS(2481), - [sym_float] = ACTIONS(2483), - [sym_integer] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2481), - [anon_sym_True] = ACTIONS(2481), - [anon_sym_TRUE] = ACTIONS(2481), - [anon_sym_false] = ACTIONS(2481), - [anon_sym_False] = ACTIONS(2481), - [anon_sym_FALSE] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2481), - [anon_sym_Null] = ACTIONS(2481), - [anon_sym_NULL] = ACTIONS(2481), - [sym_string] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_array] = ACTIONS(2481), - [anon_sym_varray] = ACTIONS(2481), - [anon_sym_darray] = ACTIONS(2481), - [anon_sym_vec] = ACTIONS(2481), - [anon_sym_dict] = ACTIONS(2481), - [anon_sym_keyset] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_trait] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_class] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), - [anon_sym_abstract] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2483), - [sym_final_modifier] = ACTIONS(2481), - [sym_xhp_modifier] = ACTIONS(2481), - [sym_xhp_identifier] = ACTIONS(2481), - [sym_xhp_class_identifier] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [832] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [833] = { - [sym_identifier] = ACTIONS(2485), - [sym_variable] = ACTIONS(2487), - [sym_pipe_variable] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2485), - [anon_sym_newtype] = ACTIONS(2485), - [anon_sym_shape] = ACTIONS(2485), - [anon_sym_tuple] = ACTIONS(2485), - [anon_sym_clone] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2485), - [anon_sym_namespace] = ACTIONS(2485), - [anon_sym_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_LT_LT_LT] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_echo] = ACTIONS(2485), - [anon_sym_unset] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_concurrent] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_elseif] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_switch] = ACTIONS(2485), - [anon_sym_case] = ACTIONS(2485), - [anon_sym_default] = ACTIONS(2485), - [anon_sym_foreach] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_using] = ACTIONS(2485), - [sym_float] = ACTIONS(2487), - [sym_integer] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_True] = ACTIONS(2485), - [anon_sym_TRUE] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [anon_sym_False] = ACTIONS(2485), - [anon_sym_FALSE] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2485), - [anon_sym_Null] = ACTIONS(2485), - [anon_sym_NULL] = ACTIONS(2485), - [sym_string] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_array] = ACTIONS(2485), - [anon_sym_varray] = ACTIONS(2485), - [anon_sym_darray] = ACTIONS(2485), - [anon_sym_vec] = ACTIONS(2485), - [anon_sym_dict] = ACTIONS(2485), - [anon_sym_keyset] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2485), - [anon_sym_async] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2485), - [anon_sym_trait] = ACTIONS(2485), - [anon_sym_interface] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2485), - [anon_sym_enum] = ACTIONS(2485), - [anon_sym_abstract] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2487), - [sym_final_modifier] = ACTIONS(2485), - [sym_xhp_modifier] = ACTIONS(2485), - [sym_xhp_identifier] = ACTIONS(2485), - [sym_xhp_class_identifier] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [834] = { - [sym_identifier] = ACTIONS(2489), - [sym_variable] = ACTIONS(2491), - [sym_pipe_variable] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_newtype] = ACTIONS(2489), - [anon_sym_shape] = ACTIONS(2489), - [anon_sym_tuple] = ACTIONS(2489), - [anon_sym_clone] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_print] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), - [anon_sym_LT_LT_LT] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_echo] = ACTIONS(2489), - [anon_sym_unset] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_concurrent] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_elseif] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_case] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_foreach] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [sym_float] = ACTIONS(2491), - [sym_integer] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_True] = ACTIONS(2489), - [anon_sym_TRUE] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_False] = ACTIONS(2489), - [anon_sym_FALSE] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [anon_sym_Null] = ACTIONS(2489), - [anon_sym_NULL] = ACTIONS(2489), - [sym_string] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_array] = ACTIONS(2489), - [anon_sym_varray] = ACTIONS(2489), - [anon_sym_darray] = ACTIONS(2489), - [anon_sym_vec] = ACTIONS(2489), - [anon_sym_dict] = ACTIONS(2489), - [anon_sym_keyset] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2491), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_trait] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2491), - [sym_final_modifier] = ACTIONS(2489), - [sym_xhp_modifier] = ACTIONS(2489), - [sym_xhp_identifier] = ACTIONS(2489), - [sym_xhp_class_identifier] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2377), + [sym_variable] = ACTIONS(2379), + [sym_pipe_variable] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_newtype] = ACTIONS(2377), + [anon_sym_shape] = ACTIONS(2377), + [anon_sym_tuple] = ACTIONS(2377), + [anon_sym_clone] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_print] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_include] = ACTIONS(2377), + [anon_sym_include_once] = ACTIONS(2377), + [anon_sym_require] = ACTIONS(2377), + [anon_sym_require_once] = ACTIONS(2377), + [anon_sym_BSLASH] = ACTIONS(2379), + [anon_sym_self] = ACTIONS(2377), + [anon_sym_parent] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_LT_LT_LT] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_echo] = ACTIONS(2377), + [anon_sym_unset] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_concurrent] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_function] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_elseif] = ACTIONS(2377), + [anon_sym_else] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_foreach] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [sym_float] = ACTIONS(2379), + [sym_integer] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_True] = ACTIONS(2377), + [anon_sym_TRUE] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_False] = ACTIONS(2377), + [anon_sym_FALSE] = ACTIONS(2377), + [anon_sym_null] = ACTIONS(2377), + [anon_sym_Null] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [sym_string] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_array] = ACTIONS(2377), + [anon_sym_varray] = ACTIONS(2377), + [anon_sym_darray] = ACTIONS(2377), + [anon_sym_vec] = ACTIONS(2377), + [anon_sym_dict] = ACTIONS(2377), + [anon_sym_keyset] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_list] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_abstract] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2379), + [sym_final_modifier] = ACTIONS(2377), + [sym_xhp_modifier] = ACTIONS(2377), + [sym_xhp_identifier] = ACTIONS(2377), + [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, [835] = { - [sym_identifier] = ACTIONS(2493), - [sym_variable] = ACTIONS(2495), - [sym_pipe_variable] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2493), - [anon_sym_newtype] = ACTIONS(2493), - [anon_sym_shape] = ACTIONS(2493), - [anon_sym_tuple] = ACTIONS(2493), - [anon_sym_clone] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_print] = ACTIONS(2493), - [anon_sym_namespace] = ACTIONS(2493), - [anon_sym_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = ACTIONS(2493), - [anon_sym_LT_LT] = ACTIONS(2493), - [anon_sym_LT_LT_LT] = ACTIONS(2495), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_throw] = ACTIONS(2493), - [anon_sym_echo] = ACTIONS(2493), - [anon_sym_unset] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_concurrent] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_function] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_elseif] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_switch] = ACTIONS(2493), - [anon_sym_case] = ACTIONS(2493), - [anon_sym_default] = ACTIONS(2493), - [anon_sym_foreach] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_using] = ACTIONS(2493), - [sym_float] = ACTIONS(2495), - [sym_integer] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_True] = ACTIONS(2493), - [anon_sym_TRUE] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_False] = ACTIONS(2493), - [anon_sym_FALSE] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [anon_sym_Null] = ACTIONS(2493), - [anon_sym_NULL] = ACTIONS(2493), - [sym_string] = ACTIONS(2495), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_array] = ACTIONS(2493), - [anon_sym_varray] = ACTIONS(2493), - [anon_sym_darray] = ACTIONS(2493), - [anon_sym_vec] = ACTIONS(2493), - [anon_sym_dict] = ACTIONS(2493), - [anon_sym_keyset] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2493), - [anon_sym_async] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2493), - [anon_sym_interface] = ACTIONS(2493), - [anon_sym_class] = ACTIONS(2493), - [anon_sym_enum] = ACTIONS(2493), - [anon_sym_abstract] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2495), - [sym_final_modifier] = ACTIONS(2493), - [sym_xhp_modifier] = ACTIONS(2493), - [sym_xhp_identifier] = ACTIONS(2493), - [sym_xhp_class_identifier] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2381), + [sym_variable] = ACTIONS(2383), + [sym_pipe_variable] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_newtype] = ACTIONS(2381), + [anon_sym_shape] = ACTIONS(2381), + [anon_sym_tuple] = ACTIONS(2381), + [anon_sym_clone] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_include] = ACTIONS(2381), + [anon_sym_include_once] = ACTIONS(2381), + [anon_sym_require] = ACTIONS(2381), + [anon_sym_require_once] = ACTIONS(2381), + [anon_sym_BSLASH] = ACTIONS(2383), + [anon_sym_self] = ACTIONS(2381), + [anon_sym_parent] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_LT_LT_LT] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_echo] = ACTIONS(2381), + [anon_sym_unset] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_concurrent] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_elseif] = ACTIONS(2381), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_foreach] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [sym_float] = ACTIONS(2383), + [sym_integer] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_True] = ACTIONS(2381), + [anon_sym_TRUE] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_False] = ACTIONS(2381), + [anon_sym_FALSE] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [anon_sym_Null] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [sym_string] = ACTIONS(2383), + [anon_sym_AT] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_array] = ACTIONS(2381), + [anon_sym_varray] = ACTIONS(2381), + [anon_sym_darray] = ACTIONS(2381), + [anon_sym_vec] = ACTIONS(2381), + [anon_sym_dict] = ACTIONS(2381), + [anon_sym_keyset] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_list] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2383), + [sym_final_modifier] = ACTIONS(2381), + [sym_xhp_modifier] = ACTIONS(2381), + [sym_xhp_identifier] = ACTIONS(2381), + [sym_xhp_class_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(3), }, [836] = { - [sym_identifier] = ACTIONS(2497), - [sym_variable] = ACTIONS(2499), - [sym_pipe_variable] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_newtype] = ACTIONS(2497), - [anon_sym_shape] = ACTIONS(2497), - [anon_sym_tuple] = ACTIONS(2497), - [anon_sym_clone] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_print] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_LT_LT_LT] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_echo] = ACTIONS(2497), - [anon_sym_unset] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_concurrent] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_elseif] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_case] = ACTIONS(2497), - [anon_sym_default] = ACTIONS(2497), - [anon_sym_foreach] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_using] = ACTIONS(2497), - [sym_float] = ACTIONS(2499), - [sym_integer] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_True] = ACTIONS(2497), - [anon_sym_TRUE] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_False] = ACTIONS(2497), - [anon_sym_FALSE] = ACTIONS(2497), - [anon_sym_null] = ACTIONS(2497), - [anon_sym_Null] = ACTIONS(2497), - [anon_sym_NULL] = ACTIONS(2497), - [sym_string] = ACTIONS(2499), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_array] = ACTIONS(2497), - [anon_sym_varray] = ACTIONS(2497), - [anon_sym_darray] = ACTIONS(2497), - [anon_sym_vec] = ACTIONS(2497), - [anon_sym_dict] = ACTIONS(2497), - [anon_sym_keyset] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_trait] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2499), - [sym_final_modifier] = ACTIONS(2497), - [sym_xhp_modifier] = ACTIONS(2497), - [sym_xhp_identifier] = ACTIONS(2497), - [sym_xhp_class_identifier] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2385), + [sym_variable] = ACTIONS(2387), + [sym_pipe_variable] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_newtype] = ACTIONS(2385), + [anon_sym_shape] = ACTIONS(2385), + [anon_sym_tuple] = ACTIONS(2385), + [anon_sym_clone] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_print] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_include] = ACTIONS(2385), + [anon_sym_include_once] = ACTIONS(2385), + [anon_sym_require] = ACTIONS(2385), + [anon_sym_require_once] = ACTIONS(2385), + [anon_sym_BSLASH] = ACTIONS(2387), + [anon_sym_self] = ACTIONS(2385), + [anon_sym_parent] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_LT_LT] = ACTIONS(2385), + [anon_sym_LT_LT_LT] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_echo] = ACTIONS(2385), + [anon_sym_unset] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_concurrent] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_function] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_elseif] = ACTIONS(2385), + [anon_sym_else] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_case] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_foreach] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [sym_float] = ACTIONS(2387), + [sym_integer] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_True] = ACTIONS(2385), + [anon_sym_TRUE] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_False] = ACTIONS(2385), + [anon_sym_FALSE] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2385), + [anon_sym_Null] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [sym_string] = ACTIONS(2387), + [anon_sym_AT] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_array] = ACTIONS(2385), + [anon_sym_varray] = ACTIONS(2385), + [anon_sym_darray] = ACTIONS(2385), + [anon_sym_vec] = ACTIONS(2385), + [anon_sym_dict] = ACTIONS(2385), + [anon_sym_keyset] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_list] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_interface] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_abstract] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2387), + [sym_final_modifier] = ACTIONS(2385), + [sym_xhp_modifier] = ACTIONS(2385), + [sym_xhp_identifier] = ACTIONS(2385), + [sym_xhp_class_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(3), }, [837] = { - [sym_identifier] = ACTIONS(2501), - [sym_variable] = ACTIONS(2503), - [sym_pipe_variable] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_newtype] = ACTIONS(2501), - [anon_sym_shape] = ACTIONS(2501), - [anon_sym_tuple] = ACTIONS(2501), - [anon_sym_clone] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_print] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_LT_LT_LT] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_echo] = ACTIONS(2501), - [anon_sym_unset] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_concurrent] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_elseif] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_case] = ACTIONS(2501), - [anon_sym_default] = ACTIONS(2501), - [anon_sym_foreach] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [sym_float] = ACTIONS(2503), - [sym_integer] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_True] = ACTIONS(2501), - [anon_sym_TRUE] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_False] = ACTIONS(2501), - [anon_sym_FALSE] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [anon_sym_Null] = ACTIONS(2501), - [anon_sym_NULL] = ACTIONS(2501), - [sym_string] = ACTIONS(2503), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_array] = ACTIONS(2501), - [anon_sym_varray] = ACTIONS(2501), - [anon_sym_darray] = ACTIONS(2501), - [anon_sym_vec] = ACTIONS(2501), - [anon_sym_dict] = ACTIONS(2501), - [anon_sym_keyset] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_trait] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2503), - [sym_final_modifier] = ACTIONS(2501), - [sym_xhp_modifier] = ACTIONS(2501), - [sym_xhp_identifier] = ACTIONS(2501), - [sym_xhp_class_identifier] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - }, - [838] = { - [sym_identifier] = ACTIONS(2505), - [sym_variable] = ACTIONS(2507), - [sym_pipe_variable] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_newtype] = ACTIONS(2505), - [anon_sym_shape] = ACTIONS(2505), - [anon_sym_tuple] = ACTIONS(2505), - [anon_sym_clone] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_print] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_LT_LT_LT] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_echo] = ACTIONS(2505), - [anon_sym_unset] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_concurrent] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_elseif] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_case] = ACTIONS(2505), - [anon_sym_default] = ACTIONS(2505), - [anon_sym_foreach] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [sym_float] = ACTIONS(2507), - [sym_integer] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_True] = ACTIONS(2505), - [anon_sym_TRUE] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_False] = ACTIONS(2505), - [anon_sym_FALSE] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [anon_sym_Null] = ACTIONS(2505), - [anon_sym_NULL] = ACTIONS(2505), - [sym_string] = ACTIONS(2507), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_array] = ACTIONS(2505), - [anon_sym_varray] = ACTIONS(2505), - [anon_sym_darray] = ACTIONS(2505), - [anon_sym_vec] = ACTIONS(2505), - [anon_sym_dict] = ACTIONS(2505), - [anon_sym_keyset] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_trait] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2507), - [sym_final_modifier] = ACTIONS(2505), - [sym_xhp_modifier] = ACTIONS(2505), - [sym_xhp_identifier] = ACTIONS(2505), - [sym_xhp_class_identifier] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2389), + [sym_variable] = ACTIONS(2391), + [sym_pipe_variable] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_newtype] = ACTIONS(2389), + [anon_sym_shape] = ACTIONS(2389), + [anon_sym_tuple] = ACTIONS(2389), + [anon_sym_clone] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_print] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_include] = ACTIONS(2389), + [anon_sym_include_once] = ACTIONS(2389), + [anon_sym_require] = ACTIONS(2389), + [anon_sym_require_once] = ACTIONS(2389), + [anon_sym_BSLASH] = ACTIONS(2391), + [anon_sym_self] = ACTIONS(2389), + [anon_sym_parent] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(2389), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_echo] = ACTIONS(2389), + [anon_sym_unset] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_concurrent] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_elseif] = ACTIONS(2389), + [anon_sym_else] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_case] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_foreach] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [sym_float] = ACTIONS(2391), + [sym_integer] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_True] = ACTIONS(2389), + [anon_sym_TRUE] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_False] = ACTIONS(2389), + [anon_sym_FALSE] = ACTIONS(2389), + [anon_sym_null] = ACTIONS(2389), + [anon_sym_Null] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [sym_string] = ACTIONS(2391), + [anon_sym_AT] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_array] = ACTIONS(2389), + [anon_sym_varray] = ACTIONS(2389), + [anon_sym_darray] = ACTIONS(2389), + [anon_sym_vec] = ACTIONS(2389), + [anon_sym_dict] = ACTIONS(2389), + [anon_sym_keyset] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_interface] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_abstract] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2391), + [sym_final_modifier] = ACTIONS(2389), + [sym_xhp_modifier] = ACTIONS(2389), + [sym_xhp_identifier] = ACTIONS(2389), + [sym_xhp_class_identifier] = ACTIONS(2391), + [sym_comment] = ACTIONS(3), + }, + [838] = { + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_elseif] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, [839] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_elseif] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_finally] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2393), + [sym_variable] = ACTIONS(2395), + [sym_pipe_variable] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_newtype] = ACTIONS(2393), + [anon_sym_shape] = ACTIONS(2393), + [anon_sym_tuple] = ACTIONS(2393), + [anon_sym_clone] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_print] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_include] = ACTIONS(2393), + [anon_sym_include_once] = ACTIONS(2393), + [anon_sym_require] = ACTIONS(2393), + [anon_sym_require_once] = ACTIONS(2393), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_self] = ACTIONS(2393), + [anon_sym_parent] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(2393), + [anon_sym_LT_LT_LT] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_throw] = ACTIONS(2393), + [anon_sym_echo] = ACTIONS(2393), + [anon_sym_unset] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_concurrent] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_elseif] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_case] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_foreach] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_using] = ACTIONS(2393), + [sym_float] = ACTIONS(2395), + [sym_integer] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_True] = ACTIONS(2393), + [anon_sym_TRUE] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_False] = ACTIONS(2393), + [anon_sym_FALSE] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2393), + [anon_sym_Null] = ACTIONS(2393), + [anon_sym_NULL] = ACTIONS(2393), + [sym_string] = ACTIONS(2395), + [anon_sym_AT] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_array] = ACTIONS(2393), + [anon_sym_varray] = ACTIONS(2393), + [anon_sym_darray] = ACTIONS(2393), + [anon_sym_vec] = ACTIONS(2393), + [anon_sym_dict] = ACTIONS(2393), + [anon_sym_keyset] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_interface] = ACTIONS(2393), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_abstract] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2395), + [sym_final_modifier] = ACTIONS(2393), + [sym_xhp_modifier] = ACTIONS(2393), + [sym_xhp_identifier] = ACTIONS(2393), + [sym_xhp_class_identifier] = ACTIONS(2395), [sym_comment] = ACTIONS(3), }, [840] = { - [sym_identifier] = ACTIONS(2509), - [sym_variable] = ACTIONS(2511), - [sym_pipe_variable] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_newtype] = ACTIONS(2509), - [anon_sym_shape] = ACTIONS(2509), - [anon_sym_tuple] = ACTIONS(2509), - [anon_sym_clone] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_LT_LT_LT] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_echo] = ACTIONS(2509), - [anon_sym_unset] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_concurrent] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_elseif] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_case] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2509), - [anon_sym_foreach] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [sym_float] = ACTIONS(2511), - [sym_integer] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2509), - [anon_sym_True] = ACTIONS(2509), - [anon_sym_TRUE] = ACTIONS(2509), - [anon_sym_false] = ACTIONS(2509), - [anon_sym_False] = ACTIONS(2509), - [anon_sym_FALSE] = ACTIONS(2509), - [anon_sym_null] = ACTIONS(2509), - [anon_sym_Null] = ACTIONS(2509), - [anon_sym_NULL] = ACTIONS(2509), - [sym_string] = ACTIONS(2511), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_array] = ACTIONS(2509), - [anon_sym_varray] = ACTIONS(2509), - [anon_sym_darray] = ACTIONS(2509), - [anon_sym_vec] = ACTIONS(2509), - [anon_sym_dict] = ACTIONS(2509), - [anon_sym_keyset] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_trait] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2511), - [sym_final_modifier] = ACTIONS(2509), - [sym_xhp_modifier] = ACTIONS(2509), - [sym_xhp_identifier] = ACTIONS(2509), - [sym_xhp_class_identifier] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2397), + [sym_variable] = ACTIONS(2399), + [sym_pipe_variable] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_newtype] = ACTIONS(2397), + [anon_sym_shape] = ACTIONS(2397), + [anon_sym_tuple] = ACTIONS(2397), + [anon_sym_clone] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_include] = ACTIONS(2397), + [anon_sym_include_once] = ACTIONS(2397), + [anon_sym_require] = ACTIONS(2397), + [anon_sym_require_once] = ACTIONS(2397), + [anon_sym_BSLASH] = ACTIONS(2399), + [anon_sym_self] = ACTIONS(2397), + [anon_sym_parent] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_LT_LT_LT] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_throw] = ACTIONS(2397), + [anon_sym_echo] = ACTIONS(2397), + [anon_sym_unset] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_concurrent] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_elseif] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(2397), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_foreach] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_using] = ACTIONS(2397), + [sym_float] = ACTIONS(2399), + [sym_integer] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_True] = ACTIONS(2397), + [anon_sym_TRUE] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_False] = ACTIONS(2397), + [anon_sym_FALSE] = ACTIONS(2397), + [anon_sym_null] = ACTIONS(2397), + [anon_sym_Null] = ACTIONS(2397), + [anon_sym_NULL] = ACTIONS(2397), + [sym_string] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_array] = ACTIONS(2397), + [anon_sym_varray] = ACTIONS(2397), + [anon_sym_darray] = ACTIONS(2397), + [anon_sym_vec] = ACTIONS(2397), + [anon_sym_dict] = ACTIONS(2397), + [anon_sym_keyset] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_list] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_interface] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_abstract] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2399), + [sym_final_modifier] = ACTIONS(2397), + [sym_xhp_modifier] = ACTIONS(2397), + [sym_xhp_identifier] = ACTIONS(2397), + [sym_xhp_class_identifier] = ACTIONS(2399), [sym_comment] = ACTIONS(3), }, [841] = { - [sym_identifier] = ACTIONS(2513), - [sym_variable] = ACTIONS(2515), - [sym_pipe_variable] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_newtype] = ACTIONS(2513), - [anon_sym_shape] = ACTIONS(2513), - [anon_sym_tuple] = ACTIONS(2513), - [anon_sym_clone] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_LT_LT_LT] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_echo] = ACTIONS(2513), - [anon_sym_unset] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_concurrent] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_elseif] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_case] = ACTIONS(2513), - [anon_sym_default] = ACTIONS(2513), - [anon_sym_foreach] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [sym_float] = ACTIONS(2515), - [sym_integer] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_True] = ACTIONS(2513), - [anon_sym_TRUE] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [anon_sym_False] = ACTIONS(2513), - [anon_sym_FALSE] = ACTIONS(2513), - [anon_sym_null] = ACTIONS(2513), - [anon_sym_Null] = ACTIONS(2513), - [anon_sym_NULL] = ACTIONS(2513), - [sym_string] = ACTIONS(2515), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_array] = ACTIONS(2513), - [anon_sym_varray] = ACTIONS(2513), - [anon_sym_darray] = ACTIONS(2513), - [anon_sym_vec] = ACTIONS(2513), - [anon_sym_dict] = ACTIONS(2513), - [anon_sym_keyset] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_trait] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2515), - [sym_final_modifier] = ACTIONS(2513), - [sym_xhp_modifier] = ACTIONS(2513), - [sym_xhp_identifier] = ACTIONS(2513), - [sym_xhp_class_identifier] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2401), + [sym_variable] = ACTIONS(2403), + [sym_pipe_variable] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_newtype] = ACTIONS(2401), + [anon_sym_shape] = ACTIONS(2401), + [anon_sym_tuple] = ACTIONS(2401), + [anon_sym_clone] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_print] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_include] = ACTIONS(2401), + [anon_sym_include_once] = ACTIONS(2401), + [anon_sym_require] = ACTIONS(2401), + [anon_sym_require_once] = ACTIONS(2401), + [anon_sym_BSLASH] = ACTIONS(2403), + [anon_sym_self] = ACTIONS(2401), + [anon_sym_parent] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LT_LT_LT] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_echo] = ACTIONS(2401), + [anon_sym_unset] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_concurrent] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_elseif] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_case] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_foreach] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_using] = ACTIONS(2401), + [sym_float] = ACTIONS(2403), + [sym_integer] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_True] = ACTIONS(2401), + [anon_sym_TRUE] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_False] = ACTIONS(2401), + [anon_sym_FALSE] = ACTIONS(2401), + [anon_sym_null] = ACTIONS(2401), + [anon_sym_Null] = ACTIONS(2401), + [anon_sym_NULL] = ACTIONS(2401), + [sym_string] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_array] = ACTIONS(2401), + [anon_sym_varray] = ACTIONS(2401), + [anon_sym_darray] = ACTIONS(2401), + [anon_sym_vec] = ACTIONS(2401), + [anon_sym_dict] = ACTIONS(2401), + [anon_sym_keyset] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2403), + [sym_final_modifier] = ACTIONS(2401), + [sym_xhp_modifier] = ACTIONS(2401), + [sym_xhp_identifier] = ACTIONS(2401), + [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, [842] = { - [sym_identifier] = ACTIONS(2517), - [sym_variable] = ACTIONS(2519), - [sym_pipe_variable] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_newtype] = ACTIONS(2517), - [anon_sym_shape] = ACTIONS(2517), - [anon_sym_tuple] = ACTIONS(2517), - [anon_sym_clone] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), - [anon_sym_LT_LT_LT] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_echo] = ACTIONS(2517), - [anon_sym_unset] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_concurrent] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_elseif] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_case] = ACTIONS(2517), - [anon_sym_default] = ACTIONS(2517), - [anon_sym_foreach] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [sym_float] = ACTIONS(2519), - [sym_integer] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_True] = ACTIONS(2517), - [anon_sym_TRUE] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_False] = ACTIONS(2517), - [anon_sym_FALSE] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [anon_sym_Null] = ACTIONS(2517), - [anon_sym_NULL] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_array] = ACTIONS(2517), - [anon_sym_varray] = ACTIONS(2517), - [anon_sym_darray] = ACTIONS(2517), - [anon_sym_vec] = ACTIONS(2517), - [anon_sym_dict] = ACTIONS(2517), - [anon_sym_keyset] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_trait] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2519), - [sym_final_modifier] = ACTIONS(2517), - [sym_xhp_modifier] = ACTIONS(2517), - [sym_xhp_identifier] = ACTIONS(2517), - [sym_xhp_class_identifier] = ACTIONS(2519), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_elseif] = ACTIONS(2053), + [anon_sym_else] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, [843] = { - [sym_identifier] = ACTIONS(2521), - [sym_variable] = ACTIONS(2523), - [sym_pipe_variable] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_newtype] = ACTIONS(2521), - [anon_sym_shape] = ACTIONS(2521), - [anon_sym_tuple] = ACTIONS(2521), - [anon_sym_clone] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_print] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_LT_LT_LT] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_echo] = ACTIONS(2521), - [anon_sym_unset] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_concurrent] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_elseif] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_case] = ACTIONS(2521), - [anon_sym_default] = ACTIONS(2521), - [anon_sym_foreach] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [sym_float] = ACTIONS(2523), - [sym_integer] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_True] = ACTIONS(2521), - [anon_sym_TRUE] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_False] = ACTIONS(2521), - [anon_sym_FALSE] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [anon_sym_Null] = ACTIONS(2521), - [anon_sym_NULL] = ACTIONS(2521), - [sym_string] = ACTIONS(2523), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_array] = ACTIONS(2521), - [anon_sym_varray] = ACTIONS(2521), - [anon_sym_darray] = ACTIONS(2521), - [anon_sym_vec] = ACTIONS(2521), - [anon_sym_dict] = ACTIONS(2521), - [anon_sym_keyset] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_trait] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2523), - [sym_final_modifier] = ACTIONS(2521), - [sym_xhp_modifier] = ACTIONS(2521), - [sym_xhp_identifier] = ACTIONS(2521), - [sym_xhp_class_identifier] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2405), + [sym_variable] = ACTIONS(2407), + [sym_pipe_variable] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_newtype] = ACTIONS(2405), + [anon_sym_shape] = ACTIONS(2405), + [anon_sym_tuple] = ACTIONS(2405), + [anon_sym_clone] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_print] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_include] = ACTIONS(2405), + [anon_sym_include_once] = ACTIONS(2405), + [anon_sym_require] = ACTIONS(2405), + [anon_sym_require_once] = ACTIONS(2405), + [anon_sym_BSLASH] = ACTIONS(2407), + [anon_sym_self] = ACTIONS(2405), + [anon_sym_parent] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_LT_LT] = ACTIONS(2405), + [anon_sym_LT_LT_LT] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_echo] = ACTIONS(2405), + [anon_sym_unset] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_concurrent] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_elseif] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_foreach] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [sym_float] = ACTIONS(2407), + [sym_integer] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_True] = ACTIONS(2405), + [anon_sym_TRUE] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_False] = ACTIONS(2405), + [anon_sym_FALSE] = ACTIONS(2405), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_Null] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2405), + [sym_string] = ACTIONS(2407), + [anon_sym_AT] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_array] = ACTIONS(2405), + [anon_sym_varray] = ACTIONS(2405), + [anon_sym_darray] = ACTIONS(2405), + [anon_sym_vec] = ACTIONS(2405), + [anon_sym_dict] = ACTIONS(2405), + [anon_sym_keyset] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_abstract] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2407), + [sym_final_modifier] = ACTIONS(2405), + [sym_xhp_modifier] = ACTIONS(2405), + [sym_xhp_identifier] = ACTIONS(2405), + [sym_xhp_class_identifier] = ACTIONS(2407), [sym_comment] = ACTIONS(3), }, [844] = { - [sym_identifier] = ACTIONS(2525), - [sym_variable] = ACTIONS(2527), - [sym_pipe_variable] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_newtype] = ACTIONS(2525), - [anon_sym_shape] = ACTIONS(2525), - [anon_sym_tuple] = ACTIONS(2525), - [anon_sym_clone] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_LT_LT_LT] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_echo] = ACTIONS(2525), - [anon_sym_unset] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_concurrent] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_elseif] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_foreach] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [sym_float] = ACTIONS(2527), - [sym_integer] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_True] = ACTIONS(2525), - [anon_sym_TRUE] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_False] = ACTIONS(2525), - [anon_sym_FALSE] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2525), - [anon_sym_Null] = ACTIONS(2525), - [anon_sym_NULL] = ACTIONS(2525), - [sym_string] = ACTIONS(2527), - [anon_sym_AT] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_array] = ACTIONS(2525), - [anon_sym_varray] = ACTIONS(2525), - [anon_sym_darray] = ACTIONS(2525), - [anon_sym_vec] = ACTIONS(2525), - [anon_sym_dict] = ACTIONS(2525), - [anon_sym_keyset] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_trait] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2527), - [sym_final_modifier] = ACTIONS(2525), - [sym_xhp_modifier] = ACTIONS(2525), - [sym_xhp_identifier] = ACTIONS(2525), - [sym_xhp_class_identifier] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2409), + [sym_variable] = ACTIONS(2411), + [sym_pipe_variable] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_newtype] = ACTIONS(2409), + [anon_sym_shape] = ACTIONS(2409), + [anon_sym_tuple] = ACTIONS(2409), + [anon_sym_clone] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_include] = ACTIONS(2409), + [anon_sym_include_once] = ACTIONS(2409), + [anon_sym_require] = ACTIONS(2409), + [anon_sym_require_once] = ACTIONS(2409), + [anon_sym_BSLASH] = ACTIONS(2411), + [anon_sym_self] = ACTIONS(2409), + [anon_sym_parent] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_LT_LT] = ACTIONS(2409), + [anon_sym_LT_LT_LT] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_throw] = ACTIONS(2409), + [anon_sym_echo] = ACTIONS(2409), + [anon_sym_unset] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_concurrent] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_elseif] = ACTIONS(2409), + [anon_sym_else] = ACTIONS(2409), + [anon_sym_switch] = ACTIONS(2409), + [anon_sym_case] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_foreach] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_using] = ACTIONS(2409), + [sym_float] = ACTIONS(2411), + [sym_integer] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_True] = ACTIONS(2409), + [anon_sym_TRUE] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_False] = ACTIONS(2409), + [anon_sym_FALSE] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2409), + [anon_sym_Null] = ACTIONS(2409), + [anon_sym_NULL] = ACTIONS(2409), + [sym_string] = ACTIONS(2411), + [anon_sym_AT] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2411), + [anon_sym_array] = ACTIONS(2409), + [anon_sym_varray] = ACTIONS(2409), + [anon_sym_darray] = ACTIONS(2409), + [anon_sym_vec] = ACTIONS(2409), + [anon_sym_dict] = ACTIONS(2409), + [anon_sym_keyset] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_list] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_PLUS_PLUS] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_interface] = ACTIONS(2409), + [anon_sym_class] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_abstract] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(2411), + [sym_final_modifier] = ACTIONS(2409), + [sym_xhp_modifier] = ACTIONS(2409), + [sym_xhp_identifier] = ACTIONS(2409), + [sym_xhp_class_identifier] = ACTIONS(2411), [sym_comment] = ACTIONS(3), }, [845] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2413), + [sym_variable] = ACTIONS(2415), + [sym_pipe_variable] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_newtype] = ACTIONS(2413), + [anon_sym_shape] = ACTIONS(2413), + [anon_sym_tuple] = ACTIONS(2413), + [anon_sym_clone] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_print] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_include] = ACTIONS(2413), + [anon_sym_include_once] = ACTIONS(2413), + [anon_sym_require] = ACTIONS(2413), + [anon_sym_require_once] = ACTIONS(2413), + [anon_sym_BSLASH] = ACTIONS(2415), + [anon_sym_self] = ACTIONS(2413), + [anon_sym_parent] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_LT_LT] = ACTIONS(2413), + [anon_sym_LT_LT_LT] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_throw] = ACTIONS(2413), + [anon_sym_echo] = ACTIONS(2413), + [anon_sym_unset] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_concurrent] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_elseif] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(2413), + [anon_sym_case] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_foreach] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_using] = ACTIONS(2413), + [sym_float] = ACTIONS(2415), + [sym_integer] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_True] = ACTIONS(2413), + [anon_sym_TRUE] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_False] = ACTIONS(2413), + [anon_sym_FALSE] = ACTIONS(2413), + [anon_sym_null] = ACTIONS(2413), + [anon_sym_Null] = ACTIONS(2413), + [anon_sym_NULL] = ACTIONS(2413), + [sym_string] = ACTIONS(2415), + [anon_sym_AT] = ACTIONS(2415), + [anon_sym_TILDE] = ACTIONS(2415), + [anon_sym_array] = ACTIONS(2413), + [anon_sym_varray] = ACTIONS(2413), + [anon_sym_darray] = ACTIONS(2413), + [anon_sym_vec] = ACTIONS(2413), + [anon_sym_dict] = ACTIONS(2413), + [anon_sym_keyset] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_PLUS_PLUS] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_interface] = ACTIONS(2413), + [anon_sym_class] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_abstract] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2415), + [sym_final_modifier] = ACTIONS(2413), + [sym_xhp_modifier] = ACTIONS(2413), + [sym_xhp_identifier] = ACTIONS(2413), + [sym_xhp_class_identifier] = ACTIONS(2415), [sym_comment] = ACTIONS(3), }, [846] = { - [sym_identifier] = ACTIONS(2533), - [sym_variable] = ACTIONS(2535), - [sym_pipe_variable] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_newtype] = ACTIONS(2533), - [anon_sym_shape] = ACTIONS(2533), - [anon_sym_tuple] = ACTIONS(2533), - [anon_sym_clone] = ACTIONS(2533), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_print] = ACTIONS(2533), - [anon_sym_namespace] = ACTIONS(2533), - [anon_sym_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT_LT_LT] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_echo] = ACTIONS(2533), - [anon_sym_unset] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_concurrent] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_function] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_elseif] = ACTIONS(2533), - [anon_sym_else] = ACTIONS(2533), - [anon_sym_switch] = ACTIONS(2533), - [anon_sym_case] = ACTIONS(2533), - [anon_sym_default] = ACTIONS(2533), - [anon_sym_foreach] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_do] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [anon_sym_using] = ACTIONS(2533), - [sym_float] = ACTIONS(2535), - [sym_integer] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_True] = ACTIONS(2533), - [anon_sym_TRUE] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_False] = ACTIONS(2533), - [anon_sym_FALSE] = ACTIONS(2533), - [anon_sym_null] = ACTIONS(2533), - [anon_sym_Null] = ACTIONS(2533), - [anon_sym_NULL] = ACTIONS(2533), - [sym_string] = ACTIONS(2535), - [anon_sym_AT] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_array] = ACTIONS(2533), - [anon_sym_varray] = ACTIONS(2533), - [anon_sym_darray] = ACTIONS(2533), - [anon_sym_vec] = ACTIONS(2533), - [anon_sym_dict] = ACTIONS(2533), - [anon_sym_keyset] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_PLUS_PLUS] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2535), - [anon_sym_await] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_interface] = ACTIONS(2533), - [anon_sym_class] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_abstract] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2535), - [sym_final_modifier] = ACTIONS(2533), - [sym_xhp_modifier] = ACTIONS(2533), - [sym_xhp_identifier] = ACTIONS(2533), - [sym_xhp_class_identifier] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2417), + [sym_variable] = ACTIONS(2419), + [sym_pipe_variable] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_newtype] = ACTIONS(2417), + [anon_sym_shape] = ACTIONS(2417), + [anon_sym_tuple] = ACTIONS(2417), + [anon_sym_clone] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_include] = ACTIONS(2417), + [anon_sym_include_once] = ACTIONS(2417), + [anon_sym_require] = ACTIONS(2417), + [anon_sym_require_once] = ACTIONS(2417), + [anon_sym_BSLASH] = ACTIONS(2419), + [anon_sym_self] = ACTIONS(2417), + [anon_sym_parent] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_LT_LT] = ACTIONS(2417), + [anon_sym_LT_LT_LT] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_echo] = ACTIONS(2417), + [anon_sym_unset] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_concurrent] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_elseif] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_switch] = ACTIONS(2417), + [anon_sym_case] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_foreach] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_using] = ACTIONS(2417), + [sym_float] = ACTIONS(2419), + [sym_integer] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_True] = ACTIONS(2417), + [anon_sym_TRUE] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_False] = ACTIONS(2417), + [anon_sym_FALSE] = ACTIONS(2417), + [anon_sym_null] = ACTIONS(2417), + [anon_sym_Null] = ACTIONS(2417), + [anon_sym_NULL] = ACTIONS(2417), + [sym_string] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_array] = ACTIONS(2417), + [anon_sym_varray] = ACTIONS(2417), + [anon_sym_darray] = ACTIONS(2417), + [anon_sym_vec] = ACTIONS(2417), + [anon_sym_dict] = ACTIONS(2417), + [anon_sym_keyset] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_interface] = ACTIONS(2417), + [anon_sym_class] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_abstract] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2419), + [sym_final_modifier] = ACTIONS(2417), + [sym_xhp_modifier] = ACTIONS(2417), + [sym_xhp_identifier] = ACTIONS(2417), + [sym_xhp_class_identifier] = ACTIONS(2419), [sym_comment] = ACTIONS(3), }, [847] = { - [sym_identifier] = ACTIONS(2537), - [sym_variable] = ACTIONS(2539), - [sym_pipe_variable] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2537), - [anon_sym_newtype] = ACTIONS(2537), - [anon_sym_shape] = ACTIONS(2537), - [anon_sym_tuple] = ACTIONS(2537), - [anon_sym_clone] = ACTIONS(2537), - [anon_sym_new] = ACTIONS(2537), - [anon_sym_print] = ACTIONS(2537), - [anon_sym_namespace] = ACTIONS(2537), - [anon_sym_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2537), - [anon_sym_LT_LT] = ACTIONS(2537), - [anon_sym_LT_LT_LT] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_throw] = ACTIONS(2537), - [anon_sym_echo] = ACTIONS(2537), - [anon_sym_unset] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_concurrent] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_function] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_elseif] = ACTIONS(2537), - [anon_sym_else] = ACTIONS(2537), - [anon_sym_switch] = ACTIONS(2537), - [anon_sym_case] = ACTIONS(2537), - [anon_sym_default] = ACTIONS(2537), - [anon_sym_foreach] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_do] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [anon_sym_using] = ACTIONS(2537), - [sym_float] = ACTIONS(2539), - [sym_integer] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_True] = ACTIONS(2537), - [anon_sym_TRUE] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_False] = ACTIONS(2537), - [anon_sym_FALSE] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2537), - [anon_sym_Null] = ACTIONS(2537), - [anon_sym_NULL] = ACTIONS(2537), - [sym_string] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_TILDE] = ACTIONS(2539), - [anon_sym_array] = ACTIONS(2537), - [anon_sym_varray] = ACTIONS(2537), - [anon_sym_darray] = ACTIONS(2537), - [anon_sym_vec] = ACTIONS(2537), - [anon_sym_dict] = ACTIONS(2537), - [anon_sym_keyset] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_await] = ACTIONS(2537), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_trait] = ACTIONS(2537), - [anon_sym_interface] = ACTIONS(2537), - [anon_sym_class] = ACTIONS(2537), - [anon_sym_enum] = ACTIONS(2537), - [anon_sym_abstract] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2539), - [sym_final_modifier] = ACTIONS(2537), - [sym_xhp_modifier] = ACTIONS(2537), - [sym_xhp_identifier] = ACTIONS(2537), - [sym_xhp_class_identifier] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2421), + [sym_variable] = ACTIONS(2423), + [sym_pipe_variable] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_newtype] = ACTIONS(2421), + [anon_sym_shape] = ACTIONS(2421), + [anon_sym_tuple] = ACTIONS(2421), + [anon_sym_clone] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_print] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_include] = ACTIONS(2421), + [anon_sym_include_once] = ACTIONS(2421), + [anon_sym_require] = ACTIONS(2421), + [anon_sym_require_once] = ACTIONS(2421), + [anon_sym_BSLASH] = ACTIONS(2423), + [anon_sym_self] = ACTIONS(2421), + [anon_sym_parent] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_LT_LT_LT] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_throw] = ACTIONS(2421), + [anon_sym_echo] = ACTIONS(2421), + [anon_sym_unset] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_concurrent] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_elseif] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_switch] = ACTIONS(2421), + [anon_sym_case] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_foreach] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_using] = ACTIONS(2421), + [sym_float] = ACTIONS(2423), + [sym_integer] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_True] = ACTIONS(2421), + [anon_sym_TRUE] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_False] = ACTIONS(2421), + [anon_sym_FALSE] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2421), + [anon_sym_Null] = ACTIONS(2421), + [anon_sym_NULL] = ACTIONS(2421), + [sym_string] = ACTIONS(2423), + [anon_sym_AT] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_array] = ACTIONS(2421), + [anon_sym_varray] = ACTIONS(2421), + [anon_sym_darray] = ACTIONS(2421), + [anon_sym_vec] = ACTIONS(2421), + [anon_sym_dict] = ACTIONS(2421), + [anon_sym_keyset] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_class] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_abstract] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2423), + [sym_final_modifier] = ACTIONS(2421), + [sym_xhp_modifier] = ACTIONS(2421), + [sym_xhp_identifier] = ACTIONS(2421), + [sym_xhp_class_identifier] = ACTIONS(2423), [sym_comment] = ACTIONS(3), }, [848] = { - [sym_identifier] = ACTIONS(2541), - [sym_variable] = ACTIONS(2543), - [sym_pipe_variable] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_newtype] = ACTIONS(2541), - [anon_sym_shape] = ACTIONS(2541), - [anon_sym_tuple] = ACTIONS(2541), - [anon_sym_clone] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), - [anon_sym_LT_LT_LT] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_echo] = ACTIONS(2541), - [anon_sym_unset] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_concurrent] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2541), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_case] = ACTIONS(2541), - [anon_sym_default] = ACTIONS(2541), - [anon_sym_foreach] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [sym_float] = ACTIONS(2543), - [sym_integer] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_True] = ACTIONS(2541), - [anon_sym_TRUE] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_False] = ACTIONS(2541), - [anon_sym_FALSE] = ACTIONS(2541), - [anon_sym_null] = ACTIONS(2541), - [anon_sym_Null] = ACTIONS(2541), - [anon_sym_NULL] = ACTIONS(2541), - [sym_string] = ACTIONS(2543), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_array] = ACTIONS(2541), - [anon_sym_varray] = ACTIONS(2541), - [anon_sym_darray] = ACTIONS(2541), - [anon_sym_vec] = ACTIONS(2541), - [anon_sym_dict] = ACTIONS(2541), - [anon_sym_keyset] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2543), - [sym_final_modifier] = ACTIONS(2541), - [sym_xhp_modifier] = ACTIONS(2541), - [sym_xhp_identifier] = ACTIONS(2541), - [sym_xhp_class_identifier] = ACTIONS(2543), + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_elseif] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, [849] = { - [sym_identifier] = ACTIONS(2545), - [sym_variable] = ACTIONS(2547), - [sym_pipe_variable] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_newtype] = ACTIONS(2545), - [anon_sym_shape] = ACTIONS(2545), - [anon_sym_tuple] = ACTIONS(2545), - [anon_sym_clone] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_print] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), - [anon_sym_LT_LT_LT] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_echo] = ACTIONS(2545), - [anon_sym_unset] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_concurrent] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_elseif] = ACTIONS(2545), - [anon_sym_else] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(2545), - [anon_sym_default] = ACTIONS(2545), - [anon_sym_foreach] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [sym_float] = ACTIONS(2547), - [sym_integer] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_True] = ACTIONS(2545), - [anon_sym_TRUE] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_False] = ACTIONS(2545), - [anon_sym_FALSE] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_Null] = ACTIONS(2545), - [anon_sym_NULL] = ACTIONS(2545), - [sym_string] = ACTIONS(2547), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_array] = ACTIONS(2545), - [anon_sym_varray] = ACTIONS(2545), - [anon_sym_darray] = ACTIONS(2545), - [anon_sym_vec] = ACTIONS(2545), - [anon_sym_dict] = ACTIONS(2545), - [anon_sym_keyset] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2547), - [sym_final_modifier] = ACTIONS(2545), - [sym_xhp_modifier] = ACTIONS(2545), - [sym_xhp_identifier] = ACTIONS(2545), - [sym_xhp_class_identifier] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2425), + [sym_variable] = ACTIONS(2427), + [sym_pipe_variable] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_newtype] = ACTIONS(2425), + [anon_sym_shape] = ACTIONS(2425), + [anon_sym_tuple] = ACTIONS(2425), + [anon_sym_clone] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_print] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_include] = ACTIONS(2425), + [anon_sym_include_once] = ACTIONS(2425), + [anon_sym_require] = ACTIONS(2425), + [anon_sym_require_once] = ACTIONS(2425), + [anon_sym_BSLASH] = ACTIONS(2427), + [anon_sym_self] = ACTIONS(2425), + [anon_sym_parent] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_LT_LT_LT] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_echo] = ACTIONS(2425), + [anon_sym_unset] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_concurrent] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_elseif] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_foreach] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [sym_float] = ACTIONS(2427), + [sym_integer] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_True] = ACTIONS(2425), + [anon_sym_TRUE] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_False] = ACTIONS(2425), + [anon_sym_FALSE] = ACTIONS(2425), + [anon_sym_null] = ACTIONS(2425), + [anon_sym_Null] = ACTIONS(2425), + [anon_sym_NULL] = ACTIONS(2425), + [sym_string] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_array] = ACTIONS(2425), + [anon_sym_varray] = ACTIONS(2425), + [anon_sym_darray] = ACTIONS(2425), + [anon_sym_vec] = ACTIONS(2425), + [anon_sym_dict] = ACTIONS(2425), + [anon_sym_keyset] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_list] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_interface] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_abstract] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2427), + [sym_final_modifier] = ACTIONS(2425), + [sym_xhp_modifier] = ACTIONS(2425), + [sym_xhp_identifier] = ACTIONS(2425), + [sym_xhp_class_identifier] = ACTIONS(2427), [sym_comment] = ACTIONS(3), }, [850] = { - [sym_identifier] = ACTIONS(2549), - [sym_variable] = ACTIONS(2551), - [sym_pipe_variable] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_newtype] = ACTIONS(2549), - [anon_sym_shape] = ACTIONS(2549), - [anon_sym_tuple] = ACTIONS(2549), - [anon_sym_clone] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_print] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), - [anon_sym_LT_LT_LT] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_echo] = ACTIONS(2549), - [anon_sym_unset] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_concurrent] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_elseif] = ACTIONS(2549), - [anon_sym_else] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_case] = ACTIONS(2549), - [anon_sym_default] = ACTIONS(2549), - [anon_sym_foreach] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [sym_float] = ACTIONS(2551), - [sym_integer] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_True] = ACTIONS(2549), - [anon_sym_TRUE] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_False] = ACTIONS(2549), - [anon_sym_FALSE] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2549), - [anon_sym_Null] = ACTIONS(2549), - [anon_sym_NULL] = ACTIONS(2549), - [sym_string] = ACTIONS(2551), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_array] = ACTIONS(2549), - [anon_sym_varray] = ACTIONS(2549), - [anon_sym_darray] = ACTIONS(2549), - [anon_sym_vec] = ACTIONS(2549), - [anon_sym_dict] = ACTIONS(2549), - [anon_sym_keyset] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2551), - [sym_final_modifier] = ACTIONS(2549), - [sym_xhp_modifier] = ACTIONS(2549), - [sym_xhp_identifier] = ACTIONS(2549), - [sym_xhp_class_identifier] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - }, - [851] = { - [sym_identifier] = ACTIONS(2553), - [sym_variable] = ACTIONS(2555), - [sym_pipe_variable] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2553), - [anon_sym_newtype] = ACTIONS(2553), - [anon_sym_shape] = ACTIONS(2553), - [anon_sym_tuple] = ACTIONS(2553), - [anon_sym_clone] = ACTIONS(2553), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_namespace] = ACTIONS(2553), - [anon_sym_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_LT_LT] = ACTIONS(2553), - [anon_sym_LT_LT_LT] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_throw] = ACTIONS(2553), - [anon_sym_echo] = ACTIONS(2553), - [anon_sym_unset] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_concurrent] = ACTIONS(2553), - [anon_sym_use] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_elseif] = ACTIONS(2553), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_foreach] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(2553), - [sym_float] = ACTIONS(2555), - [sym_integer] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_True] = ACTIONS(2553), - [anon_sym_TRUE] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_False] = ACTIONS(2553), - [anon_sym_FALSE] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_Null] = ACTIONS(2553), - [anon_sym_NULL] = ACTIONS(2553), - [sym_string] = ACTIONS(2555), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_array] = ACTIONS(2553), - [anon_sym_varray] = ACTIONS(2553), - [anon_sym_darray] = ACTIONS(2553), - [anon_sym_vec] = ACTIONS(2553), - [anon_sym_dict] = ACTIONS(2553), - [anon_sym_keyset] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_trait] = ACTIONS(2553), - [anon_sym_interface] = ACTIONS(2553), - [anon_sym_class] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2555), - [sym_final_modifier] = ACTIONS(2553), - [sym_xhp_modifier] = ACTIONS(2553), - [sym_xhp_identifier] = ACTIONS(2553), - [sym_xhp_class_identifier] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2429), + [sym_variable] = ACTIONS(2431), + [sym_pipe_variable] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_newtype] = ACTIONS(2429), + [anon_sym_shape] = ACTIONS(2429), + [anon_sym_tuple] = ACTIONS(2429), + [anon_sym_clone] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_include] = ACTIONS(2429), + [anon_sym_include_once] = ACTIONS(2429), + [anon_sym_require] = ACTIONS(2429), + [anon_sym_require_once] = ACTIONS(2429), + [anon_sym_BSLASH] = ACTIONS(2431), + [anon_sym_self] = ACTIONS(2429), + [anon_sym_parent] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_echo] = ACTIONS(2429), + [anon_sym_unset] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_concurrent] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_elseif] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_foreach] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [sym_float] = ACTIONS(2431), + [sym_integer] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_True] = ACTIONS(2429), + [anon_sym_TRUE] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_False] = ACTIONS(2429), + [anon_sym_FALSE] = ACTIONS(2429), + [anon_sym_null] = ACTIONS(2429), + [anon_sym_Null] = ACTIONS(2429), + [anon_sym_NULL] = ACTIONS(2429), + [sym_string] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_array] = ACTIONS(2429), + [anon_sym_varray] = ACTIONS(2429), + [anon_sym_darray] = ACTIONS(2429), + [anon_sym_vec] = ACTIONS(2429), + [anon_sym_dict] = ACTIONS(2429), + [anon_sym_keyset] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_abstract] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2431), + [sym_final_modifier] = ACTIONS(2429), + [sym_xhp_modifier] = ACTIONS(2429), + [sym_xhp_identifier] = ACTIONS(2429), + [sym_xhp_class_identifier] = ACTIONS(2431), + [sym_comment] = ACTIONS(3), + }, + [851] = { + [sym_identifier] = ACTIONS(2433), + [sym_variable] = ACTIONS(2435), + [sym_pipe_variable] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_newtype] = ACTIONS(2433), + [anon_sym_shape] = ACTIONS(2433), + [anon_sym_tuple] = ACTIONS(2433), + [anon_sym_clone] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_print] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_include] = ACTIONS(2433), + [anon_sym_include_once] = ACTIONS(2433), + [anon_sym_require] = ACTIONS(2433), + [anon_sym_require_once] = ACTIONS(2433), + [anon_sym_BSLASH] = ACTIONS(2435), + [anon_sym_self] = ACTIONS(2433), + [anon_sym_parent] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_LT_LT_LT] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_echo] = ACTIONS(2433), + [anon_sym_unset] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_concurrent] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_elseif] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_case] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_foreach] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [sym_float] = ACTIONS(2435), + [sym_integer] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_True] = ACTIONS(2433), + [anon_sym_TRUE] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_False] = ACTIONS(2433), + [anon_sym_FALSE] = ACTIONS(2433), + [anon_sym_null] = ACTIONS(2433), + [anon_sym_Null] = ACTIONS(2433), + [anon_sym_NULL] = ACTIONS(2433), + [sym_string] = ACTIONS(2435), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_array] = ACTIONS(2433), + [anon_sym_varray] = ACTIONS(2433), + [anon_sym_darray] = ACTIONS(2433), + [anon_sym_vec] = ACTIONS(2433), + [anon_sym_dict] = ACTIONS(2433), + [anon_sym_keyset] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_abstract] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2435), + [sym_final_modifier] = ACTIONS(2433), + [sym_xhp_modifier] = ACTIONS(2433), + [sym_xhp_identifier] = ACTIONS(2433), + [sym_xhp_class_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(3), }, [852] = { - [sym_identifier] = ACTIONS(2557), - [sym_variable] = ACTIONS(2559), - [sym_pipe_variable] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_newtype] = ACTIONS(2557), - [anon_sym_shape] = ACTIONS(2557), - [anon_sym_tuple] = ACTIONS(2557), - [anon_sym_clone] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_print] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_LT_LT] = ACTIONS(2557), - [anon_sym_LT_LT_LT] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_echo] = ACTIONS(2557), - [anon_sym_unset] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_concurrent] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_elseif] = ACTIONS(2557), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_foreach] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [sym_float] = ACTIONS(2559), - [sym_integer] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_True] = ACTIONS(2557), - [anon_sym_TRUE] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_False] = ACTIONS(2557), - [anon_sym_FALSE] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2557), - [anon_sym_Null] = ACTIONS(2557), - [anon_sym_NULL] = ACTIONS(2557), - [sym_string] = ACTIONS(2559), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_array] = ACTIONS(2557), - [anon_sym_varray] = ACTIONS(2557), - [anon_sym_darray] = ACTIONS(2557), - [anon_sym_vec] = ACTIONS(2557), - [anon_sym_dict] = ACTIONS(2557), - [anon_sym_keyset] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_trait] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2559), - [sym_final_modifier] = ACTIONS(2557), - [sym_xhp_modifier] = ACTIONS(2557), - [sym_xhp_identifier] = ACTIONS(2557), - [sym_xhp_class_identifier] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2437), + [sym_variable] = ACTIONS(2439), + [sym_pipe_variable] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_newtype] = ACTIONS(2437), + [anon_sym_shape] = ACTIONS(2437), + [anon_sym_tuple] = ACTIONS(2437), + [anon_sym_clone] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_print] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_include] = ACTIONS(2437), + [anon_sym_include_once] = ACTIONS(2437), + [anon_sym_require] = ACTIONS(2437), + [anon_sym_require_once] = ACTIONS(2437), + [anon_sym_BSLASH] = ACTIONS(2439), + [anon_sym_self] = ACTIONS(2437), + [anon_sym_parent] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_LT_LT] = ACTIONS(2437), + [anon_sym_LT_LT_LT] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_echo] = ACTIONS(2437), + [anon_sym_unset] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_concurrent] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_case] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_foreach] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [sym_float] = ACTIONS(2439), + [sym_integer] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_True] = ACTIONS(2437), + [anon_sym_TRUE] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_False] = ACTIONS(2437), + [anon_sym_FALSE] = ACTIONS(2437), + [anon_sym_null] = ACTIONS(2437), + [anon_sym_Null] = ACTIONS(2437), + [anon_sym_NULL] = ACTIONS(2437), + [sym_string] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_array] = ACTIONS(2437), + [anon_sym_varray] = ACTIONS(2437), + [anon_sym_darray] = ACTIONS(2437), + [anon_sym_vec] = ACTIONS(2437), + [anon_sym_dict] = ACTIONS(2437), + [anon_sym_keyset] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_interface] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_abstract] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [sym_final_modifier] = ACTIONS(2437), + [sym_xhp_modifier] = ACTIONS(2437), + [sym_xhp_identifier] = ACTIONS(2437), + [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, [853] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2441), + [sym_variable] = ACTIONS(2443), + [sym_pipe_variable] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_newtype] = ACTIONS(2441), + [anon_sym_shape] = ACTIONS(2441), + [anon_sym_tuple] = ACTIONS(2441), + [anon_sym_clone] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_include] = ACTIONS(2441), + [anon_sym_include_once] = ACTIONS(2441), + [anon_sym_require] = ACTIONS(2441), + [anon_sym_require_once] = ACTIONS(2441), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_self] = ACTIONS(2441), + [anon_sym_parent] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_LT] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_echo] = ACTIONS(2441), + [anon_sym_unset] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_concurrent] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_elseif] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_case] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_foreach] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [sym_float] = ACTIONS(2443), + [sym_integer] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_True] = ACTIONS(2441), + [anon_sym_TRUE] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_False] = ACTIONS(2441), + [anon_sym_FALSE] = ACTIONS(2441), + [anon_sym_null] = ACTIONS(2441), + [anon_sym_Null] = ACTIONS(2441), + [anon_sym_NULL] = ACTIONS(2441), + [sym_string] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_array] = ACTIONS(2441), + [anon_sym_varray] = ACTIONS(2441), + [anon_sym_darray] = ACTIONS(2441), + [anon_sym_vec] = ACTIONS(2441), + [anon_sym_dict] = ACTIONS(2441), + [anon_sym_keyset] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_abstract] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2443), + [sym_final_modifier] = ACTIONS(2441), + [sym_xhp_modifier] = ACTIONS(2441), + [sym_xhp_identifier] = ACTIONS(2441), + [sym_xhp_class_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(3), }, [854] = { - [sym_identifier] = ACTIONS(2561), - [sym_variable] = ACTIONS(2563), - [sym_pipe_variable] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_newtype] = ACTIONS(2561), - [anon_sym_shape] = ACTIONS(2561), - [anon_sym_tuple] = ACTIONS(2561), - [anon_sym_clone] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_print] = ACTIONS(2561), - [anon_sym_namespace] = ACTIONS(2561), - [anon_sym_include] = ACTIONS(2561), - [anon_sym_include_once] = ACTIONS(2561), - [anon_sym_require] = ACTIONS(2561), - [anon_sym_require_once] = ACTIONS(2561), - [anon_sym_BSLASH] = ACTIONS(2563), - [anon_sym_self] = ACTIONS(2561), - [anon_sym_parent] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2561), - [anon_sym_LT_LT] = ACTIONS(2561), - [anon_sym_LT_LT_LT] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_echo] = ACTIONS(2561), - [anon_sym_unset] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_concurrent] = ACTIONS(2561), - [anon_sym_use] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_elseif] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_switch] = ACTIONS(2561), - [anon_sym_case] = ACTIONS(2561), - [anon_sym_default] = ACTIONS(2561), - [anon_sym_foreach] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(2561), - [sym_float] = ACTIONS(2563), - [sym_integer] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2561), - [anon_sym_True] = ACTIONS(2561), - [anon_sym_TRUE] = ACTIONS(2561), - [anon_sym_false] = ACTIONS(2561), - [anon_sym_False] = ACTIONS(2561), - [anon_sym_FALSE] = ACTIONS(2561), - [anon_sym_null] = ACTIONS(2561), - [anon_sym_Null] = ACTIONS(2561), - [anon_sym_NULL] = ACTIONS(2561), - [sym_string] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_array] = ACTIONS(2561), - [anon_sym_varray] = ACTIONS(2561), - [anon_sym_darray] = ACTIONS(2561), - [anon_sym_vec] = ACTIONS(2561), - [anon_sym_dict] = ACTIONS(2561), - [anon_sym_keyset] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_list] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_await] = ACTIONS(2561), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_trait] = ACTIONS(2561), - [anon_sym_interface] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2561), - [anon_sym_abstract] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2563), - [sym_final_modifier] = ACTIONS(2561), - [sym_xhp_modifier] = ACTIONS(2561), - [sym_xhp_identifier] = ACTIONS(2561), - [sym_xhp_class_identifier] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_case] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, [855] = { - [sym_identifier] = ACTIONS(2565), - [sym_variable] = ACTIONS(2567), - [sym_pipe_variable] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_newtype] = ACTIONS(2565), - [anon_sym_shape] = ACTIONS(2565), - [anon_sym_tuple] = ACTIONS(2565), - [anon_sym_clone] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_print] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_include] = ACTIONS(2565), - [anon_sym_include_once] = ACTIONS(2565), - [anon_sym_require] = ACTIONS(2565), - [anon_sym_require_once] = ACTIONS(2565), - [anon_sym_BSLASH] = ACTIONS(2567), - [anon_sym_self] = ACTIONS(2565), - [anon_sym_parent] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_LT_LT] = ACTIONS(2565), - [anon_sym_LT_LT_LT] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_echo] = ACTIONS(2565), - [anon_sym_unset] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_concurrent] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_elseif] = ACTIONS(2565), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_case] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_foreach] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [sym_float] = ACTIONS(2567), - [sym_integer] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_True] = ACTIONS(2565), - [anon_sym_TRUE] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [anon_sym_False] = ACTIONS(2565), - [anon_sym_FALSE] = ACTIONS(2565), - [anon_sym_null] = ACTIONS(2565), - [anon_sym_Null] = ACTIONS(2565), - [anon_sym_NULL] = ACTIONS(2565), - [sym_string] = ACTIONS(2567), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_array] = ACTIONS(2565), - [anon_sym_varray] = ACTIONS(2565), - [anon_sym_darray] = ACTIONS(2565), - [anon_sym_vec] = ACTIONS(2565), - [anon_sym_dict] = ACTIONS(2565), - [anon_sym_keyset] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2567), - [sym_final_modifier] = ACTIONS(2565), - [sym_xhp_modifier] = ACTIONS(2565), - [sym_xhp_identifier] = ACTIONS(2565), - [sym_xhp_class_identifier] = ACTIONS(2567), + [sym_identifier] = ACTIONS(2445), + [sym_variable] = ACTIONS(2447), + [sym_pipe_variable] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_newtype] = ACTIONS(2445), + [anon_sym_shape] = ACTIONS(2445), + [anon_sym_tuple] = ACTIONS(2445), + [anon_sym_clone] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_include] = ACTIONS(2445), + [anon_sym_include_once] = ACTIONS(2445), + [anon_sym_require] = ACTIONS(2445), + [anon_sym_require_once] = ACTIONS(2445), + [anon_sym_BSLASH] = ACTIONS(2447), + [anon_sym_self] = ACTIONS(2445), + [anon_sym_parent] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_LT_LT_LT] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_echo] = ACTIONS(2445), + [anon_sym_unset] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_concurrent] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_elseif] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_case] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_foreach] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [sym_float] = ACTIONS(2447), + [sym_integer] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_True] = ACTIONS(2445), + [anon_sym_TRUE] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_False] = ACTIONS(2445), + [anon_sym_FALSE] = ACTIONS(2445), + [anon_sym_null] = ACTIONS(2445), + [anon_sym_Null] = ACTIONS(2445), + [anon_sym_NULL] = ACTIONS(2445), + [sym_string] = ACTIONS(2447), + [anon_sym_AT] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_array] = ACTIONS(2445), + [anon_sym_varray] = ACTIONS(2445), + [anon_sym_darray] = ACTIONS(2445), + [anon_sym_vec] = ACTIONS(2445), + [anon_sym_dict] = ACTIONS(2445), + [anon_sym_keyset] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_list] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_abstract] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2447), + [sym_final_modifier] = ACTIONS(2445), + [sym_xhp_modifier] = ACTIONS(2445), + [sym_xhp_identifier] = ACTIONS(2445), + [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, [856] = { - [sym_identifier] = ACTIONS(2569), - [sym_variable] = ACTIONS(2571), - [sym_pipe_variable] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_newtype] = ACTIONS(2569), - [anon_sym_shape] = ACTIONS(2569), - [anon_sym_tuple] = ACTIONS(2569), - [anon_sym_clone] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_print] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_include] = ACTIONS(2569), - [anon_sym_include_once] = ACTIONS(2569), - [anon_sym_require] = ACTIONS(2569), - [anon_sym_require_once] = ACTIONS(2569), - [anon_sym_BSLASH] = ACTIONS(2571), - [anon_sym_self] = ACTIONS(2569), - [anon_sym_parent] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2569), - [anon_sym_LT_LT_LT] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_echo] = ACTIONS(2569), - [anon_sym_unset] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_concurrent] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_elseif] = ACTIONS(2569), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_case] = ACTIONS(2569), - [anon_sym_default] = ACTIONS(2569), - [anon_sym_foreach] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [sym_float] = ACTIONS(2571), - [sym_integer] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_True] = ACTIONS(2569), - [anon_sym_TRUE] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [anon_sym_False] = ACTIONS(2569), - [anon_sym_FALSE] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2569), - [anon_sym_Null] = ACTIONS(2569), - [anon_sym_NULL] = ACTIONS(2569), - [sym_string] = ACTIONS(2571), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_array] = ACTIONS(2569), - [anon_sym_varray] = ACTIONS(2569), - [anon_sym_darray] = ACTIONS(2569), - [anon_sym_vec] = ACTIONS(2569), - [anon_sym_dict] = ACTIONS(2569), - [anon_sym_keyset] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_trait] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2571), - [sym_final_modifier] = ACTIONS(2569), - [sym_xhp_modifier] = ACTIONS(2569), - [sym_xhp_identifier] = ACTIONS(2569), - [sym_xhp_class_identifier] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - }, - [857] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2449), + [sym_variable] = ACTIONS(2451), + [sym_pipe_variable] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_newtype] = ACTIONS(2449), + [anon_sym_shape] = ACTIONS(2449), + [anon_sym_tuple] = ACTIONS(2449), + [anon_sym_clone] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_print] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_include] = ACTIONS(2449), + [anon_sym_include_once] = ACTIONS(2449), + [anon_sym_require] = ACTIONS(2449), + [anon_sym_require_once] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2451), + [anon_sym_self] = ACTIONS(2449), + [anon_sym_parent] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_LT_LT_LT] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_echo] = ACTIONS(2449), + [anon_sym_unset] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_concurrent] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_foreach] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [sym_float] = ACTIONS(2451), + [sym_integer] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_True] = ACTIONS(2449), + [anon_sym_TRUE] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_False] = ACTIONS(2449), + [anon_sym_FALSE] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [anon_sym_Null] = ACTIONS(2449), + [anon_sym_NULL] = ACTIONS(2449), + [sym_string] = ACTIONS(2451), + [anon_sym_AT] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_array] = ACTIONS(2449), + [anon_sym_varray] = ACTIONS(2449), + [anon_sym_darray] = ACTIONS(2449), + [anon_sym_vec] = ACTIONS(2449), + [anon_sym_dict] = ACTIONS(2449), + [anon_sym_keyset] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_await] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_abstract] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2451), + [sym_final_modifier] = ACTIONS(2449), + [sym_xhp_modifier] = ACTIONS(2449), + [sym_xhp_identifier] = ACTIONS(2449), + [sym_xhp_class_identifier] = ACTIONS(2451), + [sym_comment] = ACTIONS(3), + }, + [857] = { + [sym_identifier] = ACTIONS(2453), + [sym_variable] = ACTIONS(2455), + [sym_pipe_variable] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_newtype] = ACTIONS(2453), + [anon_sym_shape] = ACTIONS(2453), + [anon_sym_tuple] = ACTIONS(2453), + [anon_sym_clone] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_include] = ACTIONS(2453), + [anon_sym_include_once] = ACTIONS(2453), + [anon_sym_require] = ACTIONS(2453), + [anon_sym_require_once] = ACTIONS(2453), + [anon_sym_BSLASH] = ACTIONS(2455), + [anon_sym_self] = ACTIONS(2453), + [anon_sym_parent] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_LT_LT_LT] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_throw] = ACTIONS(2453), + [anon_sym_echo] = ACTIONS(2453), + [anon_sym_unset] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_concurrent] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_elseif] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_case] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_foreach] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_using] = ACTIONS(2453), + [sym_float] = ACTIONS(2455), + [sym_integer] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_True] = ACTIONS(2453), + [anon_sym_TRUE] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_False] = ACTIONS(2453), + [anon_sym_FALSE] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [anon_sym_Null] = ACTIONS(2453), + [anon_sym_NULL] = ACTIONS(2453), + [sym_string] = ACTIONS(2455), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_array] = ACTIONS(2453), + [anon_sym_varray] = ACTIONS(2453), + [anon_sym_darray] = ACTIONS(2453), + [anon_sym_vec] = ACTIONS(2453), + [anon_sym_dict] = ACTIONS(2453), + [anon_sym_keyset] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_abstract] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2455), + [sym_final_modifier] = ACTIONS(2453), + [sym_xhp_modifier] = ACTIONS(2453), + [sym_xhp_identifier] = ACTIONS(2453), + [sym_xhp_class_identifier] = ACTIONS(2455), [sym_comment] = ACTIONS(3), }, [858] = { - [sym_identifier] = ACTIONS(2573), - [sym_variable] = ACTIONS(2575), - [sym_pipe_variable] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_newtype] = ACTIONS(2573), - [anon_sym_shape] = ACTIONS(2573), - [anon_sym_tuple] = ACTIONS(2573), - [anon_sym_clone] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_print] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_include] = ACTIONS(2573), - [anon_sym_include_once] = ACTIONS(2573), - [anon_sym_require] = ACTIONS(2573), - [anon_sym_require_once] = ACTIONS(2573), - [anon_sym_BSLASH] = ACTIONS(2575), - [anon_sym_self] = ACTIONS(2573), - [anon_sym_parent] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_LT_LT_LT] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_echo] = ACTIONS(2573), - [anon_sym_unset] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_concurrent] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_elseif] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_foreach] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [sym_float] = ACTIONS(2575), - [sym_integer] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2573), - [anon_sym_True] = ACTIONS(2573), - [anon_sym_TRUE] = ACTIONS(2573), - [anon_sym_false] = ACTIONS(2573), - [anon_sym_False] = ACTIONS(2573), - [anon_sym_FALSE] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2573), - [anon_sym_Null] = ACTIONS(2573), - [anon_sym_NULL] = ACTIONS(2573), - [sym_string] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_array] = ACTIONS(2573), - [anon_sym_varray] = ACTIONS(2573), - [anon_sym_darray] = ACTIONS(2573), - [anon_sym_vec] = ACTIONS(2573), - [anon_sym_dict] = ACTIONS(2573), - [anon_sym_keyset] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_list] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_trait] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2575), - [sym_final_modifier] = ACTIONS(2573), - [sym_xhp_modifier] = ACTIONS(2573), - [sym_xhp_identifier] = ACTIONS(2573), - [sym_xhp_class_identifier] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2457), + [sym_variable] = ACTIONS(2459), + [sym_pipe_variable] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_newtype] = ACTIONS(2457), + [anon_sym_shape] = ACTIONS(2457), + [anon_sym_tuple] = ACTIONS(2457), + [anon_sym_clone] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_print] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_include] = ACTIONS(2457), + [anon_sym_include_once] = ACTIONS(2457), + [anon_sym_require] = ACTIONS(2457), + [anon_sym_require_once] = ACTIONS(2457), + [anon_sym_BSLASH] = ACTIONS(2459), + [anon_sym_self] = ACTIONS(2457), + [anon_sym_parent] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_LT_LT_LT] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_echo] = ACTIONS(2457), + [anon_sym_unset] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_concurrent] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_elseif] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_foreach] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_integer] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_True] = ACTIONS(2457), + [anon_sym_TRUE] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_False] = ACTIONS(2457), + [anon_sym_FALSE] = ACTIONS(2457), + [anon_sym_null] = ACTIONS(2457), + [anon_sym_Null] = ACTIONS(2457), + [anon_sym_NULL] = ACTIONS(2457), + [sym_string] = ACTIONS(2459), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_array] = ACTIONS(2457), + [anon_sym_varray] = ACTIONS(2457), + [anon_sym_darray] = ACTIONS(2457), + [anon_sym_vec] = ACTIONS(2457), + [anon_sym_dict] = ACTIONS(2457), + [anon_sym_keyset] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2459), + [sym_final_modifier] = ACTIONS(2457), + [sym_xhp_modifier] = ACTIONS(2457), + [sym_xhp_identifier] = ACTIONS(2457), + [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, [859] = { - [sym_identifier] = ACTIONS(2577), - [sym_variable] = ACTIONS(2579), - [sym_pipe_variable] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_newtype] = ACTIONS(2577), - [anon_sym_shape] = ACTIONS(2577), - [anon_sym_tuple] = ACTIONS(2577), - [anon_sym_clone] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_include] = ACTIONS(2577), - [anon_sym_include_once] = ACTIONS(2577), - [anon_sym_require] = ACTIONS(2577), - [anon_sym_require_once] = ACTIONS(2577), - [anon_sym_BSLASH] = ACTIONS(2579), - [anon_sym_self] = ACTIONS(2577), - [anon_sym_parent] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_LT_LT_LT] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_echo] = ACTIONS(2577), - [anon_sym_unset] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_concurrent] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_elseif] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_foreach] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [sym_float] = ACTIONS(2579), - [sym_integer] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_True] = ACTIONS(2577), - [anon_sym_TRUE] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_False] = ACTIONS(2577), - [anon_sym_FALSE] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2577), - [anon_sym_Null] = ACTIONS(2577), - [anon_sym_NULL] = ACTIONS(2577), - [sym_string] = ACTIONS(2579), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_array] = ACTIONS(2577), - [anon_sym_varray] = ACTIONS(2577), - [anon_sym_darray] = ACTIONS(2577), - [anon_sym_vec] = ACTIONS(2577), - [anon_sym_dict] = ACTIONS(2577), - [anon_sym_keyset] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_list] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_trait] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2579), - [sym_final_modifier] = ACTIONS(2577), - [sym_xhp_modifier] = ACTIONS(2577), - [sym_xhp_identifier] = ACTIONS(2577), - [sym_xhp_class_identifier] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2461), + [sym_variable] = ACTIONS(2463), + [sym_pipe_variable] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_newtype] = ACTIONS(2461), + [anon_sym_shape] = ACTIONS(2461), + [anon_sym_tuple] = ACTIONS(2461), + [anon_sym_clone] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_include] = ACTIONS(2461), + [anon_sym_include_once] = ACTIONS(2461), + [anon_sym_require] = ACTIONS(2461), + [anon_sym_require_once] = ACTIONS(2461), + [anon_sym_BSLASH] = ACTIONS(2463), + [anon_sym_self] = ACTIONS(2461), + [anon_sym_parent] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_LT_LT_LT] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_echo] = ACTIONS(2461), + [anon_sym_unset] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_concurrent] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_function] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_elseif] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_case] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_foreach] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_using] = ACTIONS(2461), + [sym_float] = ACTIONS(2463), + [sym_integer] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_True] = ACTIONS(2461), + [anon_sym_TRUE] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_False] = ACTIONS(2461), + [anon_sym_FALSE] = ACTIONS(2461), + [anon_sym_null] = ACTIONS(2461), + [anon_sym_Null] = ACTIONS(2461), + [anon_sym_NULL] = ACTIONS(2461), + [sym_string] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_array] = ACTIONS(2461), + [anon_sym_varray] = ACTIONS(2461), + [anon_sym_darray] = ACTIONS(2461), + [anon_sym_vec] = ACTIONS(2461), + [anon_sym_dict] = ACTIONS(2461), + [anon_sym_keyset] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_list] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_interface] = ACTIONS(2461), + [anon_sym_class] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_abstract] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2463), + [sym_final_modifier] = ACTIONS(2461), + [sym_xhp_modifier] = ACTIONS(2461), + [sym_xhp_identifier] = ACTIONS(2461), + [sym_xhp_class_identifier] = ACTIONS(2463), [sym_comment] = ACTIONS(3), }, [860] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2465), + [sym_variable] = ACTIONS(2467), + [sym_pipe_variable] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_newtype] = ACTIONS(2465), + [anon_sym_shape] = ACTIONS(2465), + [anon_sym_tuple] = ACTIONS(2465), + [anon_sym_clone] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_include_once] = ACTIONS(2465), + [anon_sym_require] = ACTIONS(2465), + [anon_sym_require_once] = ACTIONS(2465), + [anon_sym_BSLASH] = ACTIONS(2467), + [anon_sym_self] = ACTIONS(2465), + [anon_sym_parent] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_LT_LT_LT] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_echo] = ACTIONS(2465), + [anon_sym_unset] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_concurrent] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_function] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_foreach] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [sym_float] = ACTIONS(2467), + [sym_integer] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_True] = ACTIONS(2465), + [anon_sym_TRUE] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_False] = ACTIONS(2465), + [anon_sym_FALSE] = ACTIONS(2465), + [anon_sym_null] = ACTIONS(2465), + [anon_sym_Null] = ACTIONS(2465), + [anon_sym_NULL] = ACTIONS(2465), + [sym_string] = ACTIONS(2467), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_array] = ACTIONS(2465), + [anon_sym_varray] = ACTIONS(2465), + [anon_sym_darray] = ACTIONS(2465), + [anon_sym_vec] = ACTIONS(2465), + [anon_sym_dict] = ACTIONS(2465), + [anon_sym_keyset] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_abstract] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2467), + [sym_final_modifier] = ACTIONS(2465), + [sym_xhp_modifier] = ACTIONS(2465), + [sym_xhp_identifier] = ACTIONS(2465), + [sym_xhp_class_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(3), }, [861] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2469), + [sym_variable] = ACTIONS(2471), + [sym_pipe_variable] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_newtype] = ACTIONS(2469), + [anon_sym_shape] = ACTIONS(2469), + [anon_sym_tuple] = ACTIONS(2469), + [anon_sym_clone] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_include_once] = ACTIONS(2469), + [anon_sym_require] = ACTIONS(2469), + [anon_sym_require_once] = ACTIONS(2469), + [anon_sym_BSLASH] = ACTIONS(2471), + [anon_sym_self] = ACTIONS(2469), + [anon_sym_parent] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_LT_LT_LT] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_echo] = ACTIONS(2469), + [anon_sym_unset] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_concurrent] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_function] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_elseif] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_case] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_foreach] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [sym_integer] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_True] = ACTIONS(2469), + [anon_sym_TRUE] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_False] = ACTIONS(2469), + [anon_sym_FALSE] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [anon_sym_Null] = ACTIONS(2469), + [anon_sym_NULL] = ACTIONS(2469), + [sym_string] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_array] = ACTIONS(2469), + [anon_sym_varray] = ACTIONS(2469), + [anon_sym_darray] = ACTIONS(2469), + [anon_sym_vec] = ACTIONS(2469), + [anon_sym_dict] = ACTIONS(2469), + [anon_sym_keyset] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_abstract] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2471), + [sym_final_modifier] = ACTIONS(2469), + [sym_xhp_modifier] = ACTIONS(2469), + [sym_xhp_identifier] = ACTIONS(2469), + [sym_xhp_class_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(3), }, [862] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [863] = { - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_elseif] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2473), + [sym_variable] = ACTIONS(2475), + [sym_pipe_variable] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_newtype] = ACTIONS(2473), + [anon_sym_shape] = ACTIONS(2473), + [anon_sym_tuple] = ACTIONS(2473), + [anon_sym_clone] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_include] = ACTIONS(2473), + [anon_sym_include_once] = ACTIONS(2473), + [anon_sym_require] = ACTIONS(2473), + [anon_sym_require_once] = ACTIONS(2473), + [anon_sym_BSLASH] = ACTIONS(2475), + [anon_sym_self] = ACTIONS(2473), + [anon_sym_parent] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_LT_LT_LT] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_throw] = ACTIONS(2473), + [anon_sym_echo] = ACTIONS(2473), + [anon_sym_unset] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_concurrent] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_switch] = ACTIONS(2473), + [anon_sym_case] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_foreach] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_using] = ACTIONS(2473), + [sym_float] = ACTIONS(2475), + [sym_integer] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_True] = ACTIONS(2473), + [anon_sym_TRUE] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_False] = ACTIONS(2473), + [anon_sym_FALSE] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2473), + [anon_sym_Null] = ACTIONS(2473), + [anon_sym_NULL] = ACTIONS(2473), + [sym_string] = ACTIONS(2475), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_array] = ACTIONS(2473), + [anon_sym_varray] = ACTIONS(2473), + [anon_sym_darray] = ACTIONS(2473), + [anon_sym_vec] = ACTIONS(2473), + [anon_sym_dict] = ACTIONS(2473), + [anon_sym_keyset] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_interface] = ACTIONS(2473), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_abstract] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2475), + [sym_final_modifier] = ACTIONS(2473), + [sym_xhp_modifier] = ACTIONS(2473), + [sym_xhp_identifier] = ACTIONS(2473), + [sym_xhp_class_identifier] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + }, + [863] = { + [sym_identifier] = ACTIONS(2477), + [sym_variable] = ACTIONS(2479), + [sym_pipe_variable] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_newtype] = ACTIONS(2477), + [anon_sym_shape] = ACTIONS(2477), + [anon_sym_tuple] = ACTIONS(2477), + [anon_sym_clone] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_include] = ACTIONS(2477), + [anon_sym_include_once] = ACTIONS(2477), + [anon_sym_require] = ACTIONS(2477), + [anon_sym_require_once] = ACTIONS(2477), + [anon_sym_BSLASH] = ACTIONS(2479), + [anon_sym_self] = ACTIONS(2477), + [anon_sym_parent] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT_LT_LT] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_throw] = ACTIONS(2477), + [anon_sym_echo] = ACTIONS(2477), + [anon_sym_unset] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_concurrent] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_case] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_foreach] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_using] = ACTIONS(2477), + [sym_float] = ACTIONS(2479), + [sym_integer] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_True] = ACTIONS(2477), + [anon_sym_TRUE] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_False] = ACTIONS(2477), + [anon_sym_FALSE] = ACTIONS(2477), + [anon_sym_null] = ACTIONS(2477), + [anon_sym_Null] = ACTIONS(2477), + [anon_sym_NULL] = ACTIONS(2477), + [sym_string] = ACTIONS(2479), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_array] = ACTIONS(2477), + [anon_sym_varray] = ACTIONS(2477), + [anon_sym_darray] = ACTIONS(2477), + [anon_sym_vec] = ACTIONS(2477), + [anon_sym_dict] = ACTIONS(2477), + [anon_sym_keyset] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_interface] = ACTIONS(2477), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_abstract] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2479), + [sym_final_modifier] = ACTIONS(2477), + [sym_xhp_modifier] = ACTIONS(2477), + [sym_xhp_identifier] = ACTIONS(2477), + [sym_xhp_class_identifier] = ACTIONS(2479), [sym_comment] = ACTIONS(3), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_elseif] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2481), + [sym_variable] = ACTIONS(2483), + [sym_pipe_variable] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_newtype] = ACTIONS(2481), + [anon_sym_shape] = ACTIONS(2481), + [anon_sym_tuple] = ACTIONS(2481), + [anon_sym_clone] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_print] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_include] = ACTIONS(2481), + [anon_sym_include_once] = ACTIONS(2481), + [anon_sym_require] = ACTIONS(2481), + [anon_sym_require_once] = ACTIONS(2481), + [anon_sym_BSLASH] = ACTIONS(2483), + [anon_sym_self] = ACTIONS(2481), + [anon_sym_parent] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_LT_LT] = ACTIONS(2481), + [anon_sym_LT_LT_LT] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_echo] = ACTIONS(2481), + [anon_sym_unset] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_concurrent] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_case] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_foreach] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [sym_float] = ACTIONS(2483), + [sym_integer] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_True] = ACTIONS(2481), + [anon_sym_TRUE] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_False] = ACTIONS(2481), + [anon_sym_FALSE] = ACTIONS(2481), + [anon_sym_null] = ACTIONS(2481), + [anon_sym_Null] = ACTIONS(2481), + [anon_sym_NULL] = ACTIONS(2481), + [sym_string] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(2483), + [anon_sym_TILDE] = ACTIONS(2483), + [anon_sym_array] = ACTIONS(2481), + [anon_sym_varray] = ACTIONS(2481), + [anon_sym_darray] = ACTIONS(2481), + [anon_sym_vec] = ACTIONS(2481), + [anon_sym_dict] = ACTIONS(2481), + [anon_sym_keyset] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_list] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_PLUS_PLUS] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2483), + [sym_final_modifier] = ACTIONS(2481), + [sym_xhp_modifier] = ACTIONS(2481), + [sym_xhp_identifier] = ACTIONS(2481), + [sym_xhp_class_identifier] = ACTIONS(2483), [sym_comment] = ACTIONS(3), }, [865] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2043), + [sym_variable] = ACTIONS(2045), + [sym_pipe_variable] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_newtype] = ACTIONS(2043), + [anon_sym_shape] = ACTIONS(2043), + [anon_sym_tuple] = ACTIONS(2043), + [anon_sym_clone] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_print] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_include] = ACTIONS(2043), + [anon_sym_include_once] = ACTIONS(2043), + [anon_sym_require] = ACTIONS(2043), + [anon_sym_require_once] = ACTIONS(2043), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_self] = ACTIONS(2043), + [anon_sym_parent] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_throw] = ACTIONS(2043), + [anon_sym_echo] = ACTIONS(2043), + [anon_sym_unset] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_concurrent] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_function] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_switch] = ACTIONS(2043), + [anon_sym_case] = ACTIONS(2043), + [anon_sym_default] = ACTIONS(2043), + [anon_sym_foreach] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(2043), + [sym_float] = ACTIONS(2045), + [sym_integer] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_True] = ACTIONS(2043), + [anon_sym_TRUE] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_False] = ACTIONS(2043), + [anon_sym_FALSE] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [anon_sym_Null] = ACTIONS(2043), + [anon_sym_NULL] = ACTIONS(2043), + [sym_string] = ACTIONS(2045), + [anon_sym_AT] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_array] = ACTIONS(2043), + [anon_sym_varray] = ACTIONS(2043), + [anon_sym_darray] = ACTIONS(2043), + [anon_sym_vec] = ACTIONS(2043), + [anon_sym_dict] = ACTIONS(2043), + [anon_sym_keyset] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2045), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_interface] = ACTIONS(2043), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_abstract] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_final_modifier] = ACTIONS(2043), + [sym_xhp_modifier] = ACTIONS(2043), + [sym_xhp_identifier] = ACTIONS(2043), + [sym_xhp_class_identifier] = ACTIONS(2045), [sym_comment] = ACTIONS(3), }, [866] = { - [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2485), + [sym_variable] = ACTIONS(2487), + [sym_pipe_variable] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_newtype] = ACTIONS(2485), + [anon_sym_shape] = ACTIONS(2485), + [anon_sym_tuple] = ACTIONS(2485), + [anon_sym_clone] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_include] = ACTIONS(2485), + [anon_sym_include_once] = ACTIONS(2485), + [anon_sym_require] = ACTIONS(2485), + [anon_sym_require_once] = ACTIONS(2485), + [anon_sym_BSLASH] = ACTIONS(2487), + [anon_sym_self] = ACTIONS(2485), + [anon_sym_parent] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2485), + [anon_sym_LT_LT_LT] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_echo] = ACTIONS(2485), + [anon_sym_unset] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_concurrent] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_function] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_elseif] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_case] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_foreach] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [sym_float] = ACTIONS(2487), + [sym_integer] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_True] = ACTIONS(2485), + [anon_sym_TRUE] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_False] = ACTIONS(2485), + [anon_sym_FALSE] = ACTIONS(2485), + [anon_sym_null] = ACTIONS(2485), + [anon_sym_Null] = ACTIONS(2485), + [anon_sym_NULL] = ACTIONS(2485), + [sym_string] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_array] = ACTIONS(2485), + [anon_sym_varray] = ACTIONS(2485), + [anon_sym_darray] = ACTIONS(2485), + [anon_sym_vec] = ACTIONS(2485), + [anon_sym_dict] = ACTIONS(2485), + [anon_sym_keyset] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_interface] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_abstract] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2487), + [sym_final_modifier] = ACTIONS(2485), + [sym_xhp_modifier] = ACTIONS(2485), + [sym_xhp_identifier] = ACTIONS(2485), + [sym_xhp_class_identifier] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + }, + [867] = { + [sym_identifier] = ACTIONS(2489), + [sym_variable] = ACTIONS(2491), + [sym_pipe_variable] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_newtype] = ACTIONS(2489), + [anon_sym_shape] = ACTIONS(2489), + [anon_sym_tuple] = ACTIONS(2489), + [anon_sym_clone] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_print] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_include] = ACTIONS(2489), + [anon_sym_include_once] = ACTIONS(2489), + [anon_sym_require] = ACTIONS(2489), + [anon_sym_require_once] = ACTIONS(2489), + [anon_sym_BSLASH] = ACTIONS(2491), + [anon_sym_self] = ACTIONS(2489), + [anon_sym_parent] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_LT_LT_LT] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_echo] = ACTIONS(2489), + [anon_sym_unset] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_concurrent] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_elseif] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_foreach] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [sym_float] = ACTIONS(2491), + [sym_integer] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_True] = ACTIONS(2489), + [anon_sym_TRUE] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_False] = ACTIONS(2489), + [anon_sym_FALSE] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [anon_sym_Null] = ACTIONS(2489), + [anon_sym_NULL] = ACTIONS(2489), + [sym_string] = ACTIONS(2491), + [anon_sym_AT] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_array] = ACTIONS(2489), + [anon_sym_varray] = ACTIONS(2489), + [anon_sym_darray] = ACTIONS(2489), + [anon_sym_vec] = ACTIONS(2489), + [anon_sym_dict] = ACTIONS(2489), + [anon_sym_keyset] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2491), + [sym_final_modifier] = ACTIONS(2489), + [sym_xhp_modifier] = ACTIONS(2489), + [sym_xhp_identifier] = ACTIONS(2489), + [sym_xhp_class_identifier] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + }, + [868] = { + [sym_identifier] = ACTIONS(2493), + [sym_variable] = ACTIONS(2495), + [sym_pipe_variable] = ACTIONS(2495), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_newtype] = ACTIONS(2493), + [anon_sym_shape] = ACTIONS(2493), + [anon_sym_tuple] = ACTIONS(2493), + [anon_sym_clone] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_include] = ACTIONS(2493), + [anon_sym_include_once] = ACTIONS(2493), + [anon_sym_require] = ACTIONS(2493), + [anon_sym_require_once] = ACTIONS(2493), + [anon_sym_BSLASH] = ACTIONS(2495), + [anon_sym_self] = ACTIONS(2493), + [anon_sym_parent] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_LT_LT] = ACTIONS(2493), + [anon_sym_LT_LT_LT] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_echo] = ACTIONS(2493), + [anon_sym_unset] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_concurrent] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_function] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_elseif] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_foreach] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [sym_float] = ACTIONS(2495), + [sym_integer] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_True] = ACTIONS(2493), + [anon_sym_TRUE] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_False] = ACTIONS(2493), + [anon_sym_FALSE] = ACTIONS(2493), + [anon_sym_null] = ACTIONS(2493), + [anon_sym_Null] = ACTIONS(2493), + [anon_sym_NULL] = ACTIONS(2493), + [sym_string] = ACTIONS(2495), + [anon_sym_AT] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_array] = ACTIONS(2493), + [anon_sym_varray] = ACTIONS(2493), + [anon_sym_darray] = ACTIONS(2493), + [anon_sym_vec] = ACTIONS(2493), + [anon_sym_dict] = ACTIONS(2493), + [anon_sym_keyset] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_interface] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_abstract] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2495), + [sym_final_modifier] = ACTIONS(2493), + [sym_xhp_modifier] = ACTIONS(2493), + [sym_xhp_identifier] = ACTIONS(2493), + [sym_xhp_class_identifier] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + }, + [869] = { [sym_identifier] = ACTIONS(2053), [sym_variable] = ACTIONS(2055), [sym_pipe_variable] = ACTIONS(2055), @@ -118892,6 +112735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2053), [anon_sym_LT_LT] = ACTIONS(2053), [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), [anon_sym_LBRACE] = ACTIONS(2055), [anon_sym_SEMI] = ACTIONS(2055), [anon_sym_return] = ACTIONS(2053), @@ -118914,8 +112758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(2053), [anon_sym_for] = ACTIONS(2053), [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_finally] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), [anon_sym_using] = ACTIONS(2053), [sym_float] = ACTIONS(2055), [sym_integer] = ACTIONS(2053), @@ -118959,457 +112803,817 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [867] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [868] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [870] = { + [sym_identifier] = ACTIONS(2497), + [sym_variable] = ACTIONS(2499), + [sym_pipe_variable] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_newtype] = ACTIONS(2497), + [anon_sym_shape] = ACTIONS(2497), + [anon_sym_tuple] = ACTIONS(2497), + [anon_sym_clone] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_print] = ACTIONS(2497), + [anon_sym_namespace] = ACTIONS(2497), + [anon_sym_include] = ACTIONS(2497), + [anon_sym_include_once] = ACTIONS(2497), + [anon_sym_require] = ACTIONS(2497), + [anon_sym_require_once] = ACTIONS(2497), + [anon_sym_BSLASH] = ACTIONS(2499), + [anon_sym_self] = ACTIONS(2497), + [anon_sym_parent] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_LT_LT] = ACTIONS(2497), + [anon_sym_LT_LT_LT] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_throw] = ACTIONS(2497), + [anon_sym_echo] = ACTIONS(2497), + [anon_sym_unset] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_concurrent] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_function] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_elseif] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2497), + [anon_sym_case] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_foreach] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_using] = ACTIONS(2497), + [sym_float] = ACTIONS(2499), + [sym_integer] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_True] = ACTIONS(2497), + [anon_sym_TRUE] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_False] = ACTIONS(2497), + [anon_sym_FALSE] = ACTIONS(2497), + [anon_sym_null] = ACTIONS(2497), + [anon_sym_Null] = ACTIONS(2497), + [anon_sym_NULL] = ACTIONS(2497), + [sym_string] = ACTIONS(2499), + [anon_sym_AT] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_array] = ACTIONS(2497), + [anon_sym_varray] = ACTIONS(2497), + [anon_sym_darray] = ACTIONS(2497), + [anon_sym_vec] = ACTIONS(2497), + [anon_sym_dict] = ACTIONS(2497), + [anon_sym_keyset] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_interface] = ACTIONS(2497), + [anon_sym_class] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_abstract] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2499), + [sym_final_modifier] = ACTIONS(2497), + [sym_xhp_modifier] = ACTIONS(2497), + [sym_xhp_identifier] = ACTIONS(2497), + [sym_xhp_class_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [869] = { - [sym_identifier] = ACTIONS(2581), - [sym_variable] = ACTIONS(2583), - [sym_pipe_variable] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_newtype] = ACTIONS(2581), - [anon_sym_shape] = ACTIONS(2581), - [anon_sym_tuple] = ACTIONS(2581), - [anon_sym_clone] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_include] = ACTIONS(2581), - [anon_sym_include_once] = ACTIONS(2581), - [anon_sym_require] = ACTIONS(2581), - [anon_sym_require_once] = ACTIONS(2581), - [anon_sym_BSLASH] = ACTIONS(2583), - [anon_sym_self] = ACTIONS(2581), - [anon_sym_parent] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LT_LT_LT] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_echo] = ACTIONS(2581), - [anon_sym_unset] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_concurrent] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_elseif] = ACTIONS(2581), - [anon_sym_else] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_default] = ACTIONS(2581), - [anon_sym_foreach] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [sym_float] = ACTIONS(2583), - [sym_integer] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_True] = ACTIONS(2581), - [anon_sym_TRUE] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [anon_sym_False] = ACTIONS(2581), - [anon_sym_FALSE] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_Null] = ACTIONS(2581), - [anon_sym_NULL] = ACTIONS(2581), - [sym_string] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_array] = ACTIONS(2581), - [anon_sym_varray] = ACTIONS(2581), - [anon_sym_darray] = ACTIONS(2581), - [anon_sym_vec] = ACTIONS(2581), - [anon_sym_dict] = ACTIONS(2581), - [anon_sym_keyset] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_list] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_trait] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2583), - [sym_final_modifier] = ACTIONS(2581), - [sym_xhp_modifier] = ACTIONS(2581), - [sym_xhp_identifier] = ACTIONS(2581), - [sym_xhp_class_identifier] = ACTIONS(2583), + [871] = { + [sym_identifier] = ACTIONS(2501), + [sym_variable] = ACTIONS(2503), + [sym_pipe_variable] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_newtype] = ACTIONS(2501), + [anon_sym_shape] = ACTIONS(2501), + [anon_sym_tuple] = ACTIONS(2501), + [anon_sym_clone] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_print] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_include] = ACTIONS(2501), + [anon_sym_include_once] = ACTIONS(2501), + [anon_sym_require] = ACTIONS(2501), + [anon_sym_require_once] = ACTIONS(2501), + [anon_sym_BSLASH] = ACTIONS(2503), + [anon_sym_self] = ACTIONS(2501), + [anon_sym_parent] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_LT_LT_LT] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_echo] = ACTIONS(2501), + [anon_sym_unset] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_concurrent] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_elseif] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_case] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_foreach] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_using] = ACTIONS(2501), + [sym_float] = ACTIONS(2503), + [sym_integer] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_True] = ACTIONS(2501), + [anon_sym_TRUE] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_False] = ACTIONS(2501), + [anon_sym_FALSE] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), + [anon_sym_Null] = ACTIONS(2501), + [anon_sym_NULL] = ACTIONS(2501), + [sym_string] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_array] = ACTIONS(2501), + [anon_sym_varray] = ACTIONS(2501), + [anon_sym_darray] = ACTIONS(2501), + [anon_sym_vec] = ACTIONS(2501), + [anon_sym_dict] = ACTIONS(2501), + [anon_sym_keyset] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2503), + [sym_final_modifier] = ACTIONS(2501), + [sym_xhp_modifier] = ACTIONS(2501), + [sym_xhp_identifier] = ACTIONS(2501), + [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [870] = { - [sym_identifier] = ACTIONS(2585), - [sym_variable] = ACTIONS(2587), - [sym_pipe_variable] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_newtype] = ACTIONS(2585), - [anon_sym_shape] = ACTIONS(2585), - [anon_sym_tuple] = ACTIONS(2585), - [anon_sym_clone] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_include] = ACTIONS(2585), - [anon_sym_include_once] = ACTIONS(2585), - [anon_sym_require] = ACTIONS(2585), - [anon_sym_require_once] = ACTIONS(2585), - [anon_sym_BSLASH] = ACTIONS(2587), - [anon_sym_self] = ACTIONS(2585), - [anon_sym_parent] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_LT_LT_LT] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_echo] = ACTIONS(2585), - [anon_sym_unset] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_concurrent] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_elseif] = ACTIONS(2585), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_case] = ACTIONS(2585), - [anon_sym_default] = ACTIONS(2585), - [anon_sym_foreach] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [sym_float] = ACTIONS(2587), - [sym_integer] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2585), - [anon_sym_True] = ACTIONS(2585), - [anon_sym_TRUE] = ACTIONS(2585), - [anon_sym_false] = ACTIONS(2585), - [anon_sym_False] = ACTIONS(2585), - [anon_sym_FALSE] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2585), - [anon_sym_Null] = ACTIONS(2585), - [anon_sym_NULL] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_array] = ACTIONS(2585), - [anon_sym_varray] = ACTIONS(2585), - [anon_sym_darray] = ACTIONS(2585), - [anon_sym_vec] = ACTIONS(2585), - [anon_sym_dict] = ACTIONS(2585), - [anon_sym_keyset] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_list] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2587), - [sym_final_modifier] = ACTIONS(2585), - [sym_xhp_modifier] = ACTIONS(2585), - [sym_xhp_identifier] = ACTIONS(2585), - [sym_xhp_class_identifier] = ACTIONS(2587), + [872] = { + [sym_identifier] = ACTIONS(2505), + [sym_variable] = ACTIONS(2507), + [sym_pipe_variable] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_newtype] = ACTIONS(2505), + [anon_sym_shape] = ACTIONS(2505), + [anon_sym_tuple] = ACTIONS(2505), + [anon_sym_clone] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_namespace] = ACTIONS(2505), + [anon_sym_include] = ACTIONS(2505), + [anon_sym_include_once] = ACTIONS(2505), + [anon_sym_require] = ACTIONS(2505), + [anon_sym_require_once] = ACTIONS(2505), + [anon_sym_BSLASH] = ACTIONS(2507), + [anon_sym_self] = ACTIONS(2505), + [anon_sym_parent] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_LT_LT_LT] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_throw] = ACTIONS(2505), + [anon_sym_echo] = ACTIONS(2505), + [anon_sym_unset] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_concurrent] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_function] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_elseif] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_switch] = ACTIONS(2505), + [anon_sym_case] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_foreach] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(2505), + [sym_float] = ACTIONS(2507), + [sym_integer] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_True] = ACTIONS(2505), + [anon_sym_TRUE] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_False] = ACTIONS(2505), + [anon_sym_FALSE] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [anon_sym_Null] = ACTIONS(2505), + [anon_sym_NULL] = ACTIONS(2505), + [sym_string] = ACTIONS(2507), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_array] = ACTIONS(2505), + [anon_sym_varray] = ACTIONS(2505), + [anon_sym_darray] = ACTIONS(2505), + [anon_sym_vec] = ACTIONS(2505), + [anon_sym_dict] = ACTIONS(2505), + [anon_sym_keyset] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_class] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_abstract] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2507), + [sym_final_modifier] = ACTIONS(2505), + [sym_xhp_modifier] = ACTIONS(2505), + [sym_xhp_identifier] = ACTIONS(2505), + [sym_xhp_class_identifier] = ACTIONS(2507), [sym_comment] = ACTIONS(3), }, - [871] = { - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_elseif] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), + [873] = { + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_elseif] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_case] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, - [872] = { + [874] = { + [sym_identifier] = ACTIONS(2509), + [sym_variable] = ACTIONS(2511), + [sym_pipe_variable] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_newtype] = ACTIONS(2509), + [anon_sym_shape] = ACTIONS(2509), + [anon_sym_tuple] = ACTIONS(2509), + [anon_sym_clone] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_print] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_include] = ACTIONS(2509), + [anon_sym_include_once] = ACTIONS(2509), + [anon_sym_require] = ACTIONS(2509), + [anon_sym_require_once] = ACTIONS(2509), + [anon_sym_BSLASH] = ACTIONS(2511), + [anon_sym_self] = ACTIONS(2509), + [anon_sym_parent] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_LT_LT] = ACTIONS(2509), + [anon_sym_LT_LT_LT] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_echo] = ACTIONS(2509), + [anon_sym_unset] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_concurrent] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_elseif] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_foreach] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [sym_float] = ACTIONS(2511), + [sym_integer] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_True] = ACTIONS(2509), + [anon_sym_TRUE] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_False] = ACTIONS(2509), + [anon_sym_FALSE] = ACTIONS(2509), + [anon_sym_null] = ACTIONS(2509), + [anon_sym_Null] = ACTIONS(2509), + [anon_sym_NULL] = ACTIONS(2509), + [sym_string] = ACTIONS(2511), + [anon_sym_AT] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_array] = ACTIONS(2509), + [anon_sym_varray] = ACTIONS(2509), + [anon_sym_darray] = ACTIONS(2509), + [anon_sym_vec] = ACTIONS(2509), + [anon_sym_dict] = ACTIONS(2509), + [anon_sym_keyset] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_list] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2511), + [sym_final_modifier] = ACTIONS(2509), + [sym_xhp_modifier] = ACTIONS(2509), + [sym_xhp_identifier] = ACTIONS(2509), + [sym_xhp_class_identifier] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + }, + [875] = { + [sym_identifier] = ACTIONS(2513), + [sym_variable] = ACTIONS(2515), + [sym_pipe_variable] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_newtype] = ACTIONS(2513), + [anon_sym_shape] = ACTIONS(2513), + [anon_sym_tuple] = ACTIONS(2513), + [anon_sym_clone] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_include] = ACTIONS(2513), + [anon_sym_include_once] = ACTIONS(2513), + [anon_sym_require] = ACTIONS(2513), + [anon_sym_require_once] = ACTIONS(2513), + [anon_sym_BSLASH] = ACTIONS(2515), + [anon_sym_self] = ACTIONS(2513), + [anon_sym_parent] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_LT_LT_LT] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_echo] = ACTIONS(2513), + [anon_sym_unset] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_concurrent] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_elseif] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_foreach] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [sym_float] = ACTIONS(2515), + [sym_integer] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_True] = ACTIONS(2513), + [anon_sym_TRUE] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_False] = ACTIONS(2513), + [anon_sym_FALSE] = ACTIONS(2513), + [anon_sym_null] = ACTIONS(2513), + [anon_sym_Null] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2513), + [sym_string] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_array] = ACTIONS(2513), + [anon_sym_varray] = ACTIONS(2513), + [anon_sym_darray] = ACTIONS(2513), + [anon_sym_vec] = ACTIONS(2513), + [anon_sym_dict] = ACTIONS(2513), + [anon_sym_keyset] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2515), + [sym_final_modifier] = ACTIONS(2513), + [sym_xhp_modifier] = ACTIONS(2513), + [sym_xhp_identifier] = ACTIONS(2513), + [sym_xhp_class_identifier] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + }, + [876] = { + [sym_identifier] = ACTIONS(2517), + [sym_variable] = ACTIONS(2519), + [sym_pipe_variable] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_newtype] = ACTIONS(2517), + [anon_sym_shape] = ACTIONS(2517), + [anon_sym_tuple] = ACTIONS(2517), + [anon_sym_clone] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_include_once] = ACTIONS(2517), + [anon_sym_require] = ACTIONS(2517), + [anon_sym_require_once] = ACTIONS(2517), + [anon_sym_BSLASH] = ACTIONS(2519), + [anon_sym_self] = ACTIONS(2517), + [anon_sym_parent] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_LT_LT] = ACTIONS(2517), + [anon_sym_LT_LT_LT] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_echo] = ACTIONS(2517), + [anon_sym_unset] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_concurrent] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_elseif] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_case] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_foreach] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [sym_float] = ACTIONS(2519), + [sym_integer] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_True] = ACTIONS(2517), + [anon_sym_TRUE] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_False] = ACTIONS(2517), + [anon_sym_FALSE] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_Null] = ACTIONS(2517), + [anon_sym_NULL] = ACTIONS(2517), + [sym_string] = ACTIONS(2519), + [anon_sym_AT] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_array] = ACTIONS(2517), + [anon_sym_varray] = ACTIONS(2517), + [anon_sym_darray] = ACTIONS(2517), + [anon_sym_vec] = ACTIONS(2517), + [anon_sym_dict] = ACTIONS(2517), + [anon_sym_keyset] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2519), + [sym_final_modifier] = ACTIONS(2517), + [sym_xhp_modifier] = ACTIONS(2517), + [sym_xhp_identifier] = ACTIONS(2517), + [sym_xhp_class_identifier] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + }, + [877] = { + [sym_identifier] = ACTIONS(2521), + [sym_variable] = ACTIONS(2523), + [sym_pipe_variable] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_newtype] = ACTIONS(2521), + [anon_sym_shape] = ACTIONS(2521), + [anon_sym_tuple] = ACTIONS(2521), + [anon_sym_clone] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_include] = ACTIONS(2521), + [anon_sym_include_once] = ACTIONS(2521), + [anon_sym_require] = ACTIONS(2521), + [anon_sym_require_once] = ACTIONS(2521), + [anon_sym_BSLASH] = ACTIONS(2523), + [anon_sym_self] = ACTIONS(2521), + [anon_sym_parent] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_LT_LT] = ACTIONS(2521), + [anon_sym_LT_LT_LT] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_echo] = ACTIONS(2521), + [anon_sym_unset] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_concurrent] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_function] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_elseif] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_case] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_foreach] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [sym_float] = ACTIONS(2523), + [sym_integer] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_True] = ACTIONS(2521), + [anon_sym_TRUE] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_False] = ACTIONS(2521), + [anon_sym_FALSE] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [anon_sym_Null] = ACTIONS(2521), + [anon_sym_NULL] = ACTIONS(2521), + [sym_string] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_array] = ACTIONS(2521), + [anon_sym_varray] = ACTIONS(2521), + [anon_sym_darray] = ACTIONS(2521), + [anon_sym_vec] = ACTIONS(2521), + [anon_sym_dict] = ACTIONS(2521), + [anon_sym_keyset] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_await] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_interface] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_abstract] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2523), + [sym_final_modifier] = ACTIONS(2521), + [sym_xhp_modifier] = ACTIONS(2521), + [sym_xhp_identifier] = ACTIONS(2521), + [sym_xhp_class_identifier] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + }, + [878] = { + [sym_identifier] = ACTIONS(2525), + [sym_variable] = ACTIONS(2527), + [sym_pipe_variable] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_newtype] = ACTIONS(2525), + [anon_sym_shape] = ACTIONS(2525), + [anon_sym_tuple] = ACTIONS(2525), + [anon_sym_clone] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_include] = ACTIONS(2525), + [anon_sym_include_once] = ACTIONS(2525), + [anon_sym_require] = ACTIONS(2525), + [anon_sym_require_once] = ACTIONS(2525), + [anon_sym_BSLASH] = ACTIONS(2527), + [anon_sym_self] = ACTIONS(2525), + [anon_sym_parent] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_LT_LT_LT] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_echo] = ACTIONS(2525), + [anon_sym_unset] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_concurrent] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_function] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_elseif] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_foreach] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [sym_float] = ACTIONS(2527), + [sym_integer] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_True] = ACTIONS(2525), + [anon_sym_TRUE] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_False] = ACTIONS(2525), + [anon_sym_FALSE] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2525), + [anon_sym_Null] = ACTIONS(2525), + [anon_sym_NULL] = ACTIONS(2525), + [sym_string] = ACTIONS(2527), + [anon_sym_AT] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_array] = ACTIONS(2525), + [anon_sym_varray] = ACTIONS(2525), + [anon_sym_darray] = ACTIONS(2525), + [anon_sym_vec] = ACTIONS(2525), + [anon_sym_dict] = ACTIONS(2525), + [anon_sym_keyset] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_await] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_interface] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2527), + [sym_final_modifier] = ACTIONS(2525), + [sym_xhp_modifier] = ACTIONS(2525), + [sym_xhp_identifier] = ACTIONS(2525), + [sym_xhp_class_identifier] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + }, + [879] = { [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -119499,13286 +113703,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [873] = { - [sym_identifier] = ACTIONS(2589), - [sym_variable] = ACTIONS(2591), - [sym_pipe_variable] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2589), - [anon_sym_newtype] = ACTIONS(2589), - [anon_sym_shape] = ACTIONS(2589), - [anon_sym_tuple] = ACTIONS(2589), - [anon_sym_clone] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2589), - [anon_sym_print] = ACTIONS(2589), - [anon_sym_namespace] = ACTIONS(2589), - [anon_sym_include] = ACTIONS(2589), - [anon_sym_include_once] = ACTIONS(2589), - [anon_sym_require] = ACTIONS(2589), - [anon_sym_require_once] = ACTIONS(2589), - [anon_sym_BSLASH] = ACTIONS(2591), - [anon_sym_self] = ACTIONS(2589), - [anon_sym_parent] = ACTIONS(2589), - [anon_sym_static] = ACTIONS(2589), - [anon_sym_LT_LT] = ACTIONS(2589), - [anon_sym_LT_LT_LT] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2589), - [anon_sym_break] = ACTIONS(2589), - [anon_sym_continue] = ACTIONS(2589), - [anon_sym_throw] = ACTIONS(2589), - [anon_sym_echo] = ACTIONS(2589), - [anon_sym_unset] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_concurrent] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2589), - [anon_sym_const] = ACTIONS(2589), - [anon_sym_if] = ACTIONS(2589), - [anon_sym_elseif] = ACTIONS(2589), - [anon_sym_else] = ACTIONS(2589), - [anon_sym_switch] = ACTIONS(2589), - [anon_sym_case] = ACTIONS(2589), - [anon_sym_default] = ACTIONS(2589), - [anon_sym_foreach] = ACTIONS(2589), - [anon_sym_while] = ACTIONS(2589), - [anon_sym_do] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2589), - [anon_sym_using] = ACTIONS(2589), - [sym_float] = ACTIONS(2591), - [sym_integer] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2589), - [anon_sym_True] = ACTIONS(2589), - [anon_sym_TRUE] = ACTIONS(2589), - [anon_sym_false] = ACTIONS(2589), - [anon_sym_False] = ACTIONS(2589), - [anon_sym_FALSE] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2589), - [anon_sym_Null] = ACTIONS(2589), - [anon_sym_NULL] = ACTIONS(2589), - [sym_string] = ACTIONS(2591), - [anon_sym_AT] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2591), - [anon_sym_array] = ACTIONS(2589), - [anon_sym_varray] = ACTIONS(2589), - [anon_sym_darray] = ACTIONS(2589), - [anon_sym_vec] = ACTIONS(2589), - [anon_sym_dict] = ACTIONS(2589), - [anon_sym_keyset] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_list] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2591), - [anon_sym_PLUS_PLUS] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2591), - [anon_sym_await] = ACTIONS(2589), - [anon_sym_async] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2589), - [anon_sym_trait] = ACTIONS(2589), - [anon_sym_interface] = ACTIONS(2589), - [anon_sym_class] = ACTIONS(2589), - [anon_sym_enum] = ACTIONS(2589), - [anon_sym_abstract] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2591), - [sym_final_modifier] = ACTIONS(2589), - [sym_xhp_modifier] = ACTIONS(2589), - [sym_xhp_identifier] = ACTIONS(2589), - [sym_xhp_class_identifier] = ACTIONS(2591), + [880] = { + [sym_identifier] = ACTIONS(2533), + [sym_variable] = ACTIONS(2535), + [sym_pipe_variable] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_newtype] = ACTIONS(2533), + [anon_sym_shape] = ACTIONS(2533), + [anon_sym_tuple] = ACTIONS(2533), + [anon_sym_clone] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_include_once] = ACTIONS(2533), + [anon_sym_require] = ACTIONS(2533), + [anon_sym_require_once] = ACTIONS(2533), + [anon_sym_BSLASH] = ACTIONS(2535), + [anon_sym_self] = ACTIONS(2533), + [anon_sym_parent] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_LT_LT] = ACTIONS(2533), + [anon_sym_LT_LT_LT] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_echo] = ACTIONS(2533), + [anon_sym_unset] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_concurrent] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_elseif] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_case] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_foreach] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [sym_float] = ACTIONS(2535), + [sym_integer] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_True] = ACTIONS(2533), + [anon_sym_TRUE] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_False] = ACTIONS(2533), + [anon_sym_FALSE] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [anon_sym_Null] = ACTIONS(2533), + [anon_sym_NULL] = ACTIONS(2533), + [sym_string] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_array] = ACTIONS(2533), + [anon_sym_varray] = ACTIONS(2533), + [anon_sym_darray] = ACTIONS(2533), + [anon_sym_vec] = ACTIONS(2533), + [anon_sym_dict] = ACTIONS(2533), + [anon_sym_keyset] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_list] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_interface] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_abstract] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2535), + [sym_final_modifier] = ACTIONS(2533), + [sym_xhp_modifier] = ACTIONS(2533), + [sym_xhp_identifier] = ACTIONS(2533), + [sym_xhp_class_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(3), }, - [874] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_elseif] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), + [881] = { + [ts_builtin_sym_end] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2043), + [sym_variable] = ACTIONS(2045), + [sym_pipe_variable] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_newtype] = ACTIONS(2043), + [anon_sym_shape] = ACTIONS(2043), + [anon_sym_tuple] = ACTIONS(2043), + [anon_sym_clone] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_print] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_include] = ACTIONS(2043), + [anon_sym_include_once] = ACTIONS(2043), + [anon_sym_require] = ACTIONS(2043), + [anon_sym_require_once] = ACTIONS(2043), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_self] = ACTIONS(2043), + [anon_sym_parent] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_throw] = ACTIONS(2043), + [anon_sym_echo] = ACTIONS(2043), + [anon_sym_unset] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_concurrent] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_function] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_elseif] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_switch] = ACTIONS(2043), + [anon_sym_foreach] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(2043), + [sym_float] = ACTIONS(2045), + [sym_integer] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_True] = ACTIONS(2043), + [anon_sym_TRUE] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_False] = ACTIONS(2043), + [anon_sym_FALSE] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [anon_sym_Null] = ACTIONS(2043), + [anon_sym_NULL] = ACTIONS(2043), + [sym_string] = ACTIONS(2045), + [anon_sym_AT] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_array] = ACTIONS(2043), + [anon_sym_varray] = ACTIONS(2043), + [anon_sym_darray] = ACTIONS(2043), + [anon_sym_vec] = ACTIONS(2043), + [anon_sym_dict] = ACTIONS(2043), + [anon_sym_keyset] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2045), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_interface] = ACTIONS(2043), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_abstract] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_final_modifier] = ACTIONS(2043), + [sym_xhp_modifier] = ACTIONS(2043), + [sym_xhp_identifier] = ACTIONS(2043), + [sym_xhp_class_identifier] = ACTIONS(2045), [sym_comment] = ACTIONS(3), }, - [875] = { - [sym_identifier] = ACTIONS(2593), - [sym_variable] = ACTIONS(2595), - [sym_pipe_variable] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_newtype] = ACTIONS(2593), - [anon_sym_shape] = ACTIONS(2593), - [anon_sym_tuple] = ACTIONS(2593), - [anon_sym_clone] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_print] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_include] = ACTIONS(2593), - [anon_sym_include_once] = ACTIONS(2593), - [anon_sym_require] = ACTIONS(2593), - [anon_sym_require_once] = ACTIONS(2593), - [anon_sym_BSLASH] = ACTIONS(2595), - [anon_sym_self] = ACTIONS(2593), - [anon_sym_parent] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_LT_LT] = ACTIONS(2593), - [anon_sym_LT_LT_LT] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_echo] = ACTIONS(2593), - [anon_sym_unset] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_concurrent] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_elseif] = ACTIONS(2593), - [anon_sym_else] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_case] = ACTIONS(2593), - [anon_sym_default] = ACTIONS(2593), - [anon_sym_foreach] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [sym_float] = ACTIONS(2595), - [sym_integer] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_True] = ACTIONS(2593), - [anon_sym_TRUE] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_False] = ACTIONS(2593), - [anon_sym_FALSE] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2593), - [anon_sym_Null] = ACTIONS(2593), - [anon_sym_NULL] = ACTIONS(2593), - [sym_string] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_array] = ACTIONS(2593), - [anon_sym_varray] = ACTIONS(2593), - [anon_sym_darray] = ACTIONS(2593), - [anon_sym_vec] = ACTIONS(2593), - [anon_sym_dict] = ACTIONS(2593), - [anon_sym_keyset] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_list] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_trait] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2595), - [sym_final_modifier] = ACTIONS(2593), - [sym_xhp_modifier] = ACTIONS(2593), - [sym_xhp_identifier] = ACTIONS(2593), - [sym_xhp_class_identifier] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - }, - [876] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [877] = { - [sym_identifier] = ACTIONS(2597), - [sym_variable] = ACTIONS(2599), - [sym_pipe_variable] = ACTIONS(2599), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_newtype] = ACTIONS(2597), - [anon_sym_shape] = ACTIONS(2597), - [anon_sym_tuple] = ACTIONS(2597), - [anon_sym_clone] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_print] = ACTIONS(2597), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_include] = ACTIONS(2597), - [anon_sym_include_once] = ACTIONS(2597), - [anon_sym_require] = ACTIONS(2597), - [anon_sym_require_once] = ACTIONS(2597), - [anon_sym_BSLASH] = ACTIONS(2599), - [anon_sym_self] = ACTIONS(2597), - [anon_sym_parent] = ACTIONS(2597), - [anon_sym_static] = ACTIONS(2597), - [anon_sym_LT_LT] = ACTIONS(2597), - [anon_sym_LT_LT_LT] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_throw] = ACTIONS(2597), - [anon_sym_echo] = ACTIONS(2597), - [anon_sym_unset] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_concurrent] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_const] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_elseif] = ACTIONS(2597), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_switch] = ACTIONS(2597), - [anon_sym_case] = ACTIONS(2597), - [anon_sym_default] = ACTIONS(2597), - [anon_sym_foreach] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_using] = ACTIONS(2597), - [sym_float] = ACTIONS(2599), - [sym_integer] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2597), - [anon_sym_True] = ACTIONS(2597), - [anon_sym_TRUE] = ACTIONS(2597), - [anon_sym_false] = ACTIONS(2597), - [anon_sym_False] = ACTIONS(2597), - [anon_sym_FALSE] = ACTIONS(2597), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_Null] = ACTIONS(2597), - [anon_sym_NULL] = ACTIONS(2597), - [sym_string] = ACTIONS(2599), - [anon_sym_AT] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [anon_sym_array] = ACTIONS(2597), - [anon_sym_varray] = ACTIONS(2597), - [anon_sym_darray] = ACTIONS(2597), - [anon_sym_vec] = ACTIONS(2597), - [anon_sym_dict] = ACTIONS(2597), - [anon_sym_keyset] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_list] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2599), - [anon_sym_PLUS_PLUS] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2599), - [anon_sym_await] = ACTIONS(2597), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_trait] = ACTIONS(2597), - [anon_sym_interface] = ACTIONS(2597), - [anon_sym_class] = ACTIONS(2597), - [anon_sym_enum] = ACTIONS(2597), - [anon_sym_abstract] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(2599), - [sym_final_modifier] = ACTIONS(2597), - [sym_xhp_modifier] = ACTIONS(2597), - [sym_xhp_identifier] = ACTIONS(2597), - [sym_xhp_class_identifier] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - }, - [878] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [879] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [880] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [881] = { - [sym_identifier] = ACTIONS(2601), - [sym_variable] = ACTIONS(2603), - [sym_pipe_variable] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_newtype] = ACTIONS(2601), - [anon_sym_shape] = ACTIONS(2601), - [anon_sym_tuple] = ACTIONS(2601), - [anon_sym_clone] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_print] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_include] = ACTIONS(2601), - [anon_sym_include_once] = ACTIONS(2601), - [anon_sym_require] = ACTIONS(2601), - [anon_sym_require_once] = ACTIONS(2601), - [anon_sym_BSLASH] = ACTIONS(2603), - [anon_sym_self] = ACTIONS(2601), - [anon_sym_parent] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_LT_LT] = ACTIONS(2601), - [anon_sym_LT_LT_LT] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_echo] = ACTIONS(2601), - [anon_sym_unset] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_concurrent] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_elseif] = ACTIONS(2601), - [anon_sym_else] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_foreach] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [sym_float] = ACTIONS(2603), - [sym_integer] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_True] = ACTIONS(2601), - [anon_sym_TRUE] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [anon_sym_False] = ACTIONS(2601), - [anon_sym_FALSE] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_Null] = ACTIONS(2601), - [anon_sym_NULL] = ACTIONS(2601), - [sym_string] = ACTIONS(2603), - [anon_sym_AT] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_array] = ACTIONS(2601), - [anon_sym_varray] = ACTIONS(2601), - [anon_sym_darray] = ACTIONS(2601), - [anon_sym_vec] = ACTIONS(2601), - [anon_sym_dict] = ACTIONS(2601), - [anon_sym_keyset] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_list] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_trait] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2603), - [sym_final_modifier] = ACTIONS(2601), - [sym_xhp_modifier] = ACTIONS(2601), - [sym_xhp_identifier] = ACTIONS(2601), - [sym_xhp_class_identifier] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - }, - [882] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [883] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [884] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [885] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [886] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [887] = { - [sym_identifier] = ACTIONS(2605), - [sym_variable] = ACTIONS(2607), - [sym_pipe_variable] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_newtype] = ACTIONS(2605), - [anon_sym_shape] = ACTIONS(2605), - [anon_sym_tuple] = ACTIONS(2605), - [anon_sym_clone] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_print] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_include] = ACTIONS(2605), - [anon_sym_include_once] = ACTIONS(2605), - [anon_sym_require] = ACTIONS(2605), - [anon_sym_require_once] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2607), - [anon_sym_self] = ACTIONS(2605), - [anon_sym_parent] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_LT_LT] = ACTIONS(2605), - [anon_sym_LT_LT_LT] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_echo] = ACTIONS(2605), - [anon_sym_unset] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_concurrent] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_elseif] = ACTIONS(2605), - [anon_sym_else] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_foreach] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [sym_float] = ACTIONS(2607), - [sym_integer] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_True] = ACTIONS(2605), - [anon_sym_TRUE] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [anon_sym_False] = ACTIONS(2605), - [anon_sym_FALSE] = ACTIONS(2605), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_Null] = ACTIONS(2605), - [anon_sym_NULL] = ACTIONS(2605), - [sym_string] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_array] = ACTIONS(2605), - [anon_sym_varray] = ACTIONS(2605), - [anon_sym_darray] = ACTIONS(2605), - [anon_sym_vec] = ACTIONS(2605), - [anon_sym_dict] = ACTIONS(2605), - [anon_sym_keyset] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_list] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2605), - [anon_sym_async] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_trait] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2607), - [sym_final_modifier] = ACTIONS(2605), - [sym_xhp_modifier] = ACTIONS(2605), - [sym_xhp_identifier] = ACTIONS(2605), - [sym_xhp_class_identifier] = ACTIONS(2607), - [sym_comment] = ACTIONS(3), - }, - [888] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [889] = { - [sym_identifier] = ACTIONS(2053), - [sym_variable] = ACTIONS(2055), - [sym_pipe_variable] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_newtype] = ACTIONS(2053), - [anon_sym_shape] = ACTIONS(2053), - [anon_sym_tuple] = ACTIONS(2053), - [anon_sym_clone] = ACTIONS(2053), - [anon_sym_new] = ACTIONS(2053), - [anon_sym_print] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2053), - [anon_sym_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2053), - [anon_sym_LT_LT_LT] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_throw] = ACTIONS(2053), - [anon_sym_echo] = ACTIONS(2053), - [anon_sym_unset] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_concurrent] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_elseif] = ACTIONS(2053), - [anon_sym_else] = ACTIONS(2053), - [anon_sym_switch] = ACTIONS(2053), - [anon_sym_foreach] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_do] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_finally] = ACTIONS(2053), - [anon_sym_using] = ACTIONS(2053), - [sym_float] = ACTIONS(2055), - [sym_integer] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_True] = ACTIONS(2053), - [anon_sym_TRUE] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_False] = ACTIONS(2053), - [anon_sym_FALSE] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [anon_sym_Null] = ACTIONS(2053), - [anon_sym_NULL] = ACTIONS(2053), - [sym_string] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_array] = ACTIONS(2053), - [anon_sym_varray] = ACTIONS(2053), - [anon_sym_darray] = ACTIONS(2053), - [anon_sym_vec] = ACTIONS(2053), - [anon_sym_dict] = ACTIONS(2053), - [anon_sym_keyset] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_PLUS] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_interface] = ACTIONS(2053), - [anon_sym_class] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_abstract] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2055), - [sym_final_modifier] = ACTIONS(2053), - [sym_xhp_modifier] = ACTIONS(2053), - [sym_xhp_identifier] = ACTIONS(2053), - [sym_xhp_class_identifier] = ACTIONS(2055), - [sym_comment] = ACTIONS(3), - }, - [890] = { - [sym_identifier] = ACTIONS(2057), - [sym_variable] = ACTIONS(2059), - [sym_pipe_variable] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_newtype] = ACTIONS(2057), - [anon_sym_shape] = ACTIONS(2057), - [anon_sym_tuple] = ACTIONS(2057), - [anon_sym_clone] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_print] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_LT_LT_LT] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_echo] = ACTIONS(2057), - [anon_sym_unset] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_concurrent] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_elseif] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_foreach] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [sym_float] = ACTIONS(2059), - [sym_integer] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_True] = ACTIONS(2057), - [anon_sym_TRUE] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_False] = ACTIONS(2057), - [anon_sym_FALSE] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [anon_sym_Null] = ACTIONS(2057), - [anon_sym_NULL] = ACTIONS(2057), - [sym_string] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_array] = ACTIONS(2057), - [anon_sym_varray] = ACTIONS(2057), - [anon_sym_darray] = ACTIONS(2057), - [anon_sym_vec] = ACTIONS(2057), - [anon_sym_dict] = ACTIONS(2057), - [anon_sym_keyset] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2059), - [sym_final_modifier] = ACTIONS(2057), - [sym_xhp_modifier] = ACTIONS(2057), - [sym_xhp_identifier] = ACTIONS(2057), - [sym_xhp_class_identifier] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [891] = { - [sym_identifier] = ACTIONS(2609), - [sym_variable] = ACTIONS(2611), - [sym_pipe_variable] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_newtype] = ACTIONS(2609), - [anon_sym_shape] = ACTIONS(2609), - [anon_sym_tuple] = ACTIONS(2609), - [anon_sym_clone] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_print] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_include] = ACTIONS(2609), - [anon_sym_include_once] = ACTIONS(2609), - [anon_sym_require] = ACTIONS(2609), - [anon_sym_require_once] = ACTIONS(2609), - [anon_sym_BSLASH] = ACTIONS(2611), - [anon_sym_self] = ACTIONS(2609), - [anon_sym_parent] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2609), - [anon_sym_LT_LT_LT] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_echo] = ACTIONS(2609), - [anon_sym_unset] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_concurrent] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_elseif] = ACTIONS(2609), - [anon_sym_else] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_foreach] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [sym_float] = ACTIONS(2611), - [sym_integer] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_True] = ACTIONS(2609), - [anon_sym_TRUE] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_False] = ACTIONS(2609), - [anon_sym_FALSE] = ACTIONS(2609), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_Null] = ACTIONS(2609), - [anon_sym_NULL] = ACTIONS(2609), - [sym_string] = ACTIONS(2611), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_array] = ACTIONS(2609), - [anon_sym_varray] = ACTIONS(2609), - [anon_sym_darray] = ACTIONS(2609), - [anon_sym_vec] = ACTIONS(2609), - [anon_sym_dict] = ACTIONS(2609), - [anon_sym_keyset] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_list] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_trait] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2611), - [sym_final_modifier] = ACTIONS(2609), - [sym_xhp_modifier] = ACTIONS(2609), - [sym_xhp_identifier] = ACTIONS(2609), - [sym_xhp_class_identifier] = ACTIONS(2611), - [sym_comment] = ACTIONS(3), - }, - [892] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [893] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [894] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [895] = { - [sym_identifier] = ACTIONS(2053), - [sym_variable] = ACTIONS(2055), - [sym_pipe_variable] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_newtype] = ACTIONS(2053), - [anon_sym_shape] = ACTIONS(2053), - [anon_sym_tuple] = ACTIONS(2053), - [anon_sym_clone] = ACTIONS(2053), - [anon_sym_new] = ACTIONS(2053), - [anon_sym_print] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2053), - [anon_sym_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2053), - [anon_sym_LT_LT_LT] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_throw] = ACTIONS(2053), - [anon_sym_echo] = ACTIONS(2053), - [anon_sym_unset] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_concurrent] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_switch] = ACTIONS(2053), - [anon_sym_case] = ACTIONS(2053), - [anon_sym_default] = ACTIONS(2053), - [anon_sym_foreach] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_do] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_finally] = ACTIONS(2053), - [anon_sym_using] = ACTIONS(2053), - [sym_float] = ACTIONS(2055), - [sym_integer] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_True] = ACTIONS(2053), - [anon_sym_TRUE] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_False] = ACTIONS(2053), - [anon_sym_FALSE] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [anon_sym_Null] = ACTIONS(2053), - [anon_sym_NULL] = ACTIONS(2053), - [sym_string] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_array] = ACTIONS(2053), - [anon_sym_varray] = ACTIONS(2053), - [anon_sym_darray] = ACTIONS(2053), - [anon_sym_vec] = ACTIONS(2053), - [anon_sym_dict] = ACTIONS(2053), - [anon_sym_keyset] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_PLUS] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_interface] = ACTIONS(2053), - [anon_sym_class] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_abstract] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2055), - [sym_final_modifier] = ACTIONS(2053), - [sym_xhp_modifier] = ACTIONS(2053), - [sym_xhp_identifier] = ACTIONS(2053), - [sym_xhp_class_identifier] = ACTIONS(2055), - [sym_comment] = ACTIONS(3), - }, - [896] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [897] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [898] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [899] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [900] = { - [sym_identifier] = ACTIONS(2613), - [sym_variable] = ACTIONS(2615), - [sym_pipe_variable] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2613), - [anon_sym_newtype] = ACTIONS(2613), - [anon_sym_shape] = ACTIONS(2613), - [anon_sym_tuple] = ACTIONS(2613), - [anon_sym_clone] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_print] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_include] = ACTIONS(2613), - [anon_sym_include_once] = ACTIONS(2613), - [anon_sym_require] = ACTIONS(2613), - [anon_sym_require_once] = ACTIONS(2613), - [anon_sym_BSLASH] = ACTIONS(2615), - [anon_sym_self] = ACTIONS(2613), - [anon_sym_parent] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_echo] = ACTIONS(2613), - [anon_sym_unset] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_concurrent] = ACTIONS(2613), - [anon_sym_use] = ACTIONS(2613), - [anon_sym_function] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_elseif] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_foreach] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [sym_float] = ACTIONS(2615), - [sym_integer] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_True] = ACTIONS(2613), - [anon_sym_TRUE] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_False] = ACTIONS(2613), - [anon_sym_FALSE] = ACTIONS(2613), - [anon_sym_null] = ACTIONS(2613), - [anon_sym_Null] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [sym_string] = ACTIONS(2615), - [anon_sym_AT] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_array] = ACTIONS(2613), - [anon_sym_varray] = ACTIONS(2613), - [anon_sym_darray] = ACTIONS(2613), - [anon_sym_vec] = ACTIONS(2613), - [anon_sym_dict] = ACTIONS(2613), - [anon_sym_keyset] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_list] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_await] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_trait] = ACTIONS(2613), - [anon_sym_interface] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_abstract] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2615), - [sym_final_modifier] = ACTIONS(2613), - [sym_xhp_modifier] = ACTIONS(2613), - [sym_xhp_identifier] = ACTIONS(2613), - [sym_xhp_class_identifier] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - }, - [901] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [902] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [903] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [904] = { - [aux_sym_if_statement_repeat1] = STATE(913), - [ts_builtin_sym_end] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2071), - [sym_variable] = ACTIONS(2073), - [sym_pipe_variable] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_newtype] = ACTIONS(2071), - [anon_sym_shape] = ACTIONS(2071), - [anon_sym_tuple] = ACTIONS(2071), - [anon_sym_clone] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_print] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_include] = ACTIONS(2071), - [anon_sym_include_once] = ACTIONS(2071), - [anon_sym_require] = ACTIONS(2071), - [anon_sym_require_once] = ACTIONS(2071), - [anon_sym_BSLASH] = ACTIONS(2073), - [anon_sym_self] = ACTIONS(2071), - [anon_sym_parent] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LT_LT_LT] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_throw] = ACTIONS(2071), - [anon_sym_echo] = ACTIONS(2071), - [anon_sym_unset] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_concurrent] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_function] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_elseif] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_foreach] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_using] = ACTIONS(2071), - [sym_float] = ACTIONS(2073), - [sym_integer] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_True] = ACTIONS(2071), - [anon_sym_TRUE] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_False] = ACTIONS(2071), - [anon_sym_FALSE] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [anon_sym_Null] = ACTIONS(2071), - [anon_sym_NULL] = ACTIONS(2071), - [sym_string] = ACTIONS(2073), - [anon_sym_AT] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_array] = ACTIONS(2071), - [anon_sym_varray] = ACTIONS(2071), - [anon_sym_darray] = ACTIONS(2071), - [anon_sym_vec] = ACTIONS(2071), - [anon_sym_dict] = ACTIONS(2071), - [anon_sym_keyset] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_interface] = ACTIONS(2071), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_abstract] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2073), - [sym_final_modifier] = ACTIONS(2071), - [sym_xhp_modifier] = ACTIONS(2071), - [sym_xhp_identifier] = ACTIONS(2071), - [sym_xhp_class_identifier] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - }, - [905] = { - [aux_sym_if_statement_repeat1] = STATE(907), - [sym_identifier] = ACTIONS(2057), - [sym_variable] = ACTIONS(2059), - [sym_pipe_variable] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_newtype] = ACTIONS(2057), - [anon_sym_shape] = ACTIONS(2057), - [anon_sym_tuple] = ACTIONS(2057), - [anon_sym_clone] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_print] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_LT_LT_LT] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_echo] = ACTIONS(2057), - [anon_sym_unset] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_concurrent] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_elseif] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_foreach] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [sym_float] = ACTIONS(2059), - [sym_integer] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_True] = ACTIONS(2057), - [anon_sym_TRUE] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_False] = ACTIONS(2057), - [anon_sym_FALSE] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [anon_sym_Null] = ACTIONS(2057), - [anon_sym_NULL] = ACTIONS(2057), - [sym_string] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_array] = ACTIONS(2057), - [anon_sym_varray] = ACTIONS(2057), - [anon_sym_darray] = ACTIONS(2057), - [anon_sym_vec] = ACTIONS(2057), - [anon_sym_dict] = ACTIONS(2057), - [anon_sym_keyset] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2059), - [sym_final_modifier] = ACTIONS(2057), - [sym_xhp_modifier] = ACTIONS(2057), - [sym_xhp_identifier] = ACTIONS(2057), - [sym_xhp_class_identifier] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [906] = { - [aux_sym_if_statement_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2061), - [sym_variable] = ACTIONS(2063), - [sym_pipe_variable] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2061), - [anon_sym_newtype] = ACTIONS(2061), - [anon_sym_shape] = ACTIONS(2061), - [anon_sym_tuple] = ACTIONS(2061), - [anon_sym_clone] = ACTIONS(2061), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_print] = ACTIONS(2061), - [anon_sym_namespace] = ACTIONS(2061), - [anon_sym_include] = ACTIONS(2061), - [anon_sym_include_once] = ACTIONS(2061), - [anon_sym_require] = ACTIONS(2061), - [anon_sym_require_once] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2063), - [anon_sym_self] = ACTIONS(2061), - [anon_sym_parent] = ACTIONS(2061), - [anon_sym_static] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(2061), - [anon_sym_LT_LT_LT] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_throw] = ACTIONS(2061), - [anon_sym_echo] = ACTIONS(2061), - [anon_sym_unset] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_concurrent] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_function] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_elseif] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2624), - [anon_sym_switch] = ACTIONS(2061), - [anon_sym_foreach] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_using] = ACTIONS(2061), - [sym_float] = ACTIONS(2063), - [sym_integer] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_True] = ACTIONS(2061), - [anon_sym_TRUE] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_False] = ACTIONS(2061), - [anon_sym_FALSE] = ACTIONS(2061), - [anon_sym_null] = ACTIONS(2061), - [anon_sym_Null] = ACTIONS(2061), - [anon_sym_NULL] = ACTIONS(2061), - [sym_string] = ACTIONS(2063), - [anon_sym_AT] = ACTIONS(2063), - [anon_sym_TILDE] = ACTIONS(2063), - [anon_sym_array] = ACTIONS(2061), - [anon_sym_varray] = ACTIONS(2061), - [anon_sym_darray] = ACTIONS(2061), - [anon_sym_vec] = ACTIONS(2061), - [anon_sym_dict] = ACTIONS(2061), - [anon_sym_keyset] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_BANG] = ACTIONS(2063), - [anon_sym_PLUS_PLUS] = ACTIONS(2063), - [anon_sym_DASH_DASH] = ACTIONS(2063), - [anon_sym_await] = ACTIONS(2061), - [anon_sym_async] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(2061), - [anon_sym_trait] = ACTIONS(2061), - [anon_sym_interface] = ACTIONS(2061), - [anon_sym_class] = ACTIONS(2061), - [anon_sym_enum] = ACTIONS(2061), - [anon_sym_abstract] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(2063), - [sym_final_modifier] = ACTIONS(2061), - [sym_xhp_modifier] = ACTIONS(2061), - [sym_xhp_identifier] = ACTIONS(2061), - [sym_xhp_class_identifier] = ACTIONS(2063), - [sym_comment] = ACTIONS(3), - }, - [907] = { - [aux_sym_if_statement_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2071), - [sym_variable] = ACTIONS(2073), - [sym_pipe_variable] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_newtype] = ACTIONS(2071), - [anon_sym_shape] = ACTIONS(2071), - [anon_sym_tuple] = ACTIONS(2071), - [anon_sym_clone] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_print] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_include] = ACTIONS(2071), - [anon_sym_include_once] = ACTIONS(2071), - [anon_sym_require] = ACTIONS(2071), - [anon_sym_require_once] = ACTIONS(2071), - [anon_sym_BSLASH] = ACTIONS(2073), - [anon_sym_self] = ACTIONS(2071), - [anon_sym_parent] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LT_LT_LT] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_throw] = ACTIONS(2071), - [anon_sym_echo] = ACTIONS(2071), - [anon_sym_unset] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_concurrent] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_function] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_elseif] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_foreach] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_using] = ACTIONS(2071), - [sym_float] = ACTIONS(2073), - [sym_integer] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_True] = ACTIONS(2071), - [anon_sym_TRUE] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_False] = ACTIONS(2071), - [anon_sym_FALSE] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [anon_sym_Null] = ACTIONS(2071), - [anon_sym_NULL] = ACTIONS(2071), - [sym_string] = ACTIONS(2073), - [anon_sym_AT] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_array] = ACTIONS(2071), - [anon_sym_varray] = ACTIONS(2071), - [anon_sym_darray] = ACTIONS(2071), - [anon_sym_vec] = ACTIONS(2071), - [anon_sym_dict] = ACTIONS(2071), - [anon_sym_keyset] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_interface] = ACTIONS(2071), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_abstract] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2073), - [sym_final_modifier] = ACTIONS(2071), - [sym_xhp_modifier] = ACTIONS(2071), - [sym_xhp_identifier] = ACTIONS(2071), - [sym_xhp_class_identifier] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - }, - [908] = { - [aux_sym_if_statement_repeat1] = STATE(904), - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2079), - [sym_variable] = ACTIONS(2081), - [sym_pipe_variable] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_newtype] = ACTIONS(2079), - [anon_sym_shape] = ACTIONS(2079), - [anon_sym_tuple] = ACTIONS(2079), - [anon_sym_clone] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_print] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_include] = ACTIONS(2079), - [anon_sym_include_once] = ACTIONS(2079), - [anon_sym_require] = ACTIONS(2079), - [anon_sym_require_once] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(2081), - [anon_sym_self] = ACTIONS(2079), - [anon_sym_parent] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_LT_LT_LT] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_throw] = ACTIONS(2079), - [anon_sym_echo] = ACTIONS(2079), - [anon_sym_unset] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_concurrent] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_function] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_elseif] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_foreach] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(2079), - [sym_float] = ACTIONS(2081), - [sym_integer] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_True] = ACTIONS(2079), - [anon_sym_TRUE] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_False] = ACTIONS(2079), - [anon_sym_FALSE] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [anon_sym_Null] = ACTIONS(2079), - [anon_sym_NULL] = ACTIONS(2079), - [sym_string] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_array] = ACTIONS(2079), - [anon_sym_varray] = ACTIONS(2079), - [anon_sym_darray] = ACTIONS(2079), - [anon_sym_vec] = ACTIONS(2079), - [anon_sym_dict] = ACTIONS(2079), - [anon_sym_keyset] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_class] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_abstract] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2081), - [sym_final_modifier] = ACTIONS(2079), - [sym_xhp_modifier] = ACTIONS(2079), - [sym_xhp_identifier] = ACTIONS(2079), - [sym_xhp_class_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(3), - }, - [909] = { - [aux_sym_if_statement_repeat1] = STATE(907), - [sym_identifier] = ACTIONS(2079), - [sym_variable] = ACTIONS(2081), - [sym_pipe_variable] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_newtype] = ACTIONS(2079), - [anon_sym_shape] = ACTIONS(2079), - [anon_sym_tuple] = ACTIONS(2079), - [anon_sym_clone] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_print] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_include] = ACTIONS(2079), - [anon_sym_include_once] = ACTIONS(2079), - [anon_sym_require] = ACTIONS(2079), - [anon_sym_require_once] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(2081), - [anon_sym_self] = ACTIONS(2079), - [anon_sym_parent] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_LT_LT_LT] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_throw] = ACTIONS(2079), - [anon_sym_echo] = ACTIONS(2079), - [anon_sym_unset] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_concurrent] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_function] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_elseif] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_foreach] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(2079), - [sym_float] = ACTIONS(2081), - [sym_integer] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_True] = ACTIONS(2079), - [anon_sym_TRUE] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_False] = ACTIONS(2079), - [anon_sym_FALSE] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [anon_sym_Null] = ACTIONS(2079), - [anon_sym_NULL] = ACTIONS(2079), - [sym_string] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_array] = ACTIONS(2079), - [anon_sym_varray] = ACTIONS(2079), - [anon_sym_darray] = ACTIONS(2079), - [anon_sym_vec] = ACTIONS(2079), - [anon_sym_dict] = ACTIONS(2079), - [anon_sym_keyset] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_class] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_abstract] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2081), - [sym_final_modifier] = ACTIONS(2079), - [sym_xhp_modifier] = ACTIONS(2079), - [sym_xhp_identifier] = ACTIONS(2079), - [sym_xhp_class_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(3), - }, - [910] = { - [sym_qualified_identifier] = STATE(4928), - [sym_compound_statement] = STATE(1465), - [aux_sym_qualified_identifier_repeat1] = STATE(2043), - [ts_builtin_sym_end] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2029), - [sym_variable] = ACTIONS(2031), - [sym_pipe_variable] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2033), - [anon_sym_newtype] = ACTIONS(2033), - [anon_sym_shape] = ACTIONS(2033), - [anon_sym_tuple] = ACTIONS(2033), - [anon_sym_clone] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_print] = ACTIONS(2033), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(2033), - [anon_sym_include_once] = ACTIONS(2033), - [anon_sym_require] = ACTIONS(2033), - [anon_sym_require_once] = ACTIONS(2033), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(2033), - [anon_sym_parent] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_LT_LT] = ACTIONS(2033), - [anon_sym_LT_LT_LT] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_echo] = ACTIONS(2033), - [anon_sym_unset] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_concurrent] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_function] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_switch] = ACTIONS(2033), - [anon_sym_foreach] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_using] = ACTIONS(2033), - [sym_float] = ACTIONS(2031), - [sym_integer] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_True] = ACTIONS(2033), - [anon_sym_TRUE] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_False] = ACTIONS(2033), - [anon_sym_FALSE] = ACTIONS(2033), - [anon_sym_null] = ACTIONS(2033), - [anon_sym_Null] = ACTIONS(2033), - [anon_sym_NULL] = ACTIONS(2033), - [sym_string] = ACTIONS(2031), - [anon_sym_AT] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2031), - [anon_sym_array] = ACTIONS(2033), - [anon_sym_varray] = ACTIONS(2033), - [anon_sym_darray] = ACTIONS(2033), - [anon_sym_vec] = ACTIONS(2033), - [anon_sym_dict] = ACTIONS(2033), - [anon_sym_keyset] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2033), - [anon_sym_trait] = ACTIONS(2033), - [anon_sym_interface] = ACTIONS(2033), - [anon_sym_class] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2033), - [anon_sym_abstract] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2031), - [sym_final_modifier] = ACTIONS(2033), - [sym_xhp_modifier] = ACTIONS(2033), - [sym_xhp_identifier] = ACTIONS(2033), - [sym_xhp_class_identifier] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - }, - [911] = { - [aux_sym_if_statement_repeat1] = STATE(912), - [sym_identifier] = ACTIONS(2057), - [sym_variable] = ACTIONS(2059), - [sym_pipe_variable] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_newtype] = ACTIONS(2057), - [anon_sym_shape] = ACTIONS(2057), - [anon_sym_tuple] = ACTIONS(2057), - [anon_sym_clone] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_print] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_LT_LT_LT] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_echo] = ACTIONS(2057), - [anon_sym_unset] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_concurrent] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_elseif] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_foreach] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [sym_float] = ACTIONS(2059), - [sym_integer] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_True] = ACTIONS(2057), - [anon_sym_TRUE] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_False] = ACTIONS(2057), - [anon_sym_FALSE] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [anon_sym_Null] = ACTIONS(2057), - [anon_sym_NULL] = ACTIONS(2057), - [sym_string] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_array] = ACTIONS(2057), - [anon_sym_varray] = ACTIONS(2057), - [anon_sym_darray] = ACTIONS(2057), - [anon_sym_vec] = ACTIONS(2057), - [anon_sym_dict] = ACTIONS(2057), - [anon_sym_keyset] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2059), - [sym_final_modifier] = ACTIONS(2057), - [sym_xhp_modifier] = ACTIONS(2057), - [sym_xhp_identifier] = ACTIONS(2057), - [sym_xhp_class_identifier] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [912] = { - [aux_sym_if_statement_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2071), - [sym_variable] = ACTIONS(2073), - [sym_pipe_variable] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_newtype] = ACTIONS(2071), - [anon_sym_shape] = ACTIONS(2071), - [anon_sym_tuple] = ACTIONS(2071), - [anon_sym_clone] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_print] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_include] = ACTIONS(2071), - [anon_sym_include_once] = ACTIONS(2071), - [anon_sym_require] = ACTIONS(2071), - [anon_sym_require_once] = ACTIONS(2071), - [anon_sym_BSLASH] = ACTIONS(2073), - [anon_sym_self] = ACTIONS(2071), - [anon_sym_parent] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LT_LT_LT] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_throw] = ACTIONS(2071), - [anon_sym_echo] = ACTIONS(2071), - [anon_sym_unset] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_concurrent] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_function] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_elseif] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_foreach] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_using] = ACTIONS(2071), - [sym_float] = ACTIONS(2073), - [sym_integer] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_True] = ACTIONS(2071), - [anon_sym_TRUE] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_False] = ACTIONS(2071), - [anon_sym_FALSE] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [anon_sym_Null] = ACTIONS(2071), - [anon_sym_NULL] = ACTIONS(2071), - [sym_string] = ACTIONS(2073), - [anon_sym_AT] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_array] = ACTIONS(2071), - [anon_sym_varray] = ACTIONS(2071), - [anon_sym_darray] = ACTIONS(2071), - [anon_sym_vec] = ACTIONS(2071), - [anon_sym_dict] = ACTIONS(2071), - [anon_sym_keyset] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_interface] = ACTIONS(2071), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_abstract] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2073), - [sym_final_modifier] = ACTIONS(2071), - [sym_xhp_modifier] = ACTIONS(2071), - [sym_xhp_identifier] = ACTIONS(2071), - [sym_xhp_class_identifier] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - }, - [913] = { - [aux_sym_if_statement_repeat1] = STATE(913), - [ts_builtin_sym_end] = ACTIONS(2063), - [sym_identifier] = ACTIONS(2061), - [sym_variable] = ACTIONS(2063), - [sym_pipe_variable] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2061), - [anon_sym_newtype] = ACTIONS(2061), - [anon_sym_shape] = ACTIONS(2061), - [anon_sym_tuple] = ACTIONS(2061), - [anon_sym_clone] = ACTIONS(2061), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_print] = ACTIONS(2061), - [anon_sym_namespace] = ACTIONS(2061), - [anon_sym_include] = ACTIONS(2061), - [anon_sym_include_once] = ACTIONS(2061), - [anon_sym_require] = ACTIONS(2061), - [anon_sym_require_once] = ACTIONS(2061), - [anon_sym_BSLASH] = ACTIONS(2063), - [anon_sym_self] = ACTIONS(2061), - [anon_sym_parent] = ACTIONS(2061), - [anon_sym_static] = ACTIONS(2061), - [anon_sym_LT_LT] = ACTIONS(2061), - [anon_sym_LT_LT_LT] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_throw] = ACTIONS(2061), - [anon_sym_echo] = ACTIONS(2061), - [anon_sym_unset] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_concurrent] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_function] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_elseif] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2640), - [anon_sym_switch] = ACTIONS(2061), - [anon_sym_foreach] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_using] = ACTIONS(2061), - [sym_float] = ACTIONS(2063), - [sym_integer] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_True] = ACTIONS(2061), - [anon_sym_TRUE] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_False] = ACTIONS(2061), - [anon_sym_FALSE] = ACTIONS(2061), - [anon_sym_null] = ACTIONS(2061), - [anon_sym_Null] = ACTIONS(2061), - [anon_sym_NULL] = ACTIONS(2061), - [sym_string] = ACTIONS(2063), - [anon_sym_AT] = ACTIONS(2063), - [anon_sym_TILDE] = ACTIONS(2063), - [anon_sym_array] = ACTIONS(2061), - [anon_sym_varray] = ACTIONS(2061), - [anon_sym_darray] = ACTIONS(2061), - [anon_sym_vec] = ACTIONS(2061), - [anon_sym_dict] = ACTIONS(2061), - [anon_sym_keyset] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_list] = ACTIONS(2061), - [anon_sym_BANG] = ACTIONS(2063), - [anon_sym_PLUS_PLUS] = ACTIONS(2063), - [anon_sym_DASH_DASH] = ACTIONS(2063), - [anon_sym_await] = ACTIONS(2061), - [anon_sym_async] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(2061), - [anon_sym_trait] = ACTIONS(2061), - [anon_sym_interface] = ACTIONS(2061), - [anon_sym_class] = ACTIONS(2061), - [anon_sym_enum] = ACTIONS(2061), - [anon_sym_abstract] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(2063), - [sym_final_modifier] = ACTIONS(2061), - [sym_xhp_modifier] = ACTIONS(2061), - [sym_xhp_identifier] = ACTIONS(2061), - [sym_xhp_class_identifier] = ACTIONS(2063), - [sym_comment] = ACTIONS(3), - }, - [914] = { - [aux_sym_if_statement_repeat1] = STATE(912), - [sym_identifier] = ACTIONS(2079), - [sym_variable] = ACTIONS(2081), - [sym_pipe_variable] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_newtype] = ACTIONS(2079), - [anon_sym_shape] = ACTIONS(2079), - [anon_sym_tuple] = ACTIONS(2079), - [anon_sym_clone] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_print] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_include] = ACTIONS(2079), - [anon_sym_include_once] = ACTIONS(2079), - [anon_sym_require] = ACTIONS(2079), - [anon_sym_require_once] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(2081), - [anon_sym_self] = ACTIONS(2079), - [anon_sym_parent] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_LT_LT_LT] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_throw] = ACTIONS(2079), - [anon_sym_echo] = ACTIONS(2079), - [anon_sym_unset] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_concurrent] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_function] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_elseif] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_foreach] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(2079), - [sym_float] = ACTIONS(2081), - [sym_integer] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_True] = ACTIONS(2079), - [anon_sym_TRUE] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_False] = ACTIONS(2079), - [anon_sym_FALSE] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [anon_sym_Null] = ACTIONS(2079), - [anon_sym_NULL] = ACTIONS(2079), - [sym_string] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_array] = ACTIONS(2079), - [anon_sym_varray] = ACTIONS(2079), - [anon_sym_darray] = ACTIONS(2079), - [anon_sym_vec] = ACTIONS(2079), - [anon_sym_dict] = ACTIONS(2079), - [anon_sym_keyset] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_class] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_abstract] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2081), - [sym_final_modifier] = ACTIONS(2079), - [sym_xhp_modifier] = ACTIONS(2079), - [sym_xhp_identifier] = ACTIONS(2079), - [sym_xhp_class_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(3), - }, - [915] = { - [aux_sym_if_statement_repeat1] = STATE(904), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2057), - [sym_variable] = ACTIONS(2059), - [sym_pipe_variable] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_newtype] = ACTIONS(2057), - [anon_sym_shape] = ACTIONS(2057), - [anon_sym_tuple] = ACTIONS(2057), - [anon_sym_clone] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_print] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_LT_LT_LT] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_echo] = ACTIONS(2057), - [anon_sym_unset] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_concurrent] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_elseif] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_foreach] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [sym_float] = ACTIONS(2059), - [sym_integer] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_True] = ACTIONS(2057), - [anon_sym_TRUE] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_False] = ACTIONS(2057), - [anon_sym_FALSE] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [anon_sym_Null] = ACTIONS(2057), - [anon_sym_NULL] = ACTIONS(2057), - [sym_string] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_array] = ACTIONS(2057), - [anon_sym_varray] = ACTIONS(2057), - [anon_sym_darray] = ACTIONS(2057), - [anon_sym_vec] = ACTIONS(2057), - [anon_sym_dict] = ACTIONS(2057), - [anon_sym_keyset] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2059), - [sym_final_modifier] = ACTIONS(2057), - [sym_xhp_modifier] = ACTIONS(2057), - [sym_xhp_identifier] = ACTIONS(2057), - [sym_xhp_class_identifier] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [916] = { - [aux_sym_if_statement_repeat1] = STATE(917), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2057), - [sym_variable] = ACTIONS(2059), - [sym_pipe_variable] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_newtype] = ACTIONS(2057), - [anon_sym_shape] = ACTIONS(2057), - [anon_sym_tuple] = ACTIONS(2057), - [anon_sym_clone] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_print] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_LT_LT_LT] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_echo] = ACTIONS(2057), - [anon_sym_unset] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_concurrent] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_elseif] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_foreach] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [sym_float] = ACTIONS(2059), - [sym_integer] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_True] = ACTIONS(2057), - [anon_sym_TRUE] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_False] = ACTIONS(2057), - [anon_sym_FALSE] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [anon_sym_Null] = ACTIONS(2057), - [anon_sym_NULL] = ACTIONS(2057), - [sym_string] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_array] = ACTIONS(2057), - [anon_sym_varray] = ACTIONS(2057), - [anon_sym_darray] = ACTIONS(2057), - [anon_sym_vec] = ACTIONS(2057), - [anon_sym_dict] = ACTIONS(2057), - [anon_sym_keyset] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2059), - [sym_final_modifier] = ACTIONS(2057), - [sym_xhp_modifier] = ACTIONS(2057), - [sym_xhp_identifier] = ACTIONS(2057), - [sym_xhp_class_identifier] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - }, - [917] = { - [aux_sym_if_statement_repeat1] = STATE(913), - [ts_builtin_sym_end] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2071), - [sym_variable] = ACTIONS(2073), - [sym_pipe_variable] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_newtype] = ACTIONS(2071), - [anon_sym_shape] = ACTIONS(2071), - [anon_sym_tuple] = ACTIONS(2071), - [anon_sym_clone] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_print] = ACTIONS(2071), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_include] = ACTIONS(2071), - [anon_sym_include_once] = ACTIONS(2071), - [anon_sym_require] = ACTIONS(2071), - [anon_sym_require_once] = ACTIONS(2071), - [anon_sym_BSLASH] = ACTIONS(2073), - [anon_sym_self] = ACTIONS(2071), - [anon_sym_parent] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2071), - [anon_sym_LT_LT_LT] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_throw] = ACTIONS(2071), - [anon_sym_echo] = ACTIONS(2071), - [anon_sym_unset] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_concurrent] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_function] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_elseif] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2645), - [anon_sym_switch] = ACTIONS(2071), - [anon_sym_foreach] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_using] = ACTIONS(2071), - [sym_float] = ACTIONS(2073), - [sym_integer] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_True] = ACTIONS(2071), - [anon_sym_TRUE] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_False] = ACTIONS(2071), - [anon_sym_FALSE] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [anon_sym_Null] = ACTIONS(2071), - [anon_sym_NULL] = ACTIONS(2071), - [sym_string] = ACTIONS(2073), - [anon_sym_AT] = ACTIONS(2073), - [anon_sym_TILDE] = ACTIONS(2073), - [anon_sym_array] = ACTIONS(2071), - [anon_sym_varray] = ACTIONS(2071), - [anon_sym_darray] = ACTIONS(2071), - [anon_sym_vec] = ACTIONS(2071), - [anon_sym_dict] = ACTIONS(2071), - [anon_sym_keyset] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_PLUS_PLUS] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_interface] = ACTIONS(2071), - [anon_sym_class] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_abstract] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2073), - [sym_final_modifier] = ACTIONS(2071), - [sym_xhp_modifier] = ACTIONS(2071), - [sym_xhp_identifier] = ACTIONS(2071), - [sym_xhp_class_identifier] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - }, - [918] = { - [aux_sym_if_statement_repeat1] = STATE(917), - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2079), - [sym_variable] = ACTIONS(2081), - [sym_pipe_variable] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_newtype] = ACTIONS(2079), - [anon_sym_shape] = ACTIONS(2079), - [anon_sym_tuple] = ACTIONS(2079), - [anon_sym_clone] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_print] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2079), - [anon_sym_include] = ACTIONS(2079), - [anon_sym_include_once] = ACTIONS(2079), - [anon_sym_require] = ACTIONS(2079), - [anon_sym_require_once] = ACTIONS(2079), - [anon_sym_BSLASH] = ACTIONS(2081), - [anon_sym_self] = ACTIONS(2079), - [anon_sym_parent] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2079), - [anon_sym_LT_LT_LT] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_throw] = ACTIONS(2079), - [anon_sym_echo] = ACTIONS(2079), - [anon_sym_unset] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_concurrent] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_function] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_elseif] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_foreach] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_using] = ACTIONS(2079), - [sym_float] = ACTIONS(2081), - [sym_integer] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_True] = ACTIONS(2079), - [anon_sym_TRUE] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_False] = ACTIONS(2079), - [anon_sym_FALSE] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [anon_sym_Null] = ACTIONS(2079), - [anon_sym_NULL] = ACTIONS(2079), - [sym_string] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_array] = ACTIONS(2079), - [anon_sym_varray] = ACTIONS(2079), - [anon_sym_darray] = ACTIONS(2079), - [anon_sym_vec] = ACTIONS(2079), - [anon_sym_dict] = ACTIONS(2079), - [anon_sym_keyset] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_interface] = ACTIONS(2079), - [anon_sym_class] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_abstract] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2081), - [sym_final_modifier] = ACTIONS(2079), - [sym_xhp_modifier] = ACTIONS(2079), - [sym_xhp_identifier] = ACTIONS(2079), - [sym_xhp_class_identifier] = ACTIONS(2081), - [sym_comment] = ACTIONS(3), - }, - [919] = { - [sym_qualified_identifier] = STATE(4953), - [sym_compound_statement] = STATE(1673), - [aux_sym_qualified_identifier_repeat1] = STATE(2043), - [sym_identifier] = ACTIONS(2029), - [sym_variable] = ACTIONS(2031), - [sym_pipe_variable] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2033), - [anon_sym_newtype] = ACTIONS(2033), - [anon_sym_shape] = ACTIONS(2033), - [anon_sym_tuple] = ACTIONS(2033), - [anon_sym_clone] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_print] = ACTIONS(2033), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_include] = ACTIONS(2033), - [anon_sym_include_once] = ACTIONS(2033), - [anon_sym_require] = ACTIONS(2033), - [anon_sym_require_once] = ACTIONS(2033), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_self] = ACTIONS(2033), - [anon_sym_parent] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_LT_LT] = ACTIONS(2033), - [anon_sym_LT_LT_LT] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_echo] = ACTIONS(2033), - [anon_sym_unset] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_concurrent] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_function] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_switch] = ACTIONS(2033), - [anon_sym_foreach] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_using] = ACTIONS(2033), - [sym_float] = ACTIONS(2031), - [sym_integer] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_True] = ACTIONS(2033), - [anon_sym_TRUE] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_False] = ACTIONS(2033), - [anon_sym_FALSE] = ACTIONS(2033), - [anon_sym_null] = ACTIONS(2033), - [anon_sym_Null] = ACTIONS(2033), - [anon_sym_NULL] = ACTIONS(2033), - [sym_string] = ACTIONS(2031), - [anon_sym_AT] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2031), - [anon_sym_array] = ACTIONS(2033), - [anon_sym_varray] = ACTIONS(2033), - [anon_sym_darray] = ACTIONS(2033), - [anon_sym_vec] = ACTIONS(2033), - [anon_sym_dict] = ACTIONS(2033), - [anon_sym_keyset] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2033), - [anon_sym_trait] = ACTIONS(2033), - [anon_sym_interface] = ACTIONS(2033), - [anon_sym_class] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2033), - [anon_sym_abstract] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2031), - [sym_final_modifier] = ACTIONS(2033), - [sym_xhp_modifier] = ACTIONS(2033), - [sym_xhp_identifier] = ACTIONS(2033), - [sym_xhp_class_identifier] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - }, - [920] = { - [sym_identifier] = ACTIONS(2205), - [sym_variable] = ACTIONS(2207), - [sym_pipe_variable] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_newtype] = ACTIONS(2205), - [anon_sym_shape] = ACTIONS(2205), - [anon_sym_tuple] = ACTIONS(2205), - [anon_sym_clone] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_print] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_LT_LT_LT] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_echo] = ACTIONS(2205), - [anon_sym_unset] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_concurrent] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_foreach] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [sym_float] = ACTIONS(2207), - [sym_integer] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_True] = ACTIONS(2205), - [anon_sym_TRUE] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_False] = ACTIONS(2205), - [anon_sym_FALSE] = ACTIONS(2205), - [anon_sym_null] = ACTIONS(2205), - [anon_sym_Null] = ACTIONS(2205), - [anon_sym_NULL] = ACTIONS(2205), - [sym_string] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_array] = ACTIONS(2205), - [anon_sym_varray] = ACTIONS(2205), - [anon_sym_darray] = ACTIONS(2205), - [anon_sym_vec] = ACTIONS(2205), - [anon_sym_dict] = ACTIONS(2205), - [anon_sym_keyset] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2207), - [sym_final_modifier] = ACTIONS(2205), - [sym_xhp_modifier] = ACTIONS(2205), - [sym_xhp_identifier] = ACTIONS(2205), - [sym_xhp_class_identifier] = ACTIONS(2207), - [sym_comment] = ACTIONS(3), - }, - [921] = { - [sym_identifier] = ACTIONS(2345), - [sym_variable] = ACTIONS(2347), - [sym_pipe_variable] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_newtype] = ACTIONS(2345), - [anon_sym_shape] = ACTIONS(2345), - [anon_sym_tuple] = ACTIONS(2345), - [anon_sym_clone] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_print] = ACTIONS(2345), - [anon_sym_namespace] = ACTIONS(2345), - [anon_sym_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_LT_LT] = ACTIONS(2345), - [anon_sym_LT_LT_LT] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_throw] = ACTIONS(2345), - [anon_sym_echo] = ACTIONS(2345), - [anon_sym_unset] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_concurrent] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_elseif] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_switch] = ACTIONS(2345), - [anon_sym_foreach] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_using] = ACTIONS(2345), - [sym_float] = ACTIONS(2347), - [sym_integer] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_True] = ACTIONS(2345), - [anon_sym_TRUE] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_False] = ACTIONS(2345), - [anon_sym_FALSE] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2345), - [anon_sym_Null] = ACTIONS(2345), - [anon_sym_NULL] = ACTIONS(2345), - [sym_string] = ACTIONS(2347), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_array] = ACTIONS(2345), - [anon_sym_varray] = ACTIONS(2345), - [anon_sym_darray] = ACTIONS(2345), - [anon_sym_vec] = ACTIONS(2345), - [anon_sym_dict] = ACTIONS(2345), - [anon_sym_keyset] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(2347), - [sym_final_modifier] = ACTIONS(2345), - [sym_xhp_modifier] = ACTIONS(2345), - [sym_xhp_identifier] = ACTIONS(2345), - [sym_xhp_class_identifier] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - }, - [922] = { - [sym_identifier] = ACTIONS(2053), - [sym_variable] = ACTIONS(2055), - [sym_pipe_variable] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_newtype] = ACTIONS(2053), - [anon_sym_shape] = ACTIONS(2053), - [anon_sym_tuple] = ACTIONS(2053), - [anon_sym_clone] = ACTIONS(2053), - [anon_sym_new] = ACTIONS(2053), - [anon_sym_print] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2053), - [anon_sym_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2053), - [anon_sym_LT_LT_LT] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_throw] = ACTIONS(2053), - [anon_sym_echo] = ACTIONS(2053), - [anon_sym_unset] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_concurrent] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_switch] = ACTIONS(2053), - [anon_sym_foreach] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_do] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_finally] = ACTIONS(2053), - [anon_sym_using] = ACTIONS(2053), - [sym_float] = ACTIONS(2055), - [sym_integer] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_True] = ACTIONS(2053), - [anon_sym_TRUE] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_False] = ACTIONS(2053), - [anon_sym_FALSE] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [anon_sym_Null] = ACTIONS(2053), - [anon_sym_NULL] = ACTIONS(2053), - [sym_string] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_array] = ACTIONS(2053), - [anon_sym_varray] = ACTIONS(2053), - [anon_sym_darray] = ACTIONS(2053), - [anon_sym_vec] = ACTIONS(2053), - [anon_sym_dict] = ACTIONS(2053), - [anon_sym_keyset] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_PLUS] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_interface] = ACTIONS(2053), - [anon_sym_class] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_abstract] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2055), - [sym_final_modifier] = ACTIONS(2053), - [sym_xhp_modifier] = ACTIONS(2053), - [sym_xhp_identifier] = ACTIONS(2053), - [sym_xhp_class_identifier] = ACTIONS(2055), - [sym_comment] = ACTIONS(3), - }, - [923] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2189), - [sym_variable] = ACTIONS(2191), - [sym_pipe_variable] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_newtype] = ACTIONS(2189), - [anon_sym_shape] = ACTIONS(2189), - [anon_sym_tuple] = ACTIONS(2189), - [anon_sym_clone] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_print] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_LT_LT_LT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_echo] = ACTIONS(2189), - [anon_sym_unset] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_concurrent] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_elseif] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_foreach] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [sym_float] = ACTIONS(2191), - [sym_integer] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_True] = ACTIONS(2189), - [anon_sym_TRUE] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_False] = ACTIONS(2189), - [anon_sym_FALSE] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_Null] = ACTIONS(2189), - [anon_sym_NULL] = ACTIONS(2189), - [sym_string] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_array] = ACTIONS(2189), - [anon_sym_varray] = ACTIONS(2189), - [anon_sym_darray] = ACTIONS(2189), - [anon_sym_vec] = ACTIONS(2189), - [anon_sym_dict] = ACTIONS(2189), - [anon_sym_keyset] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2191), - [sym_final_modifier] = ACTIONS(2189), - [sym_xhp_modifier] = ACTIONS(2189), - [sym_xhp_identifier] = ACTIONS(2189), - [sym_xhp_class_identifier] = ACTIONS(2191), - [sym_comment] = ACTIONS(3), - }, - [924] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_case] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), - [sym_comment] = ACTIONS(3), - }, - [925] = { - [sym_identifier] = ACTIONS(2565), - [sym_variable] = ACTIONS(2567), - [sym_pipe_variable] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_newtype] = ACTIONS(2565), - [anon_sym_shape] = ACTIONS(2565), - [anon_sym_tuple] = ACTIONS(2565), - [anon_sym_clone] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_print] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_include] = ACTIONS(2565), - [anon_sym_include_once] = ACTIONS(2565), - [anon_sym_require] = ACTIONS(2565), - [anon_sym_require_once] = ACTIONS(2565), - [anon_sym_BSLASH] = ACTIONS(2567), - [anon_sym_self] = ACTIONS(2565), - [anon_sym_parent] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_LT_LT] = ACTIONS(2565), - [anon_sym_LT_LT_LT] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_echo] = ACTIONS(2565), - [anon_sym_unset] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_concurrent] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_case] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_foreach] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [sym_float] = ACTIONS(2567), - [sym_integer] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_True] = ACTIONS(2565), - [anon_sym_TRUE] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [anon_sym_False] = ACTIONS(2565), - [anon_sym_FALSE] = ACTIONS(2565), - [anon_sym_null] = ACTIONS(2565), - [anon_sym_Null] = ACTIONS(2565), - [anon_sym_NULL] = ACTIONS(2565), - [sym_string] = ACTIONS(2567), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_array] = ACTIONS(2565), - [anon_sym_varray] = ACTIONS(2565), - [anon_sym_darray] = ACTIONS(2565), - [anon_sym_vec] = ACTIONS(2565), - [anon_sym_dict] = ACTIONS(2565), - [anon_sym_keyset] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2567), - [sym_final_modifier] = ACTIONS(2565), - [sym_xhp_modifier] = ACTIONS(2565), - [sym_xhp_identifier] = ACTIONS(2565), - [sym_xhp_class_identifier] = ACTIONS(2567), - [sym_comment] = ACTIONS(3), - }, - [926] = { - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2185), - [sym_variable] = ACTIONS(2187), - [sym_pipe_variable] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_newtype] = ACTIONS(2185), - [anon_sym_shape] = ACTIONS(2185), - [anon_sym_tuple] = ACTIONS(2185), - [anon_sym_clone] = ACTIONS(2185), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_print] = ACTIONS(2185), - [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_LT_LT_LT] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_throw] = ACTIONS(2185), - [anon_sym_echo] = ACTIONS(2185), - [anon_sym_unset] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_concurrent] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_function] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_elseif] = ACTIONS(2185), - [anon_sym_else] = ACTIONS(2185), - [anon_sym_switch] = ACTIONS(2185), - [anon_sym_foreach] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_do] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_using] = ACTIONS(2185), - [sym_float] = ACTIONS(2187), - [sym_integer] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_True] = ACTIONS(2185), - [anon_sym_TRUE] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [anon_sym_False] = ACTIONS(2185), - [anon_sym_FALSE] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_Null] = ACTIONS(2185), - [anon_sym_NULL] = ACTIONS(2185), - [sym_string] = ACTIONS(2187), - [anon_sym_AT] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [anon_sym_array] = ACTIONS(2185), - [anon_sym_varray] = ACTIONS(2185), - [anon_sym_darray] = ACTIONS(2185), - [anon_sym_vec] = ACTIONS(2185), - [anon_sym_dict] = ACTIONS(2185), - [anon_sym_keyset] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_class] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_abstract] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2187), - [sym_final_modifier] = ACTIONS(2185), - [sym_xhp_modifier] = ACTIONS(2185), - [sym_xhp_identifier] = ACTIONS(2185), - [sym_xhp_class_identifier] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - }, - [928] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2177), - [sym_variable] = ACTIONS(2179), - [sym_pipe_variable] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_newtype] = ACTIONS(2177), - [anon_sym_shape] = ACTIONS(2177), - [anon_sym_tuple] = ACTIONS(2177), - [anon_sym_clone] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_print] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_LT_LT_LT] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_throw] = ACTIONS(2177), - [anon_sym_echo] = ACTIONS(2177), - [anon_sym_unset] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_concurrent] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_function] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_elseif] = ACTIONS(2177), - [anon_sym_else] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [anon_sym_foreach] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_using] = ACTIONS(2177), - [sym_float] = ACTIONS(2179), - [sym_integer] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_True] = ACTIONS(2177), - [anon_sym_TRUE] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [anon_sym_False] = ACTIONS(2177), - [anon_sym_FALSE] = ACTIONS(2177), - [anon_sym_null] = ACTIONS(2177), - [anon_sym_Null] = ACTIONS(2177), - [anon_sym_NULL] = ACTIONS(2177), - [sym_string] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_array] = ACTIONS(2177), - [anon_sym_varray] = ACTIONS(2177), - [anon_sym_darray] = ACTIONS(2177), - [anon_sym_vec] = ACTIONS(2177), - [anon_sym_dict] = ACTIONS(2177), - [anon_sym_keyset] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_class] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_abstract] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2179), - [sym_final_modifier] = ACTIONS(2177), - [sym_xhp_modifier] = ACTIONS(2177), - [sym_xhp_identifier] = ACTIONS(2177), - [sym_xhp_class_identifier] = ACTIONS(2179), - [sym_comment] = ACTIONS(3), - }, - [929] = { - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2169), - [sym_variable] = ACTIONS(2171), - [sym_pipe_variable] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_newtype] = ACTIONS(2169), - [anon_sym_shape] = ACTIONS(2169), - [anon_sym_tuple] = ACTIONS(2169), - [anon_sym_clone] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2169), - [anon_sym_print] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2169), - [anon_sym_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_LT_LT_LT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_throw] = ACTIONS(2169), - [anon_sym_echo] = ACTIONS(2169), - [anon_sym_unset] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_concurrent] = ACTIONS(2169), - [anon_sym_use] = ACTIONS(2169), - [anon_sym_function] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_elseif] = ACTIONS(2169), - [anon_sym_else] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [anon_sym_foreach] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2169), - [sym_float] = ACTIONS(2171), - [sym_integer] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_True] = ACTIONS(2169), - [anon_sym_TRUE] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [anon_sym_False] = ACTIONS(2169), - [anon_sym_FALSE] = ACTIONS(2169), - [anon_sym_null] = ACTIONS(2169), - [anon_sym_Null] = ACTIONS(2169), - [anon_sym_NULL] = ACTIONS(2169), - [sym_string] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_array] = ACTIONS(2169), - [anon_sym_varray] = ACTIONS(2169), - [anon_sym_darray] = ACTIONS(2169), - [anon_sym_vec] = ACTIONS(2169), - [anon_sym_dict] = ACTIONS(2169), - [anon_sym_keyset] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_trait] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_abstract] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2171), - [sym_final_modifier] = ACTIONS(2169), - [sym_xhp_modifier] = ACTIONS(2169), - [sym_xhp_identifier] = ACTIONS(2169), - [sym_xhp_class_identifier] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_elseif] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - }, - [932] = { - [sym_identifier] = ACTIONS(2561), - [sym_variable] = ACTIONS(2563), - [sym_pipe_variable] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_newtype] = ACTIONS(2561), - [anon_sym_shape] = ACTIONS(2561), - [anon_sym_tuple] = ACTIONS(2561), - [anon_sym_clone] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_print] = ACTIONS(2561), - [anon_sym_namespace] = ACTIONS(2561), - [anon_sym_include] = ACTIONS(2561), - [anon_sym_include_once] = ACTIONS(2561), - [anon_sym_require] = ACTIONS(2561), - [anon_sym_require_once] = ACTIONS(2561), - [anon_sym_BSLASH] = ACTIONS(2563), - [anon_sym_self] = ACTIONS(2561), - [anon_sym_parent] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2561), - [anon_sym_LT_LT] = ACTIONS(2561), - [anon_sym_LT_LT_LT] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_echo] = ACTIONS(2561), - [anon_sym_unset] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_concurrent] = ACTIONS(2561), - [anon_sym_use] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_switch] = ACTIONS(2561), - [anon_sym_case] = ACTIONS(2561), - [anon_sym_default] = ACTIONS(2561), - [anon_sym_foreach] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(2561), - [sym_float] = ACTIONS(2563), - [sym_integer] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2561), - [anon_sym_True] = ACTIONS(2561), - [anon_sym_TRUE] = ACTIONS(2561), - [anon_sym_false] = ACTIONS(2561), - [anon_sym_False] = ACTIONS(2561), - [anon_sym_FALSE] = ACTIONS(2561), - [anon_sym_null] = ACTIONS(2561), - [anon_sym_Null] = ACTIONS(2561), - [anon_sym_NULL] = ACTIONS(2561), - [sym_string] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_array] = ACTIONS(2561), - [anon_sym_varray] = ACTIONS(2561), - [anon_sym_darray] = ACTIONS(2561), - [anon_sym_vec] = ACTIONS(2561), - [anon_sym_dict] = ACTIONS(2561), - [anon_sym_keyset] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_list] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_await] = ACTIONS(2561), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_trait] = ACTIONS(2561), - [anon_sym_interface] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2561), - [anon_sym_abstract] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2563), - [sym_final_modifier] = ACTIONS(2561), - [sym_xhp_modifier] = ACTIONS(2561), - [sym_xhp_identifier] = ACTIONS(2561), - [sym_xhp_class_identifier] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - }, - [933] = { - [sym_identifier] = ACTIONS(2549), - [sym_variable] = ACTIONS(2551), - [sym_pipe_variable] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_newtype] = ACTIONS(2549), - [anon_sym_shape] = ACTIONS(2549), - [anon_sym_tuple] = ACTIONS(2549), - [anon_sym_clone] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_print] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), - [anon_sym_LT_LT_LT] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_echo] = ACTIONS(2549), - [anon_sym_unset] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_concurrent] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_case] = ACTIONS(2549), - [anon_sym_default] = ACTIONS(2549), - [anon_sym_foreach] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [sym_float] = ACTIONS(2551), - [sym_integer] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_True] = ACTIONS(2549), - [anon_sym_TRUE] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_False] = ACTIONS(2549), - [anon_sym_FALSE] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2549), - [anon_sym_Null] = ACTIONS(2549), - [anon_sym_NULL] = ACTIONS(2549), - [sym_string] = ACTIONS(2551), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_array] = ACTIONS(2549), - [anon_sym_varray] = ACTIONS(2549), - [anon_sym_darray] = ACTIONS(2549), - [anon_sym_vec] = ACTIONS(2549), - [anon_sym_dict] = ACTIONS(2549), - [anon_sym_keyset] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2551), - [sym_final_modifier] = ACTIONS(2549), - [sym_xhp_modifier] = ACTIONS(2549), - [sym_xhp_identifier] = ACTIONS(2549), - [sym_xhp_class_identifier] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - }, - [934] = { - [sym_identifier] = ACTIONS(2533), - [sym_variable] = ACTIONS(2535), - [sym_pipe_variable] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_newtype] = ACTIONS(2533), - [anon_sym_shape] = ACTIONS(2533), - [anon_sym_tuple] = ACTIONS(2533), - [anon_sym_clone] = ACTIONS(2533), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_print] = ACTIONS(2533), - [anon_sym_namespace] = ACTIONS(2533), - [anon_sym_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT_LT_LT] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_echo] = ACTIONS(2533), - [anon_sym_unset] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_concurrent] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_function] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_switch] = ACTIONS(2533), - [anon_sym_case] = ACTIONS(2533), - [anon_sym_default] = ACTIONS(2533), - [anon_sym_foreach] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_do] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [anon_sym_using] = ACTIONS(2533), - [sym_float] = ACTIONS(2535), - [sym_integer] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_True] = ACTIONS(2533), - [anon_sym_TRUE] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_False] = ACTIONS(2533), - [anon_sym_FALSE] = ACTIONS(2533), - [anon_sym_null] = ACTIONS(2533), - [anon_sym_Null] = ACTIONS(2533), - [anon_sym_NULL] = ACTIONS(2533), - [sym_string] = ACTIONS(2535), - [anon_sym_AT] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_array] = ACTIONS(2533), - [anon_sym_varray] = ACTIONS(2533), - [anon_sym_darray] = ACTIONS(2533), - [anon_sym_vec] = ACTIONS(2533), - [anon_sym_dict] = ACTIONS(2533), - [anon_sym_keyset] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_PLUS_PLUS] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2535), - [anon_sym_await] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_interface] = ACTIONS(2533), - [anon_sym_class] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_abstract] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2535), - [sym_final_modifier] = ACTIONS(2533), - [sym_xhp_modifier] = ACTIONS(2533), - [sym_xhp_identifier] = ACTIONS(2533), - [sym_xhp_class_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(3), - }, - [935] = { - [sym_identifier] = ACTIONS(2517), - [sym_variable] = ACTIONS(2519), - [sym_pipe_variable] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_newtype] = ACTIONS(2517), - [anon_sym_shape] = ACTIONS(2517), - [anon_sym_tuple] = ACTIONS(2517), - [anon_sym_clone] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), - [anon_sym_LT_LT_LT] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_echo] = ACTIONS(2517), - [anon_sym_unset] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_concurrent] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_case] = ACTIONS(2517), - [anon_sym_default] = ACTIONS(2517), - [anon_sym_foreach] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [sym_float] = ACTIONS(2519), - [sym_integer] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_True] = ACTIONS(2517), - [anon_sym_TRUE] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_False] = ACTIONS(2517), - [anon_sym_FALSE] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [anon_sym_Null] = ACTIONS(2517), - [anon_sym_NULL] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_array] = ACTIONS(2517), - [anon_sym_varray] = ACTIONS(2517), - [anon_sym_darray] = ACTIONS(2517), - [anon_sym_vec] = ACTIONS(2517), - [anon_sym_dict] = ACTIONS(2517), - [anon_sym_keyset] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_trait] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2519), - [sym_final_modifier] = ACTIONS(2517), - [sym_xhp_modifier] = ACTIONS(2517), - [sym_xhp_identifier] = ACTIONS(2517), - [sym_xhp_class_identifier] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - }, - [936] = { - [sym_identifier] = ACTIONS(2513), - [sym_variable] = ACTIONS(2515), - [sym_pipe_variable] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_newtype] = ACTIONS(2513), - [anon_sym_shape] = ACTIONS(2513), - [anon_sym_tuple] = ACTIONS(2513), - [anon_sym_clone] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_LT_LT_LT] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_echo] = ACTIONS(2513), - [anon_sym_unset] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_concurrent] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_case] = ACTIONS(2513), - [anon_sym_default] = ACTIONS(2513), - [anon_sym_foreach] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [sym_float] = ACTIONS(2515), - [sym_integer] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_True] = ACTIONS(2513), - [anon_sym_TRUE] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [anon_sym_False] = ACTIONS(2513), - [anon_sym_FALSE] = ACTIONS(2513), - [anon_sym_null] = ACTIONS(2513), - [anon_sym_Null] = ACTIONS(2513), - [anon_sym_NULL] = ACTIONS(2513), - [sym_string] = ACTIONS(2515), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_array] = ACTIONS(2513), - [anon_sym_varray] = ACTIONS(2513), - [anon_sym_darray] = ACTIONS(2513), - [anon_sym_vec] = ACTIONS(2513), - [anon_sym_dict] = ACTIONS(2513), - [anon_sym_keyset] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_trait] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2515), - [sym_final_modifier] = ACTIONS(2513), - [sym_xhp_modifier] = ACTIONS(2513), - [sym_xhp_identifier] = ACTIONS(2513), - [sym_xhp_class_identifier] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2129), - [sym_variable] = ACTIONS(2131), - [sym_pipe_variable] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_newtype] = ACTIONS(2129), - [anon_sym_shape] = ACTIONS(2129), - [anon_sym_tuple] = ACTIONS(2129), - [anon_sym_clone] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_print] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_LT_LT_LT] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_echo] = ACTIONS(2129), - [anon_sym_unset] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_concurrent] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_elseif] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_foreach] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [sym_float] = ACTIONS(2131), - [sym_integer] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_True] = ACTIONS(2129), - [anon_sym_TRUE] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [anon_sym_False] = ACTIONS(2129), - [anon_sym_FALSE] = ACTIONS(2129), - [anon_sym_null] = ACTIONS(2129), - [anon_sym_Null] = ACTIONS(2129), - [anon_sym_NULL] = ACTIONS(2129), - [sym_string] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_array] = ACTIONS(2129), - [anon_sym_varray] = ACTIONS(2129), - [anon_sym_darray] = ACTIONS(2129), - [anon_sym_vec] = ACTIONS(2129), - [anon_sym_dict] = ACTIONS(2129), - [anon_sym_keyset] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_trait] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(2131), - [sym_final_modifier] = ACTIONS(2129), - [sym_xhp_modifier] = ACTIONS(2129), - [sym_xhp_identifier] = ACTIONS(2129), - [sym_xhp_class_identifier] = ACTIONS(2131), - [sym_comment] = ACTIONS(3), - }, - [938] = { - [sym_identifier] = ACTIONS(2505), - [sym_variable] = ACTIONS(2507), - [sym_pipe_variable] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_newtype] = ACTIONS(2505), - [anon_sym_shape] = ACTIONS(2505), - [anon_sym_tuple] = ACTIONS(2505), - [anon_sym_clone] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_print] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_LT_LT_LT] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_echo] = ACTIONS(2505), - [anon_sym_unset] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_concurrent] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_case] = ACTIONS(2505), - [anon_sym_default] = ACTIONS(2505), - [anon_sym_foreach] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [sym_float] = ACTIONS(2507), - [sym_integer] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_True] = ACTIONS(2505), - [anon_sym_TRUE] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_False] = ACTIONS(2505), - [anon_sym_FALSE] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [anon_sym_Null] = ACTIONS(2505), - [anon_sym_NULL] = ACTIONS(2505), - [sym_string] = ACTIONS(2507), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_array] = ACTIONS(2505), - [anon_sym_varray] = ACTIONS(2505), - [anon_sym_darray] = ACTIONS(2505), - [anon_sym_vec] = ACTIONS(2505), - [anon_sym_dict] = ACTIONS(2505), - [anon_sym_keyset] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_trait] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2507), - [sym_final_modifier] = ACTIONS(2505), - [sym_xhp_modifier] = ACTIONS(2505), - [sym_xhp_identifier] = ACTIONS(2505), - [sym_xhp_class_identifier] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - }, - [939] = { - [sym_identifier] = ACTIONS(2477), - [sym_variable] = ACTIONS(2479), - [sym_pipe_variable] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_newtype] = ACTIONS(2477), - [anon_sym_shape] = ACTIONS(2477), - [anon_sym_tuple] = ACTIONS(2477), - [anon_sym_clone] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_print] = ACTIONS(2477), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_LT_LT_LT] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2477), - [anon_sym_echo] = ACTIONS(2477), - [anon_sym_unset] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_concurrent] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_switch] = ACTIONS(2477), - [anon_sym_case] = ACTIONS(2477), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_foreach] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_using] = ACTIONS(2477), - [sym_float] = ACTIONS(2479), - [sym_integer] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_True] = ACTIONS(2477), - [anon_sym_TRUE] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [anon_sym_False] = ACTIONS(2477), - [anon_sym_FALSE] = ACTIONS(2477), - [anon_sym_null] = ACTIONS(2477), - [anon_sym_Null] = ACTIONS(2477), - [anon_sym_NULL] = ACTIONS(2477), - [sym_string] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_array] = ACTIONS(2477), - [anon_sym_varray] = ACTIONS(2477), - [anon_sym_darray] = ACTIONS(2477), - [anon_sym_vec] = ACTIONS(2477), - [anon_sym_dict] = ACTIONS(2477), - [anon_sym_keyset] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_trait] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_abstract] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2479), - [sym_final_modifier] = ACTIONS(2477), - [sym_xhp_modifier] = ACTIONS(2477), - [sym_xhp_identifier] = ACTIONS(2477), - [sym_xhp_class_identifier] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - }, - [940] = { - [sym_identifier] = ACTIONS(2469), - [sym_variable] = ACTIONS(2471), - [sym_pipe_variable] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_newtype] = ACTIONS(2469), - [anon_sym_shape] = ACTIONS(2469), - [anon_sym_tuple] = ACTIONS(2469), - [anon_sym_clone] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_print] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_echo] = ACTIONS(2469), - [anon_sym_unset] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_concurrent] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_function] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_case] = ACTIONS(2469), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_foreach] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [sym_float] = ACTIONS(2471), - [sym_integer] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_True] = ACTIONS(2469), - [anon_sym_TRUE] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [anon_sym_False] = ACTIONS(2469), - [anon_sym_FALSE] = ACTIONS(2469), - [anon_sym_null] = ACTIONS(2469), - [anon_sym_Null] = ACTIONS(2469), - [anon_sym_NULL] = ACTIONS(2469), - [sym_string] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_array] = ACTIONS(2469), - [anon_sym_varray] = ACTIONS(2469), - [anon_sym_darray] = ACTIONS(2469), - [anon_sym_vec] = ACTIONS(2469), - [anon_sym_dict] = ACTIONS(2469), - [anon_sym_keyset] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_trait] = ACTIONS(2469), - [anon_sym_interface] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_abstract] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2471), - [sym_final_modifier] = ACTIONS(2469), - [sym_xhp_modifier] = ACTIONS(2469), - [sym_xhp_identifier] = ACTIONS(2469), - [sym_xhp_class_identifier] = ACTIONS(2471), - [sym_comment] = ACTIONS(3), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2125), - [sym_variable] = ACTIONS(2127), - [sym_pipe_variable] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_newtype] = ACTIONS(2125), - [anon_sym_shape] = ACTIONS(2125), - [anon_sym_tuple] = ACTIONS(2125), - [anon_sym_clone] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_print] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_echo] = ACTIONS(2125), - [anon_sym_unset] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_concurrent] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_elseif] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_foreach] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [sym_float] = ACTIONS(2127), - [sym_integer] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_True] = ACTIONS(2125), - [anon_sym_TRUE] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [anon_sym_False] = ACTIONS(2125), - [anon_sym_FALSE] = ACTIONS(2125), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_Null] = ACTIONS(2125), - [anon_sym_NULL] = ACTIONS(2125), - [sym_string] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_array] = ACTIONS(2125), - [anon_sym_varray] = ACTIONS(2125), - [anon_sym_darray] = ACTIONS(2125), - [anon_sym_vec] = ACTIONS(2125), - [anon_sym_dict] = ACTIONS(2125), - [anon_sym_keyset] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2127), - [sym_final_modifier] = ACTIONS(2125), - [sym_xhp_modifier] = ACTIONS(2125), - [sym_xhp_identifier] = ACTIONS(2125), - [sym_xhp_class_identifier] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - }, - [942] = { - [sym_identifier] = ACTIONS(2453), - [sym_variable] = ACTIONS(2455), - [sym_pipe_variable] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_newtype] = ACTIONS(2453), - [anon_sym_shape] = ACTIONS(2453), - [anon_sym_tuple] = ACTIONS(2453), - [anon_sym_clone] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_LT_LT_LT] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_echo] = ACTIONS(2453), - [anon_sym_unset] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_concurrent] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_case] = ACTIONS(2453), - [anon_sym_default] = ACTIONS(2453), - [anon_sym_foreach] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [sym_float] = ACTIONS(2455), - [sym_integer] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_True] = ACTIONS(2453), - [anon_sym_TRUE] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_False] = ACTIONS(2453), - [anon_sym_FALSE] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [anon_sym_Null] = ACTIONS(2453), - [anon_sym_NULL] = ACTIONS(2453), - [sym_string] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_array] = ACTIONS(2453), - [anon_sym_varray] = ACTIONS(2453), - [anon_sym_darray] = ACTIONS(2453), - [anon_sym_vec] = ACTIONS(2453), - [anon_sym_dict] = ACTIONS(2453), - [anon_sym_keyset] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_trait] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [anon_sym_abstract] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2455), - [sym_final_modifier] = ACTIONS(2453), - [sym_xhp_modifier] = ACTIONS(2453), - [sym_xhp_identifier] = ACTIONS(2453), - [sym_xhp_class_identifier] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - }, - [943] = { - [sym_identifier] = ACTIONS(2101), - [sym_variable] = ACTIONS(2103), - [sym_pipe_variable] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_newtype] = ACTIONS(2101), - [anon_sym_shape] = ACTIONS(2101), - [anon_sym_tuple] = ACTIONS(2101), - [anon_sym_clone] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_print] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_LT_LT_LT] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_echo] = ACTIONS(2101), - [anon_sym_unset] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_concurrent] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_function] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_switch] = ACTIONS(2101), - [anon_sym_case] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_foreach] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_using] = ACTIONS(2101), - [sym_float] = ACTIONS(2103), - [sym_integer] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_True] = ACTIONS(2101), - [anon_sym_TRUE] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_False] = ACTIONS(2101), - [anon_sym_FALSE] = ACTIONS(2101), - [anon_sym_null] = ACTIONS(2101), - [anon_sym_Null] = ACTIONS(2101), - [anon_sym_NULL] = ACTIONS(2101), - [sym_string] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_array] = ACTIONS(2101), - [anon_sym_varray] = ACTIONS(2101), - [anon_sym_darray] = ACTIONS(2101), - [anon_sym_vec] = ACTIONS(2101), - [anon_sym_dict] = ACTIONS(2101), - [anon_sym_keyset] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2103), - [sym_final_modifier] = ACTIONS(2101), - [sym_xhp_modifier] = ACTIONS(2101), - [sym_xhp_identifier] = ACTIONS(2101), - [sym_xhp_class_identifier] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2117), - [sym_variable] = ACTIONS(2119), - [sym_pipe_variable] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_newtype] = ACTIONS(2117), - [anon_sym_shape] = ACTIONS(2117), - [anon_sym_tuple] = ACTIONS(2117), - [anon_sym_clone] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_print] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_LT_LT_LT] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_throw] = ACTIONS(2117), - [anon_sym_echo] = ACTIONS(2117), - [anon_sym_unset] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_concurrent] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_elseif] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_foreach] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [sym_float] = ACTIONS(2119), - [sym_integer] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_True] = ACTIONS(2117), - [anon_sym_TRUE] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_False] = ACTIONS(2117), - [anon_sym_FALSE] = ACTIONS(2117), - [anon_sym_null] = ACTIONS(2117), - [anon_sym_Null] = ACTIONS(2117), - [anon_sym_NULL] = ACTIONS(2117), - [sym_string] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_array] = ACTIONS(2117), - [anon_sym_varray] = ACTIONS(2117), - [anon_sym_darray] = ACTIONS(2117), - [anon_sym_vec] = ACTIONS(2117), - [anon_sym_dict] = ACTIONS(2117), - [anon_sym_keyset] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_trait] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2119), - [sym_final_modifier] = ACTIONS(2117), - [sym_xhp_modifier] = ACTIONS(2117), - [sym_xhp_identifier] = ACTIONS(2117), - [sym_xhp_class_identifier] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - }, - [945] = { - [sym_identifier] = ACTIONS(2401), - [sym_variable] = ACTIONS(2403), - [sym_pipe_variable] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_newtype] = ACTIONS(2401), - [anon_sym_shape] = ACTIONS(2401), - [anon_sym_tuple] = ACTIONS(2401), - [anon_sym_clone] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_print] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), - [anon_sym_LT_LT_LT] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_echo] = ACTIONS(2401), - [anon_sym_unset] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_concurrent] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_foreach] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [sym_float] = ACTIONS(2403), - [sym_integer] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_True] = ACTIONS(2401), - [anon_sym_TRUE] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [anon_sym_False] = ACTIONS(2401), - [anon_sym_FALSE] = ACTIONS(2401), - [anon_sym_null] = ACTIONS(2401), - [anon_sym_Null] = ACTIONS(2401), - [anon_sym_NULL] = ACTIONS(2401), - [sym_string] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_array] = ACTIONS(2401), - [anon_sym_varray] = ACTIONS(2401), - [anon_sym_darray] = ACTIONS(2401), - [anon_sym_vec] = ACTIONS(2401), - [anon_sym_dict] = ACTIONS(2401), - [anon_sym_keyset] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2403), - [sym_final_modifier] = ACTIONS(2401), - [sym_xhp_modifier] = ACTIONS(2401), - [sym_xhp_identifier] = ACTIONS(2401), - [sym_xhp_class_identifier] = ACTIONS(2403), - [sym_comment] = ACTIONS(3), - }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2113), - [sym_variable] = ACTIONS(2115), - [sym_pipe_variable] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_newtype] = ACTIONS(2113), - [anon_sym_shape] = ACTIONS(2113), - [anon_sym_tuple] = ACTIONS(2113), - [anon_sym_clone] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_print] = ACTIONS(2113), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(2113), - [anon_sym_LT_LT_LT] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_throw] = ACTIONS(2113), - [anon_sym_echo] = ACTIONS(2113), - [anon_sym_unset] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_concurrent] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_function] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_elseif] = ACTIONS(2113), - [anon_sym_else] = ACTIONS(2113), - [anon_sym_switch] = ACTIONS(2113), - [anon_sym_foreach] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_using] = ACTIONS(2113), - [sym_float] = ACTIONS(2115), - [sym_integer] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_True] = ACTIONS(2113), - [anon_sym_TRUE] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_False] = ACTIONS(2113), - [anon_sym_FALSE] = ACTIONS(2113), - [anon_sym_null] = ACTIONS(2113), - [anon_sym_Null] = ACTIONS(2113), - [anon_sym_NULL] = ACTIONS(2113), - [sym_string] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_array] = ACTIONS(2113), - [anon_sym_varray] = ACTIONS(2113), - [anon_sym_darray] = ACTIONS(2113), - [anon_sym_vec] = ACTIONS(2113), - [anon_sym_dict] = ACTIONS(2113), - [anon_sym_keyset] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_interface] = ACTIONS(2113), - [anon_sym_class] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_abstract] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(2115), - [sym_final_modifier] = ACTIONS(2113), - [sym_xhp_modifier] = ACTIONS(2113), - [sym_xhp_identifier] = ACTIONS(2113), - [sym_xhp_class_identifier] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - }, - [947] = { - [sym_identifier] = ACTIONS(2429), - [sym_variable] = ACTIONS(2431), - [sym_pipe_variable] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_newtype] = ACTIONS(2429), - [anon_sym_shape] = ACTIONS(2429), - [anon_sym_tuple] = ACTIONS(2429), - [anon_sym_clone] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), - [anon_sym_LT_LT_LT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_echo] = ACTIONS(2429), - [anon_sym_unset] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_concurrent] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_foreach] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [sym_float] = ACTIONS(2431), - [sym_integer] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_True] = ACTIONS(2429), - [anon_sym_TRUE] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [anon_sym_False] = ACTIONS(2429), - [anon_sym_FALSE] = ACTIONS(2429), - [anon_sym_null] = ACTIONS(2429), - [anon_sym_Null] = ACTIONS(2429), - [anon_sym_NULL] = ACTIONS(2429), - [sym_string] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_array] = ACTIONS(2429), - [anon_sym_varray] = ACTIONS(2429), - [anon_sym_darray] = ACTIONS(2429), - [anon_sym_vec] = ACTIONS(2429), - [anon_sym_dict] = ACTIONS(2429), - [anon_sym_keyset] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_interface] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_abstract] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2431), - [sym_final_modifier] = ACTIONS(2429), - [sym_xhp_modifier] = ACTIONS(2429), - [sym_xhp_identifier] = ACTIONS(2429), - [sym_xhp_class_identifier] = ACTIONS(2431), - [sym_comment] = ACTIONS(3), - }, - [948] = { - [sym_identifier] = ACTIONS(2417), - [sym_variable] = ACTIONS(2419), - [sym_pipe_variable] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_newtype] = ACTIONS(2417), - [anon_sym_shape] = ACTIONS(2417), - [anon_sym_tuple] = ACTIONS(2417), - [anon_sym_clone] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_print] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), - [anon_sym_LT_LT_LT] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_echo] = ACTIONS(2417), - [anon_sym_unset] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_concurrent] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_function] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_case] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_foreach] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [sym_float] = ACTIONS(2419), - [sym_integer] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_True] = ACTIONS(2417), - [anon_sym_TRUE] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [anon_sym_False] = ACTIONS(2417), - [anon_sym_FALSE] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2417), - [anon_sym_Null] = ACTIONS(2417), - [anon_sym_NULL] = ACTIONS(2417), - [sym_string] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_array] = ACTIONS(2417), - [anon_sym_varray] = ACTIONS(2417), - [anon_sym_darray] = ACTIONS(2417), - [anon_sym_vec] = ACTIONS(2417), - [anon_sym_dict] = ACTIONS(2417), - [anon_sym_keyset] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_trait] = ACTIONS(2417), - [anon_sym_interface] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_abstract] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2419), - [sym_final_modifier] = ACTIONS(2417), - [sym_xhp_modifier] = ACTIONS(2417), - [sym_xhp_identifier] = ACTIONS(2417), - [sym_xhp_class_identifier] = ACTIONS(2419), - [sym_comment] = ACTIONS(3), - }, - [949] = { - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [sym_variable] = ACTIONS(2111), - [sym_pipe_variable] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_newtype] = ACTIONS(2109), - [anon_sym_shape] = ACTIONS(2109), - [anon_sym_tuple] = ACTIONS(2109), - [anon_sym_clone] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_print] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_LT_LT_LT] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_echo] = ACTIONS(2109), - [anon_sym_unset] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_concurrent] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_elseif] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_foreach] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [sym_float] = ACTIONS(2111), - [sym_integer] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_True] = ACTIONS(2109), - [anon_sym_TRUE] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [anon_sym_False] = ACTIONS(2109), - [anon_sym_FALSE] = ACTIONS(2109), - [anon_sym_null] = ACTIONS(2109), - [anon_sym_Null] = ACTIONS(2109), - [anon_sym_NULL] = ACTIONS(2109), - [sym_string] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_array] = ACTIONS(2109), - [anon_sym_varray] = ACTIONS(2109), - [anon_sym_darray] = ACTIONS(2109), - [anon_sym_vec] = ACTIONS(2109), - [anon_sym_dict] = ACTIONS(2109), - [anon_sym_keyset] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(2111), - [sym_final_modifier] = ACTIONS(2109), - [sym_xhp_modifier] = ACTIONS(2109), - [sym_xhp_identifier] = ACTIONS(2109), - [sym_xhp_class_identifier] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - }, - [950] = { - [sym_identifier] = ACTIONS(2381), - [sym_variable] = ACTIONS(2383), - [sym_pipe_variable] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_newtype] = ACTIONS(2381), - [anon_sym_shape] = ACTIONS(2381), - [anon_sym_tuple] = ACTIONS(2381), - [anon_sym_clone] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_print] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_LT_LT_LT] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_echo] = ACTIONS(2381), - [anon_sym_unset] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_concurrent] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_function] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_case] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_foreach] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [sym_float] = ACTIONS(2383), - [sym_integer] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_True] = ACTIONS(2381), - [anon_sym_TRUE] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_False] = ACTIONS(2381), - [anon_sym_FALSE] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [anon_sym_Null] = ACTIONS(2381), - [anon_sym_NULL] = ACTIONS(2381), - [sym_string] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_array] = ACTIONS(2381), - [anon_sym_varray] = ACTIONS(2381), - [anon_sym_darray] = ACTIONS(2381), - [anon_sym_vec] = ACTIONS(2381), - [anon_sym_dict] = ACTIONS(2381), - [anon_sym_keyset] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_abstract] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(2383), - [sym_final_modifier] = ACTIONS(2381), - [sym_xhp_modifier] = ACTIONS(2381), - [sym_xhp_identifier] = ACTIONS(2381), - [sym_xhp_class_identifier] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - }, - [951] = { - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [sym_variable] = ACTIONS(2107), - [sym_pipe_variable] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_newtype] = ACTIONS(2105), - [anon_sym_shape] = ACTIONS(2105), - [anon_sym_tuple] = ACTIONS(2105), - [anon_sym_clone] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_print] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_LT_LT_LT] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_echo] = ACTIONS(2105), - [anon_sym_unset] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_concurrent] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_elseif] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_foreach] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [sym_float] = ACTIONS(2107), - [sym_integer] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_True] = ACTIONS(2105), - [anon_sym_TRUE] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_False] = ACTIONS(2105), - [anon_sym_FALSE] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_Null] = ACTIONS(2105), - [anon_sym_NULL] = ACTIONS(2105), - [sym_string] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_array] = ACTIONS(2105), - [anon_sym_varray] = ACTIONS(2105), - [anon_sym_darray] = ACTIONS(2105), - [anon_sym_vec] = ACTIONS(2105), - [anon_sym_dict] = ACTIONS(2105), - [anon_sym_keyset] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(2107), - [sym_final_modifier] = ACTIONS(2105), - [sym_xhp_modifier] = ACTIONS(2105), - [sym_xhp_identifier] = ACTIONS(2105), - [sym_xhp_class_identifier] = ACTIONS(2107), - [sym_comment] = ACTIONS(3), - }, - [952] = { - [sym_identifier] = ACTIONS(2153), - [sym_variable] = ACTIONS(2155), - [sym_pipe_variable] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_newtype] = ACTIONS(2153), - [anon_sym_shape] = ACTIONS(2153), - [anon_sym_tuple] = ACTIONS(2153), - [anon_sym_clone] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_print] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_LT_LT_LT] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_throw] = ACTIONS(2153), - [anon_sym_echo] = ACTIONS(2153), - [anon_sym_unset] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_concurrent] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_function] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_switch] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2153), - [anon_sym_foreach] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_using] = ACTIONS(2153), - [sym_float] = ACTIONS(2155), - [sym_integer] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_True] = ACTIONS(2153), - [anon_sym_TRUE] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_False] = ACTIONS(2153), - [anon_sym_FALSE] = ACTIONS(2153), - [anon_sym_null] = ACTIONS(2153), - [anon_sym_Null] = ACTIONS(2153), - [anon_sym_NULL] = ACTIONS(2153), - [sym_string] = ACTIONS(2155), - [anon_sym_AT] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_array] = ACTIONS(2153), - [anon_sym_varray] = ACTIONS(2153), - [anon_sym_darray] = ACTIONS(2153), - [anon_sym_vec] = ACTIONS(2153), - [anon_sym_dict] = ACTIONS(2153), - [anon_sym_keyset] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_class] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_abstract] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2155), - [sym_final_modifier] = ACTIONS(2153), - [sym_xhp_modifier] = ACTIONS(2153), - [sym_xhp_identifier] = ACTIONS(2153), - [sym_xhp_class_identifier] = ACTIONS(2155), - [sym_comment] = ACTIONS(3), - }, - [953] = { - [sym_identifier] = ACTIONS(2353), - [sym_variable] = ACTIONS(2355), - [sym_pipe_variable] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_newtype] = ACTIONS(2353), - [anon_sym_shape] = ACTIONS(2353), - [anon_sym_tuple] = ACTIONS(2353), - [anon_sym_clone] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_print] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_LT_LT_LT] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_echo] = ACTIONS(2353), - [anon_sym_unset] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_concurrent] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_foreach] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_using] = ACTIONS(2353), - [sym_float] = ACTIONS(2355), - [sym_integer] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_True] = ACTIONS(2353), - [anon_sym_TRUE] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_False] = ACTIONS(2353), - [anon_sym_FALSE] = ACTIONS(2353), - [anon_sym_null] = ACTIONS(2353), - [anon_sym_Null] = ACTIONS(2353), - [anon_sym_NULL] = ACTIONS(2353), - [sym_string] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_array] = ACTIONS(2353), - [anon_sym_varray] = ACTIONS(2353), - [anon_sym_darray] = ACTIONS(2353), - [anon_sym_vec] = ACTIONS(2353), - [anon_sym_dict] = ACTIONS(2353), - [anon_sym_keyset] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2355), - [sym_final_modifier] = ACTIONS(2353), - [sym_xhp_modifier] = ACTIONS(2353), - [sym_xhp_identifier] = ACTIONS(2353), - [sym_xhp_class_identifier] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - }, - [954] = { - [ts_builtin_sym_end] = ACTIONS(2447), - [sym_identifier] = ACTIONS(2445), - [sym_variable] = ACTIONS(2447), - [sym_pipe_variable] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_newtype] = ACTIONS(2445), - [anon_sym_shape] = ACTIONS(2445), - [anon_sym_tuple] = ACTIONS(2445), - [anon_sym_clone] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_print] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_LT_LT_LT] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_echo] = ACTIONS(2445), - [anon_sym_unset] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_concurrent] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_elseif] = ACTIONS(2445), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_foreach] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [sym_float] = ACTIONS(2447), - [sym_integer] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_True] = ACTIONS(2445), - [anon_sym_TRUE] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [anon_sym_False] = ACTIONS(2445), - [anon_sym_FALSE] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(2445), - [anon_sym_Null] = ACTIONS(2445), - [anon_sym_NULL] = ACTIONS(2445), - [sym_string] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_array] = ACTIONS(2445), - [anon_sym_varray] = ACTIONS(2445), - [anon_sym_darray] = ACTIONS(2445), - [anon_sym_vec] = ACTIONS(2445), - [anon_sym_dict] = ACTIONS(2445), - [anon_sym_keyset] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_abstract] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2447), - [sym_final_modifier] = ACTIONS(2445), - [sym_xhp_modifier] = ACTIONS(2445), - [sym_xhp_identifier] = ACTIONS(2445), - [sym_xhp_class_identifier] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2097), - [sym_variable] = ACTIONS(2099), - [sym_pipe_variable] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_newtype] = ACTIONS(2097), - [anon_sym_shape] = ACTIONS(2097), - [anon_sym_tuple] = ACTIONS(2097), - [anon_sym_clone] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_print] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_LT_LT_LT] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_echo] = ACTIONS(2097), - [anon_sym_unset] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_concurrent] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_elseif] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_foreach] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [sym_float] = ACTIONS(2099), - [sym_integer] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_True] = ACTIONS(2097), - [anon_sym_TRUE] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_False] = ACTIONS(2097), - [anon_sym_FALSE] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [anon_sym_Null] = ACTIONS(2097), - [anon_sym_NULL] = ACTIONS(2097), - [sym_string] = ACTIONS(2099), - [anon_sym_AT] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_array] = ACTIONS(2097), - [anon_sym_varray] = ACTIONS(2097), - [anon_sym_darray] = ACTIONS(2097), - [anon_sym_vec] = ACTIONS(2097), - [anon_sym_dict] = ACTIONS(2097), - [anon_sym_keyset] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2099), - [sym_final_modifier] = ACTIONS(2097), - [sym_xhp_modifier] = ACTIONS(2097), - [sym_xhp_identifier] = ACTIONS(2097), - [sym_xhp_class_identifier] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), - }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2353), - [sym_variable] = ACTIONS(2355), - [sym_pipe_variable] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_newtype] = ACTIONS(2353), - [anon_sym_shape] = ACTIONS(2353), - [anon_sym_tuple] = ACTIONS(2353), - [anon_sym_clone] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_print] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_LT_LT_LT] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_echo] = ACTIONS(2353), - [anon_sym_unset] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_concurrent] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_elseif] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_foreach] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_using] = ACTIONS(2353), - [sym_float] = ACTIONS(2355), - [sym_integer] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_True] = ACTIONS(2353), - [anon_sym_TRUE] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_False] = ACTIONS(2353), - [anon_sym_FALSE] = ACTIONS(2353), - [anon_sym_null] = ACTIONS(2353), - [anon_sym_Null] = ACTIONS(2353), - [anon_sym_NULL] = ACTIONS(2353), - [sym_string] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_array] = ACTIONS(2353), - [anon_sym_varray] = ACTIONS(2353), - [anon_sym_darray] = ACTIONS(2353), - [anon_sym_vec] = ACTIONS(2353), - [anon_sym_dict] = ACTIONS(2353), - [anon_sym_keyset] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2355), - [sym_final_modifier] = ACTIONS(2353), - [sym_xhp_modifier] = ACTIONS(2353), - [sym_xhp_identifier] = ACTIONS(2353), - [sym_xhp_class_identifier] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - }, - [957] = { - [sym_identifier] = ACTIONS(2189), - [sym_variable] = ACTIONS(2191), - [sym_pipe_variable] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_newtype] = ACTIONS(2189), - [anon_sym_shape] = ACTIONS(2189), - [anon_sym_tuple] = ACTIONS(2189), - [anon_sym_clone] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_print] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_LT_LT_LT] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_echo] = ACTIONS(2189), - [anon_sym_unset] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_concurrent] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_foreach] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [sym_float] = ACTIONS(2191), - [sym_integer] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_True] = ACTIONS(2189), - [anon_sym_TRUE] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_False] = ACTIONS(2189), - [anon_sym_FALSE] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_Null] = ACTIONS(2189), - [anon_sym_NULL] = ACTIONS(2189), - [sym_string] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_array] = ACTIONS(2189), - [anon_sym_varray] = ACTIONS(2189), - [anon_sym_darray] = ACTIONS(2189), - [anon_sym_vec] = ACTIONS(2189), - [anon_sym_dict] = ACTIONS(2189), - [anon_sym_keyset] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2191), - [sym_final_modifier] = ACTIONS(2189), - [sym_xhp_modifier] = ACTIONS(2189), - [sym_xhp_identifier] = ACTIONS(2189), - [sym_xhp_class_identifier] = ACTIONS(2191), - [sym_comment] = ACTIONS(3), - }, - [958] = { - [sym_identifier] = ACTIONS(2185), - [sym_variable] = ACTIONS(2187), - [sym_pipe_variable] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_newtype] = ACTIONS(2185), - [anon_sym_shape] = ACTIONS(2185), - [anon_sym_tuple] = ACTIONS(2185), - [anon_sym_clone] = ACTIONS(2185), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_print] = ACTIONS(2185), - [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_LT_LT_LT] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_throw] = ACTIONS(2185), - [anon_sym_echo] = ACTIONS(2185), - [anon_sym_unset] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_concurrent] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_function] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_switch] = ACTIONS(2185), - [anon_sym_case] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_foreach] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_do] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_using] = ACTIONS(2185), - [sym_float] = ACTIONS(2187), - [sym_integer] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_True] = ACTIONS(2185), - [anon_sym_TRUE] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [anon_sym_False] = ACTIONS(2185), - [anon_sym_FALSE] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_Null] = ACTIONS(2185), - [anon_sym_NULL] = ACTIONS(2185), - [sym_string] = ACTIONS(2187), - [anon_sym_AT] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [anon_sym_array] = ACTIONS(2185), - [anon_sym_varray] = ACTIONS(2185), - [anon_sym_darray] = ACTIONS(2185), - [anon_sym_vec] = ACTIONS(2185), - [anon_sym_dict] = ACTIONS(2185), - [anon_sym_keyset] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_class] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_abstract] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2187), - [sym_final_modifier] = ACTIONS(2185), - [sym_xhp_modifier] = ACTIONS(2185), - [sym_xhp_identifier] = ACTIONS(2185), - [sym_xhp_class_identifier] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(2383), - [sym_identifier] = ACTIONS(2381), - [sym_variable] = ACTIONS(2383), - [sym_pipe_variable] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_newtype] = ACTIONS(2381), - [anon_sym_shape] = ACTIONS(2381), - [anon_sym_tuple] = ACTIONS(2381), - [anon_sym_clone] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_print] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_LT_LT_LT] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_echo] = ACTIONS(2381), - [anon_sym_unset] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_concurrent] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_function] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_elseif] = ACTIONS(2381), - [anon_sym_else] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_foreach] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [sym_float] = ACTIONS(2383), - [sym_integer] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_True] = ACTIONS(2381), - [anon_sym_TRUE] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_False] = ACTIONS(2381), - [anon_sym_FALSE] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [anon_sym_Null] = ACTIONS(2381), - [anon_sym_NULL] = ACTIONS(2381), - [sym_string] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_array] = ACTIONS(2381), - [anon_sym_varray] = ACTIONS(2381), - [anon_sym_darray] = ACTIONS(2381), - [anon_sym_vec] = ACTIONS(2381), - [anon_sym_dict] = ACTIONS(2381), - [anon_sym_keyset] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_abstract] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(2383), - [sym_final_modifier] = ACTIONS(2381), - [sym_xhp_modifier] = ACTIONS(2381), - [sym_xhp_identifier] = ACTIONS(2381), - [sym_xhp_class_identifier] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - }, - [960] = { - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2441), - [sym_variable] = ACTIONS(2443), - [sym_pipe_variable] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_newtype] = ACTIONS(2441), - [anon_sym_shape] = ACTIONS(2441), - [anon_sym_tuple] = ACTIONS(2441), - [anon_sym_clone] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_LT] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2441), - [anon_sym_echo] = ACTIONS(2441), - [anon_sym_unset] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_concurrent] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_elseif] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2441), - [anon_sym_foreach] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_using] = ACTIONS(2441), - [sym_float] = ACTIONS(2443), - [sym_integer] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_True] = ACTIONS(2441), - [anon_sym_TRUE] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [anon_sym_False] = ACTIONS(2441), - [anon_sym_FALSE] = ACTIONS(2441), - [anon_sym_null] = ACTIONS(2441), - [anon_sym_Null] = ACTIONS(2441), - [anon_sym_NULL] = ACTIONS(2441), - [sym_string] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_array] = ACTIONS(2441), - [anon_sym_varray] = ACTIONS(2441), - [anon_sym_darray] = ACTIONS(2441), - [anon_sym_vec] = ACTIONS(2441), - [anon_sym_dict] = ACTIONS(2441), - [anon_sym_keyset] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_interface] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_abstract] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2443), - [sym_final_modifier] = ACTIONS(2441), - [sym_xhp_modifier] = ACTIONS(2441), - [sym_xhp_identifier] = ACTIONS(2441), - [sym_xhp_class_identifier] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - }, - [961] = { - [ts_builtin_sym_end] = ACTIONS(2419), - [sym_identifier] = ACTIONS(2417), - [sym_variable] = ACTIONS(2419), - [sym_pipe_variable] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_newtype] = ACTIONS(2417), - [anon_sym_shape] = ACTIONS(2417), - [anon_sym_tuple] = ACTIONS(2417), - [anon_sym_clone] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_print] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), - [anon_sym_LT_LT_LT] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_echo] = ACTIONS(2417), - [anon_sym_unset] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_concurrent] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_function] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_elseif] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_foreach] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [sym_float] = ACTIONS(2419), - [sym_integer] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_True] = ACTIONS(2417), - [anon_sym_TRUE] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [anon_sym_False] = ACTIONS(2417), - [anon_sym_FALSE] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2417), - [anon_sym_Null] = ACTIONS(2417), - [anon_sym_NULL] = ACTIONS(2417), - [sym_string] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_array] = ACTIONS(2417), - [anon_sym_varray] = ACTIONS(2417), - [anon_sym_darray] = ACTIONS(2417), - [anon_sym_vec] = ACTIONS(2417), - [anon_sym_dict] = ACTIONS(2417), - [anon_sym_keyset] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_trait] = ACTIONS(2417), - [anon_sym_interface] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_abstract] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2419), - [sym_final_modifier] = ACTIONS(2417), - [sym_xhp_modifier] = ACTIONS(2417), - [sym_xhp_identifier] = ACTIONS(2417), - [sym_xhp_class_identifier] = ACTIONS(2419), - [sym_comment] = ACTIONS(3), - }, - [962] = { - [sym_identifier] = ACTIONS(2177), - [sym_variable] = ACTIONS(2179), - [sym_pipe_variable] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_newtype] = ACTIONS(2177), - [anon_sym_shape] = ACTIONS(2177), - [anon_sym_tuple] = ACTIONS(2177), - [anon_sym_clone] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_print] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_LT_LT_LT] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_throw] = ACTIONS(2177), - [anon_sym_echo] = ACTIONS(2177), - [anon_sym_unset] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_concurrent] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_function] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [anon_sym_case] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_foreach] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_using] = ACTIONS(2177), - [sym_float] = ACTIONS(2179), - [sym_integer] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_True] = ACTIONS(2177), - [anon_sym_TRUE] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [anon_sym_False] = ACTIONS(2177), - [anon_sym_FALSE] = ACTIONS(2177), - [anon_sym_null] = ACTIONS(2177), - [anon_sym_Null] = ACTIONS(2177), - [anon_sym_NULL] = ACTIONS(2177), - [sym_string] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_array] = ACTIONS(2177), - [anon_sym_varray] = ACTIONS(2177), - [anon_sym_darray] = ACTIONS(2177), - [anon_sym_vec] = ACTIONS(2177), - [anon_sym_dict] = ACTIONS(2177), - [anon_sym_keyset] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_class] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_abstract] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2179), - [sym_final_modifier] = ACTIONS(2177), - [sym_xhp_modifier] = ACTIONS(2177), - [sym_xhp_identifier] = ACTIONS(2177), - [sym_xhp_class_identifier] = ACTIONS(2179), - [sym_comment] = ACTIONS(3), - }, - [963] = { - [sym_identifier] = ACTIONS(2169), - [sym_variable] = ACTIONS(2171), - [sym_pipe_variable] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_newtype] = ACTIONS(2169), - [anon_sym_shape] = ACTIONS(2169), - [anon_sym_tuple] = ACTIONS(2169), - [anon_sym_clone] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2169), - [anon_sym_print] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2169), - [anon_sym_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_LT_LT_LT] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_throw] = ACTIONS(2169), - [anon_sym_echo] = ACTIONS(2169), - [anon_sym_unset] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_concurrent] = ACTIONS(2169), - [anon_sym_use] = ACTIONS(2169), - [anon_sym_function] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [anon_sym_case] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_foreach] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2169), - [sym_float] = ACTIONS(2171), - [sym_integer] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_True] = ACTIONS(2169), - [anon_sym_TRUE] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [anon_sym_False] = ACTIONS(2169), - [anon_sym_FALSE] = ACTIONS(2169), - [anon_sym_null] = ACTIONS(2169), - [anon_sym_Null] = ACTIONS(2169), - [anon_sym_NULL] = ACTIONS(2169), - [sym_string] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_array] = ACTIONS(2169), - [anon_sym_varray] = ACTIONS(2169), - [anon_sym_darray] = ACTIONS(2169), - [anon_sym_vec] = ACTIONS(2169), - [anon_sym_dict] = ACTIONS(2169), - [anon_sym_keyset] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_trait] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_abstract] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2171), - [sym_final_modifier] = ACTIONS(2169), - [sym_xhp_modifier] = ACTIONS(2169), - [sym_xhp_identifier] = ACTIONS(2169), - [sym_xhp_class_identifier] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - }, - [964] = { - [ts_builtin_sym_end] = ACTIONS(2395), - [sym_identifier] = ACTIONS(2393), - [sym_variable] = ACTIONS(2395), - [sym_pipe_variable] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_newtype] = ACTIONS(2393), - [anon_sym_shape] = ACTIONS(2393), - [anon_sym_tuple] = ACTIONS(2393), - [anon_sym_clone] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_print] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_LT_LT_LT] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_echo] = ACTIONS(2393), - [anon_sym_unset] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_concurrent] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_elseif] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_foreach] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [sym_float] = ACTIONS(2395), - [sym_integer] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_True] = ACTIONS(2393), - [anon_sym_TRUE] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_False] = ACTIONS(2393), - [anon_sym_FALSE] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2393), - [anon_sym_Null] = ACTIONS(2393), - [anon_sym_NULL] = ACTIONS(2393), - [sym_string] = ACTIONS(2395), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_array] = ACTIONS(2393), - [anon_sym_varray] = ACTIONS(2393), - [anon_sym_darray] = ACTIONS(2393), - [anon_sym_vec] = ACTIONS(2393), - [anon_sym_dict] = ACTIONS(2393), - [anon_sym_keyset] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2395), - [sym_final_modifier] = ACTIONS(2393), - [sym_xhp_modifier] = ACTIONS(2393), - [sym_xhp_identifier] = ACTIONS(2393), - [sym_xhp_class_identifier] = ACTIONS(2395), - [sym_comment] = ACTIONS(3), - }, - [965] = { - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2429), - [sym_variable] = ACTIONS(2431), - [sym_pipe_variable] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_newtype] = ACTIONS(2429), - [anon_sym_shape] = ACTIONS(2429), - [anon_sym_tuple] = ACTIONS(2429), - [anon_sym_clone] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), - [anon_sym_LT_LT_LT] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_echo] = ACTIONS(2429), - [anon_sym_unset] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_concurrent] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_elseif] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_foreach] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [sym_float] = ACTIONS(2431), - [sym_integer] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_True] = ACTIONS(2429), - [anon_sym_TRUE] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [anon_sym_False] = ACTIONS(2429), - [anon_sym_FALSE] = ACTIONS(2429), - [anon_sym_null] = ACTIONS(2429), - [anon_sym_Null] = ACTIONS(2429), - [anon_sym_NULL] = ACTIONS(2429), - [sym_string] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_array] = ACTIONS(2429), - [anon_sym_varray] = ACTIONS(2429), - [anon_sym_darray] = ACTIONS(2429), - [anon_sym_vec] = ACTIONS(2429), - [anon_sym_dict] = ACTIONS(2429), - [anon_sym_keyset] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_interface] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_abstract] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2431), - [sym_final_modifier] = ACTIONS(2429), - [sym_xhp_modifier] = ACTIONS(2429), - [sym_xhp_identifier] = ACTIONS(2429), - [sym_xhp_class_identifier] = ACTIONS(2431), - [sym_comment] = ACTIONS(3), - }, - [966] = { - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_case] = ACTIONS(2035), - [anon_sym_default] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - }, - [967] = { - [sym_identifier] = ACTIONS(2129), - [sym_variable] = ACTIONS(2131), - [sym_pipe_variable] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_newtype] = ACTIONS(2129), - [anon_sym_shape] = ACTIONS(2129), - [anon_sym_tuple] = ACTIONS(2129), - [anon_sym_clone] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_print] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_LT_LT_LT] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_echo] = ACTIONS(2129), - [anon_sym_unset] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_concurrent] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_case] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_foreach] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [sym_float] = ACTIONS(2131), - [sym_integer] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_True] = ACTIONS(2129), - [anon_sym_TRUE] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [anon_sym_False] = ACTIONS(2129), - [anon_sym_FALSE] = ACTIONS(2129), - [anon_sym_null] = ACTIONS(2129), - [anon_sym_Null] = ACTIONS(2129), - [anon_sym_NULL] = ACTIONS(2129), - [sym_string] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_array] = ACTIONS(2129), - [anon_sym_varray] = ACTIONS(2129), - [anon_sym_darray] = ACTIONS(2129), - [anon_sym_vec] = ACTIONS(2129), - [anon_sym_dict] = ACTIONS(2129), - [anon_sym_keyset] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_trait] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(2131), - [sym_final_modifier] = ACTIONS(2129), - [sym_xhp_modifier] = ACTIONS(2129), - [sym_xhp_identifier] = ACTIONS(2129), - [sym_xhp_class_identifier] = ACTIONS(2131), - [sym_comment] = ACTIONS(3), - }, - [968] = { - [sym_identifier] = ACTIONS(2125), - [sym_variable] = ACTIONS(2127), - [sym_pipe_variable] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_newtype] = ACTIONS(2125), - [anon_sym_shape] = ACTIONS(2125), - [anon_sym_tuple] = ACTIONS(2125), - [anon_sym_clone] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_print] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_echo] = ACTIONS(2125), - [anon_sym_unset] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_concurrent] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_case] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_foreach] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [sym_float] = ACTIONS(2127), - [sym_integer] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_True] = ACTIONS(2125), - [anon_sym_TRUE] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [anon_sym_False] = ACTIONS(2125), - [anon_sym_FALSE] = ACTIONS(2125), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_Null] = ACTIONS(2125), - [anon_sym_NULL] = ACTIONS(2125), - [sym_string] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_array] = ACTIONS(2125), - [anon_sym_varray] = ACTIONS(2125), - [anon_sym_darray] = ACTIONS(2125), - [anon_sym_vec] = ACTIONS(2125), - [anon_sym_dict] = ACTIONS(2125), - [anon_sym_keyset] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2127), - [sym_final_modifier] = ACTIONS(2125), - [sym_xhp_modifier] = ACTIONS(2125), - [sym_xhp_identifier] = ACTIONS(2125), - [sym_xhp_class_identifier] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - }, - [969] = { - [ts_builtin_sym_end] = ACTIONS(2591), - [sym_identifier] = ACTIONS(2589), - [sym_variable] = ACTIONS(2591), - [sym_pipe_variable] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2589), - [anon_sym_newtype] = ACTIONS(2589), - [anon_sym_shape] = ACTIONS(2589), - [anon_sym_tuple] = ACTIONS(2589), - [anon_sym_clone] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2589), - [anon_sym_print] = ACTIONS(2589), - [anon_sym_namespace] = ACTIONS(2589), - [anon_sym_include] = ACTIONS(2589), - [anon_sym_include_once] = ACTIONS(2589), - [anon_sym_require] = ACTIONS(2589), - [anon_sym_require_once] = ACTIONS(2589), - [anon_sym_BSLASH] = ACTIONS(2591), - [anon_sym_self] = ACTIONS(2589), - [anon_sym_parent] = ACTIONS(2589), - [anon_sym_static] = ACTIONS(2589), - [anon_sym_LT_LT] = ACTIONS(2589), - [anon_sym_LT_LT_LT] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2589), - [anon_sym_break] = ACTIONS(2589), - [anon_sym_continue] = ACTIONS(2589), - [anon_sym_throw] = ACTIONS(2589), - [anon_sym_echo] = ACTIONS(2589), - [anon_sym_unset] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_concurrent] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2589), - [anon_sym_const] = ACTIONS(2589), - [anon_sym_if] = ACTIONS(2589), - [anon_sym_elseif] = ACTIONS(2589), - [anon_sym_else] = ACTIONS(2589), - [anon_sym_switch] = ACTIONS(2589), - [anon_sym_foreach] = ACTIONS(2589), - [anon_sym_while] = ACTIONS(2589), - [anon_sym_do] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2589), - [anon_sym_using] = ACTIONS(2589), - [sym_float] = ACTIONS(2591), - [sym_integer] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2589), - [anon_sym_True] = ACTIONS(2589), - [anon_sym_TRUE] = ACTIONS(2589), - [anon_sym_false] = ACTIONS(2589), - [anon_sym_False] = ACTIONS(2589), - [anon_sym_FALSE] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2589), - [anon_sym_Null] = ACTIONS(2589), - [anon_sym_NULL] = ACTIONS(2589), - [sym_string] = ACTIONS(2591), - [anon_sym_AT] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2591), - [anon_sym_array] = ACTIONS(2589), - [anon_sym_varray] = ACTIONS(2589), - [anon_sym_darray] = ACTIONS(2589), - [anon_sym_vec] = ACTIONS(2589), - [anon_sym_dict] = ACTIONS(2589), - [anon_sym_keyset] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_list] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2591), - [anon_sym_PLUS_PLUS] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2591), - [anon_sym_await] = ACTIONS(2589), - [anon_sym_async] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2589), - [anon_sym_trait] = ACTIONS(2589), - [anon_sym_interface] = ACTIONS(2589), - [anon_sym_class] = ACTIONS(2589), - [anon_sym_enum] = ACTIONS(2589), - [anon_sym_abstract] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2591), - [sym_final_modifier] = ACTIONS(2589), - [sym_xhp_modifier] = ACTIONS(2589), - [sym_xhp_identifier] = ACTIONS(2589), - [sym_xhp_class_identifier] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - }, - [970] = { - [sym_identifier] = ACTIONS(2117), - [sym_variable] = ACTIONS(2119), - [sym_pipe_variable] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_newtype] = ACTIONS(2117), - [anon_sym_shape] = ACTIONS(2117), - [anon_sym_tuple] = ACTIONS(2117), - [anon_sym_clone] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_print] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_LT_LT_LT] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_throw] = ACTIONS(2117), - [anon_sym_echo] = ACTIONS(2117), - [anon_sym_unset] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_concurrent] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_case] = ACTIONS(2117), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_foreach] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [sym_float] = ACTIONS(2119), - [sym_integer] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_True] = ACTIONS(2117), - [anon_sym_TRUE] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_False] = ACTIONS(2117), - [anon_sym_FALSE] = ACTIONS(2117), - [anon_sym_null] = ACTIONS(2117), - [anon_sym_Null] = ACTIONS(2117), - [anon_sym_NULL] = ACTIONS(2117), - [sym_string] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_array] = ACTIONS(2117), - [anon_sym_varray] = ACTIONS(2117), - [anon_sym_darray] = ACTIONS(2117), - [anon_sym_vec] = ACTIONS(2117), - [anon_sym_dict] = ACTIONS(2117), - [anon_sym_keyset] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_trait] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2119), - [sym_final_modifier] = ACTIONS(2117), - [sym_xhp_modifier] = ACTIONS(2117), - [sym_xhp_identifier] = ACTIONS(2117), - [sym_xhp_class_identifier] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - }, - [971] = { - [sym_identifier] = ACTIONS(2113), - [sym_variable] = ACTIONS(2115), - [sym_pipe_variable] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_newtype] = ACTIONS(2113), - [anon_sym_shape] = ACTIONS(2113), - [anon_sym_tuple] = ACTIONS(2113), - [anon_sym_clone] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_print] = ACTIONS(2113), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(2113), - [anon_sym_LT_LT_LT] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_throw] = ACTIONS(2113), - [anon_sym_echo] = ACTIONS(2113), - [anon_sym_unset] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_concurrent] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_function] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_switch] = ACTIONS(2113), - [anon_sym_case] = ACTIONS(2113), - [anon_sym_default] = ACTIONS(2113), - [anon_sym_foreach] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_using] = ACTIONS(2113), - [sym_float] = ACTIONS(2115), - [sym_integer] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_True] = ACTIONS(2113), - [anon_sym_TRUE] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_False] = ACTIONS(2113), - [anon_sym_FALSE] = ACTIONS(2113), - [anon_sym_null] = ACTIONS(2113), - [anon_sym_Null] = ACTIONS(2113), - [anon_sym_NULL] = ACTIONS(2113), - [sym_string] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_array] = ACTIONS(2113), - [anon_sym_varray] = ACTIONS(2113), - [anon_sym_darray] = ACTIONS(2113), - [anon_sym_vec] = ACTIONS(2113), - [anon_sym_dict] = ACTIONS(2113), - [anon_sym_keyset] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_interface] = ACTIONS(2113), - [anon_sym_class] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_abstract] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(2115), - [sym_final_modifier] = ACTIONS(2113), - [sym_xhp_modifier] = ACTIONS(2113), - [sym_xhp_identifier] = ACTIONS(2113), - [sym_xhp_class_identifier] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - }, - [972] = { - [sym_identifier] = ACTIONS(2181), - [sym_variable] = ACTIONS(2183), - [sym_pipe_variable] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_newtype] = ACTIONS(2181), - [anon_sym_shape] = ACTIONS(2181), - [anon_sym_tuple] = ACTIONS(2181), - [anon_sym_clone] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_print] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_LT_LT_LT] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_echo] = ACTIONS(2181), - [anon_sym_unset] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_concurrent] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_foreach] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [sym_float] = ACTIONS(2183), - [sym_integer] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_True] = ACTIONS(2181), - [anon_sym_TRUE] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [anon_sym_False] = ACTIONS(2181), - [anon_sym_FALSE] = ACTIONS(2181), - [anon_sym_null] = ACTIONS(2181), - [anon_sym_Null] = ACTIONS(2181), - [anon_sym_NULL] = ACTIONS(2181), - [sym_string] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_array] = ACTIONS(2181), - [anon_sym_varray] = ACTIONS(2181), - [anon_sym_darray] = ACTIONS(2181), - [anon_sym_vec] = ACTIONS(2181), - [anon_sym_dict] = ACTIONS(2181), - [anon_sym_keyset] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2183), - [sym_final_modifier] = ACTIONS(2181), - [sym_xhp_modifier] = ACTIONS(2181), - [sym_xhp_identifier] = ACTIONS(2181), - [sym_xhp_class_identifier] = ACTIONS(2183), - [sym_comment] = ACTIONS(3), - }, - [973] = { - [ts_builtin_sym_end] = ACTIONS(2403), - [sym_identifier] = ACTIONS(2401), - [sym_variable] = ACTIONS(2403), - [sym_pipe_variable] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_newtype] = ACTIONS(2401), - [anon_sym_shape] = ACTIONS(2401), - [anon_sym_tuple] = ACTIONS(2401), - [anon_sym_clone] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_print] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), - [anon_sym_LT_LT_LT] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_echo] = ACTIONS(2401), - [anon_sym_unset] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_concurrent] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_elseif] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_foreach] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [sym_float] = ACTIONS(2403), - [sym_integer] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_True] = ACTIONS(2401), - [anon_sym_TRUE] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [anon_sym_False] = ACTIONS(2401), - [anon_sym_FALSE] = ACTIONS(2401), - [anon_sym_null] = ACTIONS(2401), - [anon_sym_Null] = ACTIONS(2401), - [anon_sym_NULL] = ACTIONS(2401), - [sym_string] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_array] = ACTIONS(2401), - [anon_sym_varray] = ACTIONS(2401), - [anon_sym_darray] = ACTIONS(2401), - [anon_sym_vec] = ACTIONS(2401), - [anon_sym_dict] = ACTIONS(2401), - [anon_sym_keyset] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2403), - [sym_final_modifier] = ACTIONS(2401), - [sym_xhp_modifier] = ACTIONS(2401), - [sym_xhp_identifier] = ACTIONS(2401), - [sym_xhp_class_identifier] = ACTIONS(2403), - [sym_comment] = ACTIONS(3), - }, - [974] = { - [sym_identifier] = ACTIONS(2109), - [sym_variable] = ACTIONS(2111), - [sym_pipe_variable] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_newtype] = ACTIONS(2109), - [anon_sym_shape] = ACTIONS(2109), - [anon_sym_tuple] = ACTIONS(2109), - [anon_sym_clone] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_print] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_LT_LT_LT] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_echo] = ACTIONS(2109), - [anon_sym_unset] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_concurrent] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_foreach] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [sym_float] = ACTIONS(2111), - [sym_integer] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_True] = ACTIONS(2109), - [anon_sym_TRUE] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [anon_sym_False] = ACTIONS(2109), - [anon_sym_FALSE] = ACTIONS(2109), - [anon_sym_null] = ACTIONS(2109), - [anon_sym_Null] = ACTIONS(2109), - [anon_sym_NULL] = ACTIONS(2109), - [sym_string] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_array] = ACTIONS(2109), - [anon_sym_varray] = ACTIONS(2109), - [anon_sym_darray] = ACTIONS(2109), - [anon_sym_vec] = ACTIONS(2109), - [anon_sym_dict] = ACTIONS(2109), - [anon_sym_keyset] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(2111), - [sym_final_modifier] = ACTIONS(2109), - [sym_xhp_modifier] = ACTIONS(2109), - [sym_xhp_identifier] = ACTIONS(2109), - [sym_xhp_class_identifier] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - }, - [975] = { - [sym_identifier] = ACTIONS(2105), - [sym_variable] = ACTIONS(2107), - [sym_pipe_variable] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_newtype] = ACTIONS(2105), - [anon_sym_shape] = ACTIONS(2105), - [anon_sym_tuple] = ACTIONS(2105), - [anon_sym_clone] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_print] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_LT_LT_LT] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_echo] = ACTIONS(2105), - [anon_sym_unset] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_concurrent] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_foreach] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [sym_float] = ACTIONS(2107), - [sym_integer] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_True] = ACTIONS(2105), - [anon_sym_TRUE] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_False] = ACTIONS(2105), - [anon_sym_FALSE] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_Null] = ACTIONS(2105), - [anon_sym_NULL] = ACTIONS(2105), - [sym_string] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_array] = ACTIONS(2105), - [anon_sym_varray] = ACTIONS(2105), - [anon_sym_darray] = ACTIONS(2105), - [anon_sym_vec] = ACTIONS(2105), - [anon_sym_dict] = ACTIONS(2105), - [anon_sym_keyset] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(2107), - [sym_final_modifier] = ACTIONS(2105), - [sym_xhp_modifier] = ACTIONS(2105), - [sym_xhp_identifier] = ACTIONS(2105), - [sym_xhp_class_identifier] = ACTIONS(2107), - [sym_comment] = ACTIONS(3), - }, - [976] = { - [sym_identifier] = ACTIONS(2445), - [sym_variable] = ACTIONS(2447), - [sym_pipe_variable] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_newtype] = ACTIONS(2445), - [anon_sym_shape] = ACTIONS(2445), - [anon_sym_tuple] = ACTIONS(2445), - [anon_sym_clone] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_print] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_LT_LT_LT] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_echo] = ACTIONS(2445), - [anon_sym_unset] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_concurrent] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_case] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_foreach] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [sym_float] = ACTIONS(2447), - [sym_integer] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_True] = ACTIONS(2445), - [anon_sym_TRUE] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [anon_sym_False] = ACTIONS(2445), - [anon_sym_FALSE] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(2445), - [anon_sym_Null] = ACTIONS(2445), - [anon_sym_NULL] = ACTIONS(2445), - [sym_string] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_array] = ACTIONS(2445), - [anon_sym_varray] = ACTIONS(2445), - [anon_sym_darray] = ACTIONS(2445), - [anon_sym_vec] = ACTIONS(2445), - [anon_sym_dict] = ACTIONS(2445), - [anon_sym_keyset] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_abstract] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2447), - [sym_final_modifier] = ACTIONS(2445), - [sym_xhp_modifier] = ACTIONS(2445), - [sym_xhp_identifier] = ACTIONS(2445), - [sym_xhp_class_identifier] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - }, - [977] = { - [sym_identifier] = ACTIONS(2097), - [sym_variable] = ACTIONS(2099), - [sym_pipe_variable] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_newtype] = ACTIONS(2097), - [anon_sym_shape] = ACTIONS(2097), - [anon_sym_tuple] = ACTIONS(2097), - [anon_sym_clone] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_print] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_LT_LT_LT] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_echo] = ACTIONS(2097), - [anon_sym_unset] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_concurrent] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_foreach] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [sym_float] = ACTIONS(2099), - [sym_integer] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_True] = ACTIONS(2097), - [anon_sym_TRUE] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_False] = ACTIONS(2097), - [anon_sym_FALSE] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [anon_sym_Null] = ACTIONS(2097), - [anon_sym_NULL] = ACTIONS(2097), - [sym_string] = ACTIONS(2099), - [anon_sym_AT] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_array] = ACTIONS(2097), - [anon_sym_varray] = ACTIONS(2097), - [anon_sym_darray] = ACTIONS(2097), - [anon_sym_vec] = ACTIONS(2097), - [anon_sym_dict] = ACTIONS(2097), - [anon_sym_keyset] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2099), - [sym_final_modifier] = ACTIONS(2097), - [sym_xhp_modifier] = ACTIONS(2097), - [sym_xhp_identifier] = ACTIONS(2097), - [sym_xhp_class_identifier] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), - }, - [978] = { - [sym_identifier] = ACTIONS(2441), - [sym_variable] = ACTIONS(2443), - [sym_pipe_variable] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_newtype] = ACTIONS(2441), - [anon_sym_shape] = ACTIONS(2441), - [anon_sym_tuple] = ACTIONS(2441), - [anon_sym_clone] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_LT] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2441), - [anon_sym_echo] = ACTIONS(2441), - [anon_sym_unset] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_concurrent] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2441), - [anon_sym_case] = ACTIONS(2441), - [anon_sym_default] = ACTIONS(2441), - [anon_sym_foreach] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_using] = ACTIONS(2441), - [sym_float] = ACTIONS(2443), - [sym_integer] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_True] = ACTIONS(2441), - [anon_sym_TRUE] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [anon_sym_False] = ACTIONS(2441), - [anon_sym_FALSE] = ACTIONS(2441), - [anon_sym_null] = ACTIONS(2441), - [anon_sym_Null] = ACTIONS(2441), - [anon_sym_NULL] = ACTIONS(2441), - [sym_string] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_array] = ACTIONS(2441), - [anon_sym_varray] = ACTIONS(2441), - [anon_sym_darray] = ACTIONS(2441), - [anon_sym_vec] = ACTIONS(2441), - [anon_sym_dict] = ACTIONS(2441), - [anon_sym_keyset] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_interface] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_abstract] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2443), - [sym_final_modifier] = ACTIONS(2441), - [sym_xhp_modifier] = ACTIONS(2441), - [sym_xhp_identifier] = ACTIONS(2441), - [sym_xhp_class_identifier] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - }, - [979] = { - [sym_identifier] = ACTIONS(2393), - [sym_variable] = ACTIONS(2395), - [sym_pipe_variable] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_newtype] = ACTIONS(2393), - [anon_sym_shape] = ACTIONS(2393), - [anon_sym_tuple] = ACTIONS(2393), - [anon_sym_clone] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_print] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_LT_LT_LT] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_echo] = ACTIONS(2393), - [anon_sym_unset] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_concurrent] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_case] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_foreach] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [sym_float] = ACTIONS(2395), - [sym_integer] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_True] = ACTIONS(2393), - [anon_sym_TRUE] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_False] = ACTIONS(2393), - [anon_sym_FALSE] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2393), - [anon_sym_Null] = ACTIONS(2393), - [anon_sym_NULL] = ACTIONS(2393), - [sym_string] = ACTIONS(2395), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_array] = ACTIONS(2393), - [anon_sym_varray] = ACTIONS(2393), - [anon_sym_darray] = ACTIONS(2393), - [anon_sym_vec] = ACTIONS(2393), - [anon_sym_dict] = ACTIONS(2393), - [anon_sym_keyset] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2395), - [sym_final_modifier] = ACTIONS(2393), - [sym_xhp_modifier] = ACTIONS(2393), - [sym_xhp_identifier] = ACTIONS(2393), - [sym_xhp_class_identifier] = ACTIONS(2395), - [sym_comment] = ACTIONS(3), - }, - [980] = { - [sym_identifier] = ACTIONS(2121), - [sym_variable] = ACTIONS(2123), - [sym_pipe_variable] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_newtype] = ACTIONS(2121), - [anon_sym_shape] = ACTIONS(2121), - [anon_sym_tuple] = ACTIONS(2121), - [anon_sym_clone] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_print] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_LT_LT_LT] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_echo] = ACTIONS(2121), - [anon_sym_unset] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_concurrent] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_foreach] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_using] = ACTIONS(2121), - [sym_float] = ACTIONS(2123), - [sym_integer] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_True] = ACTIONS(2121), - [anon_sym_TRUE] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_False] = ACTIONS(2121), - [anon_sym_FALSE] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2121), - [anon_sym_Null] = ACTIONS(2121), - [anon_sym_NULL] = ACTIONS(2121), - [sym_string] = ACTIONS(2123), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_array] = ACTIONS(2121), - [anon_sym_varray] = ACTIONS(2121), - [anon_sym_darray] = ACTIONS(2121), - [anon_sym_vec] = ACTIONS(2121), - [anon_sym_dict] = ACTIONS(2121), - [anon_sym_keyset] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_trait] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2123), - [sym_final_modifier] = ACTIONS(2121), - [sym_xhp_modifier] = ACTIONS(2121), - [sym_xhp_identifier] = ACTIONS(2121), - [sym_xhp_class_identifier] = ACTIONS(2123), - [sym_comment] = ACTIONS(3), - }, - [981] = { - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2101), - [sym_variable] = ACTIONS(2103), - [sym_pipe_variable] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_newtype] = ACTIONS(2101), - [anon_sym_shape] = ACTIONS(2101), - [anon_sym_tuple] = ACTIONS(2101), - [anon_sym_clone] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_print] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_LT_LT_LT] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_echo] = ACTIONS(2101), - [anon_sym_unset] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_concurrent] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_function] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_elseif] = ACTIONS(2101), - [anon_sym_else] = ACTIONS(2101), - [anon_sym_switch] = ACTIONS(2101), - [anon_sym_foreach] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_using] = ACTIONS(2101), - [sym_float] = ACTIONS(2103), - [sym_integer] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_True] = ACTIONS(2101), - [anon_sym_TRUE] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_False] = ACTIONS(2101), - [anon_sym_FALSE] = ACTIONS(2101), - [anon_sym_null] = ACTIONS(2101), - [anon_sym_Null] = ACTIONS(2101), - [anon_sym_NULL] = ACTIONS(2101), - [sym_string] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_array] = ACTIONS(2101), - [anon_sym_varray] = ACTIONS(2101), - [anon_sym_darray] = ACTIONS(2101), - [anon_sym_vec] = ACTIONS(2101), - [anon_sym_dict] = ACTIONS(2101), - [anon_sym_keyset] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2103), - [sym_final_modifier] = ACTIONS(2101), - [sym_xhp_modifier] = ACTIONS(2101), - [sym_xhp_identifier] = ACTIONS(2101), - [sym_xhp_class_identifier] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - }, - [982] = { - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_identifier] = ACTIONS(2453), - [sym_variable] = ACTIONS(2455), - [sym_pipe_variable] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_newtype] = ACTIONS(2453), - [anon_sym_shape] = ACTIONS(2453), - [anon_sym_tuple] = ACTIONS(2453), - [anon_sym_clone] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_LT_LT_LT] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_echo] = ACTIONS(2453), - [anon_sym_unset] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_concurrent] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_elseif] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_foreach] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [sym_float] = ACTIONS(2455), - [sym_integer] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_True] = ACTIONS(2453), - [anon_sym_TRUE] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_False] = ACTIONS(2453), - [anon_sym_FALSE] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [anon_sym_Null] = ACTIONS(2453), - [anon_sym_NULL] = ACTIONS(2453), - [sym_string] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_array] = ACTIONS(2453), - [anon_sym_varray] = ACTIONS(2453), - [anon_sym_darray] = ACTIONS(2453), - [anon_sym_vec] = ACTIONS(2453), - [anon_sym_dict] = ACTIONS(2453), - [anon_sym_keyset] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_trait] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [anon_sym_abstract] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2455), - [sym_final_modifier] = ACTIONS(2453), - [sym_xhp_modifier] = ACTIONS(2453), - [sym_xhp_identifier] = ACTIONS(2453), - [sym_xhp_class_identifier] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - }, - [983] = { - [sym_identifier] = ACTIONS(2589), - [sym_variable] = ACTIONS(2591), - [sym_pipe_variable] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2589), - [anon_sym_newtype] = ACTIONS(2589), - [anon_sym_shape] = ACTIONS(2589), - [anon_sym_tuple] = ACTIONS(2589), - [anon_sym_clone] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2589), - [anon_sym_print] = ACTIONS(2589), - [anon_sym_namespace] = ACTIONS(2589), - [anon_sym_include] = ACTIONS(2589), - [anon_sym_include_once] = ACTIONS(2589), - [anon_sym_require] = ACTIONS(2589), - [anon_sym_require_once] = ACTIONS(2589), - [anon_sym_BSLASH] = ACTIONS(2591), - [anon_sym_self] = ACTIONS(2589), - [anon_sym_parent] = ACTIONS(2589), - [anon_sym_static] = ACTIONS(2589), - [anon_sym_LT_LT] = ACTIONS(2589), - [anon_sym_LT_LT_LT] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2589), - [anon_sym_break] = ACTIONS(2589), - [anon_sym_continue] = ACTIONS(2589), - [anon_sym_throw] = ACTIONS(2589), - [anon_sym_echo] = ACTIONS(2589), - [anon_sym_unset] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_concurrent] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2589), - [anon_sym_const] = ACTIONS(2589), - [anon_sym_if] = ACTIONS(2589), - [anon_sym_switch] = ACTIONS(2589), - [anon_sym_case] = ACTIONS(2589), - [anon_sym_default] = ACTIONS(2589), - [anon_sym_foreach] = ACTIONS(2589), - [anon_sym_while] = ACTIONS(2589), - [anon_sym_do] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2589), - [anon_sym_using] = ACTIONS(2589), - [sym_float] = ACTIONS(2591), - [sym_integer] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2589), - [anon_sym_True] = ACTIONS(2589), - [anon_sym_TRUE] = ACTIONS(2589), - [anon_sym_false] = ACTIONS(2589), - [anon_sym_False] = ACTIONS(2589), - [anon_sym_FALSE] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2589), - [anon_sym_Null] = ACTIONS(2589), - [anon_sym_NULL] = ACTIONS(2589), - [sym_string] = ACTIONS(2591), - [anon_sym_AT] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2591), - [anon_sym_array] = ACTIONS(2589), - [anon_sym_varray] = ACTIONS(2589), - [anon_sym_darray] = ACTIONS(2589), - [anon_sym_vec] = ACTIONS(2589), - [anon_sym_dict] = ACTIONS(2589), - [anon_sym_keyset] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_list] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2591), - [anon_sym_PLUS_PLUS] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2591), - [anon_sym_await] = ACTIONS(2589), - [anon_sym_async] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2589), - [anon_sym_trait] = ACTIONS(2589), - [anon_sym_interface] = ACTIONS(2589), - [anon_sym_class] = ACTIONS(2589), - [anon_sym_enum] = ACTIONS(2589), - [anon_sym_abstract] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2591), - [sym_final_modifier] = ACTIONS(2589), - [sym_xhp_modifier] = ACTIONS(2589), - [sym_xhp_identifier] = ACTIONS(2589), - [sym_xhp_class_identifier] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - }, - [984] = { - [ts_builtin_sym_end] = ACTIONS(2471), - [sym_identifier] = ACTIONS(2469), - [sym_variable] = ACTIONS(2471), - [sym_pipe_variable] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_newtype] = ACTIONS(2469), - [anon_sym_shape] = ACTIONS(2469), - [anon_sym_tuple] = ACTIONS(2469), - [anon_sym_clone] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_print] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_echo] = ACTIONS(2469), - [anon_sym_unset] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_concurrent] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_function] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_elseif] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_foreach] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [sym_float] = ACTIONS(2471), - [sym_integer] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_True] = ACTIONS(2469), - [anon_sym_TRUE] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [anon_sym_False] = ACTIONS(2469), - [anon_sym_FALSE] = ACTIONS(2469), - [anon_sym_null] = ACTIONS(2469), - [anon_sym_Null] = ACTIONS(2469), - [anon_sym_NULL] = ACTIONS(2469), - [sym_string] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_array] = ACTIONS(2469), - [anon_sym_varray] = ACTIONS(2469), - [anon_sym_darray] = ACTIONS(2469), - [anon_sym_vec] = ACTIONS(2469), - [anon_sym_dict] = ACTIONS(2469), - [anon_sym_keyset] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_trait] = ACTIONS(2469), - [anon_sym_interface] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_abstract] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2471), - [sym_final_modifier] = ACTIONS(2469), - [sym_xhp_modifier] = ACTIONS(2469), - [sym_xhp_identifier] = ACTIONS(2469), - [sym_xhp_class_identifier] = ACTIONS(2471), - [sym_comment] = ACTIONS(3), - }, - [985] = { - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_identifier] = ACTIONS(2601), - [sym_variable] = ACTIONS(2603), - [sym_pipe_variable] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_newtype] = ACTIONS(2601), - [anon_sym_shape] = ACTIONS(2601), - [anon_sym_tuple] = ACTIONS(2601), - [anon_sym_clone] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_print] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_include] = ACTIONS(2601), - [anon_sym_include_once] = ACTIONS(2601), - [anon_sym_require] = ACTIONS(2601), - [anon_sym_require_once] = ACTIONS(2601), - [anon_sym_BSLASH] = ACTIONS(2603), - [anon_sym_self] = ACTIONS(2601), - [anon_sym_parent] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_LT_LT] = ACTIONS(2601), - [anon_sym_LT_LT_LT] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_echo] = ACTIONS(2601), - [anon_sym_unset] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_concurrent] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_elseif] = ACTIONS(2601), - [anon_sym_else] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_foreach] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [sym_float] = ACTIONS(2603), - [sym_integer] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_True] = ACTIONS(2601), - [anon_sym_TRUE] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [anon_sym_False] = ACTIONS(2601), - [anon_sym_FALSE] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_Null] = ACTIONS(2601), - [anon_sym_NULL] = ACTIONS(2601), - [sym_string] = ACTIONS(2603), - [anon_sym_AT] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_array] = ACTIONS(2601), - [anon_sym_varray] = ACTIONS(2601), - [anon_sym_darray] = ACTIONS(2601), - [anon_sym_vec] = ACTIONS(2601), - [anon_sym_dict] = ACTIONS(2601), - [anon_sym_keyset] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_list] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_trait] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2603), - [sym_final_modifier] = ACTIONS(2601), - [sym_xhp_modifier] = ACTIONS(2601), - [sym_xhp_identifier] = ACTIONS(2601), - [sym_xhp_class_identifier] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - }, - [986] = { - [sym_identifier] = ACTIONS(2601), - [sym_variable] = ACTIONS(2603), - [sym_pipe_variable] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_newtype] = ACTIONS(2601), - [anon_sym_shape] = ACTIONS(2601), - [anon_sym_tuple] = ACTIONS(2601), - [anon_sym_clone] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_print] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_include] = ACTIONS(2601), - [anon_sym_include_once] = ACTIONS(2601), - [anon_sym_require] = ACTIONS(2601), - [anon_sym_require_once] = ACTIONS(2601), - [anon_sym_BSLASH] = ACTIONS(2603), - [anon_sym_self] = ACTIONS(2601), - [anon_sym_parent] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_LT_LT] = ACTIONS(2601), - [anon_sym_LT_LT_LT] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_echo] = ACTIONS(2601), - [anon_sym_unset] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_concurrent] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_foreach] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [sym_float] = ACTIONS(2603), - [sym_integer] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_True] = ACTIONS(2601), - [anon_sym_TRUE] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [anon_sym_False] = ACTIONS(2601), - [anon_sym_FALSE] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_Null] = ACTIONS(2601), - [anon_sym_NULL] = ACTIONS(2601), - [sym_string] = ACTIONS(2603), - [anon_sym_AT] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_array] = ACTIONS(2601), - [anon_sym_varray] = ACTIONS(2601), - [anon_sym_darray] = ACTIONS(2601), - [anon_sym_vec] = ACTIONS(2601), - [anon_sym_dict] = ACTIONS(2601), - [anon_sym_keyset] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_list] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_trait] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2603), - [sym_final_modifier] = ACTIONS(2601), - [sym_xhp_modifier] = ACTIONS(2601), - [sym_xhp_identifier] = ACTIONS(2601), - [sym_xhp_class_identifier] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - }, - [987] = { - [sym_identifier] = ACTIONS(2609), - [sym_variable] = ACTIONS(2611), - [sym_pipe_variable] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_newtype] = ACTIONS(2609), - [anon_sym_shape] = ACTIONS(2609), - [anon_sym_tuple] = ACTIONS(2609), - [anon_sym_clone] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_print] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_include] = ACTIONS(2609), - [anon_sym_include_once] = ACTIONS(2609), - [anon_sym_require] = ACTIONS(2609), - [anon_sym_require_once] = ACTIONS(2609), - [anon_sym_BSLASH] = ACTIONS(2611), - [anon_sym_self] = ACTIONS(2609), - [anon_sym_parent] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2609), - [anon_sym_LT_LT_LT] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_echo] = ACTIONS(2609), - [anon_sym_unset] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_concurrent] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_foreach] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [sym_float] = ACTIONS(2611), - [sym_integer] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_True] = ACTIONS(2609), - [anon_sym_TRUE] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_False] = ACTIONS(2609), - [anon_sym_FALSE] = ACTIONS(2609), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_Null] = ACTIONS(2609), - [anon_sym_NULL] = ACTIONS(2609), - [sym_string] = ACTIONS(2611), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_array] = ACTIONS(2609), - [anon_sym_varray] = ACTIONS(2609), - [anon_sym_darray] = ACTIONS(2609), - [anon_sym_vec] = ACTIONS(2609), - [anon_sym_dict] = ACTIONS(2609), - [anon_sym_keyset] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_list] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_trait] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2611), - [sym_final_modifier] = ACTIONS(2609), - [sym_xhp_modifier] = ACTIONS(2609), - [sym_xhp_identifier] = ACTIONS(2609), - [sym_xhp_class_identifier] = ACTIONS(2611), - [sym_comment] = ACTIONS(3), - }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2609), - [sym_variable] = ACTIONS(2611), - [sym_pipe_variable] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_newtype] = ACTIONS(2609), - [anon_sym_shape] = ACTIONS(2609), - [anon_sym_tuple] = ACTIONS(2609), - [anon_sym_clone] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_print] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_include] = ACTIONS(2609), - [anon_sym_include_once] = ACTIONS(2609), - [anon_sym_require] = ACTIONS(2609), - [anon_sym_require_once] = ACTIONS(2609), - [anon_sym_BSLASH] = ACTIONS(2611), - [anon_sym_self] = ACTIONS(2609), - [anon_sym_parent] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2609), - [anon_sym_LT_LT_LT] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_echo] = ACTIONS(2609), - [anon_sym_unset] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_concurrent] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_elseif] = ACTIONS(2609), - [anon_sym_else] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_foreach] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [sym_float] = ACTIONS(2611), - [sym_integer] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_True] = ACTIONS(2609), - [anon_sym_TRUE] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_False] = ACTIONS(2609), - [anon_sym_FALSE] = ACTIONS(2609), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_Null] = ACTIONS(2609), - [anon_sym_NULL] = ACTIONS(2609), - [sym_string] = ACTIONS(2611), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_array] = ACTIONS(2609), - [anon_sym_varray] = ACTIONS(2609), - [anon_sym_darray] = ACTIONS(2609), - [anon_sym_vec] = ACTIONS(2609), - [anon_sym_dict] = ACTIONS(2609), - [anon_sym_keyset] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_list] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_trait] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2611), - [sym_final_modifier] = ACTIONS(2609), - [sym_xhp_modifier] = ACTIONS(2609), - [sym_xhp_identifier] = ACTIONS(2609), - [sym_xhp_class_identifier] = ACTIONS(2611), - [sym_comment] = ACTIONS(3), - }, - [989] = { - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_elseif] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), - [sym_comment] = ACTIONS(3), - }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2165), - [sym_variable] = ACTIONS(2167), - [sym_pipe_variable] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_newtype] = ACTIONS(2165), - [anon_sym_shape] = ACTIONS(2165), - [anon_sym_tuple] = ACTIONS(2165), - [anon_sym_clone] = ACTIONS(2165), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_print] = ACTIONS(2165), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_LT_LT_LT] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_throw] = ACTIONS(2165), - [anon_sym_echo] = ACTIONS(2165), - [anon_sym_unset] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_concurrent] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_function] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_elseif] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [anon_sym_foreach] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_using] = ACTIONS(2165), - [sym_float] = ACTIONS(2167), - [sym_integer] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_True] = ACTIONS(2165), - [anon_sym_TRUE] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_False] = ACTIONS(2165), - [anon_sym_FALSE] = ACTIONS(2165), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_Null] = ACTIONS(2165), - [anon_sym_NULL] = ACTIONS(2165), - [sym_string] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_array] = ACTIONS(2165), - [anon_sym_varray] = ACTIONS(2165), - [anon_sym_darray] = ACTIONS(2165), - [anon_sym_vec] = ACTIONS(2165), - [anon_sym_dict] = ACTIONS(2165), - [anon_sym_keyset] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2167), - [sym_final_modifier] = ACTIONS(2165), - [sym_xhp_modifier] = ACTIONS(2165), - [sym_xhp_identifier] = ACTIONS(2165), - [sym_xhp_class_identifier] = ACTIONS(2167), - [sym_comment] = ACTIONS(3), - }, - [991] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_case] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), - [sym_comment] = ACTIONS(3), - }, - [992] = { - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2161), - [sym_variable] = ACTIONS(2163), - [sym_pipe_variable] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_newtype] = ACTIONS(2161), - [anon_sym_shape] = ACTIONS(2161), - [anon_sym_tuple] = ACTIONS(2161), - [anon_sym_clone] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2161), - [anon_sym_print] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2161), - [anon_sym_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_LT_LT_LT] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_echo] = ACTIONS(2161), - [anon_sym_unset] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_concurrent] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_function] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_elseif] = ACTIONS(2161), - [anon_sym_else] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [anon_sym_foreach] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_using] = ACTIONS(2161), - [sym_float] = ACTIONS(2163), - [sym_integer] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_True] = ACTIONS(2161), - [anon_sym_TRUE] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_False] = ACTIONS(2161), - [anon_sym_FALSE] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2161), - [anon_sym_Null] = ACTIONS(2161), - [anon_sym_NULL] = ACTIONS(2161), - [sym_string] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_array] = ACTIONS(2161), - [anon_sym_varray] = ACTIONS(2161), - [anon_sym_darray] = ACTIONS(2161), - [anon_sym_vec] = ACTIONS(2161), - [anon_sym_dict] = ACTIONS(2161), - [anon_sym_keyset] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2161), - [anon_sym_class] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_abstract] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2163), - [sym_final_modifier] = ACTIONS(2161), - [sym_xhp_modifier] = ACTIONS(2161), - [sym_xhp_identifier] = ACTIONS(2161), - [sym_xhp_class_identifier] = ACTIONS(2163), - [sym_comment] = ACTIONS(3), - }, - [993] = { - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2149), - [sym_variable] = ACTIONS(2151), - [sym_pipe_variable] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_newtype] = ACTIONS(2149), - [anon_sym_shape] = ACTIONS(2149), - [anon_sym_tuple] = ACTIONS(2149), - [anon_sym_clone] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_print] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_LT_LT_LT] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_echo] = ACTIONS(2149), - [anon_sym_unset] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_concurrent] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_elseif] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_foreach] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [sym_float] = ACTIONS(2151), - [sym_integer] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_True] = ACTIONS(2149), - [anon_sym_TRUE] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_False] = ACTIONS(2149), - [anon_sym_FALSE] = ACTIONS(2149), - [anon_sym_null] = ACTIONS(2149), - [anon_sym_Null] = ACTIONS(2149), - [anon_sym_NULL] = ACTIONS(2149), - [sym_string] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_array] = ACTIONS(2149), - [anon_sym_varray] = ACTIONS(2149), - [anon_sym_darray] = ACTIONS(2149), - [anon_sym_vec] = ACTIONS(2149), - [anon_sym_dict] = ACTIONS(2149), - [anon_sym_keyset] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2151), - [sym_final_modifier] = ACTIONS(2149), - [sym_xhp_modifier] = ACTIONS(2149), - [sym_xhp_identifier] = ACTIONS(2149), - [sym_xhp_class_identifier] = ACTIONS(2151), - [sym_comment] = ACTIONS(3), - }, - [994] = { - [sym_identifier] = ACTIONS(2165), - [sym_variable] = ACTIONS(2167), - [sym_pipe_variable] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_newtype] = ACTIONS(2165), - [anon_sym_shape] = ACTIONS(2165), - [anon_sym_tuple] = ACTIONS(2165), - [anon_sym_clone] = ACTIONS(2165), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_print] = ACTIONS(2165), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_LT_LT_LT] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_throw] = ACTIONS(2165), - [anon_sym_echo] = ACTIONS(2165), - [anon_sym_unset] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_concurrent] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_function] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [anon_sym_case] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(2165), - [anon_sym_foreach] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_using] = ACTIONS(2165), - [sym_float] = ACTIONS(2167), - [sym_integer] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_True] = ACTIONS(2165), - [anon_sym_TRUE] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_False] = ACTIONS(2165), - [anon_sym_FALSE] = ACTIONS(2165), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_Null] = ACTIONS(2165), - [anon_sym_NULL] = ACTIONS(2165), - [sym_string] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_array] = ACTIONS(2165), - [anon_sym_varray] = ACTIONS(2165), - [anon_sym_darray] = ACTIONS(2165), - [anon_sym_vec] = ACTIONS(2165), - [anon_sym_dict] = ACTIONS(2165), - [anon_sym_keyset] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2167), - [sym_final_modifier] = ACTIONS(2165), - [sym_xhp_modifier] = ACTIONS(2165), - [sym_xhp_identifier] = ACTIONS(2165), - [sym_xhp_class_identifier] = ACTIONS(2167), - [sym_comment] = ACTIONS(3), - }, - [995] = { - [sym_identifier] = ACTIONS(2161), - [sym_variable] = ACTIONS(2163), - [sym_pipe_variable] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_newtype] = ACTIONS(2161), - [anon_sym_shape] = ACTIONS(2161), - [anon_sym_tuple] = ACTIONS(2161), - [anon_sym_clone] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2161), - [anon_sym_print] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2161), - [anon_sym_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_LT_LT_LT] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_echo] = ACTIONS(2161), - [anon_sym_unset] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_concurrent] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_function] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [anon_sym_case] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_foreach] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_using] = ACTIONS(2161), - [sym_float] = ACTIONS(2163), - [sym_integer] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_True] = ACTIONS(2161), - [anon_sym_TRUE] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_False] = ACTIONS(2161), - [anon_sym_FALSE] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2161), - [anon_sym_Null] = ACTIONS(2161), - [anon_sym_NULL] = ACTIONS(2161), - [sym_string] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_array] = ACTIONS(2161), - [anon_sym_varray] = ACTIONS(2161), - [anon_sym_darray] = ACTIONS(2161), - [anon_sym_vec] = ACTIONS(2161), - [anon_sym_dict] = ACTIONS(2161), - [anon_sym_keyset] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2161), - [anon_sym_class] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_abstract] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2163), - [sym_final_modifier] = ACTIONS(2161), - [sym_xhp_modifier] = ACTIONS(2161), - [sym_xhp_identifier] = ACTIONS(2161), - [sym_xhp_class_identifier] = ACTIONS(2163), - [sym_comment] = ACTIONS(3), - }, - [996] = { - [sym_identifier] = ACTIONS(2149), - [sym_variable] = ACTIONS(2151), - [sym_pipe_variable] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_newtype] = ACTIONS(2149), - [anon_sym_shape] = ACTIONS(2149), - [anon_sym_tuple] = ACTIONS(2149), - [anon_sym_clone] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_print] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_LT_LT_LT] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_echo] = ACTIONS(2149), - [anon_sym_unset] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_concurrent] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_foreach] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [sym_float] = ACTIONS(2151), - [sym_integer] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_True] = ACTIONS(2149), - [anon_sym_TRUE] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_False] = ACTIONS(2149), - [anon_sym_FALSE] = ACTIONS(2149), - [anon_sym_null] = ACTIONS(2149), - [anon_sym_Null] = ACTIONS(2149), - [anon_sym_NULL] = ACTIONS(2149), - [sym_string] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_array] = ACTIONS(2149), - [anon_sym_varray] = ACTIONS(2149), - [anon_sym_darray] = ACTIONS(2149), - [anon_sym_vec] = ACTIONS(2149), - [anon_sym_dict] = ACTIONS(2149), - [anon_sym_keyset] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2151), - [sym_final_modifier] = ACTIONS(2149), - [sym_xhp_modifier] = ACTIONS(2149), - [sym_xhp_identifier] = ACTIONS(2149), - [sym_xhp_class_identifier] = ACTIONS(2151), - [sym_comment] = ACTIONS(3), - }, - [997] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2133), - [sym_variable] = ACTIONS(2135), - [sym_pipe_variable] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_newtype] = ACTIONS(2133), - [anon_sym_shape] = ACTIONS(2133), - [anon_sym_tuple] = ACTIONS(2133), - [anon_sym_clone] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_print] = ACTIONS(2133), - [anon_sym_namespace] = ACTIONS(2133), - [anon_sym_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_LT_LT_LT] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_throw] = ACTIONS(2133), - [anon_sym_echo] = ACTIONS(2133), - [anon_sym_unset] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_concurrent] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_elseif] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_foreach] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(2133), - [sym_float] = ACTIONS(2135), - [sym_integer] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_True] = ACTIONS(2133), - [anon_sym_TRUE] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_False] = ACTIONS(2133), - [anon_sym_FALSE] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [anon_sym_Null] = ACTIONS(2133), - [anon_sym_NULL] = ACTIONS(2133), - [sym_string] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_array] = ACTIONS(2133), - [anon_sym_varray] = ACTIONS(2133), - [anon_sym_darray] = ACTIONS(2133), - [anon_sym_vec] = ACTIONS(2133), - [anon_sym_dict] = ACTIONS(2133), - [anon_sym_keyset] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_trait] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_class] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_abstract] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2135), - [sym_final_modifier] = ACTIONS(2133), - [sym_xhp_modifier] = ACTIONS(2133), - [sym_xhp_identifier] = ACTIONS(2133), - [sym_xhp_class_identifier] = ACTIONS(2135), - [sym_comment] = ACTIONS(3), - }, - [998] = { - [sym_identifier] = ACTIONS(2133), - [sym_variable] = ACTIONS(2135), - [sym_pipe_variable] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_newtype] = ACTIONS(2133), - [anon_sym_shape] = ACTIONS(2133), - [anon_sym_tuple] = ACTIONS(2133), - [anon_sym_clone] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_print] = ACTIONS(2133), - [anon_sym_namespace] = ACTIONS(2133), - [anon_sym_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_LT_LT_LT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_throw] = ACTIONS(2133), - [anon_sym_echo] = ACTIONS(2133), - [anon_sym_unset] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_concurrent] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_case] = ACTIONS(2133), - [anon_sym_default] = ACTIONS(2133), - [anon_sym_foreach] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(2133), - [sym_float] = ACTIONS(2135), - [sym_integer] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_True] = ACTIONS(2133), - [anon_sym_TRUE] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_False] = ACTIONS(2133), - [anon_sym_FALSE] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [anon_sym_Null] = ACTIONS(2133), - [anon_sym_NULL] = ACTIONS(2133), - [sym_string] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_array] = ACTIONS(2133), - [anon_sym_varray] = ACTIONS(2133), - [anon_sym_darray] = ACTIONS(2133), - [anon_sym_vec] = ACTIONS(2133), - [anon_sym_dict] = ACTIONS(2133), - [anon_sym_keyset] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_trait] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_class] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_abstract] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2135), - [sym_final_modifier] = ACTIONS(2133), - [sym_xhp_modifier] = ACTIONS(2133), - [sym_xhp_identifier] = ACTIONS(2133), - [sym_xhp_class_identifier] = ACTIONS(2135), - [sym_comment] = ACTIONS(3), - }, - [999] = { - [ts_builtin_sym_end] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2585), - [sym_variable] = ACTIONS(2587), - [sym_pipe_variable] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_newtype] = ACTIONS(2585), - [anon_sym_shape] = ACTIONS(2585), - [anon_sym_tuple] = ACTIONS(2585), - [anon_sym_clone] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_include] = ACTIONS(2585), - [anon_sym_include_once] = ACTIONS(2585), - [anon_sym_require] = ACTIONS(2585), - [anon_sym_require_once] = ACTIONS(2585), - [anon_sym_BSLASH] = ACTIONS(2587), - [anon_sym_self] = ACTIONS(2585), - [anon_sym_parent] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_LT_LT_LT] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_echo] = ACTIONS(2585), - [anon_sym_unset] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_concurrent] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_elseif] = ACTIONS(2585), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_foreach] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [sym_float] = ACTIONS(2587), - [sym_integer] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2585), - [anon_sym_True] = ACTIONS(2585), - [anon_sym_TRUE] = ACTIONS(2585), - [anon_sym_false] = ACTIONS(2585), - [anon_sym_False] = ACTIONS(2585), - [anon_sym_FALSE] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2585), - [anon_sym_Null] = ACTIONS(2585), - [anon_sym_NULL] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_array] = ACTIONS(2585), - [anon_sym_varray] = ACTIONS(2585), - [anon_sym_darray] = ACTIONS(2585), - [anon_sym_vec] = ACTIONS(2585), - [anon_sym_dict] = ACTIONS(2585), - [anon_sym_keyset] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_list] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2587), - [sym_final_modifier] = ACTIONS(2585), - [sym_xhp_modifier] = ACTIONS(2585), - [sym_xhp_identifier] = ACTIONS(2585), - [sym_xhp_class_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - }, - [1000] = { - [ts_builtin_sym_end] = ACTIONS(2595), - [sym_identifier] = ACTIONS(2593), - [sym_variable] = ACTIONS(2595), - [sym_pipe_variable] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_newtype] = ACTIONS(2593), - [anon_sym_shape] = ACTIONS(2593), - [anon_sym_tuple] = ACTIONS(2593), - [anon_sym_clone] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_print] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_include] = ACTIONS(2593), - [anon_sym_include_once] = ACTIONS(2593), - [anon_sym_require] = ACTIONS(2593), - [anon_sym_require_once] = ACTIONS(2593), - [anon_sym_BSLASH] = ACTIONS(2595), - [anon_sym_self] = ACTIONS(2593), - [anon_sym_parent] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_LT_LT] = ACTIONS(2593), - [anon_sym_LT_LT_LT] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_echo] = ACTIONS(2593), - [anon_sym_unset] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_concurrent] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_elseif] = ACTIONS(2593), - [anon_sym_else] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_foreach] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [sym_float] = ACTIONS(2595), - [sym_integer] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_True] = ACTIONS(2593), - [anon_sym_TRUE] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_False] = ACTIONS(2593), - [anon_sym_FALSE] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2593), - [anon_sym_Null] = ACTIONS(2593), - [anon_sym_NULL] = ACTIONS(2593), - [sym_string] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_array] = ACTIONS(2593), - [anon_sym_varray] = ACTIONS(2593), - [anon_sym_darray] = ACTIONS(2593), - [anon_sym_vec] = ACTIONS(2593), - [anon_sym_dict] = ACTIONS(2593), - [anon_sym_keyset] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_list] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_trait] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2595), - [sym_final_modifier] = ACTIONS(2593), - [sym_xhp_modifier] = ACTIONS(2593), - [sym_xhp_identifier] = ACTIONS(2593), - [sym_xhp_class_identifier] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - }, - [1001] = { - [sym_identifier] = ACTIONS(2585), - [sym_variable] = ACTIONS(2587), - [sym_pipe_variable] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_newtype] = ACTIONS(2585), - [anon_sym_shape] = ACTIONS(2585), - [anon_sym_tuple] = ACTIONS(2585), - [anon_sym_clone] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_include] = ACTIONS(2585), - [anon_sym_include_once] = ACTIONS(2585), - [anon_sym_require] = ACTIONS(2585), - [anon_sym_require_once] = ACTIONS(2585), - [anon_sym_BSLASH] = ACTIONS(2587), - [anon_sym_self] = ACTIONS(2585), - [anon_sym_parent] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_LT_LT_LT] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_echo] = ACTIONS(2585), - [anon_sym_unset] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_concurrent] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_case] = ACTIONS(2585), - [anon_sym_default] = ACTIONS(2585), - [anon_sym_foreach] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [sym_float] = ACTIONS(2587), - [sym_integer] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2585), - [anon_sym_True] = ACTIONS(2585), - [anon_sym_TRUE] = ACTIONS(2585), - [anon_sym_false] = ACTIONS(2585), - [anon_sym_False] = ACTIONS(2585), - [anon_sym_FALSE] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2585), - [anon_sym_Null] = ACTIONS(2585), - [anon_sym_NULL] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_array] = ACTIONS(2585), - [anon_sym_varray] = ACTIONS(2585), - [anon_sym_darray] = ACTIONS(2585), - [anon_sym_vec] = ACTIONS(2585), - [anon_sym_dict] = ACTIONS(2585), - [anon_sym_keyset] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_list] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2587), - [sym_final_modifier] = ACTIONS(2585), - [sym_xhp_modifier] = ACTIONS(2585), - [sym_xhp_identifier] = ACTIONS(2585), - [sym_xhp_class_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - }, - [1002] = { - [sym_identifier] = ACTIONS(2593), - [sym_variable] = ACTIONS(2595), - [sym_pipe_variable] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_newtype] = ACTIONS(2593), - [anon_sym_shape] = ACTIONS(2593), - [anon_sym_tuple] = ACTIONS(2593), - [anon_sym_clone] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_print] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_include] = ACTIONS(2593), - [anon_sym_include_once] = ACTIONS(2593), - [anon_sym_require] = ACTIONS(2593), - [anon_sym_require_once] = ACTIONS(2593), - [anon_sym_BSLASH] = ACTIONS(2595), - [anon_sym_self] = ACTIONS(2593), - [anon_sym_parent] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_LT_LT] = ACTIONS(2593), - [anon_sym_LT_LT_LT] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_echo] = ACTIONS(2593), - [anon_sym_unset] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_concurrent] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_case] = ACTIONS(2593), - [anon_sym_default] = ACTIONS(2593), - [anon_sym_foreach] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [sym_float] = ACTIONS(2595), - [sym_integer] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_True] = ACTIONS(2593), - [anon_sym_TRUE] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_False] = ACTIONS(2593), - [anon_sym_FALSE] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2593), - [anon_sym_Null] = ACTIONS(2593), - [anon_sym_NULL] = ACTIONS(2593), - [sym_string] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_array] = ACTIONS(2593), - [anon_sym_varray] = ACTIONS(2593), - [anon_sym_darray] = ACTIONS(2593), - [anon_sym_vec] = ACTIONS(2593), - [anon_sym_dict] = ACTIONS(2593), - [anon_sym_keyset] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_list] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_trait] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2595), - [sym_final_modifier] = ACTIONS(2593), - [sym_xhp_modifier] = ACTIONS(2593), - [sym_xhp_identifier] = ACTIONS(2593), - [sym_xhp_class_identifier] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2141), - [sym_variable] = ACTIONS(2143), - [sym_pipe_variable] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_newtype] = ACTIONS(2141), - [anon_sym_shape] = ACTIONS(2141), - [anon_sym_tuple] = ACTIONS(2141), - [anon_sym_clone] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_print] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_LT_LT_LT] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_echo] = ACTIONS(2141), - [anon_sym_unset] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_concurrent] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_function] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_elseif] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_switch] = ACTIONS(2141), - [anon_sym_foreach] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_using] = ACTIONS(2141), - [sym_float] = ACTIONS(2143), - [sym_integer] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_True] = ACTIONS(2141), - [anon_sym_TRUE] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_False] = ACTIONS(2141), - [anon_sym_FALSE] = ACTIONS(2141), - [anon_sym_null] = ACTIONS(2141), - [anon_sym_Null] = ACTIONS(2141), - [anon_sym_NULL] = ACTIONS(2141), - [sym_string] = ACTIONS(2143), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_array] = ACTIONS(2141), - [anon_sym_varray] = ACTIONS(2141), - [anon_sym_darray] = ACTIONS(2141), - [anon_sym_vec] = ACTIONS(2141), - [anon_sym_dict] = ACTIONS(2141), - [anon_sym_keyset] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2141), - [anon_sym_class] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_abstract] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(2143), - [sym_final_modifier] = ACTIONS(2141), - [sym_xhp_modifier] = ACTIONS(2141), - [sym_xhp_identifier] = ACTIONS(2141), - [sym_xhp_class_identifier] = ACTIONS(2143), - [sym_comment] = ACTIONS(3), - }, - [1004] = { - [sym_identifier] = ACTIONS(2377), - [sym_variable] = ACTIONS(2379), - [sym_pipe_variable] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_newtype] = ACTIONS(2377), - [anon_sym_shape] = ACTIONS(2377), - [anon_sym_tuple] = ACTIONS(2377), - [anon_sym_clone] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_print] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_LT_LT_LT] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_echo] = ACTIONS(2377), - [anon_sym_unset] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_concurrent] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_case] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_foreach] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_using] = ACTIONS(2377), - [sym_float] = ACTIONS(2379), - [sym_integer] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_True] = ACTIONS(2377), - [anon_sym_TRUE] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [anon_sym_False] = ACTIONS(2377), - [anon_sym_FALSE] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(2377), - [anon_sym_Null] = ACTIONS(2377), - [anon_sym_NULL] = ACTIONS(2377), - [sym_string] = ACTIONS(2379), - [anon_sym_AT] = ACTIONS(2379), - [anon_sym_TILDE] = ACTIONS(2379), - [anon_sym_array] = ACTIONS(2377), - [anon_sym_varray] = ACTIONS(2377), - [anon_sym_darray] = ACTIONS(2377), - [anon_sym_vec] = ACTIONS(2377), - [anon_sym_dict] = ACTIONS(2377), - [anon_sym_keyset] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(2379), - [sym_final_modifier] = ACTIONS(2377), - [sym_xhp_modifier] = ACTIONS(2377), - [sym_xhp_identifier] = ACTIONS(2377), - [sym_xhp_class_identifier] = ACTIONS(2379), - [sym_comment] = ACTIONS(3), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(2599), - [sym_identifier] = ACTIONS(2597), - [sym_variable] = ACTIONS(2599), - [sym_pipe_variable] = ACTIONS(2599), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_newtype] = ACTIONS(2597), - [anon_sym_shape] = ACTIONS(2597), - [anon_sym_tuple] = ACTIONS(2597), - [anon_sym_clone] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_print] = ACTIONS(2597), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_include] = ACTIONS(2597), - [anon_sym_include_once] = ACTIONS(2597), - [anon_sym_require] = ACTIONS(2597), - [anon_sym_require_once] = ACTIONS(2597), - [anon_sym_BSLASH] = ACTIONS(2599), - [anon_sym_self] = ACTIONS(2597), - [anon_sym_parent] = ACTIONS(2597), - [anon_sym_static] = ACTIONS(2597), - [anon_sym_LT_LT] = ACTIONS(2597), - [anon_sym_LT_LT_LT] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_throw] = ACTIONS(2597), - [anon_sym_echo] = ACTIONS(2597), - [anon_sym_unset] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_concurrent] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_const] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_elseif] = ACTIONS(2597), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_switch] = ACTIONS(2597), - [anon_sym_foreach] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_using] = ACTIONS(2597), - [sym_float] = ACTIONS(2599), - [sym_integer] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2597), - [anon_sym_True] = ACTIONS(2597), - [anon_sym_TRUE] = ACTIONS(2597), - [anon_sym_false] = ACTIONS(2597), - [anon_sym_False] = ACTIONS(2597), - [anon_sym_FALSE] = ACTIONS(2597), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_Null] = ACTIONS(2597), - [anon_sym_NULL] = ACTIONS(2597), - [sym_string] = ACTIONS(2599), - [anon_sym_AT] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [anon_sym_array] = ACTIONS(2597), - [anon_sym_varray] = ACTIONS(2597), - [anon_sym_darray] = ACTIONS(2597), - [anon_sym_vec] = ACTIONS(2597), - [anon_sym_dict] = ACTIONS(2597), - [anon_sym_keyset] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_list] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2599), - [anon_sym_PLUS_PLUS] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2599), - [anon_sym_await] = ACTIONS(2597), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_trait] = ACTIONS(2597), - [anon_sym_interface] = ACTIONS(2597), - [anon_sym_class] = ACTIONS(2597), - [anon_sym_enum] = ACTIONS(2597), - [anon_sym_abstract] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(2599), - [sym_final_modifier] = ACTIONS(2597), - [sym_xhp_modifier] = ACTIONS(2597), - [sym_xhp_identifier] = ACTIONS(2597), - [sym_xhp_class_identifier] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2581), - [sym_variable] = ACTIONS(2583), - [sym_pipe_variable] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_newtype] = ACTIONS(2581), - [anon_sym_shape] = ACTIONS(2581), - [anon_sym_tuple] = ACTIONS(2581), - [anon_sym_clone] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_include] = ACTIONS(2581), - [anon_sym_include_once] = ACTIONS(2581), - [anon_sym_require] = ACTIONS(2581), - [anon_sym_require_once] = ACTIONS(2581), - [anon_sym_BSLASH] = ACTIONS(2583), - [anon_sym_self] = ACTIONS(2581), - [anon_sym_parent] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LT_LT_LT] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_echo] = ACTIONS(2581), - [anon_sym_unset] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_concurrent] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_elseif] = ACTIONS(2581), - [anon_sym_else] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_foreach] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [sym_float] = ACTIONS(2583), - [sym_integer] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_True] = ACTIONS(2581), - [anon_sym_TRUE] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [anon_sym_False] = ACTIONS(2581), - [anon_sym_FALSE] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_Null] = ACTIONS(2581), - [anon_sym_NULL] = ACTIONS(2581), - [sym_string] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_array] = ACTIONS(2581), - [anon_sym_varray] = ACTIONS(2581), - [anon_sym_darray] = ACTIONS(2581), - [anon_sym_vec] = ACTIONS(2581), - [anon_sym_dict] = ACTIONS(2581), - [anon_sym_keyset] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_list] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_trait] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2583), - [sym_final_modifier] = ACTIONS(2581), - [sym_xhp_modifier] = ACTIONS(2581), - [sym_xhp_identifier] = ACTIONS(2581), - [sym_xhp_class_identifier] = ACTIONS(2583), - [sym_comment] = ACTIONS(3), - }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2613), - [sym_variable] = ACTIONS(2615), - [sym_pipe_variable] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2613), - [anon_sym_newtype] = ACTIONS(2613), - [anon_sym_shape] = ACTIONS(2613), - [anon_sym_tuple] = ACTIONS(2613), - [anon_sym_clone] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_print] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_include] = ACTIONS(2613), - [anon_sym_include_once] = ACTIONS(2613), - [anon_sym_require] = ACTIONS(2613), - [anon_sym_require_once] = ACTIONS(2613), - [anon_sym_BSLASH] = ACTIONS(2615), - [anon_sym_self] = ACTIONS(2613), - [anon_sym_parent] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_echo] = ACTIONS(2613), - [anon_sym_unset] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_concurrent] = ACTIONS(2613), - [anon_sym_use] = ACTIONS(2613), - [anon_sym_function] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_elseif] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_foreach] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [sym_float] = ACTIONS(2615), - [sym_integer] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_True] = ACTIONS(2613), - [anon_sym_TRUE] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_False] = ACTIONS(2613), - [anon_sym_FALSE] = ACTIONS(2613), - [anon_sym_null] = ACTIONS(2613), - [anon_sym_Null] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [sym_string] = ACTIONS(2615), - [anon_sym_AT] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_array] = ACTIONS(2613), - [anon_sym_varray] = ACTIONS(2613), - [anon_sym_darray] = ACTIONS(2613), - [anon_sym_vec] = ACTIONS(2613), - [anon_sym_dict] = ACTIONS(2613), - [anon_sym_keyset] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_list] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_await] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_trait] = ACTIONS(2613), - [anon_sym_interface] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_abstract] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2615), - [sym_final_modifier] = ACTIONS(2613), - [sym_xhp_modifier] = ACTIONS(2613), - [sym_xhp_identifier] = ACTIONS(2613), - [sym_xhp_class_identifier] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(2479), - [sym_identifier] = ACTIONS(2477), - [sym_variable] = ACTIONS(2479), - [sym_pipe_variable] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_newtype] = ACTIONS(2477), - [anon_sym_shape] = ACTIONS(2477), - [anon_sym_tuple] = ACTIONS(2477), - [anon_sym_clone] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_print] = ACTIONS(2477), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_LT_LT_LT] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2477), - [anon_sym_echo] = ACTIONS(2477), - [anon_sym_unset] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_concurrent] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_switch] = ACTIONS(2477), - [anon_sym_foreach] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_using] = ACTIONS(2477), - [sym_float] = ACTIONS(2479), - [sym_integer] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_True] = ACTIONS(2477), - [anon_sym_TRUE] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [anon_sym_False] = ACTIONS(2477), - [anon_sym_FALSE] = ACTIONS(2477), - [anon_sym_null] = ACTIONS(2477), - [anon_sym_Null] = ACTIONS(2477), - [anon_sym_NULL] = ACTIONS(2477), - [sym_string] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_array] = ACTIONS(2477), - [anon_sym_varray] = ACTIONS(2477), - [anon_sym_darray] = ACTIONS(2477), - [anon_sym_vec] = ACTIONS(2477), - [anon_sym_dict] = ACTIONS(2477), - [anon_sym_keyset] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_trait] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_abstract] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2479), - [sym_final_modifier] = ACTIONS(2477), - [sym_xhp_modifier] = ACTIONS(2477), - [sym_xhp_identifier] = ACTIONS(2477), - [sym_xhp_class_identifier] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2217), - [sym_variable] = ACTIONS(2219), - [sym_pipe_variable] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_newtype] = ACTIONS(2217), - [anon_sym_shape] = ACTIONS(2217), - [anon_sym_tuple] = ACTIONS(2217), - [anon_sym_clone] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_print] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_LT_LT_LT] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_echo] = ACTIONS(2217), - [anon_sym_unset] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_concurrent] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_elseif] = ACTIONS(2217), - [anon_sym_else] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_foreach] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_using] = ACTIONS(2217), - [sym_float] = ACTIONS(2219), - [sym_integer] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_True] = ACTIONS(2217), - [anon_sym_TRUE] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_False] = ACTIONS(2217), - [anon_sym_FALSE] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_Null] = ACTIONS(2217), - [anon_sym_NULL] = ACTIONS(2217), - [sym_string] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_array] = ACTIONS(2217), - [anon_sym_varray] = ACTIONS(2217), - [anon_sym_darray] = ACTIONS(2217), - [anon_sym_vec] = ACTIONS(2217), - [anon_sym_dict] = ACTIONS(2217), - [anon_sym_keyset] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_class] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2219), - [sym_final_modifier] = ACTIONS(2217), - [sym_xhp_modifier] = ACTIONS(2217), - [sym_xhp_identifier] = ACTIONS(2217), - [sym_xhp_class_identifier] = ACTIONS(2219), - [sym_comment] = ACTIONS(3), - }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2505), - [sym_variable] = ACTIONS(2507), - [sym_pipe_variable] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_newtype] = ACTIONS(2505), - [anon_sym_shape] = ACTIONS(2505), - [anon_sym_tuple] = ACTIONS(2505), - [anon_sym_clone] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_print] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_LT_LT_LT] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_echo] = ACTIONS(2505), - [anon_sym_unset] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_concurrent] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_elseif] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_foreach] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [sym_float] = ACTIONS(2507), - [sym_integer] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_True] = ACTIONS(2505), - [anon_sym_TRUE] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_False] = ACTIONS(2505), - [anon_sym_FALSE] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [anon_sym_Null] = ACTIONS(2505), - [anon_sym_NULL] = ACTIONS(2505), - [sym_string] = ACTIONS(2507), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_array] = ACTIONS(2505), - [anon_sym_varray] = ACTIONS(2505), - [anon_sym_darray] = ACTIONS(2505), - [anon_sym_vec] = ACTIONS(2505), - [anon_sym_dict] = ACTIONS(2505), - [anon_sym_keyset] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_trait] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2507), - [sym_final_modifier] = ACTIONS(2505), - [sym_xhp_modifier] = ACTIONS(2505), - [sym_xhp_identifier] = ACTIONS(2505), - [sym_xhp_class_identifier] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(2515), - [sym_identifier] = ACTIONS(2513), - [sym_variable] = ACTIONS(2515), - [sym_pipe_variable] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_newtype] = ACTIONS(2513), - [anon_sym_shape] = ACTIONS(2513), - [anon_sym_tuple] = ACTIONS(2513), - [anon_sym_clone] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_LT_LT_LT] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_echo] = ACTIONS(2513), - [anon_sym_unset] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_concurrent] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_elseif] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_foreach] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [sym_float] = ACTIONS(2515), - [sym_integer] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_True] = ACTIONS(2513), - [anon_sym_TRUE] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [anon_sym_False] = ACTIONS(2513), - [anon_sym_FALSE] = ACTIONS(2513), - [anon_sym_null] = ACTIONS(2513), - [anon_sym_Null] = ACTIONS(2513), - [anon_sym_NULL] = ACTIONS(2513), - [sym_string] = ACTIONS(2515), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_array] = ACTIONS(2513), - [anon_sym_varray] = ACTIONS(2513), - [anon_sym_darray] = ACTIONS(2513), - [anon_sym_vec] = ACTIONS(2513), - [anon_sym_dict] = ACTIONS(2513), - [anon_sym_keyset] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_trait] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2515), - [sym_final_modifier] = ACTIONS(2513), - [sym_xhp_modifier] = ACTIONS(2513), - [sym_xhp_identifier] = ACTIONS(2513), - [sym_xhp_class_identifier] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - }, - [1012] = { - [sym_identifier] = ACTIONS(2193), - [sym_variable] = ACTIONS(2195), - [sym_pipe_variable] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_newtype] = ACTIONS(2193), - [anon_sym_shape] = ACTIONS(2193), - [anon_sym_tuple] = ACTIONS(2193), - [anon_sym_clone] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_print] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_LT_LT_LT] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_echo] = ACTIONS(2193), - [anon_sym_unset] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_concurrent] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_foreach] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [sym_float] = ACTIONS(2195), - [sym_integer] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_True] = ACTIONS(2193), - [anon_sym_TRUE] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_False] = ACTIONS(2193), - [anon_sym_FALSE] = ACTIONS(2193), - [anon_sym_null] = ACTIONS(2193), - [anon_sym_Null] = ACTIONS(2193), - [anon_sym_NULL] = ACTIONS(2193), - [sym_string] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_array] = ACTIONS(2193), - [anon_sym_varray] = ACTIONS(2193), - [anon_sym_darray] = ACTIONS(2193), - [anon_sym_vec] = ACTIONS(2193), - [anon_sym_dict] = ACTIONS(2193), - [anon_sym_keyset] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2195), - [sym_final_modifier] = ACTIONS(2193), - [sym_xhp_modifier] = ACTIONS(2193), - [sym_xhp_identifier] = ACTIONS(2193), - [sym_xhp_class_identifier] = ACTIONS(2195), - [sym_comment] = ACTIONS(3), - }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2253), - [sym_variable] = ACTIONS(2255), - [sym_pipe_variable] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_newtype] = ACTIONS(2253), - [anon_sym_shape] = ACTIONS(2253), - [anon_sym_tuple] = ACTIONS(2253), - [anon_sym_clone] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_print] = ACTIONS(2253), - [anon_sym_namespace] = ACTIONS(2253), - [anon_sym_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_LT_LT_LT] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_throw] = ACTIONS(2253), - [anon_sym_echo] = ACTIONS(2253), - [anon_sym_unset] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_concurrent] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_function] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_elseif] = ACTIONS(2253), - [anon_sym_else] = ACTIONS(2253), - [anon_sym_switch] = ACTIONS(2253), - [anon_sym_foreach] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_using] = ACTIONS(2253), - [sym_float] = ACTIONS(2255), - [sym_integer] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_True] = ACTIONS(2253), - [anon_sym_TRUE] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_False] = ACTIONS(2253), - [anon_sym_FALSE] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [anon_sym_Null] = ACTIONS(2253), - [anon_sym_NULL] = ACTIONS(2253), - [sym_string] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_array] = ACTIONS(2253), - [anon_sym_varray] = ACTIONS(2253), - [anon_sym_darray] = ACTIONS(2253), - [anon_sym_vec] = ACTIONS(2253), - [anon_sym_dict] = ACTIONS(2253), - [anon_sym_keyset] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_abstract] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2255), - [sym_final_modifier] = ACTIONS(2253), - [sym_xhp_modifier] = ACTIONS(2253), - [sym_xhp_identifier] = ACTIONS(2253), - [sym_xhp_class_identifier] = ACTIONS(2255), - [sym_comment] = ACTIONS(3), - }, - [1014] = { - [sym_identifier] = ACTIONS(2197), - [sym_variable] = ACTIONS(2199), - [sym_pipe_variable] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_newtype] = ACTIONS(2197), - [anon_sym_shape] = ACTIONS(2197), - [anon_sym_tuple] = ACTIONS(2197), - [anon_sym_clone] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_print] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_LT_LT_LT] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_echo] = ACTIONS(2197), - [anon_sym_unset] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_concurrent] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_foreach] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [sym_float] = ACTIONS(2199), - [sym_integer] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_True] = ACTIONS(2197), - [anon_sym_TRUE] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_False] = ACTIONS(2197), - [anon_sym_FALSE] = ACTIONS(2197), - [anon_sym_null] = ACTIONS(2197), - [anon_sym_Null] = ACTIONS(2197), - [anon_sym_NULL] = ACTIONS(2197), - [sym_string] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_array] = ACTIONS(2197), - [anon_sym_varray] = ACTIONS(2197), - [anon_sym_darray] = ACTIONS(2197), - [anon_sym_vec] = ACTIONS(2197), - [anon_sym_dict] = ACTIONS(2197), - [anon_sym_keyset] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2199), - [sym_final_modifier] = ACTIONS(2197), - [sym_xhp_modifier] = ACTIONS(2197), - [sym_xhp_identifier] = ACTIONS(2197), - [sym_xhp_class_identifier] = ACTIONS(2199), - [sym_comment] = ACTIONS(3), - }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2269), - [sym_variable] = ACTIONS(2271), - [sym_pipe_variable] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_newtype] = ACTIONS(2269), - [anon_sym_shape] = ACTIONS(2269), - [anon_sym_tuple] = ACTIONS(2269), - [anon_sym_clone] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_print] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_LT_LT_LT] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_echo] = ACTIONS(2269), - [anon_sym_unset] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_concurrent] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_elseif] = ACTIONS(2269), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_switch] = ACTIONS(2269), - [anon_sym_foreach] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_using] = ACTIONS(2269), - [sym_float] = ACTIONS(2271), - [sym_integer] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_True] = ACTIONS(2269), - [anon_sym_TRUE] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_False] = ACTIONS(2269), - [anon_sym_FALSE] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [anon_sym_Null] = ACTIONS(2269), - [anon_sym_NULL] = ACTIONS(2269), - [sym_string] = ACTIONS(2271), - [anon_sym_AT] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_array] = ACTIONS(2269), - [anon_sym_varray] = ACTIONS(2269), - [anon_sym_darray] = ACTIONS(2269), - [anon_sym_vec] = ACTIONS(2269), - [anon_sym_dict] = ACTIONS(2269), - [anon_sym_keyset] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2271), - [sym_final_modifier] = ACTIONS(2269), - [sym_xhp_modifier] = ACTIONS(2269), - [sym_xhp_identifier] = ACTIONS(2269), - [sym_xhp_class_identifier] = ACTIONS(2271), - [sym_comment] = ACTIONS(3), - }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2517), - [sym_variable] = ACTIONS(2519), - [sym_pipe_variable] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_newtype] = ACTIONS(2517), - [anon_sym_shape] = ACTIONS(2517), - [anon_sym_tuple] = ACTIONS(2517), - [anon_sym_clone] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), - [anon_sym_LT_LT_LT] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_echo] = ACTIONS(2517), - [anon_sym_unset] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_concurrent] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_elseif] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_foreach] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [sym_float] = ACTIONS(2519), - [sym_integer] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_True] = ACTIONS(2517), - [anon_sym_TRUE] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_False] = ACTIONS(2517), - [anon_sym_FALSE] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [anon_sym_Null] = ACTIONS(2517), - [anon_sym_NULL] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_array] = ACTIONS(2517), - [anon_sym_varray] = ACTIONS(2517), - [anon_sym_darray] = ACTIONS(2517), - [anon_sym_vec] = ACTIONS(2517), - [anon_sym_dict] = ACTIONS(2517), - [anon_sym_keyset] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_trait] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2519), - [sym_final_modifier] = ACTIONS(2517), - [sym_xhp_modifier] = ACTIONS(2517), - [sym_xhp_identifier] = ACTIONS(2517), - [sym_xhp_class_identifier] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2309), - [sym_variable] = ACTIONS(2311), - [sym_pipe_variable] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_newtype] = ACTIONS(2309), - [anon_sym_shape] = ACTIONS(2309), - [anon_sym_tuple] = ACTIONS(2309), - [anon_sym_clone] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_print] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_LT_LT_LT] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_throw] = ACTIONS(2309), - [anon_sym_echo] = ACTIONS(2309), - [anon_sym_unset] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_concurrent] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_elseif] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_switch] = ACTIONS(2309), - [anon_sym_foreach] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_using] = ACTIONS(2309), - [sym_float] = ACTIONS(2311), - [sym_integer] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_True] = ACTIONS(2309), - [anon_sym_TRUE] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_False] = ACTIONS(2309), - [anon_sym_FALSE] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [anon_sym_Null] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2309), - [sym_string] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_array] = ACTIONS(2309), - [anon_sym_varray] = ACTIONS(2309), - [anon_sym_darray] = ACTIONS(2309), - [anon_sym_vec] = ACTIONS(2309), - [anon_sym_dict] = ACTIONS(2309), - [anon_sym_keyset] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_abstract] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2311), - [sym_final_modifier] = ACTIONS(2309), - [sym_xhp_modifier] = ACTIONS(2309), - [sym_xhp_identifier] = ACTIONS(2309), - [sym_xhp_class_identifier] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2533), - [sym_variable] = ACTIONS(2535), - [sym_pipe_variable] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_newtype] = ACTIONS(2533), - [anon_sym_shape] = ACTIONS(2533), - [anon_sym_tuple] = ACTIONS(2533), - [anon_sym_clone] = ACTIONS(2533), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_print] = ACTIONS(2533), - [anon_sym_namespace] = ACTIONS(2533), - [anon_sym_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT_LT_LT] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_echo] = ACTIONS(2533), - [anon_sym_unset] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_concurrent] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_function] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_elseif] = ACTIONS(2533), - [anon_sym_else] = ACTIONS(2533), - [anon_sym_switch] = ACTIONS(2533), - [anon_sym_foreach] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_do] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [anon_sym_using] = ACTIONS(2533), - [sym_float] = ACTIONS(2535), - [sym_integer] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_True] = ACTIONS(2533), - [anon_sym_TRUE] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_False] = ACTIONS(2533), - [anon_sym_FALSE] = ACTIONS(2533), - [anon_sym_null] = ACTIONS(2533), - [anon_sym_Null] = ACTIONS(2533), - [anon_sym_NULL] = ACTIONS(2533), - [sym_string] = ACTIONS(2535), - [anon_sym_AT] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_array] = ACTIONS(2533), - [anon_sym_varray] = ACTIONS(2533), - [anon_sym_darray] = ACTIONS(2533), - [anon_sym_vec] = ACTIONS(2533), - [anon_sym_dict] = ACTIONS(2533), - [anon_sym_keyset] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_PLUS_PLUS] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2535), - [anon_sym_await] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_interface] = ACTIONS(2533), - [anon_sym_class] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_abstract] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2535), - [sym_final_modifier] = ACTIONS(2533), - [sym_xhp_modifier] = ACTIONS(2533), - [sym_xhp_identifier] = ACTIONS(2533), - [sym_xhp_class_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(3), - }, - [1019] = { - [sym_identifier] = ACTIONS(2437), - [sym_variable] = ACTIONS(2439), - [sym_pipe_variable] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_newtype] = ACTIONS(2437), - [anon_sym_shape] = ACTIONS(2437), - [anon_sym_tuple] = ACTIONS(2437), - [anon_sym_clone] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_print] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), - [anon_sym_LT_LT_LT] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_echo] = ACTIONS(2437), - [anon_sym_unset] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_concurrent] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_case] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_foreach] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [sym_float] = ACTIONS(2439), - [sym_integer] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_True] = ACTIONS(2437), - [anon_sym_TRUE] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_False] = ACTIONS(2437), - [anon_sym_FALSE] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_Null] = ACTIONS(2437), - [anon_sym_NULL] = ACTIONS(2437), - [sym_string] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_array] = ACTIONS(2437), - [anon_sym_varray] = ACTIONS(2437), - [anon_sym_darray] = ACTIONS(2437), - [anon_sym_vec] = ACTIONS(2437), - [anon_sym_dict] = ACTIONS(2437), - [anon_sym_keyset] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_abstract] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2439), - [sym_final_modifier] = ACTIONS(2437), - [sym_xhp_modifier] = ACTIONS(2437), - [sym_xhp_identifier] = ACTIONS(2437), - [sym_xhp_class_identifier] = ACTIONS(2439), - [sym_comment] = ACTIONS(3), - }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2449), - [sym_variable] = ACTIONS(2451), - [sym_pipe_variable] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_newtype] = ACTIONS(2449), - [anon_sym_shape] = ACTIONS(2449), - [anon_sym_tuple] = ACTIONS(2449), - [anon_sym_clone] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_print] = ACTIONS(2449), - [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_LT_LT_LT] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_echo] = ACTIONS(2449), - [anon_sym_unset] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_concurrent] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_switch] = ACTIONS(2449), - [anon_sym_foreach] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_using] = ACTIONS(2449), - [sym_float] = ACTIONS(2451), - [sym_integer] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_True] = ACTIONS(2449), - [anon_sym_TRUE] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_False] = ACTIONS(2449), - [anon_sym_FALSE] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [anon_sym_Null] = ACTIONS(2449), - [anon_sym_NULL] = ACTIONS(2449), - [sym_string] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_array] = ACTIONS(2449), - [anon_sym_varray] = ACTIONS(2449), - [anon_sym_darray] = ACTIONS(2449), - [anon_sym_vec] = ACTIONS(2449), - [anon_sym_dict] = ACTIONS(2449), - [anon_sym_keyset] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_class] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_abstract] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2451), - [sym_final_modifier] = ACTIONS(2449), - [sym_xhp_modifier] = ACTIONS(2449), - [sym_xhp_identifier] = ACTIONS(2449), - [sym_xhp_class_identifier] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(2551), - [sym_identifier] = ACTIONS(2549), - [sym_variable] = ACTIONS(2551), - [sym_pipe_variable] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_newtype] = ACTIONS(2549), - [anon_sym_shape] = ACTIONS(2549), - [anon_sym_tuple] = ACTIONS(2549), - [anon_sym_clone] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_print] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), - [anon_sym_LT_LT_LT] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_echo] = ACTIONS(2549), - [anon_sym_unset] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_concurrent] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_elseif] = ACTIONS(2549), - [anon_sym_else] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_foreach] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [sym_float] = ACTIONS(2551), - [sym_integer] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_True] = ACTIONS(2549), - [anon_sym_TRUE] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_False] = ACTIONS(2549), - [anon_sym_FALSE] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2549), - [anon_sym_Null] = ACTIONS(2549), - [anon_sym_NULL] = ACTIONS(2549), - [sym_string] = ACTIONS(2551), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_array] = ACTIONS(2549), - [anon_sym_varray] = ACTIONS(2549), - [anon_sym_darray] = ACTIONS(2549), - [anon_sym_vec] = ACTIONS(2549), - [anon_sym_dict] = ACTIONS(2549), - [anon_sym_keyset] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2551), - [sym_final_modifier] = ACTIONS(2549), - [sym_xhp_modifier] = ACTIONS(2549), - [sym_xhp_identifier] = ACTIONS(2549), - [sym_xhp_class_identifier] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2501), - [sym_variable] = ACTIONS(2503), - [sym_pipe_variable] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_newtype] = ACTIONS(2501), - [anon_sym_shape] = ACTIONS(2501), - [anon_sym_tuple] = ACTIONS(2501), - [anon_sym_clone] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_print] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_LT_LT_LT] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_echo] = ACTIONS(2501), - [anon_sym_unset] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_concurrent] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_elseif] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_foreach] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [sym_float] = ACTIONS(2503), - [sym_integer] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_True] = ACTIONS(2501), - [anon_sym_TRUE] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_False] = ACTIONS(2501), - [anon_sym_FALSE] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [anon_sym_Null] = ACTIONS(2501), - [anon_sym_NULL] = ACTIONS(2501), - [sym_string] = ACTIONS(2503), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_array] = ACTIONS(2501), - [anon_sym_varray] = ACTIONS(2501), - [anon_sym_darray] = ACTIONS(2501), - [anon_sym_vec] = ACTIONS(2501), - [anon_sym_dict] = ACTIONS(2501), - [anon_sym_keyset] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_trait] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2503), - [sym_final_modifier] = ACTIONS(2501), - [sym_xhp_modifier] = ACTIONS(2501), - [sym_xhp_identifier] = ACTIONS(2501), - [sym_xhp_class_identifier] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(2539), + [882] = { [sym_identifier] = ACTIONS(2537), [sym_variable] = ACTIONS(2539), [sym_pipe_variable] = ACTIONS(2539), @@ -132800,6 +113905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2537), [anon_sym_LT_LT] = ACTIONS(2537), [anon_sym_LT_LT_LT] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), [anon_sym_LBRACE] = ACTIONS(2539), [anon_sym_SEMI] = ACTIONS(2539), [anon_sym_return] = ACTIONS(2537), @@ -132817,6 +113923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_elseif] = ACTIONS(2537), [anon_sym_else] = ACTIONS(2537), [anon_sym_switch] = ACTIONS(2537), + [anon_sym_case] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), [anon_sym_foreach] = ACTIONS(2537), [anon_sym_while] = ACTIONS(2537), [anon_sym_do] = ACTIONS(2537), @@ -132865,712 +113973,547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2539), [sym_comment] = ACTIONS(3), }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2605), - [sym_variable] = ACTIONS(2607), - [sym_pipe_variable] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_newtype] = ACTIONS(2605), - [anon_sym_shape] = ACTIONS(2605), - [anon_sym_tuple] = ACTIONS(2605), - [anon_sym_clone] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_print] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_include] = ACTIONS(2605), - [anon_sym_include_once] = ACTIONS(2605), - [anon_sym_require] = ACTIONS(2605), - [anon_sym_require_once] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2607), - [anon_sym_self] = ACTIONS(2605), - [anon_sym_parent] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_LT_LT] = ACTIONS(2605), - [anon_sym_LT_LT_LT] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_echo] = ACTIONS(2605), - [anon_sym_unset] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_concurrent] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_elseif] = ACTIONS(2605), - [anon_sym_else] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_foreach] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [sym_float] = ACTIONS(2607), - [sym_integer] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_True] = ACTIONS(2605), - [anon_sym_TRUE] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [anon_sym_False] = ACTIONS(2605), - [anon_sym_FALSE] = ACTIONS(2605), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_Null] = ACTIONS(2605), - [anon_sym_NULL] = ACTIONS(2605), - [sym_string] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_array] = ACTIONS(2605), - [anon_sym_varray] = ACTIONS(2605), - [anon_sym_darray] = ACTIONS(2605), - [anon_sym_vec] = ACTIONS(2605), - [anon_sym_dict] = ACTIONS(2605), - [anon_sym_keyset] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_list] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2605), - [anon_sym_async] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_trait] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2607), - [sym_final_modifier] = ACTIONS(2605), - [sym_xhp_modifier] = ACTIONS(2605), - [sym_xhp_identifier] = ACTIONS(2605), - [sym_xhp_class_identifier] = ACTIONS(2607), - [sym_comment] = ACTIONS(3), - }, - [1025] = { - [sym_identifier] = ACTIONS(2413), - [sym_variable] = ACTIONS(2415), - [sym_pipe_variable] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_newtype] = ACTIONS(2413), - [anon_sym_shape] = ACTIONS(2413), - [anon_sym_tuple] = ACTIONS(2413), - [anon_sym_clone] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_print] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_LT_LT] = ACTIONS(2413), - [anon_sym_LT_LT_LT] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_echo] = ACTIONS(2413), - [anon_sym_unset] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_concurrent] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_case] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_foreach] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [sym_float] = ACTIONS(2415), - [sym_integer] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_True] = ACTIONS(2413), - [anon_sym_TRUE] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [anon_sym_False] = ACTIONS(2413), - [anon_sym_FALSE] = ACTIONS(2413), - [anon_sym_null] = ACTIONS(2413), - [anon_sym_Null] = ACTIONS(2413), - [anon_sym_NULL] = ACTIONS(2413), - [sym_string] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_array] = ACTIONS(2413), - [anon_sym_varray] = ACTIONS(2413), - [anon_sym_darray] = ACTIONS(2413), - [anon_sym_vec] = ACTIONS(2413), - [anon_sym_dict] = ACTIONS(2413), - [anon_sym_keyset] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_await] = ACTIONS(2413), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2413), - [anon_sym_trait] = ACTIONS(2413), - [anon_sym_interface] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_abstract] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2415), - [sym_final_modifier] = ACTIONS(2413), - [sym_xhp_modifier] = ACTIONS(2413), - [sym_xhp_identifier] = ACTIONS(2413), - [sym_xhp_class_identifier] = ACTIONS(2415), - [sym_comment] = ACTIONS(3), - }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2329), - [sym_variable] = ACTIONS(2331), - [sym_pipe_variable] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_newtype] = ACTIONS(2329), - [anon_sym_shape] = ACTIONS(2329), - [anon_sym_tuple] = ACTIONS(2329), - [anon_sym_clone] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_print] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_LT_LT] = ACTIONS(2329), - [anon_sym_LT_LT_LT] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_echo] = ACTIONS(2329), - [anon_sym_unset] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_concurrent] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_elseif] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_foreach] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [sym_float] = ACTIONS(2331), - [sym_integer] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_True] = ACTIONS(2329), - [anon_sym_TRUE] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [anon_sym_False] = ACTIONS(2329), - [anon_sym_FALSE] = ACTIONS(2329), - [anon_sym_null] = ACTIONS(2329), - [anon_sym_Null] = ACTIONS(2329), - [anon_sym_NULL] = ACTIONS(2329), - [sym_string] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_array] = ACTIONS(2329), - [anon_sym_varray] = ACTIONS(2329), - [anon_sym_darray] = ACTIONS(2329), - [anon_sym_vec] = ACTIONS(2329), - [anon_sym_dict] = ACTIONS(2329), - [anon_sym_keyset] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_trait] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(2331), - [sym_final_modifier] = ACTIONS(2329), - [sym_xhp_modifier] = ACTIONS(2329), - [sym_xhp_identifier] = ACTIONS(2329), - [sym_xhp_class_identifier] = ACTIONS(2331), - [sym_comment] = ACTIONS(3), - }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [sym_variable] = ACTIONS(2147), - [sym_pipe_variable] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_newtype] = ACTIONS(2145), - [anon_sym_shape] = ACTIONS(2145), - [anon_sym_tuple] = ACTIONS(2145), - [anon_sym_clone] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_print] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_LT_LT_LT] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_echo] = ACTIONS(2145), - [anon_sym_unset] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_concurrent] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_elseif] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_foreach] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [sym_float] = ACTIONS(2147), - [sym_integer] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_True] = ACTIONS(2145), - [anon_sym_TRUE] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_False] = ACTIONS(2145), - [anon_sym_FALSE] = ACTIONS(2145), - [anon_sym_null] = ACTIONS(2145), - [anon_sym_Null] = ACTIONS(2145), - [anon_sym_NULL] = ACTIONS(2145), - [sym_string] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_array] = ACTIONS(2145), - [anon_sym_varray] = ACTIONS(2145), - [anon_sym_darray] = ACTIONS(2145), - [anon_sym_vec] = ACTIONS(2145), - [anon_sym_dict] = ACTIONS(2145), - [anon_sym_keyset] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2147), - [sym_final_modifier] = ACTIONS(2145), - [sym_xhp_modifier] = ACTIONS(2145), - [sym_xhp_identifier] = ACTIONS(2145), - [sym_xhp_class_identifier] = ACTIONS(2147), + [883] = { + [sym_identifier] = ACTIONS(2541), + [sym_variable] = ACTIONS(2543), + [sym_pipe_variable] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_newtype] = ACTIONS(2541), + [anon_sym_shape] = ACTIONS(2541), + [anon_sym_tuple] = ACTIONS(2541), + [anon_sym_clone] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_include] = ACTIONS(2541), + [anon_sym_include_once] = ACTIONS(2541), + [anon_sym_require] = ACTIONS(2541), + [anon_sym_require_once] = ACTIONS(2541), + [anon_sym_BSLASH] = ACTIONS(2543), + [anon_sym_self] = ACTIONS(2541), + [anon_sym_parent] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_LT_LT] = ACTIONS(2541), + [anon_sym_LT_LT_LT] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_echo] = ACTIONS(2541), + [anon_sym_unset] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_concurrent] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_foreach] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [sym_float] = ACTIONS(2543), + [sym_integer] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_True] = ACTIONS(2541), + [anon_sym_TRUE] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_False] = ACTIONS(2541), + [anon_sym_FALSE] = ACTIONS(2541), + [anon_sym_null] = ACTIONS(2541), + [anon_sym_Null] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [sym_string] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_array] = ACTIONS(2541), + [anon_sym_varray] = ACTIONS(2541), + [anon_sym_darray] = ACTIONS(2541), + [anon_sym_vec] = ACTIONS(2541), + [anon_sym_dict] = ACTIONS(2541), + [anon_sym_keyset] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_list] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2543), + [sym_final_modifier] = ACTIONS(2541), + [sym_xhp_modifier] = ACTIONS(2541), + [sym_xhp_identifier] = ACTIONS(2541), + [sym_xhp_class_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(3), }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2157), - [sym_variable] = ACTIONS(2159), - [sym_pipe_variable] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_newtype] = ACTIONS(2157), - [anon_sym_shape] = ACTIONS(2157), - [anon_sym_tuple] = ACTIONS(2157), - [anon_sym_clone] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_print] = ACTIONS(2157), - [anon_sym_namespace] = ACTIONS(2157), - [anon_sym_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_LT_LT_LT] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_throw] = ACTIONS(2157), - [anon_sym_echo] = ACTIONS(2157), - [anon_sym_unset] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_concurrent] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_function] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_elseif] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_switch] = ACTIONS(2157), - [anon_sym_foreach] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(2157), - [sym_float] = ACTIONS(2159), - [sym_integer] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_True] = ACTIONS(2157), - [anon_sym_TRUE] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [anon_sym_False] = ACTIONS(2157), - [anon_sym_FALSE] = ACTIONS(2157), - [anon_sym_null] = ACTIONS(2157), - [anon_sym_Null] = ACTIONS(2157), - [anon_sym_NULL] = ACTIONS(2157), - [sym_string] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_array] = ACTIONS(2157), - [anon_sym_varray] = ACTIONS(2157), - [anon_sym_darray] = ACTIONS(2157), - [anon_sym_vec] = ACTIONS(2157), - [anon_sym_dict] = ACTIONS(2157), - [anon_sym_keyset] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_interface] = ACTIONS(2157), - [anon_sym_class] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_abstract] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(2159), - [sym_final_modifier] = ACTIONS(2157), - [sym_xhp_modifier] = ACTIONS(2157), - [sym_xhp_identifier] = ACTIONS(2157), - [sym_xhp_class_identifier] = ACTIONS(2159), + [884] = { + [sym_identifier] = ACTIONS(2545), + [sym_variable] = ACTIONS(2547), + [sym_pipe_variable] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_newtype] = ACTIONS(2545), + [anon_sym_shape] = ACTIONS(2545), + [anon_sym_tuple] = ACTIONS(2545), + [anon_sym_clone] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_include] = ACTIONS(2545), + [anon_sym_include_once] = ACTIONS(2545), + [anon_sym_require] = ACTIONS(2545), + [anon_sym_require_once] = ACTIONS(2545), + [anon_sym_BSLASH] = ACTIONS(2547), + [anon_sym_self] = ACTIONS(2545), + [anon_sym_parent] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(2545), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_echo] = ACTIONS(2545), + [anon_sym_unset] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_concurrent] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_elseif] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_case] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_foreach] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [sym_float] = ACTIONS(2547), + [sym_integer] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_True] = ACTIONS(2545), + [anon_sym_TRUE] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_False] = ACTIONS(2545), + [anon_sym_FALSE] = ACTIONS(2545), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_Null] = ACTIONS(2545), + [anon_sym_NULL] = ACTIONS(2545), + [sym_string] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_array] = ACTIONS(2545), + [anon_sym_varray] = ACTIONS(2545), + [anon_sym_darray] = ACTIONS(2545), + [anon_sym_vec] = ACTIONS(2545), + [anon_sym_dict] = ACTIONS(2545), + [anon_sym_keyset] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_list] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_interface] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_abstract] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2547), + [sym_final_modifier] = ACTIONS(2545), + [sym_xhp_modifier] = ACTIONS(2545), + [sym_xhp_identifier] = ACTIONS(2545), + [sym_xhp_class_identifier] = ACTIONS(2547), [sym_comment] = ACTIONS(3), }, - [1029] = { - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2173), - [sym_variable] = ACTIONS(2175), - [sym_pipe_variable] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_newtype] = ACTIONS(2173), - [anon_sym_shape] = ACTIONS(2173), - [anon_sym_tuple] = ACTIONS(2173), - [anon_sym_clone] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_print] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_LT_LT_LT] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_echo] = ACTIONS(2173), - [anon_sym_unset] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_concurrent] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_elseif] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_foreach] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [sym_float] = ACTIONS(2175), - [sym_integer] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_True] = ACTIONS(2173), - [anon_sym_TRUE] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [anon_sym_False] = ACTIONS(2173), - [anon_sym_FALSE] = ACTIONS(2173), - [anon_sym_null] = ACTIONS(2173), - [anon_sym_Null] = ACTIONS(2173), - [anon_sym_NULL] = ACTIONS(2173), - [sym_string] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_array] = ACTIONS(2173), - [anon_sym_varray] = ACTIONS(2173), - [anon_sym_darray] = ACTIONS(2173), - [anon_sym_vec] = ACTIONS(2173), - [anon_sym_dict] = ACTIONS(2173), - [anon_sym_keyset] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_abstract] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2175), - [sym_final_modifier] = ACTIONS(2173), - [sym_xhp_modifier] = ACTIONS(2173), - [sym_xhp_identifier] = ACTIONS(2173), - [sym_xhp_class_identifier] = ACTIONS(2175), + [885] = { + [sym_identifier] = ACTIONS(2549), + [sym_variable] = ACTIONS(2551), + [sym_pipe_variable] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_newtype] = ACTIONS(2549), + [anon_sym_shape] = ACTIONS(2549), + [anon_sym_tuple] = ACTIONS(2549), + [anon_sym_clone] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_include] = ACTIONS(2549), + [anon_sym_include_once] = ACTIONS(2549), + [anon_sym_require] = ACTIONS(2549), + [anon_sym_require_once] = ACTIONS(2549), + [anon_sym_BSLASH] = ACTIONS(2551), + [anon_sym_self] = ACTIONS(2549), + [anon_sym_parent] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2549), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_echo] = ACTIONS(2549), + [anon_sym_unset] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_concurrent] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_function] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_elseif] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_case] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_foreach] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [sym_float] = ACTIONS(2551), + [sym_integer] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_True] = ACTIONS(2549), + [anon_sym_TRUE] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_False] = ACTIONS(2549), + [anon_sym_FALSE] = ACTIONS(2549), + [anon_sym_null] = ACTIONS(2549), + [anon_sym_Null] = ACTIONS(2549), + [anon_sym_NULL] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_array] = ACTIONS(2549), + [anon_sym_varray] = ACTIONS(2549), + [anon_sym_darray] = ACTIONS(2549), + [anon_sym_vec] = ACTIONS(2549), + [anon_sym_dict] = ACTIONS(2549), + [anon_sym_keyset] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_list] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_interface] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_abstract] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2551), + [sym_final_modifier] = ACTIONS(2549), + [sym_xhp_modifier] = ACTIONS(2549), + [sym_xhp_identifier] = ACTIONS(2549), + [sym_xhp_class_identifier] = ACTIONS(2551), [sym_comment] = ACTIONS(3), }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2305), - [sym_variable] = ACTIONS(2307), - [sym_pipe_variable] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_newtype] = ACTIONS(2305), - [anon_sym_shape] = ACTIONS(2305), - [anon_sym_tuple] = ACTIONS(2305), - [anon_sym_clone] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_print] = ACTIONS(2305), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_LT_LT_LT] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_throw] = ACTIONS(2305), - [anon_sym_echo] = ACTIONS(2305), - [anon_sym_unset] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_concurrent] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_elseif] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_switch] = ACTIONS(2305), - [anon_sym_foreach] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_using] = ACTIONS(2305), - [sym_float] = ACTIONS(2307), - [sym_integer] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_True] = ACTIONS(2305), - [anon_sym_TRUE] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_False] = ACTIONS(2305), - [anon_sym_FALSE] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [anon_sym_Null] = ACTIONS(2305), - [anon_sym_NULL] = ACTIONS(2305), - [sym_string] = ACTIONS(2307), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_array] = ACTIONS(2305), - [anon_sym_varray] = ACTIONS(2305), - [anon_sym_darray] = ACTIONS(2305), - [anon_sym_vec] = ACTIONS(2305), - [anon_sym_dict] = ACTIONS(2305), - [anon_sym_keyset] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_abstract] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2307), - [sym_final_modifier] = ACTIONS(2305), - [sym_xhp_modifier] = ACTIONS(2305), - [sym_xhp_identifier] = ACTIONS(2305), - [sym_xhp_class_identifier] = ACTIONS(2307), + [886] = { + [sym_identifier] = ACTIONS(2553), + [sym_variable] = ACTIONS(2555), + [sym_pipe_variable] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_newtype] = ACTIONS(2553), + [anon_sym_shape] = ACTIONS(2553), + [anon_sym_tuple] = ACTIONS(2553), + [anon_sym_clone] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_include] = ACTIONS(2553), + [anon_sym_include_once] = ACTIONS(2553), + [anon_sym_require] = ACTIONS(2553), + [anon_sym_require_once] = ACTIONS(2553), + [anon_sym_BSLASH] = ACTIONS(2555), + [anon_sym_self] = ACTIONS(2553), + [anon_sym_parent] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_LT_LT] = ACTIONS(2553), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_echo] = ACTIONS(2553), + [anon_sym_unset] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_concurrent] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_function] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_elseif] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_foreach] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [sym_float] = ACTIONS(2555), + [sym_integer] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_True] = ACTIONS(2553), + [anon_sym_TRUE] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_False] = ACTIONS(2553), + [anon_sym_FALSE] = ACTIONS(2553), + [anon_sym_null] = ACTIONS(2553), + [anon_sym_Null] = ACTIONS(2553), + [anon_sym_NULL] = ACTIONS(2553), + [sym_string] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_array] = ACTIONS(2553), + [anon_sym_varray] = ACTIONS(2553), + [anon_sym_darray] = ACTIONS(2553), + [anon_sym_vec] = ACTIONS(2553), + [anon_sym_dict] = ACTIONS(2553), + [anon_sym_keyset] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_list] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_await] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_interface] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(2555), + [sym_final_modifier] = ACTIONS(2553), + [sym_xhp_modifier] = ACTIONS(2553), + [sym_xhp_identifier] = ACTIONS(2553), + [sym_xhp_class_identifier] = ACTIONS(2555), [sym_comment] = ACTIONS(3), }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2345), - [sym_variable] = ACTIONS(2347), - [sym_pipe_variable] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_newtype] = ACTIONS(2345), - [anon_sym_shape] = ACTIONS(2345), - [anon_sym_tuple] = ACTIONS(2345), - [anon_sym_clone] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_print] = ACTIONS(2345), - [anon_sym_namespace] = ACTIONS(2345), - [anon_sym_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_LT_LT] = ACTIONS(2345), - [anon_sym_LT_LT_LT] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_throw] = ACTIONS(2345), - [anon_sym_echo] = ACTIONS(2345), - [anon_sym_unset] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_concurrent] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_elseif] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_switch] = ACTIONS(2345), - [anon_sym_foreach] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_using] = ACTIONS(2345), - [sym_float] = ACTIONS(2347), - [sym_integer] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_True] = ACTIONS(2345), - [anon_sym_TRUE] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_False] = ACTIONS(2345), - [anon_sym_FALSE] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2345), - [anon_sym_Null] = ACTIONS(2345), - [anon_sym_NULL] = ACTIONS(2345), - [sym_string] = ACTIONS(2347), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_array] = ACTIONS(2345), - [anon_sym_varray] = ACTIONS(2345), - [anon_sym_darray] = ACTIONS(2345), - [anon_sym_vec] = ACTIONS(2345), - [anon_sym_dict] = ACTIONS(2345), - [anon_sym_keyset] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(2347), - [sym_final_modifier] = ACTIONS(2345), - [sym_xhp_modifier] = ACTIONS(2345), - [sym_xhp_identifier] = ACTIONS(2345), - [sym_xhp_class_identifier] = ACTIONS(2347), + [887] = { + [sym_identifier] = ACTIONS(2557), + [sym_variable] = ACTIONS(2559), + [sym_pipe_variable] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_newtype] = ACTIONS(2557), + [anon_sym_shape] = ACTIONS(2557), + [anon_sym_tuple] = ACTIONS(2557), + [anon_sym_clone] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_print] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_include] = ACTIONS(2557), + [anon_sym_include_once] = ACTIONS(2557), + [anon_sym_require] = ACTIONS(2557), + [anon_sym_require_once] = ACTIONS(2557), + [anon_sym_BSLASH] = ACTIONS(2559), + [anon_sym_self] = ACTIONS(2557), + [anon_sym_parent] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2557), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_echo] = ACTIONS(2557), + [anon_sym_unset] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_concurrent] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_function] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_elseif] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_case] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_foreach] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [sym_float] = ACTIONS(2559), + [sym_integer] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_True] = ACTIONS(2557), + [anon_sym_TRUE] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_False] = ACTIONS(2557), + [anon_sym_FALSE] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2557), + [anon_sym_Null] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2557), + [sym_string] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_array] = ACTIONS(2557), + [anon_sym_varray] = ACTIONS(2557), + [anon_sym_darray] = ACTIONS(2557), + [anon_sym_vec] = ACTIONS(2557), + [anon_sym_dict] = ACTIONS(2557), + [anon_sym_keyset] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_await] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_interface] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_abstract] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(2559), + [sym_final_modifier] = ACTIONS(2557), + [sym_xhp_modifier] = ACTIONS(2557), + [sym_xhp_identifier] = ACTIONS(2557), + [sym_xhp_class_identifier] = ACTIONS(2559), [sym_comment] = ACTIONS(3), }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(2563), + [888] = { + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_elseif] = ACTIONS(2053), + [anon_sym_else] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_case] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), + [sym_comment] = ACTIONS(3), + }, + [889] = { [sym_identifier] = ACTIONS(2561), [sym_variable] = ACTIONS(2563), [sym_pipe_variable] = ACTIONS(2563), @@ -133592,6 +114535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2561), [anon_sym_LT_LT] = ACTIONS(2561), [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), [anon_sym_LBRACE] = ACTIONS(2563), [anon_sym_SEMI] = ACTIONS(2563), [anon_sym_return] = ACTIONS(2561), @@ -133609,6 +114553,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_elseif] = ACTIONS(2561), [anon_sym_else] = ACTIONS(2561), [anon_sym_switch] = ACTIONS(2561), + [anon_sym_case] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), [anon_sym_foreach] = ACTIONS(2561), [anon_sym_while] = ACTIONS(2561), [anon_sym_do] = ACTIONS(2561), @@ -133657,623 +114603,1177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2563), [sym_comment] = ACTIONS(3), }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(2567), - [sym_identifier] = ACTIONS(2565), - [sym_variable] = ACTIONS(2567), - [sym_pipe_variable] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_newtype] = ACTIONS(2565), - [anon_sym_shape] = ACTIONS(2565), - [anon_sym_tuple] = ACTIONS(2565), - [anon_sym_clone] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_print] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_include] = ACTIONS(2565), - [anon_sym_include_once] = ACTIONS(2565), - [anon_sym_require] = ACTIONS(2565), - [anon_sym_require_once] = ACTIONS(2565), - [anon_sym_BSLASH] = ACTIONS(2567), - [anon_sym_self] = ACTIONS(2565), - [anon_sym_parent] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_LT_LT] = ACTIONS(2565), - [anon_sym_LT_LT_LT] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_echo] = ACTIONS(2565), - [anon_sym_unset] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_concurrent] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_elseif] = ACTIONS(2565), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_foreach] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [sym_float] = ACTIONS(2567), - [sym_integer] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_True] = ACTIONS(2565), - [anon_sym_TRUE] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [anon_sym_False] = ACTIONS(2565), - [anon_sym_FALSE] = ACTIONS(2565), - [anon_sym_null] = ACTIONS(2565), - [anon_sym_Null] = ACTIONS(2565), - [anon_sym_NULL] = ACTIONS(2565), - [sym_string] = ACTIONS(2567), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_array] = ACTIONS(2565), - [anon_sym_varray] = ACTIONS(2565), - [anon_sym_darray] = ACTIONS(2565), - [anon_sym_vec] = ACTIONS(2565), - [anon_sym_dict] = ACTIONS(2565), - [anon_sym_keyset] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2567), - [sym_final_modifier] = ACTIONS(2565), - [sym_xhp_modifier] = ACTIONS(2565), - [sym_xhp_identifier] = ACTIONS(2565), - [sym_xhp_class_identifier] = ACTIONS(2567), + [890] = { + [sym_identifier] = ACTIONS(2565), + [sym_variable] = ACTIONS(2567), + [sym_pipe_variable] = ACTIONS(2567), + [anon_sym_type] = ACTIONS(2565), + [anon_sym_newtype] = ACTIONS(2565), + [anon_sym_shape] = ACTIONS(2565), + [anon_sym_tuple] = ACTIONS(2565), + [anon_sym_clone] = ACTIONS(2565), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_print] = ACTIONS(2565), + [anon_sym_namespace] = ACTIONS(2565), + [anon_sym_include] = ACTIONS(2565), + [anon_sym_include_once] = ACTIONS(2565), + [anon_sym_require] = ACTIONS(2565), + [anon_sym_require_once] = ACTIONS(2565), + [anon_sym_BSLASH] = ACTIONS(2567), + [anon_sym_self] = ACTIONS(2565), + [anon_sym_parent] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2565), + [anon_sym_LT_LT] = ACTIONS(2565), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_throw] = ACTIONS(2565), + [anon_sym_echo] = ACTIONS(2565), + [anon_sym_unset] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_concurrent] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_function] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_elseif] = ACTIONS(2565), + [anon_sym_else] = ACTIONS(2565), + [anon_sym_switch] = ACTIONS(2565), + [anon_sym_case] = ACTIONS(2565), + [anon_sym_default] = ACTIONS(2565), + [anon_sym_foreach] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_do] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [anon_sym_using] = ACTIONS(2565), + [sym_float] = ACTIONS(2567), + [sym_integer] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(2565), + [anon_sym_True] = ACTIONS(2565), + [anon_sym_TRUE] = ACTIONS(2565), + [anon_sym_false] = ACTIONS(2565), + [anon_sym_False] = ACTIONS(2565), + [anon_sym_FALSE] = ACTIONS(2565), + [anon_sym_null] = ACTIONS(2565), + [anon_sym_Null] = ACTIONS(2565), + [anon_sym_NULL] = ACTIONS(2565), + [sym_string] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_array] = ACTIONS(2565), + [anon_sym_varray] = ACTIONS(2565), + [anon_sym_darray] = ACTIONS(2565), + [anon_sym_vec] = ACTIONS(2565), + [anon_sym_dict] = ACTIONS(2565), + [anon_sym_keyset] = ACTIONS(2565), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_PLUS] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2565), + [anon_sym_list] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_await] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_trait] = ACTIONS(2565), + [anon_sym_interface] = ACTIONS(2565), + [anon_sym_class] = ACTIONS(2565), + [anon_sym_enum] = ACTIONS(2565), + [anon_sym_abstract] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(2567), + [sym_final_modifier] = ACTIONS(2565), + [sym_xhp_modifier] = ACTIONS(2565), + [sym_xhp_identifier] = ACTIONS(2565), + [sym_xhp_class_identifier] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + }, + [891] = { + [sym_identifier] = ACTIONS(2569), + [sym_variable] = ACTIONS(2571), + [sym_pipe_variable] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_newtype] = ACTIONS(2569), + [anon_sym_shape] = ACTIONS(2569), + [anon_sym_tuple] = ACTIONS(2569), + [anon_sym_clone] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_include_once] = ACTIONS(2569), + [anon_sym_require] = ACTIONS(2569), + [anon_sym_require_once] = ACTIONS(2569), + [anon_sym_BSLASH] = ACTIONS(2571), + [anon_sym_self] = ACTIONS(2569), + [anon_sym_parent] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_throw] = ACTIONS(2569), + [anon_sym_echo] = ACTIONS(2569), + [anon_sym_unset] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_concurrent] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_function] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_elseif] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2569), + [anon_sym_switch] = ACTIONS(2569), + [anon_sym_case] = ACTIONS(2569), + [anon_sym_default] = ACTIONS(2569), + [anon_sym_foreach] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_using] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [sym_integer] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_True] = ACTIONS(2569), + [anon_sym_TRUE] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_False] = ACTIONS(2569), + [anon_sym_FALSE] = ACTIONS(2569), + [anon_sym_null] = ACTIONS(2569), + [anon_sym_Null] = ACTIONS(2569), + [anon_sym_NULL] = ACTIONS(2569), + [sym_string] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_array] = ACTIONS(2569), + [anon_sym_varray] = ACTIONS(2569), + [anon_sym_darray] = ACTIONS(2569), + [anon_sym_vec] = ACTIONS(2569), + [anon_sym_dict] = ACTIONS(2569), + [anon_sym_keyset] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_interface] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_abstract] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(2571), + [sym_final_modifier] = ACTIONS(2569), + [sym_xhp_modifier] = ACTIONS(2569), + [sym_xhp_identifier] = ACTIONS(2569), + [sym_xhp_class_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + }, + [892] = { + [sym_identifier] = ACTIONS(2573), + [sym_variable] = ACTIONS(2575), + [sym_pipe_variable] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_newtype] = ACTIONS(2573), + [anon_sym_shape] = ACTIONS(2573), + [anon_sym_tuple] = ACTIONS(2573), + [anon_sym_clone] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_include_once] = ACTIONS(2573), + [anon_sym_require] = ACTIONS(2573), + [anon_sym_require_once] = ACTIONS(2573), + [anon_sym_BSLASH] = ACTIONS(2575), + [anon_sym_self] = ACTIONS(2573), + [anon_sym_parent] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_LT_LT] = ACTIONS(2573), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_echo] = ACTIONS(2573), + [anon_sym_unset] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_concurrent] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_elseif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_case] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_foreach] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [sym_float] = ACTIONS(2575), + [sym_integer] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_True] = ACTIONS(2573), + [anon_sym_TRUE] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_False] = ACTIONS(2573), + [anon_sym_FALSE] = ACTIONS(2573), + [anon_sym_null] = ACTIONS(2573), + [anon_sym_Null] = ACTIONS(2573), + [anon_sym_NULL] = ACTIONS(2573), + [sym_string] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_array] = ACTIONS(2573), + [anon_sym_varray] = ACTIONS(2573), + [anon_sym_darray] = ACTIONS(2573), + [anon_sym_vec] = ACTIONS(2573), + [anon_sym_dict] = ACTIONS(2573), + [anon_sym_keyset] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_list] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_interface] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_abstract] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(2575), + [sym_final_modifier] = ACTIONS(2573), + [sym_xhp_modifier] = ACTIONS(2573), + [sym_xhp_identifier] = ACTIONS(2573), + [sym_xhp_class_identifier] = ACTIONS(2575), + [sym_comment] = ACTIONS(3), + }, + [893] = { + [sym_identifier] = ACTIONS(2577), + [sym_variable] = ACTIONS(2579), + [sym_pipe_variable] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_newtype] = ACTIONS(2577), + [anon_sym_shape] = ACTIONS(2577), + [anon_sym_tuple] = ACTIONS(2577), + [anon_sym_clone] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_include_once] = ACTIONS(2577), + [anon_sym_require] = ACTIONS(2577), + [anon_sym_require_once] = ACTIONS(2577), + [anon_sym_BSLASH] = ACTIONS(2579), + [anon_sym_self] = ACTIONS(2577), + [anon_sym_parent] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_echo] = ACTIONS(2577), + [anon_sym_unset] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_concurrent] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_elseif] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_foreach] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [sym_integer] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_True] = ACTIONS(2577), + [anon_sym_TRUE] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_False] = ACTIONS(2577), + [anon_sym_FALSE] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2577), + [anon_sym_Null] = ACTIONS(2577), + [anon_sym_NULL] = ACTIONS(2577), + [sym_string] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_array] = ACTIONS(2577), + [anon_sym_varray] = ACTIONS(2577), + [anon_sym_darray] = ACTIONS(2577), + [anon_sym_vec] = ACTIONS(2577), + [anon_sym_dict] = ACTIONS(2577), + [anon_sym_keyset] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_list] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2579), + [sym_final_modifier] = ACTIONS(2577), + [sym_xhp_modifier] = ACTIONS(2577), + [sym_xhp_identifier] = ACTIONS(2577), + [sym_xhp_class_identifier] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + }, + [894] = { + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_case] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(2361), - [sym_variable] = ACTIONS(2363), - [sym_pipe_variable] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_newtype] = ACTIONS(2361), - [anon_sym_shape] = ACTIONS(2361), - [anon_sym_tuple] = ACTIONS(2361), - [anon_sym_clone] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_print] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_echo] = ACTIONS(2361), - [anon_sym_unset] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_concurrent] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_elseif] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_foreach] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [sym_float] = ACTIONS(2363), - [sym_integer] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_True] = ACTIONS(2361), - [anon_sym_TRUE] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_False] = ACTIONS(2361), - [anon_sym_FALSE] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [anon_sym_Null] = ACTIONS(2361), - [anon_sym_NULL] = ACTIONS(2361), - [sym_string] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_array] = ACTIONS(2361), - [anon_sym_varray] = ACTIONS(2361), - [anon_sym_darray] = ACTIONS(2361), - [anon_sym_vec] = ACTIONS(2361), - [anon_sym_dict] = ACTIONS(2361), - [anon_sym_keyset] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_interface] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2363), - [sym_final_modifier] = ACTIONS(2361), - [sym_xhp_modifier] = ACTIONS(2361), - [sym_xhp_identifier] = ACTIONS(2361), - [sym_xhp_class_identifier] = ACTIONS(2363), + [895] = { + [sym_identifier] = ACTIONS(2581), + [sym_variable] = ACTIONS(2583), + [sym_pipe_variable] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_newtype] = ACTIONS(2581), + [anon_sym_shape] = ACTIONS(2581), + [anon_sym_tuple] = ACTIONS(2581), + [anon_sym_clone] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_include] = ACTIONS(2581), + [anon_sym_include_once] = ACTIONS(2581), + [anon_sym_require] = ACTIONS(2581), + [anon_sym_require_once] = ACTIONS(2581), + [anon_sym_BSLASH] = ACTIONS(2583), + [anon_sym_self] = ACTIONS(2581), + [anon_sym_parent] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_echo] = ACTIONS(2581), + [anon_sym_unset] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_concurrent] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_elseif] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_foreach] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [sym_float] = ACTIONS(2583), + [sym_integer] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_True] = ACTIONS(2581), + [anon_sym_TRUE] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_False] = ACTIONS(2581), + [anon_sym_FALSE] = ACTIONS(2581), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_Null] = ACTIONS(2581), + [anon_sym_NULL] = ACTIONS(2581), + [sym_string] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_array] = ACTIONS(2581), + [anon_sym_varray] = ACTIONS(2581), + [anon_sym_darray] = ACTIONS(2581), + [anon_sym_vec] = ACTIONS(2581), + [anon_sym_dict] = ACTIONS(2581), + [anon_sym_keyset] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_list] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(2583), + [sym_final_modifier] = ACTIONS(2581), + [sym_xhp_modifier] = ACTIONS(2581), + [sym_xhp_identifier] = ACTIONS(2581), + [sym_xhp_class_identifier] = ACTIONS(2583), [sym_comment] = ACTIONS(3), }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_identifier] = ACTIONS(2365), - [sym_variable] = ACTIONS(2367), - [sym_pipe_variable] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_newtype] = ACTIONS(2365), - [anon_sym_shape] = ACTIONS(2365), - [anon_sym_tuple] = ACTIONS(2365), - [anon_sym_clone] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_print] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2365), - [anon_sym_LT_LT_LT] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_throw] = ACTIONS(2365), - [anon_sym_echo] = ACTIONS(2365), - [anon_sym_unset] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_concurrent] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_elseif] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_foreach] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_using] = ACTIONS(2365), - [sym_float] = ACTIONS(2367), - [sym_integer] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_True] = ACTIONS(2365), - [anon_sym_TRUE] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_False] = ACTIONS(2365), - [anon_sym_FALSE] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_Null] = ACTIONS(2365), - [anon_sym_NULL] = ACTIONS(2365), - [sym_string] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_array] = ACTIONS(2365), - [anon_sym_varray] = ACTIONS(2365), - [anon_sym_darray] = ACTIONS(2365), - [anon_sym_vec] = ACTIONS(2365), - [anon_sym_dict] = ACTIONS(2365), - [anon_sym_keyset] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2367), - [sym_final_modifier] = ACTIONS(2365), - [sym_xhp_modifier] = ACTIONS(2365), - [sym_xhp_identifier] = ACTIONS(2365), - [sym_xhp_class_identifier] = ACTIONS(2367), + [896] = { + [sym_identifier] = ACTIONS(2585), + [sym_variable] = ACTIONS(2587), + [sym_pipe_variable] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_newtype] = ACTIONS(2585), + [anon_sym_shape] = ACTIONS(2585), + [anon_sym_tuple] = ACTIONS(2585), + [anon_sym_clone] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_include] = ACTIONS(2585), + [anon_sym_include_once] = ACTIONS(2585), + [anon_sym_require] = ACTIONS(2585), + [anon_sym_require_once] = ACTIONS(2585), + [anon_sym_BSLASH] = ACTIONS(2587), + [anon_sym_self] = ACTIONS(2585), + [anon_sym_parent] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_LT_LT_LT] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_echo] = ACTIONS(2585), + [anon_sym_unset] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_concurrent] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_elseif] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_case] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_foreach] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_using] = ACTIONS(2585), + [sym_float] = ACTIONS(2587), + [sym_integer] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_True] = ACTIONS(2585), + [anon_sym_TRUE] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_False] = ACTIONS(2585), + [anon_sym_FALSE] = ACTIONS(2585), + [anon_sym_null] = ACTIONS(2585), + [anon_sym_Null] = ACTIONS(2585), + [anon_sym_NULL] = ACTIONS(2585), + [sym_string] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_array] = ACTIONS(2585), + [anon_sym_varray] = ACTIONS(2585), + [anon_sym_darray] = ACTIONS(2585), + [anon_sym_vec] = ACTIONS(2585), + [anon_sym_dict] = ACTIONS(2585), + [anon_sym_keyset] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_list] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_abstract] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2587), + [sym_final_modifier] = ACTIONS(2585), + [sym_xhp_modifier] = ACTIONS(2585), + [sym_xhp_identifier] = ACTIONS(2585), + [sym_xhp_class_identifier] = ACTIONS(2587), [sym_comment] = ACTIONS(3), }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2373), - [sym_variable] = ACTIONS(2375), - [sym_pipe_variable] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_newtype] = ACTIONS(2373), - [anon_sym_shape] = ACTIONS(2373), - [anon_sym_tuple] = ACTIONS(2373), - [anon_sym_clone] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_print] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_LT_LT_LT] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2373), - [anon_sym_echo] = ACTIONS(2373), - [anon_sym_unset] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_concurrent] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_function] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_elseif] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_switch] = ACTIONS(2373), - [anon_sym_foreach] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_using] = ACTIONS(2373), - [sym_float] = ACTIONS(2375), - [sym_integer] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_True] = ACTIONS(2373), - [anon_sym_TRUE] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_False] = ACTIONS(2373), - [anon_sym_FALSE] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_Null] = ACTIONS(2373), - [anon_sym_NULL] = ACTIONS(2373), - [sym_string] = ACTIONS(2375), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_array] = ACTIONS(2373), - [anon_sym_varray] = ACTIONS(2373), - [anon_sym_darray] = ACTIONS(2373), - [anon_sym_vec] = ACTIONS(2373), - [anon_sym_dict] = ACTIONS(2373), - [anon_sym_keyset] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_class] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_abstract] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2375), - [sym_final_modifier] = ACTIONS(2373), - [sym_xhp_modifier] = ACTIONS(2373), - [sym_xhp_identifier] = ACTIONS(2373), - [sym_xhp_class_identifier] = ACTIONS(2375), + [897] = { + [sym_identifier] = ACTIONS(2589), + [sym_variable] = ACTIONS(2591), + [sym_pipe_variable] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_newtype] = ACTIONS(2589), + [anon_sym_shape] = ACTIONS(2589), + [anon_sym_tuple] = ACTIONS(2589), + [anon_sym_clone] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_print] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_include] = ACTIONS(2589), + [anon_sym_include_once] = ACTIONS(2589), + [anon_sym_require] = ACTIONS(2589), + [anon_sym_require_once] = ACTIONS(2589), + [anon_sym_BSLASH] = ACTIONS(2591), + [anon_sym_self] = ACTIONS(2589), + [anon_sym_parent] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_echo] = ACTIONS(2589), + [anon_sym_unset] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_concurrent] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_elseif] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_foreach] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [sym_float] = ACTIONS(2591), + [sym_integer] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_True] = ACTIONS(2589), + [anon_sym_TRUE] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_False] = ACTIONS(2589), + [anon_sym_FALSE] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2589), + [anon_sym_Null] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [sym_string] = ACTIONS(2591), + [anon_sym_AT] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_array] = ACTIONS(2589), + [anon_sym_varray] = ACTIONS(2589), + [anon_sym_darray] = ACTIONS(2589), + [anon_sym_vec] = ACTIONS(2589), + [anon_sym_dict] = ACTIONS(2589), + [anon_sym_keyset] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_list] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_await] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_interface] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_abstract] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2591), + [sym_final_modifier] = ACTIONS(2589), + [sym_xhp_modifier] = ACTIONS(2589), + [sym_xhp_identifier] = ACTIONS(2589), + [sym_xhp_class_identifier] = ACTIONS(2591), [sym_comment] = ACTIONS(3), }, - [1037] = { - [sym_identifier] = ACTIONS(2141), - [sym_variable] = ACTIONS(2143), - [sym_pipe_variable] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_newtype] = ACTIONS(2141), - [anon_sym_shape] = ACTIONS(2141), - [anon_sym_tuple] = ACTIONS(2141), - [anon_sym_clone] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_print] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_LT_LT_LT] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_echo] = ACTIONS(2141), - [anon_sym_unset] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_concurrent] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_function] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_switch] = ACTIONS(2141), - [anon_sym_case] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_foreach] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_using] = ACTIONS(2141), - [sym_float] = ACTIONS(2143), - [sym_integer] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_True] = ACTIONS(2141), - [anon_sym_TRUE] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_False] = ACTIONS(2141), - [anon_sym_FALSE] = ACTIONS(2141), - [anon_sym_null] = ACTIONS(2141), - [anon_sym_Null] = ACTIONS(2141), - [anon_sym_NULL] = ACTIONS(2141), - [sym_string] = ACTIONS(2143), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_array] = ACTIONS(2141), - [anon_sym_varray] = ACTIONS(2141), - [anon_sym_darray] = ACTIONS(2141), - [anon_sym_vec] = ACTIONS(2141), - [anon_sym_dict] = ACTIONS(2141), - [anon_sym_keyset] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2141), - [anon_sym_class] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_abstract] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(2143), - [sym_final_modifier] = ACTIONS(2141), - [sym_xhp_modifier] = ACTIONS(2141), - [sym_xhp_identifier] = ACTIONS(2141), - [sym_xhp_class_identifier] = ACTIONS(2143), + [898] = { + [sym_identifier] = ACTIONS(2593), + [sym_variable] = ACTIONS(2595), + [sym_pipe_variable] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_newtype] = ACTIONS(2593), + [anon_sym_shape] = ACTIONS(2593), + [anon_sym_tuple] = ACTIONS(2593), + [anon_sym_clone] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_include] = ACTIONS(2593), + [anon_sym_include_once] = ACTIONS(2593), + [anon_sym_require] = ACTIONS(2593), + [anon_sym_require_once] = ACTIONS(2593), + [anon_sym_BSLASH] = ACTIONS(2595), + [anon_sym_self] = ACTIONS(2593), + [anon_sym_parent] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_LT_LT] = ACTIONS(2593), + [anon_sym_LT_LT_LT] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_echo] = ACTIONS(2593), + [anon_sym_unset] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_concurrent] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_function] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_elseif] = ACTIONS(2593), + [anon_sym_else] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_case] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_foreach] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [sym_float] = ACTIONS(2595), + [sym_integer] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_True] = ACTIONS(2593), + [anon_sym_TRUE] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_False] = ACTIONS(2593), + [anon_sym_FALSE] = ACTIONS(2593), + [anon_sym_null] = ACTIONS(2593), + [anon_sym_Null] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [sym_string] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_array] = ACTIONS(2593), + [anon_sym_varray] = ACTIONS(2593), + [anon_sym_darray] = ACTIONS(2593), + [anon_sym_vec] = ACTIONS(2593), + [anon_sym_dict] = ACTIONS(2593), + [anon_sym_keyset] = ACTIONS(2593), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_list] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_await] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_interface] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(2595), + [sym_final_modifier] = ACTIONS(2593), + [sym_xhp_modifier] = ACTIONS(2593), + [sym_xhp_identifier] = ACTIONS(2593), + [sym_xhp_class_identifier] = ACTIONS(2595), [sym_comment] = ACTIONS(3), }, - [1038] = { - [sym_identifier] = ACTIONS(2421), - [sym_variable] = ACTIONS(2423), - [sym_pipe_variable] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_newtype] = ACTIONS(2421), - [anon_sym_shape] = ACTIONS(2421), - [anon_sym_tuple] = ACTIONS(2421), - [anon_sym_clone] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LT_LT_LT] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_echo] = ACTIONS(2421), - [anon_sym_unset] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_concurrent] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_foreach] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [sym_float] = ACTIONS(2423), - [sym_integer] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_True] = ACTIONS(2421), - [anon_sym_TRUE] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [anon_sym_False] = ACTIONS(2421), - [anon_sym_FALSE] = ACTIONS(2421), - [anon_sym_null] = ACTIONS(2421), - [anon_sym_Null] = ACTIONS(2421), - [anon_sym_NULL] = ACTIONS(2421), - [sym_string] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_array] = ACTIONS(2421), - [anon_sym_varray] = ACTIONS(2421), - [anon_sym_darray] = ACTIONS(2421), - [anon_sym_vec] = ACTIONS(2421), - [anon_sym_dict] = ACTIONS(2421), - [anon_sym_keyset] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_interface] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_abstract] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2423), - [sym_final_modifier] = ACTIONS(2421), - [sym_xhp_modifier] = ACTIONS(2421), - [sym_xhp_identifier] = ACTIONS(2421), - [sym_xhp_class_identifier] = ACTIONS(2423), + [899] = { + [sym_identifier] = ACTIONS(2597), + [sym_variable] = ACTIONS(2599), + [sym_pipe_variable] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_newtype] = ACTIONS(2597), + [anon_sym_shape] = ACTIONS(2597), + [anon_sym_tuple] = ACTIONS(2597), + [anon_sym_clone] = ACTIONS(2597), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_print] = ACTIONS(2597), + [anon_sym_namespace] = ACTIONS(2597), + [anon_sym_include] = ACTIONS(2597), + [anon_sym_include_once] = ACTIONS(2597), + [anon_sym_require] = ACTIONS(2597), + [anon_sym_require_once] = ACTIONS(2597), + [anon_sym_BSLASH] = ACTIONS(2599), + [anon_sym_self] = ACTIONS(2597), + [anon_sym_parent] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_LT_LT] = ACTIONS(2597), + [anon_sym_LT_LT_LT] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_throw] = ACTIONS(2597), + [anon_sym_echo] = ACTIONS(2597), + [anon_sym_unset] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_concurrent] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_elseif] = ACTIONS(2597), + [anon_sym_else] = ACTIONS(2597), + [anon_sym_switch] = ACTIONS(2597), + [anon_sym_case] = ACTIONS(2597), + [anon_sym_default] = ACTIONS(2597), + [anon_sym_foreach] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_using] = ACTIONS(2597), + [sym_float] = ACTIONS(2599), + [sym_integer] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_True] = ACTIONS(2597), + [anon_sym_TRUE] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_False] = ACTIONS(2597), + [anon_sym_FALSE] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2597), + [anon_sym_Null] = ACTIONS(2597), + [anon_sym_NULL] = ACTIONS(2597), + [sym_string] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_array] = ACTIONS(2597), + [anon_sym_varray] = ACTIONS(2597), + [anon_sym_darray] = ACTIONS(2597), + [anon_sym_vec] = ACTIONS(2597), + [anon_sym_dict] = ACTIONS(2597), + [anon_sym_keyset] = ACTIONS(2597), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_list] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_interface] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_abstract] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(2599), + [sym_final_modifier] = ACTIONS(2597), + [sym_xhp_modifier] = ACTIONS(2597), + [sym_xhp_identifier] = ACTIONS(2597), + [sym_xhp_class_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + }, + [900] = { + [sym_identifier] = ACTIONS(2601), + [sym_variable] = ACTIONS(2603), + [sym_pipe_variable] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_newtype] = ACTIONS(2601), + [anon_sym_shape] = ACTIONS(2601), + [anon_sym_tuple] = ACTIONS(2601), + [anon_sym_clone] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_namespace] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_include_once] = ACTIONS(2601), + [anon_sym_require] = ACTIONS(2601), + [anon_sym_require_once] = ACTIONS(2601), + [anon_sym_BSLASH] = ACTIONS(2603), + [anon_sym_self] = ACTIONS(2601), + [anon_sym_parent] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_LT_LT] = ACTIONS(2601), + [anon_sym_LT_LT_LT] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_throw] = ACTIONS(2601), + [anon_sym_echo] = ACTIONS(2601), + [anon_sym_unset] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_concurrent] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_function] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_elseif] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_switch] = ACTIONS(2601), + [anon_sym_case] = ACTIONS(2601), + [anon_sym_default] = ACTIONS(2601), + [anon_sym_foreach] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_using] = ACTIONS(2601), + [sym_float] = ACTIONS(2603), + [sym_integer] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_True] = ACTIONS(2601), + [anon_sym_TRUE] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_False] = ACTIONS(2601), + [anon_sym_FALSE] = ACTIONS(2601), + [anon_sym_null] = ACTIONS(2601), + [anon_sym_Null] = ACTIONS(2601), + [anon_sym_NULL] = ACTIONS(2601), + [sym_string] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2603), + [anon_sym_array] = ACTIONS(2601), + [anon_sym_varray] = ACTIONS(2601), + [anon_sym_darray] = ACTIONS(2601), + [anon_sym_vec] = ACTIONS(2601), + [anon_sym_dict] = ACTIONS(2601), + [anon_sym_keyset] = ACTIONS(2601), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_list] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_interface] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_abstract] = ACTIONS(2601), + [anon_sym_POUND] = ACTIONS(2603), + [sym_final_modifier] = ACTIONS(2601), + [sym_xhp_modifier] = ACTIONS(2601), + [sym_xhp_identifier] = ACTIONS(2601), + [sym_xhp_class_identifier] = ACTIONS(2603), [sym_comment] = ACTIONS(3), }, - [1039] = { - [sym_identifier] = ACTIONS(2581), - [sym_variable] = ACTIONS(2583), - [sym_pipe_variable] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_newtype] = ACTIONS(2581), - [anon_sym_shape] = ACTIONS(2581), - [anon_sym_tuple] = ACTIONS(2581), - [anon_sym_clone] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_include] = ACTIONS(2581), - [anon_sym_include_once] = ACTIONS(2581), - [anon_sym_require] = ACTIONS(2581), - [anon_sym_require_once] = ACTIONS(2581), - [anon_sym_BSLASH] = ACTIONS(2583), - [anon_sym_self] = ACTIONS(2581), - [anon_sym_parent] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LT_LT_LT] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_echo] = ACTIONS(2581), - [anon_sym_unset] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_concurrent] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_default] = ACTIONS(2581), - [anon_sym_foreach] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [sym_float] = ACTIONS(2583), - [sym_integer] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_True] = ACTIONS(2581), - [anon_sym_TRUE] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [anon_sym_False] = ACTIONS(2581), - [anon_sym_FALSE] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_Null] = ACTIONS(2581), - [anon_sym_NULL] = ACTIONS(2581), - [sym_string] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_array] = ACTIONS(2581), - [anon_sym_varray] = ACTIONS(2581), - [anon_sym_darray] = ACTIONS(2581), - [anon_sym_vec] = ACTIONS(2581), - [anon_sym_dict] = ACTIONS(2581), - [anon_sym_keyset] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_list] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_trait] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2583), - [sym_final_modifier] = ACTIONS(2581), - [sym_xhp_modifier] = ACTIONS(2581), - [sym_xhp_identifier] = ACTIONS(2581), - [sym_xhp_class_identifier] = ACTIONS(2583), + [901] = { + [sym_identifier] = ACTIONS(2605), + [sym_variable] = ACTIONS(2607), + [sym_pipe_variable] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_newtype] = ACTIONS(2605), + [anon_sym_shape] = ACTIONS(2605), + [anon_sym_tuple] = ACTIONS(2605), + [anon_sym_clone] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_include] = ACTIONS(2605), + [anon_sym_include_once] = ACTIONS(2605), + [anon_sym_require] = ACTIONS(2605), + [anon_sym_require_once] = ACTIONS(2605), + [anon_sym_BSLASH] = ACTIONS(2607), + [anon_sym_self] = ACTIONS(2605), + [anon_sym_parent] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_LT_LT] = ACTIONS(2605), + [anon_sym_LT_LT_LT] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_echo] = ACTIONS(2605), + [anon_sym_unset] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_concurrent] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_elseif] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_case] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_foreach] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [sym_float] = ACTIONS(2607), + [sym_integer] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_True] = ACTIONS(2605), + [anon_sym_TRUE] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_False] = ACTIONS(2605), + [anon_sym_FALSE] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2605), + [anon_sym_Null] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [sym_string] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_array] = ACTIONS(2605), + [anon_sym_varray] = ACTIONS(2605), + [anon_sym_darray] = ACTIONS(2605), + [anon_sym_vec] = ACTIONS(2605), + [anon_sym_dict] = ACTIONS(2605), + [anon_sym_keyset] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_list] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_await] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_interface] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_abstract] = ACTIONS(2605), + [anon_sym_POUND] = ACTIONS(2607), + [sym_final_modifier] = ACTIONS(2605), + [sym_xhp_modifier] = ACTIONS(2605), + [sym_xhp_identifier] = ACTIONS(2605), + [sym_xhp_class_identifier] = ACTIONS(2607), [sym_comment] = ACTIONS(3), }, - [1040] = { + [902] = { + [sym_identifier] = ACTIONS(2609), + [sym_variable] = ACTIONS(2611), + [sym_pipe_variable] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_newtype] = ACTIONS(2609), + [anon_sym_shape] = ACTIONS(2609), + [anon_sym_tuple] = ACTIONS(2609), + [anon_sym_clone] = ACTIONS(2609), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_print] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_include] = ACTIONS(2609), + [anon_sym_include_once] = ACTIONS(2609), + [anon_sym_require] = ACTIONS(2609), + [anon_sym_require_once] = ACTIONS(2609), + [anon_sym_BSLASH] = ACTIONS(2611), + [anon_sym_self] = ACTIONS(2609), + [anon_sym_parent] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_throw] = ACTIONS(2609), + [anon_sym_echo] = ACTIONS(2609), + [anon_sym_unset] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_concurrent] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_function] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_elseif] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2609), + [anon_sym_case] = ACTIONS(2609), + [anon_sym_default] = ACTIONS(2609), + [anon_sym_foreach] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_using] = ACTIONS(2609), + [sym_float] = ACTIONS(2611), + [sym_integer] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_True] = ACTIONS(2609), + [anon_sym_TRUE] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_False] = ACTIONS(2609), + [anon_sym_FALSE] = ACTIONS(2609), + [anon_sym_null] = ACTIONS(2609), + [anon_sym_Null] = ACTIONS(2609), + [anon_sym_NULL] = ACTIONS(2609), + [sym_string] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_array] = ACTIONS(2609), + [anon_sym_varray] = ACTIONS(2609), + [anon_sym_darray] = ACTIONS(2609), + [anon_sym_vec] = ACTIONS(2609), + [anon_sym_dict] = ACTIONS(2609), + [anon_sym_keyset] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_list] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_await] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_interface] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2609), + [anon_sym_POUND] = ACTIONS(2611), + [sym_final_modifier] = ACTIONS(2609), + [sym_xhp_modifier] = ACTIONS(2609), + [sym_xhp_identifier] = ACTIONS(2609), + [sym_xhp_class_identifier] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + }, + [903] = { [sym_identifier] = ACTIONS(2613), [sym_variable] = ACTIONS(2615), [sym_pipe_variable] = ACTIONS(2615), @@ -134310,6 +115810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2613), [anon_sym_const] = ACTIONS(2613), [anon_sym_if] = ACTIONS(2613), + [anon_sym_elseif] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2613), [anon_sym_switch] = ACTIONS(2613), [anon_sym_case] = ACTIONS(2613), [anon_sym_default] = ACTIONS(2613), @@ -134361,536 +115863,1783 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2615), [sym_comment] = ACTIONS(3), }, - [1041] = { - [sym_identifier] = ACTIONS(2217), - [sym_variable] = ACTIONS(2219), - [sym_pipe_variable] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_newtype] = ACTIONS(2217), - [anon_sym_shape] = ACTIONS(2217), - [anon_sym_tuple] = ACTIONS(2217), - [anon_sym_clone] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_print] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_LT_LT_LT] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_echo] = ACTIONS(2217), - [anon_sym_unset] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_concurrent] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_case] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_foreach] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_using] = ACTIONS(2217), - [sym_float] = ACTIONS(2219), - [sym_integer] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_True] = ACTIONS(2217), - [anon_sym_TRUE] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_False] = ACTIONS(2217), - [anon_sym_FALSE] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_Null] = ACTIONS(2217), - [anon_sym_NULL] = ACTIONS(2217), - [sym_string] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_array] = ACTIONS(2217), - [anon_sym_varray] = ACTIONS(2217), - [anon_sym_darray] = ACTIONS(2217), - [anon_sym_vec] = ACTIONS(2217), - [anon_sym_dict] = ACTIONS(2217), - [anon_sym_keyset] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_class] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2219), - [sym_final_modifier] = ACTIONS(2217), - [sym_xhp_modifier] = ACTIONS(2217), - [sym_xhp_identifier] = ACTIONS(2217), - [sym_xhp_class_identifier] = ACTIONS(2219), + [904] = { + [aux_sym_if_statement_repeat1] = STATE(908), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2061), + [sym_variable] = ACTIONS(2063), + [sym_pipe_variable] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_newtype] = ACTIONS(2061), + [anon_sym_shape] = ACTIONS(2061), + [anon_sym_tuple] = ACTIONS(2061), + [anon_sym_clone] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_print] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_include] = ACTIONS(2061), + [anon_sym_include_once] = ACTIONS(2061), + [anon_sym_require] = ACTIONS(2061), + [anon_sym_require_once] = ACTIONS(2061), + [anon_sym_BSLASH] = ACTIONS(2063), + [anon_sym_self] = ACTIONS(2061), + [anon_sym_parent] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_LT_LT_LT] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_echo] = ACTIONS(2061), + [anon_sym_unset] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_concurrent] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_elseif] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_foreach] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_using] = ACTIONS(2061), + [sym_float] = ACTIONS(2063), + [sym_integer] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_True] = ACTIONS(2061), + [anon_sym_TRUE] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_False] = ACTIONS(2061), + [anon_sym_FALSE] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [anon_sym_Null] = ACTIONS(2061), + [anon_sym_NULL] = ACTIONS(2061), + [sym_string] = ACTIONS(2063), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_array] = ACTIONS(2061), + [anon_sym_varray] = ACTIONS(2061), + [anon_sym_darray] = ACTIONS(2061), + [anon_sym_vec] = ACTIONS(2061), + [anon_sym_dict] = ACTIONS(2061), + [anon_sym_keyset] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2063), + [sym_final_modifier] = ACTIONS(2061), + [sym_xhp_modifier] = ACTIONS(2061), + [sym_xhp_identifier] = ACTIONS(2061), + [sym_xhp_class_identifier] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + }, + [905] = { + [aux_sym_if_statement_repeat1] = STATE(907), + [sym_identifier] = ACTIONS(2057), + [sym_variable] = ACTIONS(2059), + [sym_pipe_variable] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_newtype] = ACTIONS(2057), + [anon_sym_shape] = ACTIONS(2057), + [anon_sym_tuple] = ACTIONS(2057), + [anon_sym_clone] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_include_once] = ACTIONS(2057), + [anon_sym_require] = ACTIONS(2057), + [anon_sym_require_once] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_self] = ACTIONS(2057), + [anon_sym_parent] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_LT_LT_LT] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_echo] = ACTIONS(2057), + [anon_sym_unset] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_concurrent] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_elseif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_foreach] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [sym_integer] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_True] = ACTIONS(2057), + [anon_sym_TRUE] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_False] = ACTIONS(2057), + [anon_sym_FALSE] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_Null] = ACTIONS(2057), + [anon_sym_NULL] = ACTIONS(2057), + [sym_string] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_array] = ACTIONS(2057), + [anon_sym_varray] = ACTIONS(2057), + [anon_sym_darray] = ACTIONS(2057), + [anon_sym_vec] = ACTIONS(2057), + [anon_sym_dict] = ACTIONS(2057), + [anon_sym_keyset] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_list] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2059), + [sym_final_modifier] = ACTIONS(2057), + [sym_xhp_modifier] = ACTIONS(2057), + [sym_xhp_identifier] = ACTIONS(2057), + [sym_xhp_class_identifier] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + }, + [906] = { + [aux_sym_if_statement_repeat1] = STATE(911), + [sym_identifier] = ACTIONS(2057), + [sym_variable] = ACTIONS(2059), + [sym_pipe_variable] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_newtype] = ACTIONS(2057), + [anon_sym_shape] = ACTIONS(2057), + [anon_sym_tuple] = ACTIONS(2057), + [anon_sym_clone] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_include_once] = ACTIONS(2057), + [anon_sym_require] = ACTIONS(2057), + [anon_sym_require_once] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_self] = ACTIONS(2057), + [anon_sym_parent] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_LT_LT_LT] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_echo] = ACTIONS(2057), + [anon_sym_unset] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_concurrent] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_elseif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_foreach] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [sym_integer] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_True] = ACTIONS(2057), + [anon_sym_TRUE] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_False] = ACTIONS(2057), + [anon_sym_FALSE] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_Null] = ACTIONS(2057), + [anon_sym_NULL] = ACTIONS(2057), + [sym_string] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_array] = ACTIONS(2057), + [anon_sym_varray] = ACTIONS(2057), + [anon_sym_darray] = ACTIONS(2057), + [anon_sym_vec] = ACTIONS(2057), + [anon_sym_dict] = ACTIONS(2057), + [anon_sym_keyset] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_list] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2059), + [sym_final_modifier] = ACTIONS(2057), + [sym_xhp_modifier] = ACTIONS(2057), + [sym_xhp_identifier] = ACTIONS(2057), + [sym_xhp_class_identifier] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + }, + [907] = { + [aux_sym_if_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(2069), + [sym_variable] = ACTIONS(2071), + [sym_pipe_variable] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_newtype] = ACTIONS(2069), + [anon_sym_shape] = ACTIONS(2069), + [anon_sym_tuple] = ACTIONS(2069), + [anon_sym_clone] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_print] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2069), + [anon_sym_include] = ACTIONS(2069), + [anon_sym_include_once] = ACTIONS(2069), + [anon_sym_require] = ACTIONS(2069), + [anon_sym_require_once] = ACTIONS(2069), + [anon_sym_BSLASH] = ACTIONS(2071), + [anon_sym_self] = ACTIONS(2069), + [anon_sym_parent] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_LT_LT_LT] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_echo] = ACTIONS(2069), + [anon_sym_unset] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_concurrent] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_function] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_foreach] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_using] = ACTIONS(2069), + [sym_float] = ACTIONS(2071), + [sym_integer] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_True] = ACTIONS(2069), + [anon_sym_TRUE] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_False] = ACTIONS(2069), + [anon_sym_FALSE] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_Null] = ACTIONS(2069), + [anon_sym_NULL] = ACTIONS(2069), + [sym_string] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_array] = ACTIONS(2069), + [anon_sym_varray] = ACTIONS(2069), + [anon_sym_darray] = ACTIONS(2069), + [anon_sym_vec] = ACTIONS(2069), + [anon_sym_dict] = ACTIONS(2069), + [anon_sym_keyset] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_list] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_abstract] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2071), + [sym_final_modifier] = ACTIONS(2069), + [sym_xhp_modifier] = ACTIONS(2069), + [sym_xhp_identifier] = ACTIONS(2069), + [sym_xhp_class_identifier] = ACTIONS(2071), + [sym_comment] = ACTIONS(3), + }, + [908] = { + [aux_sym_if_statement_repeat1] = STATE(916), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2069), + [sym_variable] = ACTIONS(2071), + [sym_pipe_variable] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_newtype] = ACTIONS(2069), + [anon_sym_shape] = ACTIONS(2069), + [anon_sym_tuple] = ACTIONS(2069), + [anon_sym_clone] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_print] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2069), + [anon_sym_include] = ACTIONS(2069), + [anon_sym_include_once] = ACTIONS(2069), + [anon_sym_require] = ACTIONS(2069), + [anon_sym_require_once] = ACTIONS(2069), + [anon_sym_BSLASH] = ACTIONS(2071), + [anon_sym_self] = ACTIONS(2069), + [anon_sym_parent] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_LT_LT_LT] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_echo] = ACTIONS(2069), + [anon_sym_unset] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_concurrent] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_function] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2625), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_foreach] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_using] = ACTIONS(2069), + [sym_float] = ACTIONS(2071), + [sym_integer] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_True] = ACTIONS(2069), + [anon_sym_TRUE] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_False] = ACTIONS(2069), + [anon_sym_FALSE] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_Null] = ACTIONS(2069), + [anon_sym_NULL] = ACTIONS(2069), + [sym_string] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_array] = ACTIONS(2069), + [anon_sym_varray] = ACTIONS(2069), + [anon_sym_darray] = ACTIONS(2069), + [anon_sym_vec] = ACTIONS(2069), + [anon_sym_dict] = ACTIONS(2069), + [anon_sym_keyset] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_list] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_abstract] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2071), + [sym_final_modifier] = ACTIONS(2069), + [sym_xhp_modifier] = ACTIONS(2069), + [sym_xhp_identifier] = ACTIONS(2069), + [sym_xhp_class_identifier] = ACTIONS(2071), + [sym_comment] = ACTIONS(3), + }, + [909] = { + [aux_sym_if_statement_repeat1] = STATE(907), + [sym_identifier] = ACTIONS(2061), + [sym_variable] = ACTIONS(2063), + [sym_pipe_variable] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_newtype] = ACTIONS(2061), + [anon_sym_shape] = ACTIONS(2061), + [anon_sym_tuple] = ACTIONS(2061), + [anon_sym_clone] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_print] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_include] = ACTIONS(2061), + [anon_sym_include_once] = ACTIONS(2061), + [anon_sym_require] = ACTIONS(2061), + [anon_sym_require_once] = ACTIONS(2061), + [anon_sym_BSLASH] = ACTIONS(2063), + [anon_sym_self] = ACTIONS(2061), + [anon_sym_parent] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_LT_LT_LT] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_echo] = ACTIONS(2061), + [anon_sym_unset] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_concurrent] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_elseif] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_foreach] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_using] = ACTIONS(2061), + [sym_float] = ACTIONS(2063), + [sym_integer] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_True] = ACTIONS(2061), + [anon_sym_TRUE] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_False] = ACTIONS(2061), + [anon_sym_FALSE] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [anon_sym_Null] = ACTIONS(2061), + [anon_sym_NULL] = ACTIONS(2061), + [sym_string] = ACTIONS(2063), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_array] = ACTIONS(2061), + [anon_sym_varray] = ACTIONS(2061), + [anon_sym_darray] = ACTIONS(2061), + [anon_sym_vec] = ACTIONS(2061), + [anon_sym_dict] = ACTIONS(2061), + [anon_sym_keyset] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2063), + [sym_final_modifier] = ACTIONS(2061), + [sym_xhp_modifier] = ACTIONS(2061), + [sym_xhp_identifier] = ACTIONS(2061), + [sym_xhp_class_identifier] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + }, + [910] = { + [aux_sym_if_statement_repeat1] = STATE(913), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2057), + [sym_variable] = ACTIONS(2059), + [sym_pipe_variable] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_newtype] = ACTIONS(2057), + [anon_sym_shape] = ACTIONS(2057), + [anon_sym_tuple] = ACTIONS(2057), + [anon_sym_clone] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_include_once] = ACTIONS(2057), + [anon_sym_require] = ACTIONS(2057), + [anon_sym_require_once] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_self] = ACTIONS(2057), + [anon_sym_parent] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_LT_LT_LT] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_echo] = ACTIONS(2057), + [anon_sym_unset] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_concurrent] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_elseif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_foreach] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [sym_integer] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_True] = ACTIONS(2057), + [anon_sym_TRUE] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_False] = ACTIONS(2057), + [anon_sym_FALSE] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_Null] = ACTIONS(2057), + [anon_sym_NULL] = ACTIONS(2057), + [sym_string] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_array] = ACTIONS(2057), + [anon_sym_varray] = ACTIONS(2057), + [anon_sym_darray] = ACTIONS(2057), + [anon_sym_vec] = ACTIONS(2057), + [anon_sym_dict] = ACTIONS(2057), + [anon_sym_keyset] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_list] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2059), + [sym_final_modifier] = ACTIONS(2057), + [sym_xhp_modifier] = ACTIONS(2057), + [sym_xhp_identifier] = ACTIONS(2057), + [sym_xhp_class_identifier] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + }, + [911] = { + [aux_sym_if_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(2069), + [sym_variable] = ACTIONS(2071), + [sym_pipe_variable] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_newtype] = ACTIONS(2069), + [anon_sym_shape] = ACTIONS(2069), + [anon_sym_tuple] = ACTIONS(2069), + [anon_sym_clone] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_print] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2069), + [anon_sym_include] = ACTIONS(2069), + [anon_sym_include_once] = ACTIONS(2069), + [anon_sym_require] = ACTIONS(2069), + [anon_sym_require_once] = ACTIONS(2069), + [anon_sym_BSLASH] = ACTIONS(2071), + [anon_sym_self] = ACTIONS(2069), + [anon_sym_parent] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_LT_LT_LT] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_echo] = ACTIONS(2069), + [anon_sym_unset] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_concurrent] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_function] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_foreach] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_using] = ACTIONS(2069), + [sym_float] = ACTIONS(2071), + [sym_integer] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_True] = ACTIONS(2069), + [anon_sym_TRUE] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_False] = ACTIONS(2069), + [anon_sym_FALSE] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_Null] = ACTIONS(2069), + [anon_sym_NULL] = ACTIONS(2069), + [sym_string] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_array] = ACTIONS(2069), + [anon_sym_varray] = ACTIONS(2069), + [anon_sym_darray] = ACTIONS(2069), + [anon_sym_vec] = ACTIONS(2069), + [anon_sym_dict] = ACTIONS(2069), + [anon_sym_keyset] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_list] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_abstract] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2071), + [sym_final_modifier] = ACTIONS(2069), + [sym_xhp_modifier] = ACTIONS(2069), + [sym_xhp_identifier] = ACTIONS(2069), + [sym_xhp_class_identifier] = ACTIONS(2071), + [sym_comment] = ACTIONS(3), + }, + [912] = { + [aux_sym_if_statement_repeat1] = STATE(908), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2057), + [sym_variable] = ACTIONS(2059), + [sym_pipe_variable] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_newtype] = ACTIONS(2057), + [anon_sym_shape] = ACTIONS(2057), + [anon_sym_tuple] = ACTIONS(2057), + [anon_sym_clone] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_include_once] = ACTIONS(2057), + [anon_sym_require] = ACTIONS(2057), + [anon_sym_require_once] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_self] = ACTIONS(2057), + [anon_sym_parent] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_LT_LT_LT] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_echo] = ACTIONS(2057), + [anon_sym_unset] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_concurrent] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_elseif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_foreach] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [sym_integer] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_True] = ACTIONS(2057), + [anon_sym_TRUE] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_False] = ACTIONS(2057), + [anon_sym_FALSE] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_Null] = ACTIONS(2057), + [anon_sym_NULL] = ACTIONS(2057), + [sym_string] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_array] = ACTIONS(2057), + [anon_sym_varray] = ACTIONS(2057), + [anon_sym_darray] = ACTIONS(2057), + [anon_sym_vec] = ACTIONS(2057), + [anon_sym_dict] = ACTIONS(2057), + [anon_sym_keyset] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_list] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2059), + [sym_final_modifier] = ACTIONS(2057), + [sym_xhp_modifier] = ACTIONS(2057), + [sym_xhp_identifier] = ACTIONS(2057), + [sym_xhp_class_identifier] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + }, + [913] = { + [aux_sym_if_statement_repeat1] = STATE(916), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2069), + [sym_variable] = ACTIONS(2071), + [sym_pipe_variable] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_newtype] = ACTIONS(2069), + [anon_sym_shape] = ACTIONS(2069), + [anon_sym_tuple] = ACTIONS(2069), + [anon_sym_clone] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_print] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2069), + [anon_sym_include] = ACTIONS(2069), + [anon_sym_include_once] = ACTIONS(2069), + [anon_sym_require] = ACTIONS(2069), + [anon_sym_require_once] = ACTIONS(2069), + [anon_sym_BSLASH] = ACTIONS(2071), + [anon_sym_self] = ACTIONS(2069), + [anon_sym_parent] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_LT_LT_LT] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_throw] = ACTIONS(2069), + [anon_sym_echo] = ACTIONS(2069), + [anon_sym_unset] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_concurrent] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_function] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_foreach] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_using] = ACTIONS(2069), + [sym_float] = ACTIONS(2071), + [sym_integer] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_True] = ACTIONS(2069), + [anon_sym_TRUE] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_False] = ACTIONS(2069), + [anon_sym_FALSE] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_Null] = ACTIONS(2069), + [anon_sym_NULL] = ACTIONS(2069), + [sym_string] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_array] = ACTIONS(2069), + [anon_sym_varray] = ACTIONS(2069), + [anon_sym_darray] = ACTIONS(2069), + [anon_sym_vec] = ACTIONS(2069), + [anon_sym_dict] = ACTIONS(2069), + [anon_sym_keyset] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_list] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(2071), + [anon_sym_DASH_DASH] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_abstract] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2071), + [sym_final_modifier] = ACTIONS(2069), + [sym_xhp_modifier] = ACTIONS(2069), + [sym_xhp_identifier] = ACTIONS(2069), + [sym_xhp_class_identifier] = ACTIONS(2071), + [sym_comment] = ACTIONS(3), + }, + [914] = { + [sym_qualified_identifier] = STATE(5015), + [sym_compound_statement] = STATE(1673), + [aux_sym_qualified_identifier_repeat1] = STATE(2006), + [sym_identifier] = ACTIONS(2029), + [sym_variable] = ACTIONS(2031), + [sym_pipe_variable] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_newtype] = ACTIONS(2033), + [anon_sym_shape] = ACTIONS(2033), + [anon_sym_tuple] = ACTIONS(2033), + [anon_sym_clone] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(2033), + [anon_sym_include_once] = ACTIONS(2033), + [anon_sym_require] = ACTIONS(2033), + [anon_sym_require_once] = ACTIONS(2033), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(2033), + [anon_sym_parent] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_LT_LT] = ACTIONS(2033), + [anon_sym_LT_LT_LT] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_throw] = ACTIONS(2033), + [anon_sym_echo] = ACTIONS(2033), + [anon_sym_unset] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_concurrent] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_function] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_switch] = ACTIONS(2033), + [anon_sym_foreach] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_using] = ACTIONS(2033), + [sym_float] = ACTIONS(2031), + [sym_integer] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_True] = ACTIONS(2033), + [anon_sym_TRUE] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_False] = ACTIONS(2033), + [anon_sym_FALSE] = ACTIONS(2033), + [anon_sym_null] = ACTIONS(2033), + [anon_sym_Null] = ACTIONS(2033), + [anon_sym_NULL] = ACTIONS(2033), + [sym_string] = ACTIONS(2031), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_array] = ACTIONS(2033), + [anon_sym_varray] = ACTIONS(2033), + [anon_sym_darray] = ACTIONS(2033), + [anon_sym_vec] = ACTIONS(2033), + [anon_sym_dict] = ACTIONS(2033), + [anon_sym_keyset] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_interface] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_abstract] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2031), + [sym_final_modifier] = ACTIONS(2033), + [sym_xhp_modifier] = ACTIONS(2033), + [sym_xhp_identifier] = ACTIONS(2033), + [sym_xhp_class_identifier] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + }, + [915] = { + [aux_sym_if_statement_repeat1] = STATE(913), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2061), + [sym_variable] = ACTIONS(2063), + [sym_pipe_variable] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_newtype] = ACTIONS(2061), + [anon_sym_shape] = ACTIONS(2061), + [anon_sym_tuple] = ACTIONS(2061), + [anon_sym_clone] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_print] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_include] = ACTIONS(2061), + [anon_sym_include_once] = ACTIONS(2061), + [anon_sym_require] = ACTIONS(2061), + [anon_sym_require_once] = ACTIONS(2061), + [anon_sym_BSLASH] = ACTIONS(2063), + [anon_sym_self] = ACTIONS(2061), + [anon_sym_parent] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_LT_LT_LT] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_echo] = ACTIONS(2061), + [anon_sym_unset] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_concurrent] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_elseif] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_foreach] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_using] = ACTIONS(2061), + [sym_float] = ACTIONS(2063), + [sym_integer] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_True] = ACTIONS(2061), + [anon_sym_TRUE] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_False] = ACTIONS(2061), + [anon_sym_FALSE] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [anon_sym_Null] = ACTIONS(2061), + [anon_sym_NULL] = ACTIONS(2061), + [sym_string] = ACTIONS(2063), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_array] = ACTIONS(2061), + [anon_sym_varray] = ACTIONS(2061), + [anon_sym_darray] = ACTIONS(2061), + [anon_sym_vec] = ACTIONS(2061), + [anon_sym_dict] = ACTIONS(2061), + [anon_sym_keyset] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2063), + [sym_final_modifier] = ACTIONS(2061), + [sym_xhp_modifier] = ACTIONS(2061), + [sym_xhp_identifier] = ACTIONS(2061), + [sym_xhp_class_identifier] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + }, + [916] = { + [aux_sym_if_statement_repeat1] = STATE(916), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2077), + [sym_variable] = ACTIONS(2079), + [sym_pipe_variable] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_newtype] = ACTIONS(2077), + [anon_sym_shape] = ACTIONS(2077), + [anon_sym_tuple] = ACTIONS(2077), + [anon_sym_clone] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_print] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_include] = ACTIONS(2077), + [anon_sym_include_once] = ACTIONS(2077), + [anon_sym_require] = ACTIONS(2077), + [anon_sym_require_once] = ACTIONS(2077), + [anon_sym_BSLASH] = ACTIONS(2079), + [anon_sym_self] = ACTIONS(2077), + [anon_sym_parent] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_LT_LT] = ACTIONS(2077), + [anon_sym_LT_LT_LT] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_echo] = ACTIONS(2077), + [anon_sym_unset] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_concurrent] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_elseif] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2638), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_foreach] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [sym_float] = ACTIONS(2079), + [sym_integer] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_True] = ACTIONS(2077), + [anon_sym_TRUE] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_False] = ACTIONS(2077), + [anon_sym_FALSE] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2077), + [anon_sym_Null] = ACTIONS(2077), + [anon_sym_NULL] = ACTIONS(2077), + [sym_string] = ACTIONS(2079), + [anon_sym_AT] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_array] = ACTIONS(2077), + [anon_sym_varray] = ACTIONS(2077), + [anon_sym_darray] = ACTIONS(2077), + [anon_sym_vec] = ACTIONS(2077), + [anon_sym_dict] = ACTIONS(2077), + [anon_sym_keyset] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_list] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_PLUS_PLUS] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2079), + [sym_final_modifier] = ACTIONS(2077), + [sym_xhp_modifier] = ACTIONS(2077), + [sym_xhp_identifier] = ACTIONS(2077), + [sym_xhp_class_identifier] = ACTIONS(2079), [sym_comment] = ACTIONS(3), }, - [1042] = { - [sym_identifier] = ACTIONS(2253), - [sym_variable] = ACTIONS(2255), - [sym_pipe_variable] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_newtype] = ACTIONS(2253), - [anon_sym_shape] = ACTIONS(2253), - [anon_sym_tuple] = ACTIONS(2253), - [anon_sym_clone] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_print] = ACTIONS(2253), - [anon_sym_namespace] = ACTIONS(2253), - [anon_sym_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_LT_LT_LT] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_throw] = ACTIONS(2253), - [anon_sym_echo] = ACTIONS(2253), - [anon_sym_unset] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_concurrent] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_function] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_switch] = ACTIONS(2253), - [anon_sym_case] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_foreach] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_using] = ACTIONS(2253), - [sym_float] = ACTIONS(2255), - [sym_integer] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_True] = ACTIONS(2253), - [anon_sym_TRUE] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_False] = ACTIONS(2253), - [anon_sym_FALSE] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [anon_sym_Null] = ACTIONS(2253), - [anon_sym_NULL] = ACTIONS(2253), - [sym_string] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_array] = ACTIONS(2253), - [anon_sym_varray] = ACTIONS(2253), - [anon_sym_darray] = ACTIONS(2253), - [anon_sym_vec] = ACTIONS(2253), - [anon_sym_dict] = ACTIONS(2253), - [anon_sym_keyset] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_abstract] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2255), - [sym_final_modifier] = ACTIONS(2253), - [sym_xhp_modifier] = ACTIONS(2253), - [sym_xhp_identifier] = ACTIONS(2253), - [sym_xhp_class_identifier] = ACTIONS(2255), + [917] = { + [sym_qualified_identifier] = STATE(4921), + [sym_compound_statement] = STATE(1507), + [aux_sym_qualified_identifier_repeat1] = STATE(2006), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2029), + [sym_variable] = ACTIONS(2031), + [sym_pipe_variable] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_newtype] = ACTIONS(2033), + [anon_sym_shape] = ACTIONS(2033), + [anon_sym_tuple] = ACTIONS(2033), + [anon_sym_clone] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_namespace] = ACTIONS(947), + [anon_sym_include] = ACTIONS(2033), + [anon_sym_include_once] = ACTIONS(2033), + [anon_sym_require] = ACTIONS(2033), + [anon_sym_require_once] = ACTIONS(2033), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_self] = ACTIONS(2033), + [anon_sym_parent] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_LT_LT] = ACTIONS(2033), + [anon_sym_LT_LT_LT] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_throw] = ACTIONS(2033), + [anon_sym_echo] = ACTIONS(2033), + [anon_sym_unset] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_concurrent] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_function] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_switch] = ACTIONS(2033), + [anon_sym_foreach] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_using] = ACTIONS(2033), + [sym_float] = ACTIONS(2031), + [sym_integer] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_True] = ACTIONS(2033), + [anon_sym_TRUE] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_False] = ACTIONS(2033), + [anon_sym_FALSE] = ACTIONS(2033), + [anon_sym_null] = ACTIONS(2033), + [anon_sym_Null] = ACTIONS(2033), + [anon_sym_NULL] = ACTIONS(2033), + [sym_string] = ACTIONS(2031), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_array] = ACTIONS(2033), + [anon_sym_varray] = ACTIONS(2033), + [anon_sym_darray] = ACTIONS(2033), + [anon_sym_vec] = ACTIONS(2033), + [anon_sym_dict] = ACTIONS(2033), + [anon_sym_keyset] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_list] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_interface] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_abstract] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2031), + [sym_final_modifier] = ACTIONS(2033), + [sym_xhp_modifier] = ACTIONS(2033), + [sym_xhp_identifier] = ACTIONS(2033), + [sym_xhp_class_identifier] = ACTIONS(2031), [sym_comment] = ACTIONS(3), }, - [1043] = { - [sym_identifier] = ACTIONS(2269), - [sym_variable] = ACTIONS(2271), - [sym_pipe_variable] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_newtype] = ACTIONS(2269), - [anon_sym_shape] = ACTIONS(2269), - [anon_sym_tuple] = ACTIONS(2269), - [anon_sym_clone] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_print] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_LT_LT_LT] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_echo] = ACTIONS(2269), - [anon_sym_unset] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_concurrent] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_switch] = ACTIONS(2269), - [anon_sym_case] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_foreach] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_using] = ACTIONS(2269), - [sym_float] = ACTIONS(2271), - [sym_integer] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_True] = ACTIONS(2269), - [anon_sym_TRUE] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_False] = ACTIONS(2269), - [anon_sym_FALSE] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [anon_sym_Null] = ACTIONS(2269), - [anon_sym_NULL] = ACTIONS(2269), - [sym_string] = ACTIONS(2271), - [anon_sym_AT] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_array] = ACTIONS(2269), - [anon_sym_varray] = ACTIONS(2269), - [anon_sym_darray] = ACTIONS(2269), - [anon_sym_vec] = ACTIONS(2269), - [anon_sym_dict] = ACTIONS(2269), - [anon_sym_keyset] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2271), - [sym_final_modifier] = ACTIONS(2269), - [sym_xhp_modifier] = ACTIONS(2269), - [sym_xhp_identifier] = ACTIONS(2269), - [sym_xhp_class_identifier] = ACTIONS(2271), + [918] = { + [aux_sym_if_statement_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(2077), + [sym_variable] = ACTIONS(2079), + [sym_pipe_variable] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_newtype] = ACTIONS(2077), + [anon_sym_shape] = ACTIONS(2077), + [anon_sym_tuple] = ACTIONS(2077), + [anon_sym_clone] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_print] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2077), + [anon_sym_include] = ACTIONS(2077), + [anon_sym_include_once] = ACTIONS(2077), + [anon_sym_require] = ACTIONS(2077), + [anon_sym_require_once] = ACTIONS(2077), + [anon_sym_BSLASH] = ACTIONS(2079), + [anon_sym_self] = ACTIONS(2077), + [anon_sym_parent] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_LT_LT] = ACTIONS(2077), + [anon_sym_LT_LT_LT] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_throw] = ACTIONS(2077), + [anon_sym_echo] = ACTIONS(2077), + [anon_sym_unset] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_concurrent] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_elseif] = ACTIONS(2641), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_switch] = ACTIONS(2077), + [anon_sym_foreach] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_do] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_using] = ACTIONS(2077), + [sym_float] = ACTIONS(2079), + [sym_integer] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_True] = ACTIONS(2077), + [anon_sym_TRUE] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_False] = ACTIONS(2077), + [anon_sym_FALSE] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2077), + [anon_sym_Null] = ACTIONS(2077), + [anon_sym_NULL] = ACTIONS(2077), + [sym_string] = ACTIONS(2079), + [anon_sym_AT] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_array] = ACTIONS(2077), + [anon_sym_varray] = ACTIONS(2077), + [anon_sym_darray] = ACTIONS(2077), + [anon_sym_vec] = ACTIONS(2077), + [anon_sym_dict] = ACTIONS(2077), + [anon_sym_keyset] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_list] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_PLUS_PLUS] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_interface] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_abstract] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2079), + [sym_final_modifier] = ACTIONS(2077), + [sym_xhp_modifier] = ACTIONS(2077), + [sym_xhp_identifier] = ACTIONS(2077), + [sym_xhp_class_identifier] = ACTIONS(2079), [sym_comment] = ACTIONS(3), }, - [1044] = { - [sym_identifier] = ACTIONS(2309), - [sym_variable] = ACTIONS(2311), - [sym_pipe_variable] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_newtype] = ACTIONS(2309), - [anon_sym_shape] = ACTIONS(2309), - [anon_sym_tuple] = ACTIONS(2309), - [anon_sym_clone] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_print] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_LT_LT_LT] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_throw] = ACTIONS(2309), - [anon_sym_echo] = ACTIONS(2309), - [anon_sym_unset] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_concurrent] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_switch] = ACTIONS(2309), - [anon_sym_case] = ACTIONS(2309), - [anon_sym_default] = ACTIONS(2309), - [anon_sym_foreach] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_using] = ACTIONS(2309), - [sym_float] = ACTIONS(2311), - [sym_integer] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_True] = ACTIONS(2309), - [anon_sym_TRUE] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_False] = ACTIONS(2309), - [anon_sym_FALSE] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [anon_sym_Null] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2309), - [sym_string] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_array] = ACTIONS(2309), - [anon_sym_varray] = ACTIONS(2309), - [anon_sym_darray] = ACTIONS(2309), - [anon_sym_vec] = ACTIONS(2309), - [anon_sym_dict] = ACTIONS(2309), - [anon_sym_keyset] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_abstract] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2311), - [sym_final_modifier] = ACTIONS(2309), - [sym_xhp_modifier] = ACTIONS(2309), - [sym_xhp_identifier] = ACTIONS(2309), - [sym_xhp_class_identifier] = ACTIONS(2311), + [919] = { + [aux_sym_if_statement_repeat1] = STATE(911), + [sym_identifier] = ACTIONS(2061), + [sym_variable] = ACTIONS(2063), + [sym_pipe_variable] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_newtype] = ACTIONS(2061), + [anon_sym_shape] = ACTIONS(2061), + [anon_sym_tuple] = ACTIONS(2061), + [anon_sym_clone] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_print] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_include] = ACTIONS(2061), + [anon_sym_include_once] = ACTIONS(2061), + [anon_sym_require] = ACTIONS(2061), + [anon_sym_require_once] = ACTIONS(2061), + [anon_sym_BSLASH] = ACTIONS(2063), + [anon_sym_self] = ACTIONS(2061), + [anon_sym_parent] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_LT_LT] = ACTIONS(2061), + [anon_sym_LT_LT_LT] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_echo] = ACTIONS(2061), + [anon_sym_unset] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_concurrent] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_elseif] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_foreach] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_using] = ACTIONS(2061), + [sym_float] = ACTIONS(2063), + [sym_integer] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_True] = ACTIONS(2061), + [anon_sym_TRUE] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_False] = ACTIONS(2061), + [anon_sym_FALSE] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [anon_sym_Null] = ACTIONS(2061), + [anon_sym_NULL] = ACTIONS(2061), + [sym_string] = ACTIONS(2063), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_array] = ACTIONS(2061), + [anon_sym_varray] = ACTIONS(2061), + [anon_sym_darray] = ACTIONS(2061), + [anon_sym_vec] = ACTIONS(2061), + [anon_sym_dict] = ACTIONS(2061), + [anon_sym_keyset] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2063), + [sym_final_modifier] = ACTIONS(2061), + [sym_xhp_modifier] = ACTIONS(2061), + [sym_xhp_identifier] = ACTIONS(2061), + [sym_xhp_class_identifier] = ACTIONS(2063), [sym_comment] = ACTIONS(3), }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [sym_identifier] = ACTIONS(2457), - [sym_variable] = ACTIONS(2459), - [sym_pipe_variable] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_newtype] = ACTIONS(2457), - [anon_sym_shape] = ACTIONS(2457), - [anon_sym_tuple] = ACTIONS(2457), - [anon_sym_clone] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_print] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), - [anon_sym_LT_LT_LT] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_echo] = ACTIONS(2457), - [anon_sym_unset] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_concurrent] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_elseif] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_foreach] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_integer] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_True] = ACTIONS(2457), - [anon_sym_TRUE] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [anon_sym_False] = ACTIONS(2457), - [anon_sym_FALSE] = ACTIONS(2457), - [anon_sym_null] = ACTIONS(2457), - [anon_sym_Null] = ACTIONS(2457), - [anon_sym_NULL] = ACTIONS(2457), - [sym_string] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_array] = ACTIONS(2457), - [anon_sym_varray] = ACTIONS(2457), - [anon_sym_darray] = ACTIONS(2457), - [anon_sym_vec] = ACTIONS(2457), - [anon_sym_dict] = ACTIONS(2457), - [anon_sym_keyset] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_trait] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2459), - [sym_final_modifier] = ACTIONS(2457), - [sym_xhp_modifier] = ACTIONS(2457), - [sym_xhp_identifier] = ACTIONS(2457), - [sym_xhp_class_identifier] = ACTIONS(2459), + [920] = { + [sym_identifier] = ACTIONS(2105), + [sym_variable] = ACTIONS(2107), + [sym_pipe_variable] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_newtype] = ACTIONS(2105), + [anon_sym_shape] = ACTIONS(2105), + [anon_sym_tuple] = ACTIONS(2105), + [anon_sym_clone] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_print] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_include] = ACTIONS(2105), + [anon_sym_include_once] = ACTIONS(2105), + [anon_sym_require] = ACTIONS(2105), + [anon_sym_require_once] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2107), + [anon_sym_self] = ACTIONS(2105), + [anon_sym_parent] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_LT_LT_LT] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_echo] = ACTIONS(2105), + [anon_sym_unset] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_concurrent] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_elseif] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_foreach] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [sym_float] = ACTIONS(2107), + [sym_integer] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_True] = ACTIONS(2105), + [anon_sym_TRUE] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_False] = ACTIONS(2105), + [anon_sym_FALSE] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [anon_sym_Null] = ACTIONS(2105), + [anon_sym_NULL] = ACTIONS(2105), + [sym_string] = ACTIONS(2107), + [anon_sym_AT] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_array] = ACTIONS(2105), + [anon_sym_varray] = ACTIONS(2105), + [anon_sym_darray] = ACTIONS(2105), + [anon_sym_vec] = ACTIONS(2105), + [anon_sym_dict] = ACTIONS(2105), + [anon_sym_keyset] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2107), + [sym_final_modifier] = ACTIONS(2105), + [sym_xhp_modifier] = ACTIONS(2105), + [sym_xhp_identifier] = ACTIONS(2105), + [sym_xhp_class_identifier] = ACTIONS(2107), [sym_comment] = ACTIONS(3), }, - [1046] = { - [sym_identifier] = ACTIONS(2449), - [sym_variable] = ACTIONS(2451), - [sym_pipe_variable] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_newtype] = ACTIONS(2449), - [anon_sym_shape] = ACTIONS(2449), - [anon_sym_tuple] = ACTIONS(2449), - [anon_sym_clone] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_print] = ACTIONS(2449), - [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_LT_LT_LT] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_echo] = ACTIONS(2449), - [anon_sym_unset] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_concurrent] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_switch] = ACTIONS(2449), - [anon_sym_case] = ACTIONS(2449), - [anon_sym_default] = ACTIONS(2449), - [anon_sym_foreach] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_using] = ACTIONS(2449), - [sym_float] = ACTIONS(2451), - [sym_integer] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_True] = ACTIONS(2449), - [anon_sym_TRUE] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_False] = ACTIONS(2449), - [anon_sym_FALSE] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [anon_sym_Null] = ACTIONS(2449), - [anon_sym_NULL] = ACTIONS(2449), - [sym_string] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_array] = ACTIONS(2449), - [anon_sym_varray] = ACTIONS(2449), - [anon_sym_darray] = ACTIONS(2449), - [anon_sym_vec] = ACTIONS(2449), - [anon_sym_dict] = ACTIONS(2449), - [anon_sym_keyset] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_class] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_abstract] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2451), - [sym_final_modifier] = ACTIONS(2449), - [sym_xhp_modifier] = ACTIONS(2449), - [sym_xhp_identifier] = ACTIONS(2449), - [sym_xhp_class_identifier] = ACTIONS(2451), + [921] = { + [sym_identifier] = ACTIONS(2397), + [sym_variable] = ACTIONS(2399), + [sym_pipe_variable] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_newtype] = ACTIONS(2397), + [anon_sym_shape] = ACTIONS(2397), + [anon_sym_tuple] = ACTIONS(2397), + [anon_sym_clone] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_include] = ACTIONS(2397), + [anon_sym_include_once] = ACTIONS(2397), + [anon_sym_require] = ACTIONS(2397), + [anon_sym_require_once] = ACTIONS(2397), + [anon_sym_BSLASH] = ACTIONS(2399), + [anon_sym_self] = ACTIONS(2397), + [anon_sym_parent] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_LT_LT_LT] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_throw] = ACTIONS(2397), + [anon_sym_echo] = ACTIONS(2397), + [anon_sym_unset] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_concurrent] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_case] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_foreach] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_using] = ACTIONS(2397), + [sym_float] = ACTIONS(2399), + [sym_integer] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_True] = ACTIONS(2397), + [anon_sym_TRUE] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_False] = ACTIONS(2397), + [anon_sym_FALSE] = ACTIONS(2397), + [anon_sym_null] = ACTIONS(2397), + [anon_sym_Null] = ACTIONS(2397), + [anon_sym_NULL] = ACTIONS(2397), + [sym_string] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_array] = ACTIONS(2397), + [anon_sym_varray] = ACTIONS(2397), + [anon_sym_darray] = ACTIONS(2397), + [anon_sym_vec] = ACTIONS(2397), + [anon_sym_dict] = ACTIONS(2397), + [anon_sym_keyset] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_list] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_interface] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_abstract] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2399), + [sym_final_modifier] = ACTIONS(2397), + [sym_xhp_modifier] = ACTIONS(2397), + [sym_xhp_identifier] = ACTIONS(2397), + [sym_xhp_class_identifier] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + }, + [922] = { + [sym_identifier] = ACTIONS(2357), + [sym_variable] = ACTIONS(2359), + [sym_pipe_variable] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_newtype] = ACTIONS(2357), + [anon_sym_shape] = ACTIONS(2357), + [anon_sym_tuple] = ACTIONS(2357), + [anon_sym_clone] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_print] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_include] = ACTIONS(2357), + [anon_sym_include_once] = ACTIONS(2357), + [anon_sym_require] = ACTIONS(2357), + [anon_sym_require_once] = ACTIONS(2357), + [anon_sym_BSLASH] = ACTIONS(2359), + [anon_sym_self] = ACTIONS(2357), + [anon_sym_parent] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_LT_LT] = ACTIONS(2357), + [anon_sym_LT_LT_LT] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_echo] = ACTIONS(2357), + [anon_sym_unset] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_concurrent] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_function] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_elseif] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_foreach] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [sym_float] = ACTIONS(2359), + [sym_integer] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_True] = ACTIONS(2357), + [anon_sym_TRUE] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_False] = ACTIONS(2357), + [anon_sym_FALSE] = ACTIONS(2357), + [anon_sym_null] = ACTIONS(2357), + [anon_sym_Null] = ACTIONS(2357), + [anon_sym_NULL] = ACTIONS(2357), + [sym_string] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_array] = ACTIONS(2357), + [anon_sym_varray] = ACTIONS(2357), + [anon_sym_darray] = ACTIONS(2357), + [anon_sym_vec] = ACTIONS(2357), + [anon_sym_dict] = ACTIONS(2357), + [anon_sym_keyset] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_list] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_interface] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_abstract] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2359), + [sym_final_modifier] = ACTIONS(2357), + [sym_xhp_modifier] = ACTIONS(2357), + [sym_xhp_identifier] = ACTIONS(2357), + [sym_xhp_class_identifier] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + }, + [923] = { + [sym_identifier] = ACTIONS(2181), + [sym_variable] = ACTIONS(2183), + [sym_pipe_variable] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_newtype] = ACTIONS(2181), + [anon_sym_shape] = ACTIONS(2181), + [anon_sym_tuple] = ACTIONS(2181), + [anon_sym_clone] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(2181), + [anon_sym_namespace] = ACTIONS(2181), + [anon_sym_include] = ACTIONS(2181), + [anon_sym_include_once] = ACTIONS(2181), + [anon_sym_require] = ACTIONS(2181), + [anon_sym_require_once] = ACTIONS(2181), + [anon_sym_BSLASH] = ACTIONS(2183), + [anon_sym_self] = ACTIONS(2181), + [anon_sym_parent] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_LT_LT_LT] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2181), + [anon_sym_echo] = ACTIONS(2181), + [anon_sym_unset] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_concurrent] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_switch] = ACTIONS(2181), + [anon_sym_case] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_foreach] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_using] = ACTIONS(2181), + [sym_float] = ACTIONS(2183), + [sym_integer] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_True] = ACTIONS(2181), + [anon_sym_TRUE] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_False] = ACTIONS(2181), + [anon_sym_FALSE] = ACTIONS(2181), + [anon_sym_null] = ACTIONS(2181), + [anon_sym_Null] = ACTIONS(2181), + [anon_sym_NULL] = ACTIONS(2181), + [sym_string] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_array] = ACTIONS(2181), + [anon_sym_varray] = ACTIONS(2181), + [anon_sym_darray] = ACTIONS(2181), + [anon_sym_vec] = ACTIONS(2181), + [anon_sym_dict] = ACTIONS(2181), + [anon_sym_keyset] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_list] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_class] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_abstract] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2183), + [sym_final_modifier] = ACTIONS(2181), + [sym_xhp_modifier] = ACTIONS(2181), + [sym_xhp_identifier] = ACTIONS(2181), + [sym_xhp_class_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(3), }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(2463), + [924] = { [sym_identifier] = ACTIONS(2461), [sym_variable] = ACTIONS(2463), [sym_pipe_variable] = ACTIONS(2463), @@ -134912,6 +117661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2461), [anon_sym_LT_LT] = ACTIONS(2461), [anon_sym_LT_LT_LT] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), [anon_sym_LBRACE] = ACTIONS(2463), [anon_sym_SEMI] = ACTIONS(2463), [anon_sym_return] = ACTIONS(2461), @@ -134977,1328 +117727,2031 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2463), [sym_comment] = ACTIONS(3), }, - [1048] = { - [sym_identifier] = ACTIONS(2501), - [sym_variable] = ACTIONS(2503), - [sym_pipe_variable] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_newtype] = ACTIONS(2501), - [anon_sym_shape] = ACTIONS(2501), - [anon_sym_tuple] = ACTIONS(2501), - [anon_sym_clone] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_print] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_LT_LT_LT] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_echo] = ACTIONS(2501), - [anon_sym_unset] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_concurrent] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_case] = ACTIONS(2501), - [anon_sym_default] = ACTIONS(2501), - [anon_sym_foreach] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [sym_float] = ACTIONS(2503), - [sym_integer] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_True] = ACTIONS(2501), - [anon_sym_TRUE] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_False] = ACTIONS(2501), - [anon_sym_FALSE] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [anon_sym_Null] = ACTIONS(2501), - [anon_sym_NULL] = ACTIONS(2501), - [sym_string] = ACTIONS(2503), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_array] = ACTIONS(2501), - [anon_sym_varray] = ACTIONS(2501), - [anon_sym_darray] = ACTIONS(2501), - [anon_sym_vec] = ACTIONS(2501), - [anon_sym_dict] = ACTIONS(2501), - [anon_sym_keyset] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_trait] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2503), - [sym_final_modifier] = ACTIONS(2501), - [sym_xhp_modifier] = ACTIONS(2501), - [sym_xhp_identifier] = ACTIONS(2501), - [sym_xhp_class_identifier] = ACTIONS(2503), + [925] = { + [sym_identifier] = ACTIONS(2469), + [sym_variable] = ACTIONS(2471), + [sym_pipe_variable] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_newtype] = ACTIONS(2469), + [anon_sym_shape] = ACTIONS(2469), + [anon_sym_tuple] = ACTIONS(2469), + [anon_sym_clone] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_include_once] = ACTIONS(2469), + [anon_sym_require] = ACTIONS(2469), + [anon_sym_require_once] = ACTIONS(2469), + [anon_sym_BSLASH] = ACTIONS(2471), + [anon_sym_self] = ACTIONS(2469), + [anon_sym_parent] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_LT_LT_LT] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_echo] = ACTIONS(2469), + [anon_sym_unset] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_concurrent] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_function] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_elseif] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_foreach] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [sym_integer] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_True] = ACTIONS(2469), + [anon_sym_TRUE] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_False] = ACTIONS(2469), + [anon_sym_FALSE] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [anon_sym_Null] = ACTIONS(2469), + [anon_sym_NULL] = ACTIONS(2469), + [sym_string] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_array] = ACTIONS(2469), + [anon_sym_varray] = ACTIONS(2469), + [anon_sym_darray] = ACTIONS(2469), + [anon_sym_vec] = ACTIONS(2469), + [anon_sym_dict] = ACTIONS(2469), + [anon_sym_keyset] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_abstract] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2471), + [sym_final_modifier] = ACTIONS(2469), + [sym_xhp_modifier] = ACTIONS(2469), + [sym_xhp_identifier] = ACTIONS(2469), + [sym_xhp_class_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(3), }, - [1049] = { - [sym_identifier] = ACTIONS(2201), - [sym_variable] = ACTIONS(2203), - [sym_pipe_variable] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_newtype] = ACTIONS(2201), - [anon_sym_shape] = ACTIONS(2201), - [anon_sym_tuple] = ACTIONS(2201), - [anon_sym_clone] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_print] = ACTIONS(2201), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_LT_LT_LT] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_throw] = ACTIONS(2201), - [anon_sym_echo] = ACTIONS(2201), - [anon_sym_unset] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_concurrent] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_function] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_switch] = ACTIONS(2201), - [anon_sym_case] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_foreach] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_using] = ACTIONS(2201), - [sym_float] = ACTIONS(2203), - [sym_integer] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_True] = ACTIONS(2201), - [anon_sym_TRUE] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_False] = ACTIONS(2201), - [anon_sym_FALSE] = ACTIONS(2201), - [anon_sym_null] = ACTIONS(2201), - [anon_sym_Null] = ACTIONS(2201), - [anon_sym_NULL] = ACTIONS(2201), - [sym_string] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_array] = ACTIONS(2201), - [anon_sym_varray] = ACTIONS(2201), - [anon_sym_darray] = ACTIONS(2201), - [anon_sym_vec] = ACTIONS(2201), - [anon_sym_dict] = ACTIONS(2201), - [anon_sym_keyset] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_class] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2203), - [sym_final_modifier] = ACTIONS(2201), - [sym_xhp_modifier] = ACTIONS(2201), - [sym_xhp_identifier] = ACTIONS(2201), - [sym_xhp_class_identifier] = ACTIONS(2203), + [926] = { + [sym_identifier] = ACTIONS(2473), + [sym_variable] = ACTIONS(2475), + [sym_pipe_variable] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_newtype] = ACTIONS(2473), + [anon_sym_shape] = ACTIONS(2473), + [anon_sym_tuple] = ACTIONS(2473), + [anon_sym_clone] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_include] = ACTIONS(2473), + [anon_sym_include_once] = ACTIONS(2473), + [anon_sym_require] = ACTIONS(2473), + [anon_sym_require_once] = ACTIONS(2473), + [anon_sym_BSLASH] = ACTIONS(2475), + [anon_sym_self] = ACTIONS(2473), + [anon_sym_parent] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_LT_LT_LT] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_throw] = ACTIONS(2473), + [anon_sym_echo] = ACTIONS(2473), + [anon_sym_unset] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_concurrent] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_switch] = ACTIONS(2473), + [anon_sym_foreach] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_using] = ACTIONS(2473), + [sym_float] = ACTIONS(2475), + [sym_integer] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_True] = ACTIONS(2473), + [anon_sym_TRUE] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_False] = ACTIONS(2473), + [anon_sym_FALSE] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2473), + [anon_sym_Null] = ACTIONS(2473), + [anon_sym_NULL] = ACTIONS(2473), + [sym_string] = ACTIONS(2475), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_array] = ACTIONS(2473), + [anon_sym_varray] = ACTIONS(2473), + [anon_sym_darray] = ACTIONS(2473), + [anon_sym_vec] = ACTIONS(2473), + [anon_sym_dict] = ACTIONS(2473), + [anon_sym_keyset] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_interface] = ACTIONS(2473), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_abstract] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2475), + [sym_final_modifier] = ACTIONS(2473), + [sym_xhp_modifier] = ACTIONS(2473), + [sym_xhp_identifier] = ACTIONS(2473), + [sym_xhp_class_identifier] = ACTIONS(2475), [sym_comment] = ACTIONS(3), }, - [1050] = { - [sym_identifier] = ACTIONS(2537), - [sym_variable] = ACTIONS(2539), - [sym_pipe_variable] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2537), - [anon_sym_newtype] = ACTIONS(2537), - [anon_sym_shape] = ACTIONS(2537), - [anon_sym_tuple] = ACTIONS(2537), - [anon_sym_clone] = ACTIONS(2537), - [anon_sym_new] = ACTIONS(2537), - [anon_sym_print] = ACTIONS(2537), - [anon_sym_namespace] = ACTIONS(2537), - [anon_sym_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2537), - [anon_sym_LT_LT] = ACTIONS(2537), - [anon_sym_LT_LT_LT] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_throw] = ACTIONS(2537), - [anon_sym_echo] = ACTIONS(2537), - [anon_sym_unset] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_concurrent] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_function] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_switch] = ACTIONS(2537), - [anon_sym_case] = ACTIONS(2537), - [anon_sym_default] = ACTIONS(2537), - [anon_sym_foreach] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_do] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [anon_sym_using] = ACTIONS(2537), - [sym_float] = ACTIONS(2539), - [sym_integer] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_True] = ACTIONS(2537), - [anon_sym_TRUE] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_False] = ACTIONS(2537), - [anon_sym_FALSE] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2537), - [anon_sym_Null] = ACTIONS(2537), - [anon_sym_NULL] = ACTIONS(2537), - [sym_string] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_TILDE] = ACTIONS(2539), - [anon_sym_array] = ACTIONS(2537), - [anon_sym_varray] = ACTIONS(2537), - [anon_sym_darray] = ACTIONS(2537), - [anon_sym_vec] = ACTIONS(2537), - [anon_sym_dict] = ACTIONS(2537), - [anon_sym_keyset] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_await] = ACTIONS(2537), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_trait] = ACTIONS(2537), - [anon_sym_interface] = ACTIONS(2537), - [anon_sym_class] = ACTIONS(2537), - [anon_sym_enum] = ACTIONS(2537), - [anon_sym_abstract] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2539), - [sym_final_modifier] = ACTIONS(2537), - [sym_xhp_modifier] = ACTIONS(2537), - [sym_xhp_identifier] = ACTIONS(2537), - [sym_xhp_class_identifier] = ACTIONS(2539), + [927] = { + [sym_identifier] = ACTIONS(2477), + [sym_variable] = ACTIONS(2479), + [sym_pipe_variable] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_newtype] = ACTIONS(2477), + [anon_sym_shape] = ACTIONS(2477), + [anon_sym_tuple] = ACTIONS(2477), + [anon_sym_clone] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_include] = ACTIONS(2477), + [anon_sym_include_once] = ACTIONS(2477), + [anon_sym_require] = ACTIONS(2477), + [anon_sym_require_once] = ACTIONS(2477), + [anon_sym_BSLASH] = ACTIONS(2479), + [anon_sym_self] = ACTIONS(2477), + [anon_sym_parent] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT_LT_LT] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_throw] = ACTIONS(2477), + [anon_sym_echo] = ACTIONS(2477), + [anon_sym_unset] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_concurrent] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_foreach] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_using] = ACTIONS(2477), + [sym_float] = ACTIONS(2479), + [sym_integer] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_True] = ACTIONS(2477), + [anon_sym_TRUE] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_False] = ACTIONS(2477), + [anon_sym_FALSE] = ACTIONS(2477), + [anon_sym_null] = ACTIONS(2477), + [anon_sym_Null] = ACTIONS(2477), + [anon_sym_NULL] = ACTIONS(2477), + [sym_string] = ACTIONS(2479), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_array] = ACTIONS(2477), + [anon_sym_varray] = ACTIONS(2477), + [anon_sym_darray] = ACTIONS(2477), + [anon_sym_vec] = ACTIONS(2477), + [anon_sym_dict] = ACTIONS(2477), + [anon_sym_keyset] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_interface] = ACTIONS(2477), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_abstract] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2479), + [sym_final_modifier] = ACTIONS(2477), + [sym_xhp_modifier] = ACTIONS(2477), + [sym_xhp_identifier] = ACTIONS(2477), + [sym_xhp_class_identifier] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + }, + [928] = { + [sym_identifier] = ACTIONS(2429), + [sym_variable] = ACTIONS(2431), + [sym_pipe_variable] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_newtype] = ACTIONS(2429), + [anon_sym_shape] = ACTIONS(2429), + [anon_sym_tuple] = ACTIONS(2429), + [anon_sym_clone] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_include] = ACTIONS(2429), + [anon_sym_include_once] = ACTIONS(2429), + [anon_sym_require] = ACTIONS(2429), + [anon_sym_require_once] = ACTIONS(2429), + [anon_sym_BSLASH] = ACTIONS(2431), + [anon_sym_self] = ACTIONS(2429), + [anon_sym_parent] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_echo] = ACTIONS(2429), + [anon_sym_unset] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_concurrent] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_elseif] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_foreach] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [sym_float] = ACTIONS(2431), + [sym_integer] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_True] = ACTIONS(2429), + [anon_sym_TRUE] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_False] = ACTIONS(2429), + [anon_sym_FALSE] = ACTIONS(2429), + [anon_sym_null] = ACTIONS(2429), + [anon_sym_Null] = ACTIONS(2429), + [anon_sym_NULL] = ACTIONS(2429), + [sym_string] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_array] = ACTIONS(2429), + [anon_sym_varray] = ACTIONS(2429), + [anon_sym_darray] = ACTIONS(2429), + [anon_sym_vec] = ACTIONS(2429), + [anon_sym_dict] = ACTIONS(2429), + [anon_sym_keyset] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_abstract] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2431), + [sym_final_modifier] = ACTIONS(2429), + [sym_xhp_modifier] = ACTIONS(2429), + [sym_xhp_identifier] = ACTIONS(2429), + [sym_xhp_class_identifier] = ACTIONS(2431), + [sym_comment] = ACTIONS(3), + }, + [929] = { + [sym_identifier] = ACTIONS(2481), + [sym_variable] = ACTIONS(2483), + [sym_pipe_variable] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_newtype] = ACTIONS(2481), + [anon_sym_shape] = ACTIONS(2481), + [anon_sym_tuple] = ACTIONS(2481), + [anon_sym_clone] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_print] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_include] = ACTIONS(2481), + [anon_sym_include_once] = ACTIONS(2481), + [anon_sym_require] = ACTIONS(2481), + [anon_sym_require_once] = ACTIONS(2481), + [anon_sym_BSLASH] = ACTIONS(2483), + [anon_sym_self] = ACTIONS(2481), + [anon_sym_parent] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_LT_LT] = ACTIONS(2481), + [anon_sym_LT_LT_LT] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_echo] = ACTIONS(2481), + [anon_sym_unset] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_concurrent] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_foreach] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [sym_float] = ACTIONS(2483), + [sym_integer] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_True] = ACTIONS(2481), + [anon_sym_TRUE] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_False] = ACTIONS(2481), + [anon_sym_FALSE] = ACTIONS(2481), + [anon_sym_null] = ACTIONS(2481), + [anon_sym_Null] = ACTIONS(2481), + [anon_sym_NULL] = ACTIONS(2481), + [sym_string] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(2483), + [anon_sym_TILDE] = ACTIONS(2483), + [anon_sym_array] = ACTIONS(2481), + [anon_sym_varray] = ACTIONS(2481), + [anon_sym_darray] = ACTIONS(2481), + [anon_sym_vec] = ACTIONS(2481), + [anon_sym_dict] = ACTIONS(2481), + [anon_sym_keyset] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_list] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_PLUS_PLUS] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2483), + [sym_final_modifier] = ACTIONS(2481), + [sym_xhp_modifier] = ACTIONS(2481), + [sym_xhp_identifier] = ACTIONS(2481), + [sym_xhp_class_identifier] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + }, + [930] = { + [sym_identifier] = ACTIONS(2301), + [sym_variable] = ACTIONS(2303), + [sym_pipe_variable] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_newtype] = ACTIONS(2301), + [anon_sym_shape] = ACTIONS(2301), + [anon_sym_tuple] = ACTIONS(2301), + [anon_sym_clone] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_print] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_include] = ACTIONS(2301), + [anon_sym_include_once] = ACTIONS(2301), + [anon_sym_require] = ACTIONS(2301), + [anon_sym_require_once] = ACTIONS(2301), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_self] = ACTIONS(2301), + [anon_sym_parent] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_LT] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_throw] = ACTIONS(2301), + [anon_sym_echo] = ACTIONS(2301), + [anon_sym_unset] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_concurrent] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_function] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_switch] = ACTIONS(2301), + [anon_sym_case] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_foreach] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_using] = ACTIONS(2301), + [sym_float] = ACTIONS(2303), + [sym_integer] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_True] = ACTIONS(2301), + [anon_sym_TRUE] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_False] = ACTIONS(2301), + [anon_sym_FALSE] = ACTIONS(2301), + [anon_sym_null] = ACTIONS(2301), + [anon_sym_Null] = ACTIONS(2301), + [anon_sym_NULL] = ACTIONS(2301), + [sym_string] = ACTIONS(2303), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_array] = ACTIONS(2301), + [anon_sym_varray] = ACTIONS(2301), + [anon_sym_darray] = ACTIONS(2301), + [anon_sym_vec] = ACTIONS(2301), + [anon_sym_dict] = ACTIONS(2301), + [anon_sym_keyset] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_list] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2301), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_abstract] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2303), + [sym_final_modifier] = ACTIONS(2301), + [sym_xhp_modifier] = ACTIONS(2301), + [sym_xhp_identifier] = ACTIONS(2301), + [sym_xhp_class_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + }, + [931] = { + [sym_identifier] = ACTIONS(2433), + [sym_variable] = ACTIONS(2435), + [sym_pipe_variable] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_newtype] = ACTIONS(2433), + [anon_sym_shape] = ACTIONS(2433), + [anon_sym_tuple] = ACTIONS(2433), + [anon_sym_clone] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_print] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_include] = ACTIONS(2433), + [anon_sym_include_once] = ACTIONS(2433), + [anon_sym_require] = ACTIONS(2433), + [anon_sym_require_once] = ACTIONS(2433), + [anon_sym_BSLASH] = ACTIONS(2435), + [anon_sym_self] = ACTIONS(2433), + [anon_sym_parent] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_LT_LT_LT] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_echo] = ACTIONS(2433), + [anon_sym_unset] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_concurrent] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_elseif] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_foreach] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [sym_float] = ACTIONS(2435), + [sym_integer] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_True] = ACTIONS(2433), + [anon_sym_TRUE] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_False] = ACTIONS(2433), + [anon_sym_FALSE] = ACTIONS(2433), + [anon_sym_null] = ACTIONS(2433), + [anon_sym_Null] = ACTIONS(2433), + [anon_sym_NULL] = ACTIONS(2433), + [sym_string] = ACTIONS(2435), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_array] = ACTIONS(2433), + [anon_sym_varray] = ACTIONS(2433), + [anon_sym_darray] = ACTIONS(2433), + [anon_sym_vec] = ACTIONS(2433), + [anon_sym_dict] = ACTIONS(2433), + [anon_sym_keyset] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_abstract] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2435), + [sym_final_modifier] = ACTIONS(2433), + [sym_xhp_modifier] = ACTIONS(2433), + [sym_xhp_identifier] = ACTIONS(2433), + [sym_xhp_class_identifier] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + }, + [932] = { + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + }, + [933] = { + [sym_identifier] = ACTIONS(2485), + [sym_variable] = ACTIONS(2487), + [sym_pipe_variable] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_newtype] = ACTIONS(2485), + [anon_sym_shape] = ACTIONS(2485), + [anon_sym_tuple] = ACTIONS(2485), + [anon_sym_clone] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_include] = ACTIONS(2485), + [anon_sym_include_once] = ACTIONS(2485), + [anon_sym_require] = ACTIONS(2485), + [anon_sym_require_once] = ACTIONS(2485), + [anon_sym_BSLASH] = ACTIONS(2487), + [anon_sym_self] = ACTIONS(2485), + [anon_sym_parent] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2485), + [anon_sym_LT_LT_LT] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_echo] = ACTIONS(2485), + [anon_sym_unset] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_concurrent] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_function] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_elseif] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_foreach] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [sym_float] = ACTIONS(2487), + [sym_integer] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_True] = ACTIONS(2485), + [anon_sym_TRUE] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_False] = ACTIONS(2485), + [anon_sym_FALSE] = ACTIONS(2485), + [anon_sym_null] = ACTIONS(2485), + [anon_sym_Null] = ACTIONS(2485), + [anon_sym_NULL] = ACTIONS(2485), + [sym_string] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_array] = ACTIONS(2485), + [anon_sym_varray] = ACTIONS(2485), + [anon_sym_darray] = ACTIONS(2485), + [anon_sym_vec] = ACTIONS(2485), + [anon_sym_dict] = ACTIONS(2485), + [anon_sym_keyset] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_interface] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_abstract] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2487), + [sym_final_modifier] = ACTIONS(2485), + [sym_xhp_modifier] = ACTIONS(2485), + [sym_xhp_identifier] = ACTIONS(2485), + [sym_xhp_class_identifier] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + }, + [934] = { + [sym_identifier] = ACTIONS(2497), + [sym_variable] = ACTIONS(2499), + [sym_pipe_variable] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_newtype] = ACTIONS(2497), + [anon_sym_shape] = ACTIONS(2497), + [anon_sym_tuple] = ACTIONS(2497), + [anon_sym_clone] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_print] = ACTIONS(2497), + [anon_sym_namespace] = ACTIONS(2497), + [anon_sym_include] = ACTIONS(2497), + [anon_sym_include_once] = ACTIONS(2497), + [anon_sym_require] = ACTIONS(2497), + [anon_sym_require_once] = ACTIONS(2497), + [anon_sym_BSLASH] = ACTIONS(2499), + [anon_sym_self] = ACTIONS(2497), + [anon_sym_parent] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_LT_LT] = ACTIONS(2497), + [anon_sym_LT_LT_LT] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_throw] = ACTIONS(2497), + [anon_sym_echo] = ACTIONS(2497), + [anon_sym_unset] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_concurrent] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_function] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_elseif] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2497), + [anon_sym_foreach] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_using] = ACTIONS(2497), + [sym_float] = ACTIONS(2499), + [sym_integer] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_True] = ACTIONS(2497), + [anon_sym_TRUE] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_False] = ACTIONS(2497), + [anon_sym_FALSE] = ACTIONS(2497), + [anon_sym_null] = ACTIONS(2497), + [anon_sym_Null] = ACTIONS(2497), + [anon_sym_NULL] = ACTIONS(2497), + [sym_string] = ACTIONS(2499), + [anon_sym_AT] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_array] = ACTIONS(2497), + [anon_sym_varray] = ACTIONS(2497), + [anon_sym_darray] = ACTIONS(2497), + [anon_sym_vec] = ACTIONS(2497), + [anon_sym_dict] = ACTIONS(2497), + [anon_sym_keyset] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_interface] = ACTIONS(2497), + [anon_sym_class] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_abstract] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2499), + [sym_final_modifier] = ACTIONS(2497), + [sym_xhp_modifier] = ACTIONS(2497), + [sym_xhp_identifier] = ACTIONS(2497), + [sym_xhp_class_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [935] = { + [sym_identifier] = ACTIONS(2501), + [sym_variable] = ACTIONS(2503), + [sym_pipe_variable] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_newtype] = ACTIONS(2501), + [anon_sym_shape] = ACTIONS(2501), + [anon_sym_tuple] = ACTIONS(2501), + [anon_sym_clone] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_print] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_include] = ACTIONS(2501), + [anon_sym_include_once] = ACTIONS(2501), + [anon_sym_require] = ACTIONS(2501), + [anon_sym_require_once] = ACTIONS(2501), + [anon_sym_BSLASH] = ACTIONS(2503), + [anon_sym_self] = ACTIONS(2501), + [anon_sym_parent] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_LT_LT_LT] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_echo] = ACTIONS(2501), + [anon_sym_unset] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_concurrent] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_elseif] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_foreach] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_using] = ACTIONS(2501), + [sym_float] = ACTIONS(2503), + [sym_integer] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_True] = ACTIONS(2501), + [anon_sym_TRUE] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_False] = ACTIONS(2501), + [anon_sym_FALSE] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), + [anon_sym_Null] = ACTIONS(2501), + [anon_sym_NULL] = ACTIONS(2501), + [sym_string] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_array] = ACTIONS(2501), + [anon_sym_varray] = ACTIONS(2501), + [anon_sym_darray] = ACTIONS(2501), + [anon_sym_vec] = ACTIONS(2501), + [anon_sym_dict] = ACTIONS(2501), + [anon_sym_keyset] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2503), + [sym_final_modifier] = ACTIONS(2501), + [sym_xhp_modifier] = ACTIONS(2501), + [sym_xhp_identifier] = ACTIONS(2501), + [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [1052] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [936] = { + [sym_identifier] = ACTIONS(2505), + [sym_variable] = ACTIONS(2507), + [sym_pipe_variable] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_newtype] = ACTIONS(2505), + [anon_sym_shape] = ACTIONS(2505), + [anon_sym_tuple] = ACTIONS(2505), + [anon_sym_clone] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_namespace] = ACTIONS(2505), + [anon_sym_include] = ACTIONS(2505), + [anon_sym_include_once] = ACTIONS(2505), + [anon_sym_require] = ACTIONS(2505), + [anon_sym_require_once] = ACTIONS(2505), + [anon_sym_BSLASH] = ACTIONS(2507), + [anon_sym_self] = ACTIONS(2505), + [anon_sym_parent] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_LT_LT_LT] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_throw] = ACTIONS(2505), + [anon_sym_echo] = ACTIONS(2505), + [anon_sym_unset] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_concurrent] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_function] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_elseif] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_switch] = ACTIONS(2505), + [anon_sym_foreach] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(2505), + [sym_float] = ACTIONS(2507), + [sym_integer] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_True] = ACTIONS(2505), + [anon_sym_TRUE] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_False] = ACTIONS(2505), + [anon_sym_FALSE] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [anon_sym_Null] = ACTIONS(2505), + [anon_sym_NULL] = ACTIONS(2505), + [sym_string] = ACTIONS(2507), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_array] = ACTIONS(2505), + [anon_sym_varray] = ACTIONS(2505), + [anon_sym_darray] = ACTIONS(2505), + [anon_sym_vec] = ACTIONS(2505), + [anon_sym_dict] = ACTIONS(2505), + [anon_sym_keyset] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_class] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_abstract] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2507), + [sym_final_modifier] = ACTIONS(2505), + [sym_xhp_modifier] = ACTIONS(2505), + [sym_xhp_identifier] = ACTIONS(2505), + [sym_xhp_class_identifier] = ACTIONS(2507), [sym_comment] = ACTIONS(3), }, - [1053] = { - [sym_identifier] = ACTIONS(2605), - [sym_variable] = ACTIONS(2607), - [sym_pipe_variable] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_newtype] = ACTIONS(2605), - [anon_sym_shape] = ACTIONS(2605), - [anon_sym_tuple] = ACTIONS(2605), - [anon_sym_clone] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_print] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_include] = ACTIONS(2605), - [anon_sym_include_once] = ACTIONS(2605), - [anon_sym_require] = ACTIONS(2605), - [anon_sym_require_once] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2607), - [anon_sym_self] = ACTIONS(2605), - [anon_sym_parent] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_LT_LT] = ACTIONS(2605), - [anon_sym_LT_LT_LT] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_echo] = ACTIONS(2605), - [anon_sym_unset] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_concurrent] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_foreach] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [sym_float] = ACTIONS(2607), - [sym_integer] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_True] = ACTIONS(2605), - [anon_sym_TRUE] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [anon_sym_False] = ACTIONS(2605), - [anon_sym_FALSE] = ACTIONS(2605), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_Null] = ACTIONS(2605), - [anon_sym_NULL] = ACTIONS(2605), - [sym_string] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_array] = ACTIONS(2605), - [anon_sym_varray] = ACTIONS(2605), - [anon_sym_darray] = ACTIONS(2605), - [anon_sym_vec] = ACTIONS(2605), - [anon_sym_dict] = ACTIONS(2605), - [anon_sym_keyset] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_list] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2605), - [anon_sym_async] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_trait] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2607), - [sym_final_modifier] = ACTIONS(2605), - [sym_xhp_modifier] = ACTIONS(2605), - [sym_xhp_identifier] = ACTIONS(2605), - [sym_xhp_class_identifier] = ACTIONS(2607), + [937] = { + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_elseif] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [938] = { + [sym_identifier] = ACTIONS(2421), + [sym_variable] = ACTIONS(2423), + [sym_pipe_variable] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_newtype] = ACTIONS(2421), + [anon_sym_shape] = ACTIONS(2421), + [anon_sym_tuple] = ACTIONS(2421), + [anon_sym_clone] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_print] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_include] = ACTIONS(2421), + [anon_sym_include_once] = ACTIONS(2421), + [anon_sym_require] = ACTIONS(2421), + [anon_sym_require_once] = ACTIONS(2421), + [anon_sym_BSLASH] = ACTIONS(2423), + [anon_sym_self] = ACTIONS(2421), + [anon_sym_parent] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_LT_LT_LT] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_throw] = ACTIONS(2421), + [anon_sym_echo] = ACTIONS(2421), + [anon_sym_unset] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_concurrent] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_elseif] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_switch] = ACTIONS(2421), + [anon_sym_foreach] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_using] = ACTIONS(2421), + [sym_float] = ACTIONS(2423), + [sym_integer] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_True] = ACTIONS(2421), + [anon_sym_TRUE] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_False] = ACTIONS(2421), + [anon_sym_FALSE] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2421), + [anon_sym_Null] = ACTIONS(2421), + [anon_sym_NULL] = ACTIONS(2421), + [sym_string] = ACTIONS(2423), + [anon_sym_AT] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_array] = ACTIONS(2421), + [anon_sym_varray] = ACTIONS(2421), + [anon_sym_darray] = ACTIONS(2421), + [anon_sym_vec] = ACTIONS(2421), + [anon_sym_dict] = ACTIONS(2421), + [anon_sym_keyset] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_class] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_abstract] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2423), + [sym_final_modifier] = ACTIONS(2421), + [sym_xhp_modifier] = ACTIONS(2421), + [sym_xhp_identifier] = ACTIONS(2421), + [sym_xhp_class_identifier] = ACTIONS(2423), [sym_comment] = ACTIONS(3), }, - [1055] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [939] = { + [sym_identifier] = ACTIONS(2509), + [sym_variable] = ACTIONS(2511), + [sym_pipe_variable] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_newtype] = ACTIONS(2509), + [anon_sym_shape] = ACTIONS(2509), + [anon_sym_tuple] = ACTIONS(2509), + [anon_sym_clone] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_print] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_include] = ACTIONS(2509), + [anon_sym_include_once] = ACTIONS(2509), + [anon_sym_require] = ACTIONS(2509), + [anon_sym_require_once] = ACTIONS(2509), + [anon_sym_BSLASH] = ACTIONS(2511), + [anon_sym_self] = ACTIONS(2509), + [anon_sym_parent] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_LT_LT] = ACTIONS(2509), + [anon_sym_LT_LT_LT] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_echo] = ACTIONS(2509), + [anon_sym_unset] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_concurrent] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_elseif] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_foreach] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [sym_float] = ACTIONS(2511), + [sym_integer] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_True] = ACTIONS(2509), + [anon_sym_TRUE] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_False] = ACTIONS(2509), + [anon_sym_FALSE] = ACTIONS(2509), + [anon_sym_null] = ACTIONS(2509), + [anon_sym_Null] = ACTIONS(2509), + [anon_sym_NULL] = ACTIONS(2509), + [sym_string] = ACTIONS(2511), + [anon_sym_AT] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_array] = ACTIONS(2509), + [anon_sym_varray] = ACTIONS(2509), + [anon_sym_darray] = ACTIONS(2509), + [anon_sym_vec] = ACTIONS(2509), + [anon_sym_dict] = ACTIONS(2509), + [anon_sym_keyset] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_list] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2511), + [sym_final_modifier] = ACTIONS(2509), + [sym_xhp_modifier] = ACTIONS(2509), + [sym_xhp_identifier] = ACTIONS(2509), + [sym_xhp_class_identifier] = ACTIONS(2511), [sym_comment] = ACTIONS(3), }, - [1056] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [940] = { + [sym_identifier] = ACTIONS(2437), + [sym_variable] = ACTIONS(2439), + [sym_pipe_variable] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_newtype] = ACTIONS(2437), + [anon_sym_shape] = ACTIONS(2437), + [anon_sym_tuple] = ACTIONS(2437), + [anon_sym_clone] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_print] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_include] = ACTIONS(2437), + [anon_sym_include_once] = ACTIONS(2437), + [anon_sym_require] = ACTIONS(2437), + [anon_sym_require_once] = ACTIONS(2437), + [anon_sym_BSLASH] = ACTIONS(2439), + [anon_sym_self] = ACTIONS(2437), + [anon_sym_parent] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_LT_LT] = ACTIONS(2437), + [anon_sym_LT_LT_LT] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_echo] = ACTIONS(2437), + [anon_sym_unset] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_concurrent] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_foreach] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [sym_float] = ACTIONS(2439), + [sym_integer] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_True] = ACTIONS(2437), + [anon_sym_TRUE] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_False] = ACTIONS(2437), + [anon_sym_FALSE] = ACTIONS(2437), + [anon_sym_null] = ACTIONS(2437), + [anon_sym_Null] = ACTIONS(2437), + [anon_sym_NULL] = ACTIONS(2437), + [sym_string] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_array] = ACTIONS(2437), + [anon_sym_varray] = ACTIONS(2437), + [anon_sym_darray] = ACTIONS(2437), + [anon_sym_vec] = ACTIONS(2437), + [anon_sym_dict] = ACTIONS(2437), + [anon_sym_keyset] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_interface] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_abstract] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [sym_final_modifier] = ACTIONS(2437), + [sym_xhp_modifier] = ACTIONS(2437), + [sym_xhp_identifier] = ACTIONS(2437), + [sym_xhp_class_identifier] = ACTIONS(2439), + [sym_comment] = ACTIONS(3), + }, + [941] = { + [sym_identifier] = ACTIONS(2513), + [sym_variable] = ACTIONS(2515), + [sym_pipe_variable] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_newtype] = ACTIONS(2513), + [anon_sym_shape] = ACTIONS(2513), + [anon_sym_tuple] = ACTIONS(2513), + [anon_sym_clone] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_include] = ACTIONS(2513), + [anon_sym_include_once] = ACTIONS(2513), + [anon_sym_require] = ACTIONS(2513), + [anon_sym_require_once] = ACTIONS(2513), + [anon_sym_BSLASH] = ACTIONS(2515), + [anon_sym_self] = ACTIONS(2513), + [anon_sym_parent] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_LT_LT_LT] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_echo] = ACTIONS(2513), + [anon_sym_unset] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_concurrent] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_elseif] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_foreach] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [sym_float] = ACTIONS(2515), + [sym_integer] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_True] = ACTIONS(2513), + [anon_sym_TRUE] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_False] = ACTIONS(2513), + [anon_sym_FALSE] = ACTIONS(2513), + [anon_sym_null] = ACTIONS(2513), + [anon_sym_Null] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2513), + [sym_string] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_array] = ACTIONS(2513), + [anon_sym_varray] = ACTIONS(2513), + [anon_sym_darray] = ACTIONS(2513), + [anon_sym_vec] = ACTIONS(2513), + [anon_sym_dict] = ACTIONS(2513), + [anon_sym_keyset] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2515), + [sym_final_modifier] = ACTIONS(2513), + [sym_xhp_modifier] = ACTIONS(2513), + [sym_xhp_identifier] = ACTIONS(2513), + [sym_xhp_class_identifier] = ACTIONS(2515), [sym_comment] = ACTIONS(3), }, - [1057] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [942] = { + [sym_identifier] = ACTIONS(2305), + [sym_variable] = ACTIONS(2307), + [sym_pipe_variable] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_newtype] = ACTIONS(2305), + [anon_sym_shape] = ACTIONS(2305), + [anon_sym_tuple] = ACTIONS(2305), + [anon_sym_clone] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_print] = ACTIONS(2305), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_include] = ACTIONS(2305), + [anon_sym_include_once] = ACTIONS(2305), + [anon_sym_require] = ACTIONS(2305), + [anon_sym_require_once] = ACTIONS(2305), + [anon_sym_BSLASH] = ACTIONS(2307), + [anon_sym_self] = ACTIONS(2305), + [anon_sym_parent] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_LT_LT] = ACTIONS(2305), + [anon_sym_LT_LT_LT] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_throw] = ACTIONS(2305), + [anon_sym_echo] = ACTIONS(2305), + [anon_sym_unset] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_concurrent] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_function] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_switch] = ACTIONS(2305), + [anon_sym_case] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_foreach] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_using] = ACTIONS(2305), + [sym_float] = ACTIONS(2307), + [sym_integer] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_True] = ACTIONS(2305), + [anon_sym_TRUE] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_False] = ACTIONS(2305), + [anon_sym_FALSE] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [anon_sym_Null] = ACTIONS(2305), + [anon_sym_NULL] = ACTIONS(2305), + [sym_string] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_array] = ACTIONS(2305), + [anon_sym_varray] = ACTIONS(2305), + [anon_sym_darray] = ACTIONS(2305), + [anon_sym_vec] = ACTIONS(2305), + [anon_sym_dict] = ACTIONS(2305), + [anon_sym_keyset] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2307), + [sym_final_modifier] = ACTIONS(2305), + [sym_xhp_modifier] = ACTIONS(2305), + [sym_xhp_identifier] = ACTIONS(2305), + [sym_xhp_class_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(3), }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [943] = { + [sym_identifier] = ACTIONS(2441), + [sym_variable] = ACTIONS(2443), + [sym_pipe_variable] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_newtype] = ACTIONS(2441), + [anon_sym_shape] = ACTIONS(2441), + [anon_sym_tuple] = ACTIONS(2441), + [anon_sym_clone] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_include] = ACTIONS(2441), + [anon_sym_include_once] = ACTIONS(2441), + [anon_sym_require] = ACTIONS(2441), + [anon_sym_require_once] = ACTIONS(2441), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_self] = ACTIONS(2441), + [anon_sym_parent] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_LT] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_echo] = ACTIONS(2441), + [anon_sym_unset] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_concurrent] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_elseif] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_foreach] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [sym_float] = ACTIONS(2443), + [sym_integer] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_True] = ACTIONS(2441), + [anon_sym_TRUE] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_False] = ACTIONS(2441), + [anon_sym_FALSE] = ACTIONS(2441), + [anon_sym_null] = ACTIONS(2441), + [anon_sym_Null] = ACTIONS(2441), + [anon_sym_NULL] = ACTIONS(2441), + [sym_string] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_array] = ACTIONS(2441), + [anon_sym_varray] = ACTIONS(2441), + [anon_sym_darray] = ACTIONS(2441), + [anon_sym_vec] = ACTIONS(2441), + [anon_sym_dict] = ACTIONS(2441), + [anon_sym_keyset] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_abstract] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2443), + [sym_final_modifier] = ACTIONS(2441), + [sym_xhp_modifier] = ACTIONS(2441), + [sym_xhp_identifier] = ACTIONS(2441), + [sym_xhp_class_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(3), }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [944] = { + [sym_identifier] = ACTIONS(2517), + [sym_variable] = ACTIONS(2519), + [sym_pipe_variable] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_newtype] = ACTIONS(2517), + [anon_sym_shape] = ACTIONS(2517), + [anon_sym_tuple] = ACTIONS(2517), + [anon_sym_clone] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_include_once] = ACTIONS(2517), + [anon_sym_require] = ACTIONS(2517), + [anon_sym_require_once] = ACTIONS(2517), + [anon_sym_BSLASH] = ACTIONS(2519), + [anon_sym_self] = ACTIONS(2517), + [anon_sym_parent] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_LT_LT] = ACTIONS(2517), + [anon_sym_LT_LT_LT] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_echo] = ACTIONS(2517), + [anon_sym_unset] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_concurrent] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_elseif] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_foreach] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [sym_float] = ACTIONS(2519), + [sym_integer] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_True] = ACTIONS(2517), + [anon_sym_TRUE] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_False] = ACTIONS(2517), + [anon_sym_FALSE] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_Null] = ACTIONS(2517), + [anon_sym_NULL] = ACTIONS(2517), + [sym_string] = ACTIONS(2519), + [anon_sym_AT] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_array] = ACTIONS(2517), + [anon_sym_varray] = ACTIONS(2517), + [anon_sym_darray] = ACTIONS(2517), + [anon_sym_vec] = ACTIONS(2517), + [anon_sym_dict] = ACTIONS(2517), + [anon_sym_keyset] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2519), + [sym_final_modifier] = ACTIONS(2517), + [sym_xhp_modifier] = ACTIONS(2517), + [sym_xhp_identifier] = ACTIONS(2517), + [sym_xhp_class_identifier] = ACTIONS(2519), [sym_comment] = ACTIONS(3), }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [945] = { + [sym_identifier] = ACTIONS(2425), + [sym_variable] = ACTIONS(2427), + [sym_pipe_variable] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_newtype] = ACTIONS(2425), + [anon_sym_shape] = ACTIONS(2425), + [anon_sym_tuple] = ACTIONS(2425), + [anon_sym_clone] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_print] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_include] = ACTIONS(2425), + [anon_sym_include_once] = ACTIONS(2425), + [anon_sym_require] = ACTIONS(2425), + [anon_sym_require_once] = ACTIONS(2425), + [anon_sym_BSLASH] = ACTIONS(2427), + [anon_sym_self] = ACTIONS(2425), + [anon_sym_parent] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_LT_LT_LT] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_echo] = ACTIONS(2425), + [anon_sym_unset] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_concurrent] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_elseif] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_foreach] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [sym_float] = ACTIONS(2427), + [sym_integer] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_True] = ACTIONS(2425), + [anon_sym_TRUE] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_False] = ACTIONS(2425), + [anon_sym_FALSE] = ACTIONS(2425), + [anon_sym_null] = ACTIONS(2425), + [anon_sym_Null] = ACTIONS(2425), + [anon_sym_NULL] = ACTIONS(2425), + [sym_string] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_array] = ACTIONS(2425), + [anon_sym_varray] = ACTIONS(2425), + [anon_sym_darray] = ACTIONS(2425), + [anon_sym_vec] = ACTIONS(2425), + [anon_sym_dict] = ACTIONS(2425), + [anon_sym_keyset] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_list] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_interface] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_abstract] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2427), + [sym_final_modifier] = ACTIONS(2425), + [sym_xhp_modifier] = ACTIONS(2425), + [sym_xhp_identifier] = ACTIONS(2425), + [sym_xhp_class_identifier] = ACTIONS(2427), [sym_comment] = ACTIONS(3), }, - [1061] = { - [sym_identifier] = ACTIONS(2329), - [sym_variable] = ACTIONS(2331), - [sym_pipe_variable] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_newtype] = ACTIONS(2329), - [anon_sym_shape] = ACTIONS(2329), - [anon_sym_tuple] = ACTIONS(2329), - [anon_sym_clone] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_print] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_LT_LT] = ACTIONS(2329), - [anon_sym_LT_LT_LT] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_echo] = ACTIONS(2329), - [anon_sym_unset] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_concurrent] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_case] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_foreach] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [sym_float] = ACTIONS(2331), - [sym_integer] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_True] = ACTIONS(2329), - [anon_sym_TRUE] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [anon_sym_False] = ACTIONS(2329), - [anon_sym_FALSE] = ACTIONS(2329), - [anon_sym_null] = ACTIONS(2329), - [anon_sym_Null] = ACTIONS(2329), - [anon_sym_NULL] = ACTIONS(2329), - [sym_string] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_array] = ACTIONS(2329), - [anon_sym_varray] = ACTIONS(2329), - [anon_sym_darray] = ACTIONS(2329), - [anon_sym_vec] = ACTIONS(2329), - [anon_sym_dict] = ACTIONS(2329), - [anon_sym_keyset] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_trait] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(2331), - [sym_final_modifier] = ACTIONS(2329), - [sym_xhp_modifier] = ACTIONS(2329), - [sym_xhp_identifier] = ACTIONS(2329), - [sym_xhp_class_identifier] = ACTIONS(2331), + [946] = { + [sym_identifier] = ACTIONS(2521), + [sym_variable] = ACTIONS(2523), + [sym_pipe_variable] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_newtype] = ACTIONS(2521), + [anon_sym_shape] = ACTIONS(2521), + [anon_sym_tuple] = ACTIONS(2521), + [anon_sym_clone] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_include] = ACTIONS(2521), + [anon_sym_include_once] = ACTIONS(2521), + [anon_sym_require] = ACTIONS(2521), + [anon_sym_require_once] = ACTIONS(2521), + [anon_sym_BSLASH] = ACTIONS(2523), + [anon_sym_self] = ACTIONS(2521), + [anon_sym_parent] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_LT_LT] = ACTIONS(2521), + [anon_sym_LT_LT_LT] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_echo] = ACTIONS(2521), + [anon_sym_unset] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_concurrent] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_function] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_elseif] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_foreach] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [sym_float] = ACTIONS(2523), + [sym_integer] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_True] = ACTIONS(2521), + [anon_sym_TRUE] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_False] = ACTIONS(2521), + [anon_sym_FALSE] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [anon_sym_Null] = ACTIONS(2521), + [anon_sym_NULL] = ACTIONS(2521), + [sym_string] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_array] = ACTIONS(2521), + [anon_sym_varray] = ACTIONS(2521), + [anon_sym_darray] = ACTIONS(2521), + [anon_sym_vec] = ACTIONS(2521), + [anon_sym_dict] = ACTIONS(2521), + [anon_sym_keyset] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_await] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_interface] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_abstract] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2523), + [sym_final_modifier] = ACTIONS(2521), + [sym_xhp_modifier] = ACTIONS(2521), + [sym_xhp_identifier] = ACTIONS(2521), + [sym_xhp_class_identifier] = ACTIONS(2523), [sym_comment] = ACTIONS(3), }, - [1062] = { - [sym_identifier] = ACTIONS(2145), - [sym_variable] = ACTIONS(2147), - [sym_pipe_variable] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_newtype] = ACTIONS(2145), - [anon_sym_shape] = ACTIONS(2145), - [anon_sym_tuple] = ACTIONS(2145), - [anon_sym_clone] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_print] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_LT_LT_LT] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_echo] = ACTIONS(2145), - [anon_sym_unset] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_concurrent] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_foreach] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [sym_float] = ACTIONS(2147), - [sym_integer] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_True] = ACTIONS(2145), - [anon_sym_TRUE] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_False] = ACTIONS(2145), - [anon_sym_FALSE] = ACTIONS(2145), - [anon_sym_null] = ACTIONS(2145), - [anon_sym_Null] = ACTIONS(2145), - [anon_sym_NULL] = ACTIONS(2145), - [sym_string] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_array] = ACTIONS(2145), - [anon_sym_varray] = ACTIONS(2145), - [anon_sym_darray] = ACTIONS(2145), - [anon_sym_vec] = ACTIONS(2145), - [anon_sym_dict] = ACTIONS(2145), - [anon_sym_keyset] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2147), - [sym_final_modifier] = ACTIONS(2145), - [sym_xhp_modifier] = ACTIONS(2145), - [sym_xhp_identifier] = ACTIONS(2145), - [sym_xhp_class_identifier] = ACTIONS(2147), + [947] = { + [sym_identifier] = ACTIONS(2525), + [sym_variable] = ACTIONS(2527), + [sym_pipe_variable] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_newtype] = ACTIONS(2525), + [anon_sym_shape] = ACTIONS(2525), + [anon_sym_tuple] = ACTIONS(2525), + [anon_sym_clone] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_include] = ACTIONS(2525), + [anon_sym_include_once] = ACTIONS(2525), + [anon_sym_require] = ACTIONS(2525), + [anon_sym_require_once] = ACTIONS(2525), + [anon_sym_BSLASH] = ACTIONS(2527), + [anon_sym_self] = ACTIONS(2525), + [anon_sym_parent] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_LT_LT_LT] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_echo] = ACTIONS(2525), + [anon_sym_unset] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_concurrent] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_function] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_elseif] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_foreach] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [sym_float] = ACTIONS(2527), + [sym_integer] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_True] = ACTIONS(2525), + [anon_sym_TRUE] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_False] = ACTIONS(2525), + [anon_sym_FALSE] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2525), + [anon_sym_Null] = ACTIONS(2525), + [anon_sym_NULL] = ACTIONS(2525), + [sym_string] = ACTIONS(2527), + [anon_sym_AT] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_array] = ACTIONS(2525), + [anon_sym_varray] = ACTIONS(2525), + [anon_sym_darray] = ACTIONS(2525), + [anon_sym_vec] = ACTIONS(2525), + [anon_sym_dict] = ACTIONS(2525), + [anon_sym_keyset] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_await] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_interface] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2527), + [sym_final_modifier] = ACTIONS(2525), + [sym_xhp_modifier] = ACTIONS(2525), + [sym_xhp_identifier] = ACTIONS(2525), + [sym_xhp_class_identifier] = ACTIONS(2527), [sym_comment] = ACTIONS(3), }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(2531), + [948] = { [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -136320,6 +119773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2529), [anon_sym_LT_LT] = ACTIONS(2529), [anon_sym_LT_LT_LT] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), [anon_sym_LBRACE] = ACTIONS(2531), [anon_sym_SEMI] = ACTIONS(2531), [anon_sym_return] = ACTIONS(2529), @@ -136385,4935 +119839,5903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [1064] = { - [sym_identifier] = ACTIONS(2157), - [sym_variable] = ACTIONS(2159), - [sym_pipe_variable] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_newtype] = ACTIONS(2157), - [anon_sym_shape] = ACTIONS(2157), - [anon_sym_tuple] = ACTIONS(2157), - [anon_sym_clone] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_print] = ACTIONS(2157), - [anon_sym_namespace] = ACTIONS(2157), - [anon_sym_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_LT_LT_LT] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_throw] = ACTIONS(2157), - [anon_sym_echo] = ACTIONS(2157), - [anon_sym_unset] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_concurrent] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_function] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_switch] = ACTIONS(2157), - [anon_sym_case] = ACTIONS(2157), - [anon_sym_default] = ACTIONS(2157), - [anon_sym_foreach] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(2157), - [sym_float] = ACTIONS(2159), - [sym_integer] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_True] = ACTIONS(2157), - [anon_sym_TRUE] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [anon_sym_False] = ACTIONS(2157), - [anon_sym_FALSE] = ACTIONS(2157), - [anon_sym_null] = ACTIONS(2157), - [anon_sym_Null] = ACTIONS(2157), - [anon_sym_NULL] = ACTIONS(2157), - [sym_string] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_array] = ACTIONS(2157), - [anon_sym_varray] = ACTIONS(2157), - [anon_sym_darray] = ACTIONS(2157), - [anon_sym_vec] = ACTIONS(2157), - [anon_sym_dict] = ACTIONS(2157), - [anon_sym_keyset] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_interface] = ACTIONS(2157), - [anon_sym_class] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_abstract] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(2159), - [sym_final_modifier] = ACTIONS(2157), - [sym_xhp_modifier] = ACTIONS(2157), - [sym_xhp_identifier] = ACTIONS(2157), - [sym_xhp_class_identifier] = ACTIONS(2159), + [949] = { + [sym_identifier] = ACTIONS(2533), + [sym_variable] = ACTIONS(2535), + [sym_pipe_variable] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_newtype] = ACTIONS(2533), + [anon_sym_shape] = ACTIONS(2533), + [anon_sym_tuple] = ACTIONS(2533), + [anon_sym_clone] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_include_once] = ACTIONS(2533), + [anon_sym_require] = ACTIONS(2533), + [anon_sym_require_once] = ACTIONS(2533), + [anon_sym_BSLASH] = ACTIONS(2535), + [anon_sym_self] = ACTIONS(2533), + [anon_sym_parent] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_LT_LT] = ACTIONS(2533), + [anon_sym_LT_LT_LT] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_echo] = ACTIONS(2533), + [anon_sym_unset] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_concurrent] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_elseif] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_foreach] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [sym_float] = ACTIONS(2535), + [sym_integer] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_True] = ACTIONS(2533), + [anon_sym_TRUE] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_False] = ACTIONS(2533), + [anon_sym_FALSE] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [anon_sym_Null] = ACTIONS(2533), + [anon_sym_NULL] = ACTIONS(2533), + [sym_string] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_array] = ACTIONS(2533), + [anon_sym_varray] = ACTIONS(2533), + [anon_sym_darray] = ACTIONS(2533), + [anon_sym_vec] = ACTIONS(2533), + [anon_sym_dict] = ACTIONS(2533), + [anon_sym_keyset] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_list] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_interface] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_abstract] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2535), + [sym_final_modifier] = ACTIONS(2533), + [sym_xhp_modifier] = ACTIONS(2533), + [sym_xhp_identifier] = ACTIONS(2533), + [sym_xhp_class_identifier] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + }, + [950] = { + [sym_identifier] = ACTIONS(2185), + [sym_variable] = ACTIONS(2187), + [sym_pipe_variable] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_newtype] = ACTIONS(2185), + [anon_sym_shape] = ACTIONS(2185), + [anon_sym_tuple] = ACTIONS(2185), + [anon_sym_clone] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_print] = ACTIONS(2185), + [anon_sym_namespace] = ACTIONS(2185), + [anon_sym_include] = ACTIONS(2185), + [anon_sym_include_once] = ACTIONS(2185), + [anon_sym_require] = ACTIONS(2185), + [anon_sym_require_once] = ACTIONS(2185), + [anon_sym_BSLASH] = ACTIONS(2187), + [anon_sym_self] = ACTIONS(2185), + [anon_sym_parent] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_LT_LT_LT] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_throw] = ACTIONS(2185), + [anon_sym_echo] = ACTIONS(2185), + [anon_sym_unset] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_concurrent] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_case] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_foreach] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_using] = ACTIONS(2185), + [sym_float] = ACTIONS(2187), + [sym_integer] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_True] = ACTIONS(2185), + [anon_sym_TRUE] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_False] = ACTIONS(2185), + [anon_sym_FALSE] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_Null] = ACTIONS(2185), + [anon_sym_NULL] = ACTIONS(2185), + [sym_string] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_array] = ACTIONS(2185), + [anon_sym_varray] = ACTIONS(2185), + [anon_sym_darray] = ACTIONS(2185), + [anon_sym_vec] = ACTIONS(2185), + [anon_sym_dict] = ACTIONS(2185), + [anon_sym_keyset] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_list] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_class] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_abstract] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2187), + [sym_final_modifier] = ACTIONS(2185), + [sym_xhp_modifier] = ACTIONS(2185), + [sym_xhp_identifier] = ACTIONS(2185), + [sym_xhp_class_identifier] = ACTIONS(2187), + [sym_comment] = ACTIONS(3), + }, + [951] = { + [sym_identifier] = ACTIONS(2309), + [sym_variable] = ACTIONS(2311), + [sym_pipe_variable] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_newtype] = ACTIONS(2309), + [anon_sym_shape] = ACTIONS(2309), + [anon_sym_tuple] = ACTIONS(2309), + [anon_sym_clone] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_print] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_include] = ACTIONS(2309), + [anon_sym_include_once] = ACTIONS(2309), + [anon_sym_require] = ACTIONS(2309), + [anon_sym_require_once] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2311), + [anon_sym_self] = ACTIONS(2309), + [anon_sym_parent] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_LT_LT_LT] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_throw] = ACTIONS(2309), + [anon_sym_echo] = ACTIONS(2309), + [anon_sym_unset] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_concurrent] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_case] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), + [anon_sym_foreach] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_using] = ACTIONS(2309), + [sym_float] = ACTIONS(2311), + [sym_integer] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_True] = ACTIONS(2309), + [anon_sym_TRUE] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_False] = ACTIONS(2309), + [anon_sym_FALSE] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [anon_sym_Null] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2309), + [sym_string] = ACTIONS(2311), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_array] = ACTIONS(2309), + [anon_sym_varray] = ACTIONS(2309), + [anon_sym_darray] = ACTIONS(2309), + [anon_sym_vec] = ACTIONS(2309), + [anon_sym_dict] = ACTIONS(2309), + [anon_sym_keyset] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2309), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_abstract] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2311), + [sym_final_modifier] = ACTIONS(2309), + [sym_xhp_modifier] = ACTIONS(2309), + [sym_xhp_identifier] = ACTIONS(2309), + [sym_xhp_class_identifier] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + }, + [952] = { + [sym_identifier] = ACTIONS(2537), + [sym_variable] = ACTIONS(2539), + [sym_pipe_variable] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_newtype] = ACTIONS(2537), + [anon_sym_shape] = ACTIONS(2537), + [anon_sym_tuple] = ACTIONS(2537), + [anon_sym_clone] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_print] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_include] = ACTIONS(2537), + [anon_sym_include_once] = ACTIONS(2537), + [anon_sym_require] = ACTIONS(2537), + [anon_sym_require_once] = ACTIONS(2537), + [anon_sym_BSLASH] = ACTIONS(2539), + [anon_sym_self] = ACTIONS(2537), + [anon_sym_parent] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_LT_LT] = ACTIONS(2537), + [anon_sym_LT_LT_LT] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_echo] = ACTIONS(2537), + [anon_sym_unset] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_concurrent] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_function] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_elseif] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_foreach] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [sym_float] = ACTIONS(2539), + [sym_integer] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_True] = ACTIONS(2537), + [anon_sym_TRUE] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_False] = ACTIONS(2537), + [anon_sym_FALSE] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2537), + [anon_sym_Null] = ACTIONS(2537), + [anon_sym_NULL] = ACTIONS(2537), + [sym_string] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_array] = ACTIONS(2537), + [anon_sym_varray] = ACTIONS(2537), + [anon_sym_darray] = ACTIONS(2537), + [anon_sym_vec] = ACTIONS(2537), + [anon_sym_dict] = ACTIONS(2537), + [anon_sym_keyset] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_list] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_interface] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_abstract] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2539), + [sym_final_modifier] = ACTIONS(2537), + [sym_xhp_modifier] = ACTIONS(2537), + [sym_xhp_identifier] = ACTIONS(2537), + [sym_xhp_class_identifier] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + }, + [953] = { + [sym_identifier] = ACTIONS(2545), + [sym_variable] = ACTIONS(2547), + [sym_pipe_variable] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_newtype] = ACTIONS(2545), + [anon_sym_shape] = ACTIONS(2545), + [anon_sym_tuple] = ACTIONS(2545), + [anon_sym_clone] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_include] = ACTIONS(2545), + [anon_sym_include_once] = ACTIONS(2545), + [anon_sym_require] = ACTIONS(2545), + [anon_sym_require_once] = ACTIONS(2545), + [anon_sym_BSLASH] = ACTIONS(2547), + [anon_sym_self] = ACTIONS(2545), + [anon_sym_parent] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(2545), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_echo] = ACTIONS(2545), + [anon_sym_unset] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_concurrent] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_elseif] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_foreach] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [sym_float] = ACTIONS(2547), + [sym_integer] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_True] = ACTIONS(2545), + [anon_sym_TRUE] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_False] = ACTIONS(2545), + [anon_sym_FALSE] = ACTIONS(2545), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_Null] = ACTIONS(2545), + [anon_sym_NULL] = ACTIONS(2545), + [sym_string] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_array] = ACTIONS(2545), + [anon_sym_varray] = ACTIONS(2545), + [anon_sym_darray] = ACTIONS(2545), + [anon_sym_vec] = ACTIONS(2545), + [anon_sym_dict] = ACTIONS(2545), + [anon_sym_keyset] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_list] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_interface] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_abstract] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2547), + [sym_final_modifier] = ACTIONS(2545), + [sym_xhp_modifier] = ACTIONS(2545), + [sym_xhp_identifier] = ACTIONS(2545), + [sym_xhp_class_identifier] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + }, + [954] = { + [sym_identifier] = ACTIONS(2549), + [sym_variable] = ACTIONS(2551), + [sym_pipe_variable] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_newtype] = ACTIONS(2549), + [anon_sym_shape] = ACTIONS(2549), + [anon_sym_tuple] = ACTIONS(2549), + [anon_sym_clone] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_include] = ACTIONS(2549), + [anon_sym_include_once] = ACTIONS(2549), + [anon_sym_require] = ACTIONS(2549), + [anon_sym_require_once] = ACTIONS(2549), + [anon_sym_BSLASH] = ACTIONS(2551), + [anon_sym_self] = ACTIONS(2549), + [anon_sym_parent] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2549), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_echo] = ACTIONS(2549), + [anon_sym_unset] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_concurrent] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_function] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_elseif] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_foreach] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [sym_float] = ACTIONS(2551), + [sym_integer] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_True] = ACTIONS(2549), + [anon_sym_TRUE] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_False] = ACTIONS(2549), + [anon_sym_FALSE] = ACTIONS(2549), + [anon_sym_null] = ACTIONS(2549), + [anon_sym_Null] = ACTIONS(2549), + [anon_sym_NULL] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_array] = ACTIONS(2549), + [anon_sym_varray] = ACTIONS(2549), + [anon_sym_darray] = ACTIONS(2549), + [anon_sym_vec] = ACTIONS(2549), + [anon_sym_dict] = ACTIONS(2549), + [anon_sym_keyset] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_list] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_interface] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_abstract] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2551), + [sym_final_modifier] = ACTIONS(2549), + [sym_xhp_modifier] = ACTIONS(2549), + [sym_xhp_identifier] = ACTIONS(2549), + [sym_xhp_class_identifier] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + }, + [955] = { + [sym_identifier] = ACTIONS(2297), + [sym_variable] = ACTIONS(2299), + [sym_pipe_variable] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_newtype] = ACTIONS(2297), + [anon_sym_shape] = ACTIONS(2297), + [anon_sym_tuple] = ACTIONS(2297), + [anon_sym_clone] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_include] = ACTIONS(2297), + [anon_sym_include_once] = ACTIONS(2297), + [anon_sym_require] = ACTIONS(2297), + [anon_sym_require_once] = ACTIONS(2297), + [anon_sym_BSLASH] = ACTIONS(2299), + [anon_sym_self] = ACTIONS(2297), + [anon_sym_parent] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_echo] = ACTIONS(2297), + [anon_sym_unset] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_concurrent] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_case] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_foreach] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_using] = ACTIONS(2297), + [sym_float] = ACTIONS(2299), + [sym_integer] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_True] = ACTIONS(2297), + [anon_sym_TRUE] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_False] = ACTIONS(2297), + [anon_sym_FALSE] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [anon_sym_Null] = ACTIONS(2297), + [anon_sym_NULL] = ACTIONS(2297), + [sym_string] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_array] = ACTIONS(2297), + [anon_sym_varray] = ACTIONS(2297), + [anon_sym_darray] = ACTIONS(2297), + [anon_sym_vec] = ACTIONS(2297), + [anon_sym_dict] = ACTIONS(2297), + [anon_sym_keyset] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_list] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2299), + [sym_final_modifier] = ACTIONS(2297), + [sym_xhp_modifier] = ACTIONS(2297), + [sym_xhp_identifier] = ACTIONS(2297), + [sym_xhp_class_identifier] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + }, + [956] = { + [sym_identifier] = ACTIONS(2089), + [sym_variable] = ACTIONS(2091), + [sym_pipe_variable] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_newtype] = ACTIONS(2089), + [anon_sym_shape] = ACTIONS(2089), + [anon_sym_tuple] = ACTIONS(2089), + [anon_sym_clone] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_print] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_include] = ACTIONS(2089), + [anon_sym_include_once] = ACTIONS(2089), + [anon_sym_require] = ACTIONS(2089), + [anon_sym_require_once] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2091), + [anon_sym_self] = ACTIONS(2089), + [anon_sym_parent] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_LT_LT_LT] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_echo] = ACTIONS(2089), + [anon_sym_unset] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_concurrent] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_elseif] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_foreach] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [sym_float] = ACTIONS(2091), + [sym_integer] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_True] = ACTIONS(2089), + [anon_sym_TRUE] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_False] = ACTIONS(2089), + [anon_sym_FALSE] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [anon_sym_Null] = ACTIONS(2089), + [anon_sym_NULL] = ACTIONS(2089), + [sym_string] = ACTIONS(2091), + [anon_sym_AT] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2091), + [anon_sym_array] = ACTIONS(2089), + [anon_sym_varray] = ACTIONS(2089), + [anon_sym_darray] = ACTIONS(2089), + [anon_sym_vec] = ACTIONS(2089), + [anon_sym_dict] = ACTIONS(2089), + [anon_sym_keyset] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_list] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2091), + [sym_final_modifier] = ACTIONS(2089), + [sym_xhp_modifier] = ACTIONS(2089), + [sym_xhp_identifier] = ACTIONS(2089), + [sym_xhp_class_identifier] = ACTIONS(2091), + [sym_comment] = ACTIONS(3), + }, + [957] = { + [sym_identifier] = ACTIONS(2553), + [sym_variable] = ACTIONS(2555), + [sym_pipe_variable] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_newtype] = ACTIONS(2553), + [anon_sym_shape] = ACTIONS(2553), + [anon_sym_tuple] = ACTIONS(2553), + [anon_sym_clone] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_include] = ACTIONS(2553), + [anon_sym_include_once] = ACTIONS(2553), + [anon_sym_require] = ACTIONS(2553), + [anon_sym_require_once] = ACTIONS(2553), + [anon_sym_BSLASH] = ACTIONS(2555), + [anon_sym_self] = ACTIONS(2553), + [anon_sym_parent] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_LT_LT] = ACTIONS(2553), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_echo] = ACTIONS(2553), + [anon_sym_unset] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_concurrent] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_function] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_elseif] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_foreach] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [sym_float] = ACTIONS(2555), + [sym_integer] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_True] = ACTIONS(2553), + [anon_sym_TRUE] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_False] = ACTIONS(2553), + [anon_sym_FALSE] = ACTIONS(2553), + [anon_sym_null] = ACTIONS(2553), + [anon_sym_Null] = ACTIONS(2553), + [anon_sym_NULL] = ACTIONS(2553), + [sym_string] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_array] = ACTIONS(2553), + [anon_sym_varray] = ACTIONS(2553), + [anon_sym_darray] = ACTIONS(2553), + [anon_sym_vec] = ACTIONS(2553), + [anon_sym_dict] = ACTIONS(2553), + [anon_sym_keyset] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_list] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_await] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_interface] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(2555), + [sym_final_modifier] = ACTIONS(2553), + [sym_xhp_modifier] = ACTIONS(2553), + [sym_xhp_identifier] = ACTIONS(2553), + [sym_xhp_class_identifier] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + }, + [958] = { + [sym_identifier] = ACTIONS(2385), + [sym_variable] = ACTIONS(2387), + [sym_pipe_variable] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_newtype] = ACTIONS(2385), + [anon_sym_shape] = ACTIONS(2385), + [anon_sym_tuple] = ACTIONS(2385), + [anon_sym_clone] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_print] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_include] = ACTIONS(2385), + [anon_sym_include_once] = ACTIONS(2385), + [anon_sym_require] = ACTIONS(2385), + [anon_sym_require_once] = ACTIONS(2385), + [anon_sym_BSLASH] = ACTIONS(2387), + [anon_sym_self] = ACTIONS(2385), + [anon_sym_parent] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_LT_LT] = ACTIONS(2385), + [anon_sym_LT_LT_LT] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_echo] = ACTIONS(2385), + [anon_sym_unset] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_concurrent] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_function] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_elseif] = ACTIONS(2385), + [anon_sym_else] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_foreach] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [sym_float] = ACTIONS(2387), + [sym_integer] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_True] = ACTIONS(2385), + [anon_sym_TRUE] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_False] = ACTIONS(2385), + [anon_sym_FALSE] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2385), + [anon_sym_Null] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [sym_string] = ACTIONS(2387), + [anon_sym_AT] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_array] = ACTIONS(2385), + [anon_sym_varray] = ACTIONS(2385), + [anon_sym_darray] = ACTIONS(2385), + [anon_sym_vec] = ACTIONS(2385), + [anon_sym_dict] = ACTIONS(2385), + [anon_sym_keyset] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_list] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_interface] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_abstract] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2387), + [sym_final_modifier] = ACTIONS(2385), + [sym_xhp_modifier] = ACTIONS(2385), + [sym_xhp_identifier] = ACTIONS(2385), + [sym_xhp_class_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(3), }, - [1065] = { - [sym_identifier] = ACTIONS(2173), - [sym_variable] = ACTIONS(2175), - [sym_pipe_variable] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_newtype] = ACTIONS(2173), - [anon_sym_shape] = ACTIONS(2173), - [anon_sym_tuple] = ACTIONS(2173), - [anon_sym_clone] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_print] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_LT_LT_LT] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_echo] = ACTIONS(2173), - [anon_sym_unset] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_concurrent] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_case] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_foreach] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [sym_float] = ACTIONS(2175), - [sym_integer] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_True] = ACTIONS(2173), - [anon_sym_TRUE] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [anon_sym_False] = ACTIONS(2173), - [anon_sym_FALSE] = ACTIONS(2173), - [anon_sym_null] = ACTIONS(2173), - [anon_sym_Null] = ACTIONS(2173), - [anon_sym_NULL] = ACTIONS(2173), - [sym_string] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_array] = ACTIONS(2173), - [anon_sym_varray] = ACTIONS(2173), - [anon_sym_darray] = ACTIONS(2173), - [anon_sym_vec] = ACTIONS(2173), - [anon_sym_dict] = ACTIONS(2173), - [anon_sym_keyset] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_abstract] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2175), - [sym_final_modifier] = ACTIONS(2173), - [sym_xhp_modifier] = ACTIONS(2173), - [sym_xhp_identifier] = ACTIONS(2173), - [sym_xhp_class_identifier] = ACTIONS(2175), + [959] = { + [sym_identifier] = ACTIONS(2557), + [sym_variable] = ACTIONS(2559), + [sym_pipe_variable] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_newtype] = ACTIONS(2557), + [anon_sym_shape] = ACTIONS(2557), + [anon_sym_tuple] = ACTIONS(2557), + [anon_sym_clone] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_print] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_include] = ACTIONS(2557), + [anon_sym_include_once] = ACTIONS(2557), + [anon_sym_require] = ACTIONS(2557), + [anon_sym_require_once] = ACTIONS(2557), + [anon_sym_BSLASH] = ACTIONS(2559), + [anon_sym_self] = ACTIONS(2557), + [anon_sym_parent] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2557), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_echo] = ACTIONS(2557), + [anon_sym_unset] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_concurrent] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_function] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_elseif] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_foreach] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [sym_float] = ACTIONS(2559), + [sym_integer] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_True] = ACTIONS(2557), + [anon_sym_TRUE] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_False] = ACTIONS(2557), + [anon_sym_FALSE] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2557), + [anon_sym_Null] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2557), + [sym_string] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_array] = ACTIONS(2557), + [anon_sym_varray] = ACTIONS(2557), + [anon_sym_darray] = ACTIONS(2557), + [anon_sym_vec] = ACTIONS(2557), + [anon_sym_dict] = ACTIONS(2557), + [anon_sym_keyset] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_await] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_interface] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_abstract] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(2559), + [sym_final_modifier] = ACTIONS(2557), + [sym_xhp_modifier] = ACTIONS(2557), + [sym_xhp_identifier] = ACTIONS(2557), + [sym_xhp_class_identifier] = ACTIONS(2559), [sym_comment] = ACTIONS(3), }, - [1066] = { - [sym_identifier] = ACTIONS(2305), - [sym_variable] = ACTIONS(2307), - [sym_pipe_variable] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_newtype] = ACTIONS(2305), - [anon_sym_shape] = ACTIONS(2305), - [anon_sym_tuple] = ACTIONS(2305), - [anon_sym_clone] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_print] = ACTIONS(2305), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_LT_LT_LT] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_throw] = ACTIONS(2305), - [anon_sym_echo] = ACTIONS(2305), - [anon_sym_unset] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_concurrent] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_switch] = ACTIONS(2305), - [anon_sym_case] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_foreach] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_using] = ACTIONS(2305), - [sym_float] = ACTIONS(2307), - [sym_integer] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_True] = ACTIONS(2305), - [anon_sym_TRUE] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_False] = ACTIONS(2305), - [anon_sym_FALSE] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [anon_sym_Null] = ACTIONS(2305), - [anon_sym_NULL] = ACTIONS(2305), - [sym_string] = ACTIONS(2307), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_array] = ACTIONS(2305), - [anon_sym_varray] = ACTIONS(2305), - [anon_sym_darray] = ACTIONS(2305), - [anon_sym_vec] = ACTIONS(2305), - [anon_sym_dict] = ACTIONS(2305), - [anon_sym_keyset] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_abstract] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2307), - [sym_final_modifier] = ACTIONS(2305), - [sym_xhp_modifier] = ACTIONS(2305), - [sym_xhp_identifier] = ACTIONS(2305), - [sym_xhp_class_identifier] = ACTIONS(2307), + [960] = { + [sym_identifier] = ACTIONS(2445), + [sym_variable] = ACTIONS(2447), + [sym_pipe_variable] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_newtype] = ACTIONS(2445), + [anon_sym_shape] = ACTIONS(2445), + [anon_sym_tuple] = ACTIONS(2445), + [anon_sym_clone] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_include] = ACTIONS(2445), + [anon_sym_include_once] = ACTIONS(2445), + [anon_sym_require] = ACTIONS(2445), + [anon_sym_require_once] = ACTIONS(2445), + [anon_sym_BSLASH] = ACTIONS(2447), + [anon_sym_self] = ACTIONS(2445), + [anon_sym_parent] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_LT_LT_LT] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_echo] = ACTIONS(2445), + [anon_sym_unset] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_concurrent] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_case] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_foreach] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [sym_float] = ACTIONS(2447), + [sym_integer] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_True] = ACTIONS(2445), + [anon_sym_TRUE] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_False] = ACTIONS(2445), + [anon_sym_FALSE] = ACTIONS(2445), + [anon_sym_null] = ACTIONS(2445), + [anon_sym_Null] = ACTIONS(2445), + [anon_sym_NULL] = ACTIONS(2445), + [sym_string] = ACTIONS(2447), + [anon_sym_AT] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_array] = ACTIONS(2445), + [anon_sym_varray] = ACTIONS(2445), + [anon_sym_darray] = ACTIONS(2445), + [anon_sym_vec] = ACTIONS(2445), + [anon_sym_dict] = ACTIONS(2445), + [anon_sym_keyset] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_list] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_abstract] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2447), + [sym_final_modifier] = ACTIONS(2445), + [sym_xhp_modifier] = ACTIONS(2445), + [sym_xhp_identifier] = ACTIONS(2445), + [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, - [1067] = { - [sym_identifier] = ACTIONS(2345), - [sym_variable] = ACTIONS(2347), - [sym_pipe_variable] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_newtype] = ACTIONS(2345), - [anon_sym_shape] = ACTIONS(2345), - [anon_sym_tuple] = ACTIONS(2345), - [anon_sym_clone] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_print] = ACTIONS(2345), - [anon_sym_namespace] = ACTIONS(2345), - [anon_sym_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_LT_LT] = ACTIONS(2345), - [anon_sym_LT_LT_LT] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_throw] = ACTIONS(2345), - [anon_sym_echo] = ACTIONS(2345), - [anon_sym_unset] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_concurrent] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_switch] = ACTIONS(2345), - [anon_sym_case] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_foreach] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_using] = ACTIONS(2345), - [sym_float] = ACTIONS(2347), - [sym_integer] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_True] = ACTIONS(2345), - [anon_sym_TRUE] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_False] = ACTIONS(2345), - [anon_sym_FALSE] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2345), - [anon_sym_Null] = ACTIONS(2345), - [anon_sym_NULL] = ACTIONS(2345), - [sym_string] = ACTIONS(2347), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_array] = ACTIONS(2345), - [anon_sym_varray] = ACTIONS(2345), - [anon_sym_darray] = ACTIONS(2345), - [anon_sym_vec] = ACTIONS(2345), - [anon_sym_dict] = ACTIONS(2345), - [anon_sym_keyset] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(2347), - [sym_final_modifier] = ACTIONS(2345), - [sym_xhp_modifier] = ACTIONS(2345), - [sym_xhp_identifier] = ACTIONS(2345), - [sym_xhp_class_identifier] = ACTIONS(2347), + [961] = { + [sym_identifier] = ACTIONS(2417), + [sym_variable] = ACTIONS(2419), + [sym_pipe_variable] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_newtype] = ACTIONS(2417), + [anon_sym_shape] = ACTIONS(2417), + [anon_sym_tuple] = ACTIONS(2417), + [anon_sym_clone] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_include] = ACTIONS(2417), + [anon_sym_include_once] = ACTIONS(2417), + [anon_sym_require] = ACTIONS(2417), + [anon_sym_require_once] = ACTIONS(2417), + [anon_sym_BSLASH] = ACTIONS(2419), + [anon_sym_self] = ACTIONS(2417), + [anon_sym_parent] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_LT_LT] = ACTIONS(2417), + [anon_sym_LT_LT_LT] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_echo] = ACTIONS(2417), + [anon_sym_unset] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_concurrent] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_elseif] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_switch] = ACTIONS(2417), + [anon_sym_foreach] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_using] = ACTIONS(2417), + [sym_float] = ACTIONS(2419), + [sym_integer] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_True] = ACTIONS(2417), + [anon_sym_TRUE] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_False] = ACTIONS(2417), + [anon_sym_FALSE] = ACTIONS(2417), + [anon_sym_null] = ACTIONS(2417), + [anon_sym_Null] = ACTIONS(2417), + [anon_sym_NULL] = ACTIONS(2417), + [sym_string] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_array] = ACTIONS(2417), + [anon_sym_varray] = ACTIONS(2417), + [anon_sym_darray] = ACTIONS(2417), + [anon_sym_vec] = ACTIONS(2417), + [anon_sym_dict] = ACTIONS(2417), + [anon_sym_keyset] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_interface] = ACTIONS(2417), + [anon_sym_class] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_abstract] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2419), + [sym_final_modifier] = ACTIONS(2417), + [sym_xhp_modifier] = ACTIONS(2417), + [sym_xhp_identifier] = ACTIONS(2417), + [sym_xhp_class_identifier] = ACTIONS(2419), [sym_comment] = ACTIONS(3), }, - [1068] = { - [sym_identifier] = ACTIONS(2361), - [sym_variable] = ACTIONS(2363), - [sym_pipe_variable] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_newtype] = ACTIONS(2361), - [anon_sym_shape] = ACTIONS(2361), - [anon_sym_tuple] = ACTIONS(2361), - [anon_sym_clone] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_print] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_echo] = ACTIONS(2361), - [anon_sym_unset] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_concurrent] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_foreach] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [sym_float] = ACTIONS(2363), - [sym_integer] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_True] = ACTIONS(2361), - [anon_sym_TRUE] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_False] = ACTIONS(2361), - [anon_sym_FALSE] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [anon_sym_Null] = ACTIONS(2361), - [anon_sym_NULL] = ACTIONS(2361), - [sym_string] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_array] = ACTIONS(2361), - [anon_sym_varray] = ACTIONS(2361), - [anon_sym_darray] = ACTIONS(2361), - [anon_sym_vec] = ACTIONS(2361), - [anon_sym_dict] = ACTIONS(2361), - [anon_sym_keyset] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_interface] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2363), - [sym_final_modifier] = ACTIONS(2361), - [sym_xhp_modifier] = ACTIONS(2361), - [sym_xhp_identifier] = ACTIONS(2361), - [sym_xhp_class_identifier] = ACTIONS(2363), + [962] = { + [sym_identifier] = ACTIONS(2317), + [sym_variable] = ACTIONS(2319), + [sym_pipe_variable] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_newtype] = ACTIONS(2317), + [anon_sym_shape] = ACTIONS(2317), + [anon_sym_tuple] = ACTIONS(2317), + [anon_sym_clone] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_print] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_include] = ACTIONS(2317), + [anon_sym_include_once] = ACTIONS(2317), + [anon_sym_require] = ACTIONS(2317), + [anon_sym_require_once] = ACTIONS(2317), + [anon_sym_BSLASH] = ACTIONS(2319), + [anon_sym_self] = ACTIONS(2317), + [anon_sym_parent] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_LT_LT] = ACTIONS(2317), + [anon_sym_LT_LT_LT] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_echo] = ACTIONS(2317), + [anon_sym_unset] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_concurrent] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_case] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_foreach] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [sym_float] = ACTIONS(2319), + [sym_integer] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_True] = ACTIONS(2317), + [anon_sym_TRUE] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_False] = ACTIONS(2317), + [anon_sym_FALSE] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [anon_sym_Null] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [sym_string] = ACTIONS(2319), + [anon_sym_AT] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_array] = ACTIONS(2317), + [anon_sym_varray] = ACTIONS(2317), + [anon_sym_darray] = ACTIONS(2317), + [anon_sym_vec] = ACTIONS(2317), + [anon_sym_dict] = ACTIONS(2317), + [anon_sym_keyset] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_list] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2319), + [sym_final_modifier] = ACTIONS(2317), + [sym_xhp_modifier] = ACTIONS(2317), + [sym_xhp_identifier] = ACTIONS(2317), + [sym_xhp_class_identifier] = ACTIONS(2319), [sym_comment] = ACTIONS(3), }, - [1069] = { - [sym_identifier] = ACTIONS(2365), - [sym_variable] = ACTIONS(2367), - [sym_pipe_variable] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_newtype] = ACTIONS(2365), - [anon_sym_shape] = ACTIONS(2365), - [anon_sym_tuple] = ACTIONS(2365), - [anon_sym_clone] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_print] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2365), - [anon_sym_LT_LT_LT] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_throw] = ACTIONS(2365), - [anon_sym_echo] = ACTIONS(2365), - [anon_sym_unset] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_concurrent] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_case] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_foreach] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_using] = ACTIONS(2365), - [sym_float] = ACTIONS(2367), - [sym_integer] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_True] = ACTIONS(2365), - [anon_sym_TRUE] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_False] = ACTIONS(2365), - [anon_sym_FALSE] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_Null] = ACTIONS(2365), - [anon_sym_NULL] = ACTIONS(2365), - [sym_string] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_array] = ACTIONS(2365), - [anon_sym_varray] = ACTIONS(2365), - [anon_sym_darray] = ACTIONS(2365), - [anon_sym_vec] = ACTIONS(2365), - [anon_sym_dict] = ACTIONS(2365), - [anon_sym_keyset] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2367), - [sym_final_modifier] = ACTIONS(2365), - [sym_xhp_modifier] = ACTIONS(2365), - [sym_xhp_identifier] = ACTIONS(2365), - [sym_xhp_class_identifier] = ACTIONS(2367), + [963] = { + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_elseif] = ACTIONS(2053), + [anon_sym_else] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [1070] = { - [sym_identifier] = ACTIONS(2373), - [sym_variable] = ACTIONS(2375), - [sym_pipe_variable] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_newtype] = ACTIONS(2373), - [anon_sym_shape] = ACTIONS(2373), - [anon_sym_tuple] = ACTIONS(2373), - [anon_sym_clone] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_print] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_LT_LT_LT] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2373), - [anon_sym_echo] = ACTIONS(2373), - [anon_sym_unset] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_concurrent] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_function] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_switch] = ACTIONS(2373), - [anon_sym_case] = ACTIONS(2373), - [anon_sym_default] = ACTIONS(2373), - [anon_sym_foreach] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_using] = ACTIONS(2373), - [sym_float] = ACTIONS(2375), - [sym_integer] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_True] = ACTIONS(2373), - [anon_sym_TRUE] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_False] = ACTIONS(2373), - [anon_sym_FALSE] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_Null] = ACTIONS(2373), - [anon_sym_NULL] = ACTIONS(2373), - [sym_string] = ACTIONS(2375), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_array] = ACTIONS(2373), - [anon_sym_varray] = ACTIONS(2373), - [anon_sym_darray] = ACTIONS(2373), - [anon_sym_vec] = ACTIONS(2373), - [anon_sym_dict] = ACTIONS(2373), - [anon_sym_keyset] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_class] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_abstract] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2375), - [sym_final_modifier] = ACTIONS(2373), - [sym_xhp_modifier] = ACTIONS(2373), - [sym_xhp_identifier] = ACTIONS(2373), - [sym_xhp_class_identifier] = ACTIONS(2375), + [964] = { + [sym_identifier] = ACTIONS(2413), + [sym_variable] = ACTIONS(2415), + [sym_pipe_variable] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_newtype] = ACTIONS(2413), + [anon_sym_shape] = ACTIONS(2413), + [anon_sym_tuple] = ACTIONS(2413), + [anon_sym_clone] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_print] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_include] = ACTIONS(2413), + [anon_sym_include_once] = ACTIONS(2413), + [anon_sym_require] = ACTIONS(2413), + [anon_sym_require_once] = ACTIONS(2413), + [anon_sym_BSLASH] = ACTIONS(2415), + [anon_sym_self] = ACTIONS(2413), + [anon_sym_parent] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_LT_LT] = ACTIONS(2413), + [anon_sym_LT_LT_LT] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_throw] = ACTIONS(2413), + [anon_sym_echo] = ACTIONS(2413), + [anon_sym_unset] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_concurrent] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_elseif] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(2413), + [anon_sym_foreach] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_using] = ACTIONS(2413), + [sym_float] = ACTIONS(2415), + [sym_integer] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_True] = ACTIONS(2413), + [anon_sym_TRUE] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_False] = ACTIONS(2413), + [anon_sym_FALSE] = ACTIONS(2413), + [anon_sym_null] = ACTIONS(2413), + [anon_sym_Null] = ACTIONS(2413), + [anon_sym_NULL] = ACTIONS(2413), + [sym_string] = ACTIONS(2415), + [anon_sym_AT] = ACTIONS(2415), + [anon_sym_TILDE] = ACTIONS(2415), + [anon_sym_array] = ACTIONS(2413), + [anon_sym_varray] = ACTIONS(2413), + [anon_sym_darray] = ACTIONS(2413), + [anon_sym_vec] = ACTIONS(2413), + [anon_sym_dict] = ACTIONS(2413), + [anon_sym_keyset] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_PLUS_PLUS] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_interface] = ACTIONS(2413), + [anon_sym_class] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_abstract] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2415), + [sym_final_modifier] = ACTIONS(2413), + [sym_xhp_modifier] = ACTIONS(2413), + [sym_xhp_identifier] = ACTIONS(2413), + [sym_xhp_class_identifier] = ACTIONS(2415), [sym_comment] = ACTIONS(3), }, - [1071] = { - [sym_identifier] = ACTIONS(2457), - [sym_variable] = ACTIONS(2459), - [sym_pipe_variable] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_newtype] = ACTIONS(2457), - [anon_sym_shape] = ACTIONS(2457), - [anon_sym_tuple] = ACTIONS(2457), - [anon_sym_clone] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_print] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), - [anon_sym_LT_LT_LT] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_echo] = ACTIONS(2457), - [anon_sym_unset] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_concurrent] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_case] = ACTIONS(2457), - [anon_sym_default] = ACTIONS(2457), - [anon_sym_foreach] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_integer] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_True] = ACTIONS(2457), - [anon_sym_TRUE] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [anon_sym_False] = ACTIONS(2457), - [anon_sym_FALSE] = ACTIONS(2457), - [anon_sym_null] = ACTIONS(2457), - [anon_sym_Null] = ACTIONS(2457), - [anon_sym_NULL] = ACTIONS(2457), - [sym_string] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_array] = ACTIONS(2457), - [anon_sym_varray] = ACTIONS(2457), - [anon_sym_darray] = ACTIONS(2457), - [anon_sym_vec] = ACTIONS(2457), - [anon_sym_dict] = ACTIONS(2457), - [anon_sym_keyset] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_trait] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2459), - [sym_final_modifier] = ACTIONS(2457), - [sym_xhp_modifier] = ACTIONS(2457), - [sym_xhp_identifier] = ACTIONS(2457), - [sym_xhp_class_identifier] = ACTIONS(2459), + [965] = { + [sym_identifier] = ACTIONS(2409), + [sym_variable] = ACTIONS(2411), + [sym_pipe_variable] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_newtype] = ACTIONS(2409), + [anon_sym_shape] = ACTIONS(2409), + [anon_sym_tuple] = ACTIONS(2409), + [anon_sym_clone] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_include] = ACTIONS(2409), + [anon_sym_include_once] = ACTIONS(2409), + [anon_sym_require] = ACTIONS(2409), + [anon_sym_require_once] = ACTIONS(2409), + [anon_sym_BSLASH] = ACTIONS(2411), + [anon_sym_self] = ACTIONS(2409), + [anon_sym_parent] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_LT_LT] = ACTIONS(2409), + [anon_sym_LT_LT_LT] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_throw] = ACTIONS(2409), + [anon_sym_echo] = ACTIONS(2409), + [anon_sym_unset] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_concurrent] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_elseif] = ACTIONS(2409), + [anon_sym_else] = ACTIONS(2409), + [anon_sym_switch] = ACTIONS(2409), + [anon_sym_foreach] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_using] = ACTIONS(2409), + [sym_float] = ACTIONS(2411), + [sym_integer] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_True] = ACTIONS(2409), + [anon_sym_TRUE] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_False] = ACTIONS(2409), + [anon_sym_FALSE] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2409), + [anon_sym_Null] = ACTIONS(2409), + [anon_sym_NULL] = ACTIONS(2409), + [sym_string] = ACTIONS(2411), + [anon_sym_AT] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2411), + [anon_sym_array] = ACTIONS(2409), + [anon_sym_varray] = ACTIONS(2409), + [anon_sym_darray] = ACTIONS(2409), + [anon_sym_vec] = ACTIONS(2409), + [anon_sym_dict] = ACTIONS(2409), + [anon_sym_keyset] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_list] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_PLUS_PLUS] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_interface] = ACTIONS(2409), + [anon_sym_class] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_abstract] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(2411), + [sym_final_modifier] = ACTIONS(2409), + [sym_xhp_modifier] = ACTIONS(2409), + [sym_xhp_identifier] = ACTIONS(2409), + [sym_xhp_class_identifier] = ACTIONS(2411), [sym_comment] = ACTIONS(3), }, - [1072] = { - [sym_identifier] = ACTIONS(2461), - [sym_variable] = ACTIONS(2463), - [sym_pipe_variable] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_newtype] = ACTIONS(2461), - [anon_sym_shape] = ACTIONS(2461), - [anon_sym_tuple] = ACTIONS(2461), - [anon_sym_clone] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_LT_LT_LT] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_echo] = ACTIONS(2461), - [anon_sym_unset] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_concurrent] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_case] = ACTIONS(2461), - [anon_sym_default] = ACTIONS(2461), - [anon_sym_foreach] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [sym_float] = ACTIONS(2463), - [sym_integer] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_True] = ACTIONS(2461), - [anon_sym_TRUE] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_False] = ACTIONS(2461), - [anon_sym_FALSE] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2461), - [anon_sym_Null] = ACTIONS(2461), - [anon_sym_NULL] = ACTIONS(2461), - [sym_string] = ACTIONS(2463), - [anon_sym_AT] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_array] = ACTIONS(2461), - [anon_sym_varray] = ACTIONS(2461), - [anon_sym_darray] = ACTIONS(2461), - [anon_sym_vec] = ACTIONS(2461), - [anon_sym_dict] = ACTIONS(2461), - [anon_sym_keyset] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_trait] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(2463), - [sym_final_modifier] = ACTIONS(2461), - [sym_xhp_modifier] = ACTIONS(2461), - [sym_xhp_identifier] = ACTIONS(2461), - [sym_xhp_class_identifier] = ACTIONS(2463), + [966] = { + [sym_identifier] = ACTIONS(2561), + [sym_variable] = ACTIONS(2563), + [sym_pipe_variable] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_newtype] = ACTIONS(2561), + [anon_sym_shape] = ACTIONS(2561), + [anon_sym_tuple] = ACTIONS(2561), + [anon_sym_clone] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_print] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_include] = ACTIONS(2561), + [anon_sym_include_once] = ACTIONS(2561), + [anon_sym_require] = ACTIONS(2561), + [anon_sym_require_once] = ACTIONS(2561), + [anon_sym_BSLASH] = ACTIONS(2563), + [anon_sym_self] = ACTIONS(2561), + [anon_sym_parent] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_LT_LT] = ACTIONS(2561), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_echo] = ACTIONS(2561), + [anon_sym_unset] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_concurrent] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_function] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_elseif] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_foreach] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [sym_float] = ACTIONS(2563), + [sym_integer] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_True] = ACTIONS(2561), + [anon_sym_TRUE] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_False] = ACTIONS(2561), + [anon_sym_FALSE] = ACTIONS(2561), + [anon_sym_null] = ACTIONS(2561), + [anon_sym_Null] = ACTIONS(2561), + [anon_sym_NULL] = ACTIONS(2561), + [sym_string] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_array] = ACTIONS(2561), + [anon_sym_varray] = ACTIONS(2561), + [anon_sym_darray] = ACTIONS(2561), + [anon_sym_vec] = ACTIONS(2561), + [anon_sym_dict] = ACTIONS(2561), + [anon_sym_keyset] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_list] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_interface] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_abstract] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(2563), + [sym_final_modifier] = ACTIONS(2561), + [sym_xhp_modifier] = ACTIONS(2561), + [sym_xhp_identifier] = ACTIONS(2561), + [sym_xhp_class_identifier] = ACTIONS(2563), [sym_comment] = ACTIONS(3), }, - [1073] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [967] = { + [sym_identifier] = ACTIONS(2405), + [sym_variable] = ACTIONS(2407), + [sym_pipe_variable] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_newtype] = ACTIONS(2405), + [anon_sym_shape] = ACTIONS(2405), + [anon_sym_tuple] = ACTIONS(2405), + [anon_sym_clone] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_print] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_include] = ACTIONS(2405), + [anon_sym_include_once] = ACTIONS(2405), + [anon_sym_require] = ACTIONS(2405), + [anon_sym_require_once] = ACTIONS(2405), + [anon_sym_BSLASH] = ACTIONS(2407), + [anon_sym_self] = ACTIONS(2405), + [anon_sym_parent] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_LT_LT] = ACTIONS(2405), + [anon_sym_LT_LT_LT] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_echo] = ACTIONS(2405), + [anon_sym_unset] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_concurrent] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_elseif] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_foreach] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [sym_float] = ACTIONS(2407), + [sym_integer] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_True] = ACTIONS(2405), + [anon_sym_TRUE] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_False] = ACTIONS(2405), + [anon_sym_FALSE] = ACTIONS(2405), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_Null] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2405), + [sym_string] = ACTIONS(2407), + [anon_sym_AT] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_array] = ACTIONS(2405), + [anon_sym_varray] = ACTIONS(2405), + [anon_sym_darray] = ACTIONS(2405), + [anon_sym_vec] = ACTIONS(2405), + [anon_sym_dict] = ACTIONS(2405), + [anon_sym_keyset] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_abstract] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2407), + [sym_final_modifier] = ACTIONS(2405), + [sym_xhp_modifier] = ACTIONS(2405), + [sym_xhp_identifier] = ACTIONS(2405), + [sym_xhp_class_identifier] = ACTIONS(2407), [sym_comment] = ACTIONS(3), }, - [1074] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [968] = { + [sym_identifier] = ACTIONS(2569), + [sym_variable] = ACTIONS(2571), + [sym_pipe_variable] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_newtype] = ACTIONS(2569), + [anon_sym_shape] = ACTIONS(2569), + [anon_sym_tuple] = ACTIONS(2569), + [anon_sym_clone] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_include_once] = ACTIONS(2569), + [anon_sym_require] = ACTIONS(2569), + [anon_sym_require_once] = ACTIONS(2569), + [anon_sym_BSLASH] = ACTIONS(2571), + [anon_sym_self] = ACTIONS(2569), + [anon_sym_parent] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_throw] = ACTIONS(2569), + [anon_sym_echo] = ACTIONS(2569), + [anon_sym_unset] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_concurrent] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_function] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_elseif] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2569), + [anon_sym_switch] = ACTIONS(2569), + [anon_sym_foreach] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_using] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [sym_integer] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_True] = ACTIONS(2569), + [anon_sym_TRUE] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_False] = ACTIONS(2569), + [anon_sym_FALSE] = ACTIONS(2569), + [anon_sym_null] = ACTIONS(2569), + [anon_sym_Null] = ACTIONS(2569), + [anon_sym_NULL] = ACTIONS(2569), + [sym_string] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_array] = ACTIONS(2569), + [anon_sym_varray] = ACTIONS(2569), + [anon_sym_darray] = ACTIONS(2569), + [anon_sym_vec] = ACTIONS(2569), + [anon_sym_dict] = ACTIONS(2569), + [anon_sym_keyset] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_interface] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_abstract] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(2571), + [sym_final_modifier] = ACTIONS(2569), + [sym_xhp_modifier] = ACTIONS(2569), + [sym_xhp_identifier] = ACTIONS(2569), + [sym_xhp_class_identifier] = ACTIONS(2571), [sym_comment] = ACTIONS(3), }, - [1075] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [969] = { + [sym_identifier] = ACTIONS(2289), + [sym_variable] = ACTIONS(2291), + [sym_pipe_variable] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_newtype] = ACTIONS(2289), + [anon_sym_shape] = ACTIONS(2289), + [anon_sym_tuple] = ACTIONS(2289), + [anon_sym_clone] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_print] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_include] = ACTIONS(2289), + [anon_sym_include_once] = ACTIONS(2289), + [anon_sym_require] = ACTIONS(2289), + [anon_sym_require_once] = ACTIONS(2289), + [anon_sym_BSLASH] = ACTIONS(2291), + [anon_sym_self] = ACTIONS(2289), + [anon_sym_parent] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_LT_LT] = ACTIONS(2289), + [anon_sym_LT_LT_LT] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_echo] = ACTIONS(2289), + [anon_sym_unset] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_concurrent] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_foreach] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [sym_float] = ACTIONS(2291), + [sym_integer] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_True] = ACTIONS(2289), + [anon_sym_TRUE] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_False] = ACTIONS(2289), + [anon_sym_FALSE] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [anon_sym_Null] = ACTIONS(2289), + [anon_sym_NULL] = ACTIONS(2289), + [sym_string] = ACTIONS(2291), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_array] = ACTIONS(2289), + [anon_sym_varray] = ACTIONS(2289), + [anon_sym_darray] = ACTIONS(2289), + [anon_sym_vec] = ACTIONS(2289), + [anon_sym_dict] = ACTIONS(2289), + [anon_sym_keyset] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_list] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_PLUS_PLUS] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2291), + [sym_final_modifier] = ACTIONS(2289), + [sym_xhp_modifier] = ACTIONS(2289), + [sym_xhp_identifier] = ACTIONS(2289), + [sym_xhp_class_identifier] = ACTIONS(2291), [sym_comment] = ACTIONS(3), }, - [1076] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [970] = { + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [1077] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [971] = { + [sym_identifier] = ACTIONS(2285), + [sym_variable] = ACTIONS(2287), + [sym_pipe_variable] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_newtype] = ACTIONS(2285), + [anon_sym_shape] = ACTIONS(2285), + [anon_sym_tuple] = ACTIONS(2285), + [anon_sym_clone] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_print] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_include] = ACTIONS(2285), + [anon_sym_include_once] = ACTIONS(2285), + [anon_sym_require] = ACTIONS(2285), + [anon_sym_require_once] = ACTIONS(2285), + [anon_sym_BSLASH] = ACTIONS(2287), + [anon_sym_self] = ACTIONS(2285), + [anon_sym_parent] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_LT_LT_LT] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_echo] = ACTIONS(2285), + [anon_sym_unset] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_concurrent] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_foreach] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [sym_float] = ACTIONS(2287), + [sym_integer] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_True] = ACTIONS(2285), + [anon_sym_TRUE] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_False] = ACTIONS(2285), + [anon_sym_FALSE] = ACTIONS(2285), + [anon_sym_null] = ACTIONS(2285), + [anon_sym_Null] = ACTIONS(2285), + [anon_sym_NULL] = ACTIONS(2285), + [sym_string] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_array] = ACTIONS(2285), + [anon_sym_varray] = ACTIONS(2285), + [anon_sym_darray] = ACTIONS(2285), + [anon_sym_vec] = ACTIONS(2285), + [anon_sym_dict] = ACTIONS(2285), + [anon_sym_keyset] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_list] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2287), + [sym_final_modifier] = ACTIONS(2285), + [sym_xhp_modifier] = ACTIONS(2285), + [sym_xhp_identifier] = ACTIONS(2285), + [sym_xhp_class_identifier] = ACTIONS(2287), [sym_comment] = ACTIONS(3), }, - [1078] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [972] = { + [sym_identifier] = ACTIONS(2401), + [sym_variable] = ACTIONS(2403), + [sym_pipe_variable] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_newtype] = ACTIONS(2401), + [anon_sym_shape] = ACTIONS(2401), + [anon_sym_tuple] = ACTIONS(2401), + [anon_sym_clone] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_print] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_include] = ACTIONS(2401), + [anon_sym_include_once] = ACTIONS(2401), + [anon_sym_require] = ACTIONS(2401), + [anon_sym_require_once] = ACTIONS(2401), + [anon_sym_BSLASH] = ACTIONS(2403), + [anon_sym_self] = ACTIONS(2401), + [anon_sym_parent] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LT_LT_LT] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_echo] = ACTIONS(2401), + [anon_sym_unset] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_concurrent] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_elseif] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_foreach] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_using] = ACTIONS(2401), + [sym_float] = ACTIONS(2403), + [sym_integer] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_True] = ACTIONS(2401), + [anon_sym_TRUE] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_False] = ACTIONS(2401), + [anon_sym_FALSE] = ACTIONS(2401), + [anon_sym_null] = ACTIONS(2401), + [anon_sym_Null] = ACTIONS(2401), + [anon_sym_NULL] = ACTIONS(2401), + [sym_string] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_array] = ACTIONS(2401), + [anon_sym_varray] = ACTIONS(2401), + [anon_sym_darray] = ACTIONS(2401), + [anon_sym_vec] = ACTIONS(2401), + [anon_sym_dict] = ACTIONS(2401), + [anon_sym_keyset] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2403), + [sym_final_modifier] = ACTIONS(2401), + [sym_xhp_modifier] = ACTIONS(2401), + [sym_xhp_identifier] = ACTIONS(2401), + [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, - [1079] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [973] = { + [sym_identifier] = ACTIONS(2397), + [sym_variable] = ACTIONS(2399), + [sym_pipe_variable] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_newtype] = ACTIONS(2397), + [anon_sym_shape] = ACTIONS(2397), + [anon_sym_tuple] = ACTIONS(2397), + [anon_sym_clone] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_include] = ACTIONS(2397), + [anon_sym_include_once] = ACTIONS(2397), + [anon_sym_require] = ACTIONS(2397), + [anon_sym_require_once] = ACTIONS(2397), + [anon_sym_BSLASH] = ACTIONS(2399), + [anon_sym_self] = ACTIONS(2397), + [anon_sym_parent] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_LT_LT_LT] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_throw] = ACTIONS(2397), + [anon_sym_echo] = ACTIONS(2397), + [anon_sym_unset] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_concurrent] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_elseif] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(2397), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_foreach] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_using] = ACTIONS(2397), + [sym_float] = ACTIONS(2399), + [sym_integer] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_True] = ACTIONS(2397), + [anon_sym_TRUE] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_False] = ACTIONS(2397), + [anon_sym_FALSE] = ACTIONS(2397), + [anon_sym_null] = ACTIONS(2397), + [anon_sym_Null] = ACTIONS(2397), + [anon_sym_NULL] = ACTIONS(2397), + [sym_string] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_array] = ACTIONS(2397), + [anon_sym_varray] = ACTIONS(2397), + [anon_sym_darray] = ACTIONS(2397), + [anon_sym_vec] = ACTIONS(2397), + [anon_sym_dict] = ACTIONS(2397), + [anon_sym_keyset] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_list] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_interface] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_abstract] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2399), + [sym_final_modifier] = ACTIONS(2397), + [sym_xhp_modifier] = ACTIONS(2397), + [sym_xhp_identifier] = ACTIONS(2397), + [sym_xhp_class_identifier] = ACTIONS(2399), [sym_comment] = ACTIONS(3), }, - [1080] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [974] = { + [sym_identifier] = ACTIONS(2573), + [sym_variable] = ACTIONS(2575), + [sym_pipe_variable] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_newtype] = ACTIONS(2573), + [anon_sym_shape] = ACTIONS(2573), + [anon_sym_tuple] = ACTIONS(2573), + [anon_sym_clone] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_include_once] = ACTIONS(2573), + [anon_sym_require] = ACTIONS(2573), + [anon_sym_require_once] = ACTIONS(2573), + [anon_sym_BSLASH] = ACTIONS(2575), + [anon_sym_self] = ACTIONS(2573), + [anon_sym_parent] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_LT_LT] = ACTIONS(2573), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_echo] = ACTIONS(2573), + [anon_sym_unset] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_concurrent] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_elseif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_foreach] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [sym_float] = ACTIONS(2575), + [sym_integer] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_True] = ACTIONS(2573), + [anon_sym_TRUE] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_False] = ACTIONS(2573), + [anon_sym_FALSE] = ACTIONS(2573), + [anon_sym_null] = ACTIONS(2573), + [anon_sym_Null] = ACTIONS(2573), + [anon_sym_NULL] = ACTIONS(2573), + [sym_string] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_array] = ACTIONS(2573), + [anon_sym_varray] = ACTIONS(2573), + [anon_sym_darray] = ACTIONS(2573), + [anon_sym_vec] = ACTIONS(2573), + [anon_sym_dict] = ACTIONS(2573), + [anon_sym_keyset] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_list] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_interface] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_abstract] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(2575), + [sym_final_modifier] = ACTIONS(2573), + [sym_xhp_modifier] = ACTIONS(2573), + [sym_xhp_identifier] = ACTIONS(2573), + [sym_xhp_class_identifier] = ACTIONS(2575), [sym_comment] = ACTIONS(3), }, - [1081] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [975] = { + [sym_identifier] = ACTIONS(2393), + [sym_variable] = ACTIONS(2395), + [sym_pipe_variable] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_newtype] = ACTIONS(2393), + [anon_sym_shape] = ACTIONS(2393), + [anon_sym_tuple] = ACTIONS(2393), + [anon_sym_clone] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_print] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_include] = ACTIONS(2393), + [anon_sym_include_once] = ACTIONS(2393), + [anon_sym_require] = ACTIONS(2393), + [anon_sym_require_once] = ACTIONS(2393), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_self] = ACTIONS(2393), + [anon_sym_parent] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(2393), + [anon_sym_LT_LT_LT] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_throw] = ACTIONS(2393), + [anon_sym_echo] = ACTIONS(2393), + [anon_sym_unset] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_concurrent] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_elseif] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_foreach] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_using] = ACTIONS(2393), + [sym_float] = ACTIONS(2395), + [sym_integer] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_True] = ACTIONS(2393), + [anon_sym_TRUE] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_False] = ACTIONS(2393), + [anon_sym_FALSE] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2393), + [anon_sym_Null] = ACTIONS(2393), + [anon_sym_NULL] = ACTIONS(2393), + [sym_string] = ACTIONS(2395), + [anon_sym_AT] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_array] = ACTIONS(2393), + [anon_sym_varray] = ACTIONS(2393), + [anon_sym_darray] = ACTIONS(2393), + [anon_sym_vec] = ACTIONS(2393), + [anon_sym_dict] = ACTIONS(2393), + [anon_sym_keyset] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_interface] = ACTIONS(2393), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_abstract] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2395), + [sym_final_modifier] = ACTIONS(2393), + [sym_xhp_modifier] = ACTIONS(2393), + [sym_xhp_identifier] = ACTIONS(2393), + [sym_xhp_class_identifier] = ACTIONS(2395), [sym_comment] = ACTIONS(3), }, - [1082] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [976] = { + [sym_identifier] = ACTIONS(2577), + [sym_variable] = ACTIONS(2579), + [sym_pipe_variable] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_newtype] = ACTIONS(2577), + [anon_sym_shape] = ACTIONS(2577), + [anon_sym_tuple] = ACTIONS(2577), + [anon_sym_clone] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_include_once] = ACTIONS(2577), + [anon_sym_require] = ACTIONS(2577), + [anon_sym_require_once] = ACTIONS(2577), + [anon_sym_BSLASH] = ACTIONS(2579), + [anon_sym_self] = ACTIONS(2577), + [anon_sym_parent] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_echo] = ACTIONS(2577), + [anon_sym_unset] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_concurrent] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_elseif] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_foreach] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [sym_integer] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_True] = ACTIONS(2577), + [anon_sym_TRUE] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_False] = ACTIONS(2577), + [anon_sym_FALSE] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2577), + [anon_sym_Null] = ACTIONS(2577), + [anon_sym_NULL] = ACTIONS(2577), + [sym_string] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_array] = ACTIONS(2577), + [anon_sym_varray] = ACTIONS(2577), + [anon_sym_darray] = ACTIONS(2577), + [anon_sym_vec] = ACTIONS(2577), + [anon_sym_dict] = ACTIONS(2577), + [anon_sym_keyset] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_list] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2579), + [sym_final_modifier] = ACTIONS(2577), + [sym_xhp_modifier] = ACTIONS(2577), + [sym_xhp_identifier] = ACTIONS(2577), + [sym_xhp_class_identifier] = ACTIONS(2579), [sym_comment] = ACTIONS(3), }, - [1083] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [977] = { + [sym_identifier] = ACTIONS(2581), + [sym_variable] = ACTIONS(2583), + [sym_pipe_variable] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_newtype] = ACTIONS(2581), + [anon_sym_shape] = ACTIONS(2581), + [anon_sym_tuple] = ACTIONS(2581), + [anon_sym_clone] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_include] = ACTIONS(2581), + [anon_sym_include_once] = ACTIONS(2581), + [anon_sym_require] = ACTIONS(2581), + [anon_sym_require_once] = ACTIONS(2581), + [anon_sym_BSLASH] = ACTIONS(2583), + [anon_sym_self] = ACTIONS(2581), + [anon_sym_parent] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_echo] = ACTIONS(2581), + [anon_sym_unset] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_concurrent] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_elseif] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_foreach] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [sym_float] = ACTIONS(2583), + [sym_integer] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_True] = ACTIONS(2581), + [anon_sym_TRUE] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_False] = ACTIONS(2581), + [anon_sym_FALSE] = ACTIONS(2581), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_Null] = ACTIONS(2581), + [anon_sym_NULL] = ACTIONS(2581), + [sym_string] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_array] = ACTIONS(2581), + [anon_sym_varray] = ACTIONS(2581), + [anon_sym_darray] = ACTIONS(2581), + [anon_sym_vec] = ACTIONS(2581), + [anon_sym_dict] = ACTIONS(2581), + [anon_sym_keyset] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_list] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(2583), + [sym_final_modifier] = ACTIONS(2581), + [sym_xhp_modifier] = ACTIONS(2581), + [sym_xhp_identifier] = ACTIONS(2581), + [sym_xhp_class_identifier] = ACTIONS(2583), [sym_comment] = ACTIONS(3), }, - [1084] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [978] = { + [sym_identifier] = ACTIONS(2281), + [sym_variable] = ACTIONS(2283), + [sym_pipe_variable] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_newtype] = ACTIONS(2281), + [anon_sym_shape] = ACTIONS(2281), + [anon_sym_tuple] = ACTIONS(2281), + [anon_sym_clone] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_print] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_include] = ACTIONS(2281), + [anon_sym_include_once] = ACTIONS(2281), + [anon_sym_require] = ACTIONS(2281), + [anon_sym_require_once] = ACTIONS(2281), + [anon_sym_BSLASH] = ACTIONS(2283), + [anon_sym_self] = ACTIONS(2281), + [anon_sym_parent] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_LT_LT] = ACTIONS(2281), + [anon_sym_LT_LT_LT] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_echo] = ACTIONS(2281), + [anon_sym_unset] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_concurrent] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_case] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_foreach] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [sym_float] = ACTIONS(2283), + [sym_integer] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_True] = ACTIONS(2281), + [anon_sym_TRUE] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_False] = ACTIONS(2281), + [anon_sym_FALSE] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [anon_sym_Null] = ACTIONS(2281), + [anon_sym_NULL] = ACTIONS(2281), + [sym_string] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_array] = ACTIONS(2281), + [anon_sym_varray] = ACTIONS(2281), + [anon_sym_darray] = ACTIONS(2281), + [anon_sym_vec] = ACTIONS(2281), + [anon_sym_dict] = ACTIONS(2281), + [anon_sym_keyset] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2283), + [sym_final_modifier] = ACTIONS(2281), + [sym_xhp_modifier] = ACTIONS(2281), + [sym_xhp_identifier] = ACTIONS(2281), + [sym_xhp_class_identifier] = ACTIONS(2283), [sym_comment] = ACTIONS(3), }, - [1085] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [979] = { + [sym_identifier] = ACTIONS(2585), + [sym_variable] = ACTIONS(2587), + [sym_pipe_variable] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_newtype] = ACTIONS(2585), + [anon_sym_shape] = ACTIONS(2585), + [anon_sym_tuple] = ACTIONS(2585), + [anon_sym_clone] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_include] = ACTIONS(2585), + [anon_sym_include_once] = ACTIONS(2585), + [anon_sym_require] = ACTIONS(2585), + [anon_sym_require_once] = ACTIONS(2585), + [anon_sym_BSLASH] = ACTIONS(2587), + [anon_sym_self] = ACTIONS(2585), + [anon_sym_parent] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_LT_LT_LT] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_echo] = ACTIONS(2585), + [anon_sym_unset] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_concurrent] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_elseif] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_foreach] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_using] = ACTIONS(2585), + [sym_float] = ACTIONS(2587), + [sym_integer] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_True] = ACTIONS(2585), + [anon_sym_TRUE] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_False] = ACTIONS(2585), + [anon_sym_FALSE] = ACTIONS(2585), + [anon_sym_null] = ACTIONS(2585), + [anon_sym_Null] = ACTIONS(2585), + [anon_sym_NULL] = ACTIONS(2585), + [sym_string] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_array] = ACTIONS(2585), + [anon_sym_varray] = ACTIONS(2585), + [anon_sym_darray] = ACTIONS(2585), + [anon_sym_vec] = ACTIONS(2585), + [anon_sym_dict] = ACTIONS(2585), + [anon_sym_keyset] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_list] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_abstract] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2587), + [sym_final_modifier] = ACTIONS(2585), + [sym_xhp_modifier] = ACTIONS(2585), + [sym_xhp_identifier] = ACTIONS(2585), + [sym_xhp_class_identifier] = ACTIONS(2587), [sym_comment] = ACTIONS(3), }, - [1086] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [980] = { + [sym_identifier] = ACTIONS(2389), + [sym_variable] = ACTIONS(2391), + [sym_pipe_variable] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_newtype] = ACTIONS(2389), + [anon_sym_shape] = ACTIONS(2389), + [anon_sym_tuple] = ACTIONS(2389), + [anon_sym_clone] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_print] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_include] = ACTIONS(2389), + [anon_sym_include_once] = ACTIONS(2389), + [anon_sym_require] = ACTIONS(2389), + [anon_sym_require_once] = ACTIONS(2389), + [anon_sym_BSLASH] = ACTIONS(2391), + [anon_sym_self] = ACTIONS(2389), + [anon_sym_parent] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(2389), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_echo] = ACTIONS(2389), + [anon_sym_unset] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_concurrent] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_elseif] = ACTIONS(2389), + [anon_sym_else] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_foreach] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [sym_float] = ACTIONS(2391), + [sym_integer] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_True] = ACTIONS(2389), + [anon_sym_TRUE] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_False] = ACTIONS(2389), + [anon_sym_FALSE] = ACTIONS(2389), + [anon_sym_null] = ACTIONS(2389), + [anon_sym_Null] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [sym_string] = ACTIONS(2391), + [anon_sym_AT] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_array] = ACTIONS(2389), + [anon_sym_varray] = ACTIONS(2389), + [anon_sym_darray] = ACTIONS(2389), + [anon_sym_vec] = ACTIONS(2389), + [anon_sym_dict] = ACTIONS(2389), + [anon_sym_keyset] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_interface] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_abstract] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2391), + [sym_final_modifier] = ACTIONS(2389), + [sym_xhp_modifier] = ACTIONS(2389), + [sym_xhp_identifier] = ACTIONS(2389), + [sym_xhp_class_identifier] = ACTIONS(2391), [sym_comment] = ACTIONS(3), }, - [1087] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [981] = { + [sym_identifier] = ACTIONS(2589), + [sym_variable] = ACTIONS(2591), + [sym_pipe_variable] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_newtype] = ACTIONS(2589), + [anon_sym_shape] = ACTIONS(2589), + [anon_sym_tuple] = ACTIONS(2589), + [anon_sym_clone] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_print] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_include] = ACTIONS(2589), + [anon_sym_include_once] = ACTIONS(2589), + [anon_sym_require] = ACTIONS(2589), + [anon_sym_require_once] = ACTIONS(2589), + [anon_sym_BSLASH] = ACTIONS(2591), + [anon_sym_self] = ACTIONS(2589), + [anon_sym_parent] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_echo] = ACTIONS(2589), + [anon_sym_unset] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_concurrent] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_elseif] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_foreach] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [sym_float] = ACTIONS(2591), + [sym_integer] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_True] = ACTIONS(2589), + [anon_sym_TRUE] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_False] = ACTIONS(2589), + [anon_sym_FALSE] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2589), + [anon_sym_Null] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [sym_string] = ACTIONS(2591), + [anon_sym_AT] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_array] = ACTIONS(2589), + [anon_sym_varray] = ACTIONS(2589), + [anon_sym_darray] = ACTIONS(2589), + [anon_sym_vec] = ACTIONS(2589), + [anon_sym_dict] = ACTIONS(2589), + [anon_sym_keyset] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_list] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_await] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_interface] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_abstract] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2591), + [sym_final_modifier] = ACTIONS(2589), + [sym_xhp_modifier] = ACTIONS(2589), + [sym_xhp_identifier] = ACTIONS(2589), + [sym_xhp_class_identifier] = ACTIONS(2591), [sym_comment] = ACTIONS(3), }, - [1088] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [982] = { + [sym_identifier] = ACTIONS(2593), + [sym_variable] = ACTIONS(2595), + [sym_pipe_variable] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_newtype] = ACTIONS(2593), + [anon_sym_shape] = ACTIONS(2593), + [anon_sym_tuple] = ACTIONS(2593), + [anon_sym_clone] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_include] = ACTIONS(2593), + [anon_sym_include_once] = ACTIONS(2593), + [anon_sym_require] = ACTIONS(2593), + [anon_sym_require_once] = ACTIONS(2593), + [anon_sym_BSLASH] = ACTIONS(2595), + [anon_sym_self] = ACTIONS(2593), + [anon_sym_parent] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_LT_LT] = ACTIONS(2593), + [anon_sym_LT_LT_LT] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_echo] = ACTIONS(2593), + [anon_sym_unset] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_concurrent] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_function] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_elseif] = ACTIONS(2593), + [anon_sym_else] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_foreach] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [sym_float] = ACTIONS(2595), + [sym_integer] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_True] = ACTIONS(2593), + [anon_sym_TRUE] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_False] = ACTIONS(2593), + [anon_sym_FALSE] = ACTIONS(2593), + [anon_sym_null] = ACTIONS(2593), + [anon_sym_Null] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [sym_string] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_array] = ACTIONS(2593), + [anon_sym_varray] = ACTIONS(2593), + [anon_sym_darray] = ACTIONS(2593), + [anon_sym_vec] = ACTIONS(2593), + [anon_sym_dict] = ACTIONS(2593), + [anon_sym_keyset] = ACTIONS(2593), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_list] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_await] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_interface] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(2595), + [sym_final_modifier] = ACTIONS(2593), + [sym_xhp_modifier] = ACTIONS(2593), + [sym_xhp_identifier] = ACTIONS(2593), + [sym_xhp_class_identifier] = ACTIONS(2595), [sym_comment] = ACTIONS(3), }, - [1089] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [983] = { + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_elseif] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, - [1090] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [984] = { + [sym_identifier] = ACTIONS(2377), + [sym_variable] = ACTIONS(2379), + [sym_pipe_variable] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_newtype] = ACTIONS(2377), + [anon_sym_shape] = ACTIONS(2377), + [anon_sym_tuple] = ACTIONS(2377), + [anon_sym_clone] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_print] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_include] = ACTIONS(2377), + [anon_sym_include_once] = ACTIONS(2377), + [anon_sym_require] = ACTIONS(2377), + [anon_sym_require_once] = ACTIONS(2377), + [anon_sym_BSLASH] = ACTIONS(2379), + [anon_sym_self] = ACTIONS(2377), + [anon_sym_parent] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_LT_LT_LT] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_echo] = ACTIONS(2377), + [anon_sym_unset] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_concurrent] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_function] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_elseif] = ACTIONS(2377), + [anon_sym_else] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_foreach] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [sym_float] = ACTIONS(2379), + [sym_integer] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_True] = ACTIONS(2377), + [anon_sym_TRUE] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_False] = ACTIONS(2377), + [anon_sym_FALSE] = ACTIONS(2377), + [anon_sym_null] = ACTIONS(2377), + [anon_sym_Null] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [sym_string] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_array] = ACTIONS(2377), + [anon_sym_varray] = ACTIONS(2377), + [anon_sym_darray] = ACTIONS(2377), + [anon_sym_vec] = ACTIONS(2377), + [anon_sym_dict] = ACTIONS(2377), + [anon_sym_keyset] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_list] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_abstract] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2379), + [sym_final_modifier] = ACTIONS(2377), + [sym_xhp_modifier] = ACTIONS(2377), + [sym_xhp_identifier] = ACTIONS(2377), + [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, - [1091] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [985] = { + [sym_identifier] = ACTIONS(2189), + [sym_variable] = ACTIONS(2191), + [sym_pipe_variable] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_newtype] = ACTIONS(2189), + [anon_sym_shape] = ACTIONS(2189), + [anon_sym_tuple] = ACTIONS(2189), + [anon_sym_clone] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_include] = ACTIONS(2189), + [anon_sym_include_once] = ACTIONS(2189), + [anon_sym_require] = ACTIONS(2189), + [anon_sym_require_once] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_self] = ACTIONS(2189), + [anon_sym_parent] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT_LT_LT] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_echo] = ACTIONS(2189), + [anon_sym_unset] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_concurrent] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_case] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_foreach] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [sym_float] = ACTIONS(2191), + [sym_integer] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_True] = ACTIONS(2189), + [anon_sym_TRUE] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_False] = ACTIONS(2189), + [anon_sym_FALSE] = ACTIONS(2189), + [anon_sym_null] = ACTIONS(2189), + [anon_sym_Null] = ACTIONS(2189), + [anon_sym_NULL] = ACTIONS(2189), + [sym_string] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_array] = ACTIONS(2189), + [anon_sym_varray] = ACTIONS(2189), + [anon_sym_darray] = ACTIONS(2189), + [anon_sym_vec] = ACTIONS(2189), + [anon_sym_dict] = ACTIONS(2189), + [anon_sym_keyset] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_list] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2191), + [sym_final_modifier] = ACTIONS(2189), + [sym_xhp_modifier] = ACTIONS(2189), + [sym_xhp_identifier] = ACTIONS(2189), + [sym_xhp_class_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(3), }, - [1092] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [986] = { + [sym_identifier] = ACTIONS(2597), + [sym_variable] = ACTIONS(2599), + [sym_pipe_variable] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_newtype] = ACTIONS(2597), + [anon_sym_shape] = ACTIONS(2597), + [anon_sym_tuple] = ACTIONS(2597), + [anon_sym_clone] = ACTIONS(2597), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_print] = ACTIONS(2597), + [anon_sym_namespace] = ACTIONS(2597), + [anon_sym_include] = ACTIONS(2597), + [anon_sym_include_once] = ACTIONS(2597), + [anon_sym_require] = ACTIONS(2597), + [anon_sym_require_once] = ACTIONS(2597), + [anon_sym_BSLASH] = ACTIONS(2599), + [anon_sym_self] = ACTIONS(2597), + [anon_sym_parent] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_LT_LT] = ACTIONS(2597), + [anon_sym_LT_LT_LT] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_throw] = ACTIONS(2597), + [anon_sym_echo] = ACTIONS(2597), + [anon_sym_unset] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_concurrent] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_elseif] = ACTIONS(2597), + [anon_sym_else] = ACTIONS(2597), + [anon_sym_switch] = ACTIONS(2597), + [anon_sym_foreach] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_using] = ACTIONS(2597), + [sym_float] = ACTIONS(2599), + [sym_integer] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_True] = ACTIONS(2597), + [anon_sym_TRUE] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_False] = ACTIONS(2597), + [anon_sym_FALSE] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2597), + [anon_sym_Null] = ACTIONS(2597), + [anon_sym_NULL] = ACTIONS(2597), + [sym_string] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_array] = ACTIONS(2597), + [anon_sym_varray] = ACTIONS(2597), + [anon_sym_darray] = ACTIONS(2597), + [anon_sym_vec] = ACTIONS(2597), + [anon_sym_dict] = ACTIONS(2597), + [anon_sym_keyset] = ACTIONS(2597), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_list] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_interface] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_abstract] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(2599), + [sym_final_modifier] = ACTIONS(2597), + [sym_xhp_modifier] = ACTIONS(2597), + [sym_xhp_identifier] = ACTIONS(2597), + [sym_xhp_class_identifier] = ACTIONS(2599), [sym_comment] = ACTIONS(3), }, - [1093] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [987] = { + [sym_identifier] = ACTIONS(2601), + [sym_variable] = ACTIONS(2603), + [sym_pipe_variable] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_newtype] = ACTIONS(2601), + [anon_sym_shape] = ACTIONS(2601), + [anon_sym_tuple] = ACTIONS(2601), + [anon_sym_clone] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_namespace] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_include_once] = ACTIONS(2601), + [anon_sym_require] = ACTIONS(2601), + [anon_sym_require_once] = ACTIONS(2601), + [anon_sym_BSLASH] = ACTIONS(2603), + [anon_sym_self] = ACTIONS(2601), + [anon_sym_parent] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_LT_LT] = ACTIONS(2601), + [anon_sym_LT_LT_LT] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_throw] = ACTIONS(2601), + [anon_sym_echo] = ACTIONS(2601), + [anon_sym_unset] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_concurrent] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_function] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_elseif] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_switch] = ACTIONS(2601), + [anon_sym_foreach] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_using] = ACTIONS(2601), + [sym_float] = ACTIONS(2603), + [sym_integer] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_True] = ACTIONS(2601), + [anon_sym_TRUE] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_False] = ACTIONS(2601), + [anon_sym_FALSE] = ACTIONS(2601), + [anon_sym_null] = ACTIONS(2601), + [anon_sym_Null] = ACTIONS(2601), + [anon_sym_NULL] = ACTIONS(2601), + [sym_string] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2603), + [anon_sym_array] = ACTIONS(2601), + [anon_sym_varray] = ACTIONS(2601), + [anon_sym_darray] = ACTIONS(2601), + [anon_sym_vec] = ACTIONS(2601), + [anon_sym_dict] = ACTIONS(2601), + [anon_sym_keyset] = ACTIONS(2601), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_list] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_interface] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_abstract] = ACTIONS(2601), + [anon_sym_POUND] = ACTIONS(2603), + [sym_final_modifier] = ACTIONS(2601), + [sym_xhp_modifier] = ACTIONS(2601), + [sym_xhp_identifier] = ACTIONS(2601), + [sym_xhp_class_identifier] = ACTIONS(2603), [sym_comment] = ACTIONS(3), }, - [1094] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [988] = { + [sym_identifier] = ACTIONS(2605), + [sym_variable] = ACTIONS(2607), + [sym_pipe_variable] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_newtype] = ACTIONS(2605), + [anon_sym_shape] = ACTIONS(2605), + [anon_sym_tuple] = ACTIONS(2605), + [anon_sym_clone] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_include] = ACTIONS(2605), + [anon_sym_include_once] = ACTIONS(2605), + [anon_sym_require] = ACTIONS(2605), + [anon_sym_require_once] = ACTIONS(2605), + [anon_sym_BSLASH] = ACTIONS(2607), + [anon_sym_self] = ACTIONS(2605), + [anon_sym_parent] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_LT_LT] = ACTIONS(2605), + [anon_sym_LT_LT_LT] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_echo] = ACTIONS(2605), + [anon_sym_unset] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_concurrent] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_elseif] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_foreach] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [sym_float] = ACTIONS(2607), + [sym_integer] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_True] = ACTIONS(2605), + [anon_sym_TRUE] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_False] = ACTIONS(2605), + [anon_sym_FALSE] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2605), + [anon_sym_Null] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [sym_string] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_array] = ACTIONS(2605), + [anon_sym_varray] = ACTIONS(2605), + [anon_sym_darray] = ACTIONS(2605), + [anon_sym_vec] = ACTIONS(2605), + [anon_sym_dict] = ACTIONS(2605), + [anon_sym_keyset] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_list] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_await] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_interface] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_abstract] = ACTIONS(2605), + [anon_sym_POUND] = ACTIONS(2607), + [sym_final_modifier] = ACTIONS(2605), + [sym_xhp_modifier] = ACTIONS(2605), + [sym_xhp_identifier] = ACTIONS(2605), + [sym_xhp_class_identifier] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + }, + [989] = { + [sym_identifier] = ACTIONS(2609), + [sym_variable] = ACTIONS(2611), + [sym_pipe_variable] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_newtype] = ACTIONS(2609), + [anon_sym_shape] = ACTIONS(2609), + [anon_sym_tuple] = ACTIONS(2609), + [anon_sym_clone] = ACTIONS(2609), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_print] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_include] = ACTIONS(2609), + [anon_sym_include_once] = ACTIONS(2609), + [anon_sym_require] = ACTIONS(2609), + [anon_sym_require_once] = ACTIONS(2609), + [anon_sym_BSLASH] = ACTIONS(2611), + [anon_sym_self] = ACTIONS(2609), + [anon_sym_parent] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_throw] = ACTIONS(2609), + [anon_sym_echo] = ACTIONS(2609), + [anon_sym_unset] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_concurrent] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_function] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_elseif] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2609), + [anon_sym_foreach] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_using] = ACTIONS(2609), + [sym_float] = ACTIONS(2611), + [sym_integer] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_True] = ACTIONS(2609), + [anon_sym_TRUE] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_False] = ACTIONS(2609), + [anon_sym_FALSE] = ACTIONS(2609), + [anon_sym_null] = ACTIONS(2609), + [anon_sym_Null] = ACTIONS(2609), + [anon_sym_NULL] = ACTIONS(2609), + [sym_string] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_array] = ACTIONS(2609), + [anon_sym_varray] = ACTIONS(2609), + [anon_sym_darray] = ACTIONS(2609), + [anon_sym_vec] = ACTIONS(2609), + [anon_sym_dict] = ACTIONS(2609), + [anon_sym_keyset] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_list] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_await] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_interface] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2609), + [anon_sym_POUND] = ACTIONS(2611), + [sym_final_modifier] = ACTIONS(2609), + [sym_xhp_modifier] = ACTIONS(2609), + [sym_xhp_identifier] = ACTIONS(2609), + [sym_xhp_class_identifier] = ACTIONS(2611), [sym_comment] = ACTIONS(3), }, - [1095] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [990] = { + [sym_identifier] = ACTIONS(2613), + [sym_variable] = ACTIONS(2615), + [sym_pipe_variable] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_newtype] = ACTIONS(2613), + [anon_sym_shape] = ACTIONS(2613), + [anon_sym_tuple] = ACTIONS(2613), + [anon_sym_clone] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2613), + [anon_sym_print] = ACTIONS(2613), + [anon_sym_namespace] = ACTIONS(2613), + [anon_sym_include] = ACTIONS(2613), + [anon_sym_include_once] = ACTIONS(2613), + [anon_sym_require] = ACTIONS(2613), + [anon_sym_require_once] = ACTIONS(2613), + [anon_sym_BSLASH] = ACTIONS(2615), + [anon_sym_self] = ACTIONS(2613), + [anon_sym_parent] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_throw] = ACTIONS(2613), + [anon_sym_echo] = ACTIONS(2613), + [anon_sym_unset] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_concurrent] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_function] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_elseif] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2613), + [anon_sym_switch] = ACTIONS(2613), + [anon_sym_foreach] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [anon_sym_using] = ACTIONS(2613), + [sym_float] = ACTIONS(2615), + [sym_integer] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_True] = ACTIONS(2613), + [anon_sym_TRUE] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_False] = ACTIONS(2613), + [anon_sym_FALSE] = ACTIONS(2613), + [anon_sym_null] = ACTIONS(2613), + [anon_sym_Null] = ACTIONS(2613), + [anon_sym_NULL] = ACTIONS(2613), + [sym_string] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_array] = ACTIONS(2613), + [anon_sym_varray] = ACTIONS(2613), + [anon_sym_darray] = ACTIONS(2613), + [anon_sym_vec] = ACTIONS(2613), + [anon_sym_dict] = ACTIONS(2613), + [anon_sym_keyset] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_list] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_await] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_interface] = ACTIONS(2613), + [anon_sym_class] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_abstract] = ACTIONS(2613), + [anon_sym_POUND] = ACTIONS(2615), + [sym_final_modifier] = ACTIONS(2613), + [sym_xhp_modifier] = ACTIONS(2613), + [sym_xhp_identifier] = ACTIONS(2613), + [sym_xhp_class_identifier] = ACTIONS(2615), [sym_comment] = ACTIONS(3), }, - [1096] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [991] = { + [sym_identifier] = ACTIONS(2541), + [sym_variable] = ACTIONS(2543), + [sym_pipe_variable] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_newtype] = ACTIONS(2541), + [anon_sym_shape] = ACTIONS(2541), + [anon_sym_tuple] = ACTIONS(2541), + [anon_sym_clone] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_include] = ACTIONS(2541), + [anon_sym_include_once] = ACTIONS(2541), + [anon_sym_require] = ACTIONS(2541), + [anon_sym_require_once] = ACTIONS(2541), + [anon_sym_BSLASH] = ACTIONS(2543), + [anon_sym_self] = ACTIONS(2541), + [anon_sym_parent] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_LT_LT] = ACTIONS(2541), + [anon_sym_LT_LT_LT] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_echo] = ACTIONS(2541), + [anon_sym_unset] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_concurrent] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_foreach] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [sym_float] = ACTIONS(2543), + [sym_integer] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_True] = ACTIONS(2541), + [anon_sym_TRUE] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_False] = ACTIONS(2541), + [anon_sym_FALSE] = ACTIONS(2541), + [anon_sym_null] = ACTIONS(2541), + [anon_sym_Null] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [sym_string] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_array] = ACTIONS(2541), + [anon_sym_varray] = ACTIONS(2541), + [anon_sym_darray] = ACTIONS(2541), + [anon_sym_vec] = ACTIONS(2541), + [anon_sym_dict] = ACTIONS(2541), + [anon_sym_keyset] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_list] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2543), + [sym_final_modifier] = ACTIONS(2541), + [sym_xhp_modifier] = ACTIONS(2541), + [sym_xhp_identifier] = ACTIONS(2541), + [sym_xhp_class_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(3), }, - [1097] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [992] = { + [sym_identifier] = ACTIONS(2493), + [sym_variable] = ACTIONS(2495), + [sym_pipe_variable] = ACTIONS(2495), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_newtype] = ACTIONS(2493), + [anon_sym_shape] = ACTIONS(2493), + [anon_sym_tuple] = ACTIONS(2493), + [anon_sym_clone] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_include] = ACTIONS(2493), + [anon_sym_include_once] = ACTIONS(2493), + [anon_sym_require] = ACTIONS(2493), + [anon_sym_require_once] = ACTIONS(2493), + [anon_sym_BSLASH] = ACTIONS(2495), + [anon_sym_self] = ACTIONS(2493), + [anon_sym_parent] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_LT_LT] = ACTIONS(2493), + [anon_sym_LT_LT_LT] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_echo] = ACTIONS(2493), + [anon_sym_unset] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_concurrent] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_function] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_elseif] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_foreach] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [sym_float] = ACTIONS(2495), + [sym_integer] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_True] = ACTIONS(2493), + [anon_sym_TRUE] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_False] = ACTIONS(2493), + [anon_sym_FALSE] = ACTIONS(2493), + [anon_sym_null] = ACTIONS(2493), + [anon_sym_Null] = ACTIONS(2493), + [anon_sym_NULL] = ACTIONS(2493), + [sym_string] = ACTIONS(2495), + [anon_sym_AT] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_array] = ACTIONS(2493), + [anon_sym_varray] = ACTIONS(2493), + [anon_sym_darray] = ACTIONS(2493), + [anon_sym_vec] = ACTIONS(2493), + [anon_sym_dict] = ACTIONS(2493), + [anon_sym_keyset] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_interface] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_abstract] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2495), + [sym_final_modifier] = ACTIONS(2493), + [sym_xhp_modifier] = ACTIONS(2493), + [sym_xhp_identifier] = ACTIONS(2493), + [sym_xhp_class_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(3), }, - [1098] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [993] = { + [sym_identifier] = ACTIONS(2277), + [sym_variable] = ACTIONS(2279), + [sym_pipe_variable] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_newtype] = ACTIONS(2277), + [anon_sym_shape] = ACTIONS(2277), + [anon_sym_tuple] = ACTIONS(2277), + [anon_sym_clone] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2277), + [anon_sym_include] = ACTIONS(2277), + [anon_sym_include_once] = ACTIONS(2277), + [anon_sym_require] = ACTIONS(2277), + [anon_sym_require_once] = ACTIONS(2277), + [anon_sym_BSLASH] = ACTIONS(2279), + [anon_sym_self] = ACTIONS(2277), + [anon_sym_parent] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_LT_LT_LT] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_throw] = ACTIONS(2277), + [anon_sym_echo] = ACTIONS(2277), + [anon_sym_unset] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_concurrent] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_function] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_switch] = ACTIONS(2277), + [anon_sym_case] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_foreach] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_using] = ACTIONS(2277), + [sym_float] = ACTIONS(2279), + [sym_integer] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_True] = ACTIONS(2277), + [anon_sym_TRUE] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_False] = ACTIONS(2277), + [anon_sym_FALSE] = ACTIONS(2277), + [anon_sym_null] = ACTIONS(2277), + [anon_sym_Null] = ACTIONS(2277), + [anon_sym_NULL] = ACTIONS(2277), + [sym_string] = ACTIONS(2279), + [anon_sym_AT] = ACTIONS(2279), + [anon_sym_TILDE] = ACTIONS(2279), + [anon_sym_array] = ACTIONS(2277), + [anon_sym_varray] = ACTIONS(2277), + [anon_sym_darray] = ACTIONS(2277), + [anon_sym_vec] = ACTIONS(2277), + [anon_sym_dict] = ACTIONS(2277), + [anon_sym_keyset] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_PLUS_PLUS] = ACTIONS(2279), + [anon_sym_DASH_DASH] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_interface] = ACTIONS(2277), + [anon_sym_class] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_abstract] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(2279), + [sym_final_modifier] = ACTIONS(2277), + [sym_xhp_modifier] = ACTIONS(2277), + [sym_xhp_identifier] = ACTIONS(2277), + [sym_xhp_class_identifier] = ACTIONS(2279), [sym_comment] = ACTIONS(3), }, - [1099] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [994] = { + [sym_identifier] = ACTIONS(2177), + [sym_variable] = ACTIONS(2179), + [sym_pipe_variable] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_newtype] = ACTIONS(2177), + [anon_sym_shape] = ACTIONS(2177), + [anon_sym_tuple] = ACTIONS(2177), + [anon_sym_clone] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2177), + [anon_sym_print] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2177), + [anon_sym_include] = ACTIONS(2177), + [anon_sym_include_once] = ACTIONS(2177), + [anon_sym_require] = ACTIONS(2177), + [anon_sym_require_once] = ACTIONS(2177), + [anon_sym_BSLASH] = ACTIONS(2179), + [anon_sym_self] = ACTIONS(2177), + [anon_sym_parent] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_LT_LT_LT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_throw] = ACTIONS(2177), + [anon_sym_echo] = ACTIONS(2177), + [anon_sym_unset] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_concurrent] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_function] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_switch] = ACTIONS(2177), + [anon_sym_case] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_foreach] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_using] = ACTIONS(2177), + [sym_float] = ACTIONS(2179), + [sym_integer] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_True] = ACTIONS(2177), + [anon_sym_TRUE] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_False] = ACTIONS(2177), + [anon_sym_FALSE] = ACTIONS(2177), + [anon_sym_null] = ACTIONS(2177), + [anon_sym_Null] = ACTIONS(2177), + [anon_sym_NULL] = ACTIONS(2177), + [sym_string] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_array] = ACTIONS(2177), + [anon_sym_varray] = ACTIONS(2177), + [anon_sym_darray] = ACTIONS(2177), + [anon_sym_vec] = ACTIONS(2177), + [anon_sym_dict] = ACTIONS(2177), + [anon_sym_keyset] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_list] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_PLUS_PLUS] = ACTIONS(2179), + [anon_sym_DASH_DASH] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2177), + [anon_sym_class] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_abstract] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2179), + [sym_final_modifier] = ACTIONS(2177), + [sym_xhp_modifier] = ACTIONS(2177), + [sym_xhp_identifier] = ACTIONS(2177), + [sym_xhp_class_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(3), }, - [1100] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [995] = { + [sym_identifier] = ACTIONS(2321), + [sym_variable] = ACTIONS(2323), + [sym_pipe_variable] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_newtype] = ACTIONS(2321), + [anon_sym_shape] = ACTIONS(2321), + [anon_sym_tuple] = ACTIONS(2321), + [anon_sym_clone] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_include] = ACTIONS(2321), + [anon_sym_include_once] = ACTIONS(2321), + [anon_sym_require] = ACTIONS(2321), + [anon_sym_require_once] = ACTIONS(2321), + [anon_sym_BSLASH] = ACTIONS(2323), + [anon_sym_self] = ACTIONS(2321), + [anon_sym_parent] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_LT_LT_LT] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_echo] = ACTIONS(2321), + [anon_sym_unset] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_concurrent] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [sym_float] = ACTIONS(2323), + [sym_integer] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_True] = ACTIONS(2321), + [anon_sym_TRUE] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_False] = ACTIONS(2321), + [anon_sym_FALSE] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [anon_sym_Null] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [sym_string] = ACTIONS(2323), + [anon_sym_AT] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_array] = ACTIONS(2321), + [anon_sym_varray] = ACTIONS(2321), + [anon_sym_darray] = ACTIONS(2321), + [anon_sym_vec] = ACTIONS(2321), + [anon_sym_dict] = ACTIONS(2321), + [anon_sym_keyset] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_list] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [sym_final_modifier] = ACTIONS(2321), + [sym_xhp_modifier] = ACTIONS(2321), + [sym_xhp_identifier] = ACTIONS(2321), + [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [1101] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [996] = { + [sym_identifier] = ACTIONS(2193), + [sym_variable] = ACTIONS(2195), + [sym_pipe_variable] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_newtype] = ACTIONS(2193), + [anon_sym_shape] = ACTIONS(2193), + [anon_sym_tuple] = ACTIONS(2193), + [anon_sym_clone] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_print] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_include] = ACTIONS(2193), + [anon_sym_include_once] = ACTIONS(2193), + [anon_sym_require] = ACTIONS(2193), + [anon_sym_require_once] = ACTIONS(2193), + [anon_sym_BSLASH] = ACTIONS(2195), + [anon_sym_self] = ACTIONS(2193), + [anon_sym_parent] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_LT_LT_LT] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_echo] = ACTIONS(2193), + [anon_sym_unset] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_concurrent] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_foreach] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [sym_float] = ACTIONS(2195), + [sym_integer] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_True] = ACTIONS(2193), + [anon_sym_TRUE] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_False] = ACTIONS(2193), + [anon_sym_FALSE] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [anon_sym_Null] = ACTIONS(2193), + [anon_sym_NULL] = ACTIONS(2193), + [sym_string] = ACTIONS(2195), + [anon_sym_AT] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_array] = ACTIONS(2193), + [anon_sym_varray] = ACTIONS(2193), + [anon_sym_darray] = ACTIONS(2193), + [anon_sym_vec] = ACTIONS(2193), + [anon_sym_dict] = ACTIONS(2193), + [anon_sym_keyset] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_list] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2195), + [sym_final_modifier] = ACTIONS(2193), + [sym_xhp_modifier] = ACTIONS(2193), + [sym_xhp_identifier] = ACTIONS(2193), + [sym_xhp_class_identifier] = ACTIONS(2195), [sym_comment] = ACTIONS(3), }, - [1102] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [997] = { + [sym_identifier] = ACTIONS(2449), + [sym_variable] = ACTIONS(2451), + [sym_pipe_variable] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_newtype] = ACTIONS(2449), + [anon_sym_shape] = ACTIONS(2449), + [anon_sym_tuple] = ACTIONS(2449), + [anon_sym_clone] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_print] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_include] = ACTIONS(2449), + [anon_sym_include_once] = ACTIONS(2449), + [anon_sym_require] = ACTIONS(2449), + [anon_sym_require_once] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2451), + [anon_sym_self] = ACTIONS(2449), + [anon_sym_parent] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_LT_LT_LT] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_echo] = ACTIONS(2449), + [anon_sym_unset] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_concurrent] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_case] = ACTIONS(2449), + [anon_sym_default] = ACTIONS(2449), + [anon_sym_foreach] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [sym_float] = ACTIONS(2451), + [sym_integer] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_True] = ACTIONS(2449), + [anon_sym_TRUE] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_False] = ACTIONS(2449), + [anon_sym_FALSE] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [anon_sym_Null] = ACTIONS(2449), + [anon_sym_NULL] = ACTIONS(2449), + [sym_string] = ACTIONS(2451), + [anon_sym_AT] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_array] = ACTIONS(2449), + [anon_sym_varray] = ACTIONS(2449), + [anon_sym_darray] = ACTIONS(2449), + [anon_sym_vec] = ACTIONS(2449), + [anon_sym_dict] = ACTIONS(2449), + [anon_sym_keyset] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_await] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_abstract] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2451), + [sym_final_modifier] = ACTIONS(2449), + [sym_xhp_modifier] = ACTIONS(2449), + [sym_xhp_identifier] = ACTIONS(2449), + [sym_xhp_class_identifier] = ACTIONS(2451), [sym_comment] = ACTIONS(3), }, - [1103] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_case] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [998] = { + [sym_identifier] = ACTIONS(2489), + [sym_variable] = ACTIONS(2491), + [sym_pipe_variable] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_newtype] = ACTIONS(2489), + [anon_sym_shape] = ACTIONS(2489), + [anon_sym_tuple] = ACTIONS(2489), + [anon_sym_clone] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_print] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_include] = ACTIONS(2489), + [anon_sym_include_once] = ACTIONS(2489), + [anon_sym_require] = ACTIONS(2489), + [anon_sym_require_once] = ACTIONS(2489), + [anon_sym_BSLASH] = ACTIONS(2491), + [anon_sym_self] = ACTIONS(2489), + [anon_sym_parent] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_LT_LT_LT] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_echo] = ACTIONS(2489), + [anon_sym_unset] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_concurrent] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_elseif] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_foreach] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [sym_float] = ACTIONS(2491), + [sym_integer] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_True] = ACTIONS(2489), + [anon_sym_TRUE] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_False] = ACTIONS(2489), + [anon_sym_FALSE] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [anon_sym_Null] = ACTIONS(2489), + [anon_sym_NULL] = ACTIONS(2489), + [sym_string] = ACTIONS(2491), + [anon_sym_AT] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_array] = ACTIONS(2489), + [anon_sym_varray] = ACTIONS(2489), + [anon_sym_darray] = ACTIONS(2489), + [anon_sym_vec] = ACTIONS(2489), + [anon_sym_dict] = ACTIONS(2489), + [anon_sym_keyset] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2491), + [sym_final_modifier] = ACTIONS(2489), + [sym_xhp_modifier] = ACTIONS(2489), + [sym_xhp_identifier] = ACTIONS(2489), + [sym_xhp_class_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(3), }, - [1104] = { - [sym_identifier] = ACTIONS(2577), - [sym_variable] = ACTIONS(2579), - [sym_pipe_variable] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_newtype] = ACTIONS(2577), - [anon_sym_shape] = ACTIONS(2577), - [anon_sym_tuple] = ACTIONS(2577), - [anon_sym_clone] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_include] = ACTIONS(2577), - [anon_sym_include_once] = ACTIONS(2577), - [anon_sym_require] = ACTIONS(2577), - [anon_sym_require_once] = ACTIONS(2577), - [anon_sym_BSLASH] = ACTIONS(2579), - [anon_sym_self] = ACTIONS(2577), - [anon_sym_parent] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_LT_LT_LT] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_echo] = ACTIONS(2577), - [anon_sym_unset] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_concurrent] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_foreach] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [sym_float] = ACTIONS(2579), - [sym_integer] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_True] = ACTIONS(2577), - [anon_sym_TRUE] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_False] = ACTIONS(2577), - [anon_sym_FALSE] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2577), - [anon_sym_Null] = ACTIONS(2577), - [anon_sym_NULL] = ACTIONS(2577), - [sym_string] = ACTIONS(2579), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_array] = ACTIONS(2577), - [anon_sym_varray] = ACTIONS(2577), - [anon_sym_darray] = ACTIONS(2577), - [anon_sym_vec] = ACTIONS(2577), - [anon_sym_dict] = ACTIONS(2577), - [anon_sym_keyset] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_list] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_trait] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2579), - [sym_final_modifier] = ACTIONS(2577), - [sym_xhp_modifier] = ACTIONS(2577), - [sym_xhp_identifier] = ACTIONS(2577), - [sym_xhp_class_identifier] = ACTIONS(2579), + [999] = { + [sym_identifier] = ACTIONS(2465), + [sym_variable] = ACTIONS(2467), + [sym_pipe_variable] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_newtype] = ACTIONS(2465), + [anon_sym_shape] = ACTIONS(2465), + [anon_sym_tuple] = ACTIONS(2465), + [anon_sym_clone] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_include_once] = ACTIONS(2465), + [anon_sym_require] = ACTIONS(2465), + [anon_sym_require_once] = ACTIONS(2465), + [anon_sym_BSLASH] = ACTIONS(2467), + [anon_sym_self] = ACTIONS(2465), + [anon_sym_parent] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_LT_LT_LT] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_echo] = ACTIONS(2465), + [anon_sym_unset] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_concurrent] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_function] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_foreach] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [sym_float] = ACTIONS(2467), + [sym_integer] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_True] = ACTIONS(2465), + [anon_sym_TRUE] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_False] = ACTIONS(2465), + [anon_sym_FALSE] = ACTIONS(2465), + [anon_sym_null] = ACTIONS(2465), + [anon_sym_Null] = ACTIONS(2465), + [anon_sym_NULL] = ACTIONS(2465), + [sym_string] = ACTIONS(2467), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_array] = ACTIONS(2465), + [anon_sym_varray] = ACTIONS(2465), + [anon_sym_darray] = ACTIONS(2465), + [anon_sym_vec] = ACTIONS(2465), + [anon_sym_dict] = ACTIONS(2465), + [anon_sym_keyset] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_abstract] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2467), + [sym_final_modifier] = ACTIONS(2465), + [sym_xhp_modifier] = ACTIONS(2465), + [sym_xhp_identifier] = ACTIONS(2465), + [sym_xhp_class_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(3), }, - [1105] = { - [sym_identifier] = ACTIONS(2573), - [sym_variable] = ACTIONS(2575), - [sym_pipe_variable] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_newtype] = ACTIONS(2573), - [anon_sym_shape] = ACTIONS(2573), - [anon_sym_tuple] = ACTIONS(2573), - [anon_sym_clone] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_print] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_include] = ACTIONS(2573), - [anon_sym_include_once] = ACTIONS(2573), - [anon_sym_require] = ACTIONS(2573), - [anon_sym_require_once] = ACTIONS(2573), - [anon_sym_BSLASH] = ACTIONS(2575), - [anon_sym_self] = ACTIONS(2573), - [anon_sym_parent] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_LT_LT_LT] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_echo] = ACTIONS(2573), - [anon_sym_unset] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_concurrent] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_foreach] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [sym_float] = ACTIONS(2575), - [sym_integer] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2573), - [anon_sym_True] = ACTIONS(2573), - [anon_sym_TRUE] = ACTIONS(2573), - [anon_sym_false] = ACTIONS(2573), - [anon_sym_False] = ACTIONS(2573), - [anon_sym_FALSE] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2573), - [anon_sym_Null] = ACTIONS(2573), - [anon_sym_NULL] = ACTIONS(2573), - [sym_string] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_array] = ACTIONS(2573), - [anon_sym_varray] = ACTIONS(2573), - [anon_sym_darray] = ACTIONS(2573), - [anon_sym_vec] = ACTIONS(2573), - [anon_sym_dict] = ACTIONS(2573), - [anon_sym_keyset] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_list] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_trait] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2575), - [sym_final_modifier] = ACTIONS(2573), - [sym_xhp_modifier] = ACTIONS(2573), - [sym_xhp_identifier] = ACTIONS(2573), - [sym_xhp_class_identifier] = ACTIONS(2575), + [1000] = { + [sym_identifier] = ACTIONS(2325), + [sym_variable] = ACTIONS(2327), + [sym_pipe_variable] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_newtype] = ACTIONS(2325), + [anon_sym_shape] = ACTIONS(2325), + [anon_sym_tuple] = ACTIONS(2325), + [anon_sym_clone] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_print] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_include] = ACTIONS(2325), + [anon_sym_include_once] = ACTIONS(2325), + [anon_sym_require] = ACTIONS(2325), + [anon_sym_require_once] = ACTIONS(2325), + [anon_sym_BSLASH] = ACTIONS(2327), + [anon_sym_self] = ACTIONS(2325), + [anon_sym_parent] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_LT_LT] = ACTIONS(2325), + [anon_sym_LT_LT_LT] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_echo] = ACTIONS(2325), + [anon_sym_unset] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_concurrent] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_function] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_case] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_foreach] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [sym_float] = ACTIONS(2327), + [sym_integer] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_True] = ACTIONS(2325), + [anon_sym_TRUE] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_False] = ACTIONS(2325), + [anon_sym_FALSE] = ACTIONS(2325), + [anon_sym_null] = ACTIONS(2325), + [anon_sym_Null] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [sym_string] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_array] = ACTIONS(2325), + [anon_sym_varray] = ACTIONS(2325), + [anon_sym_darray] = ACTIONS(2325), + [anon_sym_vec] = ACTIONS(2325), + [anon_sym_dict] = ACTIONS(2325), + [anon_sym_keyset] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_list] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_interface] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2327), + [sym_final_modifier] = ACTIONS(2325), + [sym_xhp_modifier] = ACTIONS(2325), + [sym_xhp_identifier] = ACTIONS(2325), + [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [1106] = { - [sym_identifier] = ACTIONS(2569), - [sym_variable] = ACTIONS(2571), - [sym_pipe_variable] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_newtype] = ACTIONS(2569), - [anon_sym_shape] = ACTIONS(2569), - [anon_sym_tuple] = ACTIONS(2569), - [anon_sym_clone] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_print] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_include] = ACTIONS(2569), - [anon_sym_include_once] = ACTIONS(2569), - [anon_sym_require] = ACTIONS(2569), - [anon_sym_require_once] = ACTIONS(2569), - [anon_sym_BSLASH] = ACTIONS(2571), - [anon_sym_self] = ACTIONS(2569), - [anon_sym_parent] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2569), - [anon_sym_LT_LT_LT] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_echo] = ACTIONS(2569), - [anon_sym_unset] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_concurrent] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_case] = ACTIONS(2569), - [anon_sym_default] = ACTIONS(2569), - [anon_sym_foreach] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [sym_float] = ACTIONS(2571), - [sym_integer] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_True] = ACTIONS(2569), - [anon_sym_TRUE] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [anon_sym_False] = ACTIONS(2569), - [anon_sym_FALSE] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2569), - [anon_sym_Null] = ACTIONS(2569), - [anon_sym_NULL] = ACTIONS(2569), - [sym_string] = ACTIONS(2571), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_array] = ACTIONS(2569), - [anon_sym_varray] = ACTIONS(2569), - [anon_sym_darray] = ACTIONS(2569), - [anon_sym_vec] = ACTIONS(2569), - [anon_sym_dict] = ACTIONS(2569), - [anon_sym_keyset] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_trait] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2571), - [sym_final_modifier] = ACTIONS(2569), - [sym_xhp_modifier] = ACTIONS(2569), - [sym_xhp_identifier] = ACTIONS(2569), - [sym_xhp_class_identifier] = ACTIONS(2571), + [1001] = { + [sym_identifier] = ACTIONS(2457), + [sym_variable] = ACTIONS(2459), + [sym_pipe_variable] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_newtype] = ACTIONS(2457), + [anon_sym_shape] = ACTIONS(2457), + [anon_sym_tuple] = ACTIONS(2457), + [anon_sym_clone] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_print] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_include] = ACTIONS(2457), + [anon_sym_include_once] = ACTIONS(2457), + [anon_sym_require] = ACTIONS(2457), + [anon_sym_require_once] = ACTIONS(2457), + [anon_sym_BSLASH] = ACTIONS(2459), + [anon_sym_self] = ACTIONS(2457), + [anon_sym_parent] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_LT_LT_LT] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_echo] = ACTIONS(2457), + [anon_sym_unset] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_concurrent] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_elseif] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_foreach] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_integer] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_True] = ACTIONS(2457), + [anon_sym_TRUE] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_False] = ACTIONS(2457), + [anon_sym_FALSE] = ACTIONS(2457), + [anon_sym_null] = ACTIONS(2457), + [anon_sym_Null] = ACTIONS(2457), + [anon_sym_NULL] = ACTIONS(2457), + [sym_string] = ACTIONS(2459), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_array] = ACTIONS(2457), + [anon_sym_varray] = ACTIONS(2457), + [anon_sym_darray] = ACTIONS(2457), + [anon_sym_vec] = ACTIONS(2457), + [anon_sym_dict] = ACTIONS(2457), + [anon_sym_keyset] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2459), + [sym_final_modifier] = ACTIONS(2457), + [sym_xhp_modifier] = ACTIONS(2457), + [sym_xhp_identifier] = ACTIONS(2457), + [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, - [1107] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1002] = { + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_elseif] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [1108] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1003] = { + [sym_identifier] = ACTIONS(2449), + [sym_variable] = ACTIONS(2451), + [sym_pipe_variable] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_newtype] = ACTIONS(2449), + [anon_sym_shape] = ACTIONS(2449), + [anon_sym_tuple] = ACTIONS(2449), + [anon_sym_clone] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_print] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_include] = ACTIONS(2449), + [anon_sym_include_once] = ACTIONS(2449), + [anon_sym_require] = ACTIONS(2449), + [anon_sym_require_once] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2451), + [anon_sym_self] = ACTIONS(2449), + [anon_sym_parent] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_LT_LT_LT] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_echo] = ACTIONS(2449), + [anon_sym_unset] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_concurrent] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_foreach] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [sym_float] = ACTIONS(2451), + [sym_integer] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_True] = ACTIONS(2449), + [anon_sym_TRUE] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_False] = ACTIONS(2449), + [anon_sym_FALSE] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [anon_sym_Null] = ACTIONS(2449), + [anon_sym_NULL] = ACTIONS(2449), + [sym_string] = ACTIONS(2451), + [anon_sym_AT] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_array] = ACTIONS(2449), + [anon_sym_varray] = ACTIONS(2449), + [anon_sym_darray] = ACTIONS(2449), + [anon_sym_vec] = ACTIONS(2449), + [anon_sym_dict] = ACTIONS(2449), + [anon_sym_keyset] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_await] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_abstract] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2451), + [sym_final_modifier] = ACTIONS(2449), + [sym_xhp_modifier] = ACTIONS(2449), + [sym_xhp_identifier] = ACTIONS(2449), + [sym_xhp_class_identifier] = ACTIONS(2451), [sym_comment] = ACTIONS(3), }, - [1109] = { - [sym_identifier] = ACTIONS(2557), - [sym_variable] = ACTIONS(2559), - [sym_pipe_variable] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_newtype] = ACTIONS(2557), - [anon_sym_shape] = ACTIONS(2557), - [anon_sym_tuple] = ACTIONS(2557), - [anon_sym_clone] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_print] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_LT_LT] = ACTIONS(2557), - [anon_sym_LT_LT_LT] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_echo] = ACTIONS(2557), - [anon_sym_unset] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_concurrent] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_foreach] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [sym_float] = ACTIONS(2559), - [sym_integer] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_True] = ACTIONS(2557), - [anon_sym_TRUE] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_False] = ACTIONS(2557), - [anon_sym_FALSE] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2557), - [anon_sym_Null] = ACTIONS(2557), - [anon_sym_NULL] = ACTIONS(2557), - [sym_string] = ACTIONS(2559), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_array] = ACTIONS(2557), - [anon_sym_varray] = ACTIONS(2557), - [anon_sym_darray] = ACTIONS(2557), - [anon_sym_vec] = ACTIONS(2557), - [anon_sym_dict] = ACTIONS(2557), - [anon_sym_keyset] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_trait] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2559), - [sym_final_modifier] = ACTIONS(2557), - [sym_xhp_modifier] = ACTIONS(2557), - [sym_xhp_identifier] = ACTIONS(2557), - [sym_xhp_class_identifier] = ACTIONS(2559), + [1004] = { + [sym_identifier] = ACTIONS(2197), + [sym_variable] = ACTIONS(2199), + [sym_pipe_variable] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_newtype] = ACTIONS(2197), + [anon_sym_shape] = ACTIONS(2197), + [anon_sym_tuple] = ACTIONS(2197), + [anon_sym_clone] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_print] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_include] = ACTIONS(2197), + [anon_sym_include_once] = ACTIONS(2197), + [anon_sym_require] = ACTIONS(2197), + [anon_sym_require_once] = ACTIONS(2197), + [anon_sym_BSLASH] = ACTIONS(2199), + [anon_sym_self] = ACTIONS(2197), + [anon_sym_parent] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_LT_LT_LT] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_echo] = ACTIONS(2197), + [anon_sym_unset] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_concurrent] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_foreach] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [sym_float] = ACTIONS(2199), + [sym_integer] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_True] = ACTIONS(2197), + [anon_sym_TRUE] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_False] = ACTIONS(2197), + [anon_sym_FALSE] = ACTIONS(2197), + [anon_sym_null] = ACTIONS(2197), + [anon_sym_Null] = ACTIONS(2197), + [anon_sym_NULL] = ACTIONS(2197), + [sym_string] = ACTIONS(2199), + [anon_sym_AT] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_array] = ACTIONS(2197), + [anon_sym_varray] = ACTIONS(2197), + [anon_sym_darray] = ACTIONS(2197), + [anon_sym_vec] = ACTIONS(2197), + [anon_sym_dict] = ACTIONS(2197), + [anon_sym_keyset] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_list] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2199), + [sym_final_modifier] = ACTIONS(2197), + [sym_xhp_modifier] = ACTIONS(2197), + [sym_xhp_identifier] = ACTIONS(2197), + [sym_xhp_class_identifier] = ACTIONS(2199), [sym_comment] = ACTIONS(3), }, - [1110] = { - [sym_identifier] = ACTIONS(2553), - [sym_variable] = ACTIONS(2555), - [sym_pipe_variable] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2553), - [anon_sym_newtype] = ACTIONS(2553), - [anon_sym_shape] = ACTIONS(2553), - [anon_sym_tuple] = ACTIONS(2553), - [anon_sym_clone] = ACTIONS(2553), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_namespace] = ACTIONS(2553), - [anon_sym_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_LT_LT] = ACTIONS(2553), - [anon_sym_LT_LT_LT] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_throw] = ACTIONS(2553), - [anon_sym_echo] = ACTIONS(2553), - [anon_sym_unset] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_concurrent] = ACTIONS(2553), - [anon_sym_use] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_foreach] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(2553), - [sym_float] = ACTIONS(2555), - [sym_integer] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_True] = ACTIONS(2553), - [anon_sym_TRUE] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_False] = ACTIONS(2553), - [anon_sym_FALSE] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_Null] = ACTIONS(2553), - [anon_sym_NULL] = ACTIONS(2553), - [sym_string] = ACTIONS(2555), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_array] = ACTIONS(2553), - [anon_sym_varray] = ACTIONS(2553), - [anon_sym_darray] = ACTIONS(2553), - [anon_sym_vec] = ACTIONS(2553), - [anon_sym_dict] = ACTIONS(2553), - [anon_sym_keyset] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_trait] = ACTIONS(2553), - [anon_sym_interface] = ACTIONS(2553), - [anon_sym_class] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2555), - [sym_final_modifier] = ACTIONS(2553), - [sym_xhp_modifier] = ACTIONS(2553), - [sym_xhp_identifier] = ACTIONS(2553), - [sym_xhp_class_identifier] = ACTIONS(2555), + [1005] = { + [ts_builtin_sym_end] = ACTIONS(2567), + [sym_identifier] = ACTIONS(2565), + [sym_variable] = ACTIONS(2567), + [sym_pipe_variable] = ACTIONS(2567), + [anon_sym_type] = ACTIONS(2565), + [anon_sym_newtype] = ACTIONS(2565), + [anon_sym_shape] = ACTIONS(2565), + [anon_sym_tuple] = ACTIONS(2565), + [anon_sym_clone] = ACTIONS(2565), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_print] = ACTIONS(2565), + [anon_sym_namespace] = ACTIONS(2565), + [anon_sym_include] = ACTIONS(2565), + [anon_sym_include_once] = ACTIONS(2565), + [anon_sym_require] = ACTIONS(2565), + [anon_sym_require_once] = ACTIONS(2565), + [anon_sym_BSLASH] = ACTIONS(2567), + [anon_sym_self] = ACTIONS(2565), + [anon_sym_parent] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2565), + [anon_sym_LT_LT] = ACTIONS(2565), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_throw] = ACTIONS(2565), + [anon_sym_echo] = ACTIONS(2565), + [anon_sym_unset] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_concurrent] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_function] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_elseif] = ACTIONS(2565), + [anon_sym_else] = ACTIONS(2565), + [anon_sym_switch] = ACTIONS(2565), + [anon_sym_foreach] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_do] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [anon_sym_using] = ACTIONS(2565), + [sym_float] = ACTIONS(2567), + [sym_integer] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(2565), + [anon_sym_True] = ACTIONS(2565), + [anon_sym_TRUE] = ACTIONS(2565), + [anon_sym_false] = ACTIONS(2565), + [anon_sym_False] = ACTIONS(2565), + [anon_sym_FALSE] = ACTIONS(2565), + [anon_sym_null] = ACTIONS(2565), + [anon_sym_Null] = ACTIONS(2565), + [anon_sym_NULL] = ACTIONS(2565), + [sym_string] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_array] = ACTIONS(2565), + [anon_sym_varray] = ACTIONS(2565), + [anon_sym_darray] = ACTIONS(2565), + [anon_sym_vec] = ACTIONS(2565), + [anon_sym_dict] = ACTIONS(2565), + [anon_sym_keyset] = ACTIONS(2565), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_PLUS] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2565), + [anon_sym_list] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_await] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_trait] = ACTIONS(2565), + [anon_sym_interface] = ACTIONS(2565), + [anon_sym_class] = ACTIONS(2565), + [anon_sym_enum] = ACTIONS(2565), + [anon_sym_abstract] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(2567), + [sym_final_modifier] = ACTIONS(2565), + [sym_xhp_modifier] = ACTIONS(2565), + [sym_xhp_identifier] = ACTIONS(2565), + [sym_xhp_class_identifier] = ACTIONS(2567), [sym_comment] = ACTIONS(3), }, - [1111] = { - [sym_identifier] = ACTIONS(2545), - [sym_variable] = ACTIONS(2547), - [sym_pipe_variable] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_newtype] = ACTIONS(2545), - [anon_sym_shape] = ACTIONS(2545), - [anon_sym_tuple] = ACTIONS(2545), - [anon_sym_clone] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_print] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), - [anon_sym_LT_LT_LT] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_echo] = ACTIONS(2545), - [anon_sym_unset] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_concurrent] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(2545), - [anon_sym_default] = ACTIONS(2545), - [anon_sym_foreach] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [sym_float] = ACTIONS(2547), - [sym_integer] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_True] = ACTIONS(2545), - [anon_sym_TRUE] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_False] = ACTIONS(2545), - [anon_sym_FALSE] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_Null] = ACTIONS(2545), - [anon_sym_NULL] = ACTIONS(2545), - [sym_string] = ACTIONS(2547), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_array] = ACTIONS(2545), - [anon_sym_varray] = ACTIONS(2545), - [anon_sym_darray] = ACTIONS(2545), - [anon_sym_vec] = ACTIONS(2545), - [anon_sym_dict] = ACTIONS(2545), - [anon_sym_keyset] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2547), - [sym_final_modifier] = ACTIONS(2545), - [sym_xhp_modifier] = ACTIONS(2545), - [sym_xhp_identifier] = ACTIONS(2545), - [sym_xhp_class_identifier] = ACTIONS(2547), + [1006] = { + [sym_identifier] = ACTIONS(2381), + [sym_variable] = ACTIONS(2383), + [sym_pipe_variable] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_newtype] = ACTIONS(2381), + [anon_sym_shape] = ACTIONS(2381), + [anon_sym_tuple] = ACTIONS(2381), + [anon_sym_clone] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_include] = ACTIONS(2381), + [anon_sym_include_once] = ACTIONS(2381), + [anon_sym_require] = ACTIONS(2381), + [anon_sym_require_once] = ACTIONS(2381), + [anon_sym_BSLASH] = ACTIONS(2383), + [anon_sym_self] = ACTIONS(2381), + [anon_sym_parent] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_LT_LT_LT] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_echo] = ACTIONS(2381), + [anon_sym_unset] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_concurrent] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_elseif] = ACTIONS(2381), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_foreach] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [sym_float] = ACTIONS(2383), + [sym_integer] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_True] = ACTIONS(2381), + [anon_sym_TRUE] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_False] = ACTIONS(2381), + [anon_sym_FALSE] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [anon_sym_Null] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [sym_string] = ACTIONS(2383), + [anon_sym_AT] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_array] = ACTIONS(2381), + [anon_sym_varray] = ACTIONS(2381), + [anon_sym_darray] = ACTIONS(2381), + [anon_sym_vec] = ACTIONS(2381), + [anon_sym_dict] = ACTIONS(2381), + [anon_sym_keyset] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_list] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2383), + [sym_final_modifier] = ACTIONS(2381), + [sym_xhp_modifier] = ACTIONS(2381), + [sym_xhp_identifier] = ACTIONS(2381), + [sym_xhp_class_identifier] = ACTIONS(2383), + [sym_comment] = ACTIONS(3), + }, + [1007] = { + [sym_identifier] = ACTIONS(2457), + [sym_variable] = ACTIONS(2459), + [sym_pipe_variable] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_newtype] = ACTIONS(2457), + [anon_sym_shape] = ACTIONS(2457), + [anon_sym_tuple] = ACTIONS(2457), + [anon_sym_clone] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_print] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_include] = ACTIONS(2457), + [anon_sym_include_once] = ACTIONS(2457), + [anon_sym_require] = ACTIONS(2457), + [anon_sym_require_once] = ACTIONS(2457), + [anon_sym_BSLASH] = ACTIONS(2459), + [anon_sym_self] = ACTIONS(2457), + [anon_sym_parent] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_LT_LT_LT] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_echo] = ACTIONS(2457), + [anon_sym_unset] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_concurrent] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_foreach] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_integer] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_True] = ACTIONS(2457), + [anon_sym_TRUE] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_False] = ACTIONS(2457), + [anon_sym_FALSE] = ACTIONS(2457), + [anon_sym_null] = ACTIONS(2457), + [anon_sym_Null] = ACTIONS(2457), + [anon_sym_NULL] = ACTIONS(2457), + [sym_string] = ACTIONS(2459), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_array] = ACTIONS(2457), + [anon_sym_varray] = ACTIONS(2457), + [anon_sym_darray] = ACTIONS(2457), + [anon_sym_vec] = ACTIONS(2457), + [anon_sym_dict] = ACTIONS(2457), + [anon_sym_keyset] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2459), + [sym_final_modifier] = ACTIONS(2457), + [sym_xhp_modifier] = ACTIONS(2457), + [sym_xhp_identifier] = ACTIONS(2457), + [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, - [1112] = { - [sym_identifier] = ACTIONS(2541), - [sym_variable] = ACTIONS(2543), - [sym_pipe_variable] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_newtype] = ACTIONS(2541), - [anon_sym_shape] = ACTIONS(2541), - [anon_sym_tuple] = ACTIONS(2541), - [anon_sym_clone] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), - [anon_sym_LT_LT_LT] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_echo] = ACTIONS(2541), - [anon_sym_unset] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_concurrent] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_case] = ACTIONS(2541), - [anon_sym_default] = ACTIONS(2541), - [anon_sym_foreach] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [sym_float] = ACTIONS(2543), - [sym_integer] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_True] = ACTIONS(2541), - [anon_sym_TRUE] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_False] = ACTIONS(2541), - [anon_sym_FALSE] = ACTIONS(2541), - [anon_sym_null] = ACTIONS(2541), - [anon_sym_Null] = ACTIONS(2541), - [anon_sym_NULL] = ACTIONS(2541), - [sym_string] = ACTIONS(2543), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_array] = ACTIONS(2541), - [anon_sym_varray] = ACTIONS(2541), - [anon_sym_darray] = ACTIONS(2541), - [anon_sym_vec] = ACTIONS(2541), - [anon_sym_dict] = ACTIONS(2541), - [anon_sym_keyset] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2543), - [sym_final_modifier] = ACTIONS(2541), - [sym_xhp_modifier] = ACTIONS(2541), - [sym_xhp_identifier] = ACTIONS(2541), - [sym_xhp_class_identifier] = ACTIONS(2543), + [1008] = { + [sym_identifier] = ACTIONS(2273), + [sym_variable] = ACTIONS(2275), + [sym_pipe_variable] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_newtype] = ACTIONS(2273), + [anon_sym_shape] = ACTIONS(2273), + [anon_sym_tuple] = ACTIONS(2273), + [anon_sym_clone] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_print] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_include] = ACTIONS(2273), + [anon_sym_include_once] = ACTIONS(2273), + [anon_sym_require] = ACTIONS(2273), + [anon_sym_require_once] = ACTIONS(2273), + [anon_sym_BSLASH] = ACTIONS(2275), + [anon_sym_self] = ACTIONS(2273), + [anon_sym_parent] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2273), + [anon_sym_LT_LT_LT] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_echo] = ACTIONS(2273), + [anon_sym_unset] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_concurrent] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_case] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_foreach] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [sym_float] = ACTIONS(2275), + [sym_integer] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_True] = ACTIONS(2273), + [anon_sym_TRUE] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_False] = ACTIONS(2273), + [anon_sym_FALSE] = ACTIONS(2273), + [anon_sym_null] = ACTIONS(2273), + [anon_sym_Null] = ACTIONS(2273), + [anon_sym_NULL] = ACTIONS(2273), + [sym_string] = ACTIONS(2275), + [anon_sym_AT] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2275), + [anon_sym_array] = ACTIONS(2273), + [anon_sym_varray] = ACTIONS(2273), + [anon_sym_darray] = ACTIONS(2273), + [anon_sym_vec] = ACTIONS(2273), + [anon_sym_dict] = ACTIONS(2273), + [anon_sym_keyset] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_list] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_PLUS_PLUS] = ACTIONS(2275), + [anon_sym_DASH_DASH] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2275), + [sym_final_modifier] = ACTIONS(2273), + [sym_xhp_modifier] = ACTIONS(2273), + [sym_xhp_identifier] = ACTIONS(2273), + [sym_xhp_class_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), }, - [1113] = { - [sym_identifier] = ACTIONS(2525), - [sym_variable] = ACTIONS(2527), - [sym_pipe_variable] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_newtype] = ACTIONS(2525), - [anon_sym_shape] = ACTIONS(2525), - [anon_sym_tuple] = ACTIONS(2525), - [anon_sym_clone] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_LT_LT_LT] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_echo] = ACTIONS(2525), - [anon_sym_unset] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_concurrent] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_foreach] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [sym_float] = ACTIONS(2527), - [sym_integer] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_True] = ACTIONS(2525), - [anon_sym_TRUE] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_False] = ACTIONS(2525), - [anon_sym_FALSE] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2525), - [anon_sym_Null] = ACTIONS(2525), - [anon_sym_NULL] = ACTIONS(2525), - [sym_string] = ACTIONS(2527), - [anon_sym_AT] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_array] = ACTIONS(2525), - [anon_sym_varray] = ACTIONS(2525), - [anon_sym_darray] = ACTIONS(2525), - [anon_sym_vec] = ACTIONS(2525), - [anon_sym_dict] = ACTIONS(2525), - [anon_sym_keyset] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_trait] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2527), - [sym_final_modifier] = ACTIONS(2525), - [sym_xhp_modifier] = ACTIONS(2525), - [sym_xhp_identifier] = ACTIONS(2525), - [sym_xhp_class_identifier] = ACTIONS(2527), + [1009] = { + [sym_identifier] = ACTIONS(2269), + [sym_variable] = ACTIONS(2271), + [sym_pipe_variable] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_newtype] = ACTIONS(2269), + [anon_sym_shape] = ACTIONS(2269), + [anon_sym_tuple] = ACTIONS(2269), + [anon_sym_clone] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_print] = ACTIONS(2269), + [anon_sym_namespace] = ACTIONS(2269), + [anon_sym_include] = ACTIONS(2269), + [anon_sym_include_once] = ACTIONS(2269), + [anon_sym_require] = ACTIONS(2269), + [anon_sym_require_once] = ACTIONS(2269), + [anon_sym_BSLASH] = ACTIONS(2271), + [anon_sym_self] = ACTIONS(2269), + [anon_sym_parent] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_LT_LT_LT] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_echo] = ACTIONS(2269), + [anon_sym_unset] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_concurrent] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_case] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_foreach] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_using] = ACTIONS(2269), + [sym_float] = ACTIONS(2271), + [sym_integer] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_True] = ACTIONS(2269), + [anon_sym_TRUE] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_False] = ACTIONS(2269), + [anon_sym_FALSE] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), + [anon_sym_Null] = ACTIONS(2269), + [anon_sym_NULL] = ACTIONS(2269), + [sym_string] = ACTIONS(2271), + [anon_sym_AT] = ACTIONS(2271), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_array] = ACTIONS(2269), + [anon_sym_varray] = ACTIONS(2269), + [anon_sym_darray] = ACTIONS(2269), + [anon_sym_vec] = ACTIONS(2269), + [anon_sym_dict] = ACTIONS(2269), + [anon_sym_keyset] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_list] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_abstract] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2271), + [sym_final_modifier] = ACTIONS(2269), + [sym_xhp_modifier] = ACTIONS(2269), + [sym_xhp_identifier] = ACTIONS(2269), + [sym_xhp_class_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(3), }, - [1114] = { - [sym_identifier] = ACTIONS(2521), - [sym_variable] = ACTIONS(2523), - [sym_pipe_variable] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_newtype] = ACTIONS(2521), - [anon_sym_shape] = ACTIONS(2521), - [anon_sym_tuple] = ACTIONS(2521), - [anon_sym_clone] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_print] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_LT_LT_LT] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_echo] = ACTIONS(2521), - [anon_sym_unset] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_concurrent] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_case] = ACTIONS(2521), - [anon_sym_default] = ACTIONS(2521), - [anon_sym_foreach] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [sym_float] = ACTIONS(2523), - [sym_integer] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_True] = ACTIONS(2521), - [anon_sym_TRUE] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_False] = ACTIONS(2521), - [anon_sym_FALSE] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [anon_sym_Null] = ACTIONS(2521), - [anon_sym_NULL] = ACTIONS(2521), - [sym_string] = ACTIONS(2523), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_array] = ACTIONS(2521), - [anon_sym_varray] = ACTIONS(2521), - [anon_sym_darray] = ACTIONS(2521), - [anon_sym_vec] = ACTIONS(2521), - [anon_sym_dict] = ACTIONS(2521), - [anon_sym_keyset] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_trait] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2523), - [sym_final_modifier] = ACTIONS(2521), - [sym_xhp_modifier] = ACTIONS(2521), - [sym_xhp_identifier] = ACTIONS(2521), - [sym_xhp_class_identifier] = ACTIONS(2523), + [1010] = { + [sym_identifier] = ACTIONS(2265), + [sym_variable] = ACTIONS(2267), + [sym_pipe_variable] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_newtype] = ACTIONS(2265), + [anon_sym_shape] = ACTIONS(2265), + [anon_sym_tuple] = ACTIONS(2265), + [anon_sym_clone] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_print] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2265), + [anon_sym_include] = ACTIONS(2265), + [anon_sym_include_once] = ACTIONS(2265), + [anon_sym_require] = ACTIONS(2265), + [anon_sym_require_once] = ACTIONS(2265), + [anon_sym_BSLASH] = ACTIONS(2267), + [anon_sym_self] = ACTIONS(2265), + [anon_sym_parent] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_LT_LT_LT] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_throw] = ACTIONS(2265), + [anon_sym_echo] = ACTIONS(2265), + [anon_sym_unset] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_concurrent] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_function] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_switch] = ACTIONS(2265), + [anon_sym_case] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_foreach] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_using] = ACTIONS(2265), + [sym_float] = ACTIONS(2267), + [sym_integer] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_True] = ACTIONS(2265), + [anon_sym_TRUE] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_False] = ACTIONS(2265), + [anon_sym_FALSE] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), + [anon_sym_Null] = ACTIONS(2265), + [anon_sym_NULL] = ACTIONS(2265), + [sym_string] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_array] = ACTIONS(2265), + [anon_sym_varray] = ACTIONS(2265), + [anon_sym_darray] = ACTIONS(2265), + [anon_sym_vec] = ACTIONS(2265), + [anon_sym_dict] = ACTIONS(2265), + [anon_sym_keyset] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_list] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_abstract] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2267), + [sym_final_modifier] = ACTIONS(2265), + [sym_xhp_modifier] = ACTIONS(2265), + [sym_xhp_identifier] = ACTIONS(2265), + [sym_xhp_class_identifier] = ACTIONS(2267), [sym_comment] = ACTIONS(3), }, - [1115] = { - [sym_identifier] = ACTIONS(2509), - [sym_variable] = ACTIONS(2511), - [sym_pipe_variable] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_newtype] = ACTIONS(2509), - [anon_sym_shape] = ACTIONS(2509), - [anon_sym_tuple] = ACTIONS(2509), - [anon_sym_clone] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_LT_LT_LT] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_echo] = ACTIONS(2509), - [anon_sym_unset] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_concurrent] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_case] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2509), - [anon_sym_foreach] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [sym_float] = ACTIONS(2511), - [sym_integer] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2509), - [anon_sym_True] = ACTIONS(2509), - [anon_sym_TRUE] = ACTIONS(2509), - [anon_sym_false] = ACTIONS(2509), - [anon_sym_False] = ACTIONS(2509), - [anon_sym_FALSE] = ACTIONS(2509), - [anon_sym_null] = ACTIONS(2509), - [anon_sym_Null] = ACTIONS(2509), - [anon_sym_NULL] = ACTIONS(2509), - [sym_string] = ACTIONS(2511), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_array] = ACTIONS(2509), - [anon_sym_varray] = ACTIONS(2509), - [anon_sym_darray] = ACTIONS(2509), - [anon_sym_vec] = ACTIONS(2509), - [anon_sym_dict] = ACTIONS(2509), - [anon_sym_keyset] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_trait] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2511), - [sym_final_modifier] = ACTIONS(2509), - [sym_xhp_modifier] = ACTIONS(2509), - [sym_xhp_identifier] = ACTIONS(2509), - [sym_xhp_class_identifier] = ACTIONS(2511), + [1011] = { + [sym_identifier] = ACTIONS(2329), + [sym_variable] = ACTIONS(2331), + [sym_pipe_variable] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_newtype] = ACTIONS(2329), + [anon_sym_shape] = ACTIONS(2329), + [anon_sym_tuple] = ACTIONS(2329), + [anon_sym_clone] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_print] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_include] = ACTIONS(2329), + [anon_sym_include_once] = ACTIONS(2329), + [anon_sym_require] = ACTIONS(2329), + [anon_sym_require_once] = ACTIONS(2329), + [anon_sym_BSLASH] = ACTIONS(2331), + [anon_sym_self] = ACTIONS(2329), + [anon_sym_parent] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_LT_LT_LT] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_echo] = ACTIONS(2329), + [anon_sym_unset] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_concurrent] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_foreach] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [sym_float] = ACTIONS(2331), + [sym_integer] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_True] = ACTIONS(2329), + [anon_sym_TRUE] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_False] = ACTIONS(2329), + [anon_sym_FALSE] = ACTIONS(2329), + [anon_sym_null] = ACTIONS(2329), + [anon_sym_Null] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [sym_string] = ACTIONS(2331), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_array] = ACTIONS(2329), + [anon_sym_varray] = ACTIONS(2329), + [anon_sym_darray] = ACTIONS(2329), + [anon_sym_vec] = ACTIONS(2329), + [anon_sym_dict] = ACTIONS(2329), + [anon_sym_keyset] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_list] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2331), + [sym_final_modifier] = ACTIONS(2329), + [sym_xhp_modifier] = ACTIONS(2329), + [sym_xhp_identifier] = ACTIONS(2329), + [sym_xhp_class_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(3), }, - [1116] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1012] = { + [sym_identifier] = ACTIONS(2565), + [sym_variable] = ACTIONS(2567), + [sym_pipe_variable] = ACTIONS(2567), + [anon_sym_type] = ACTIONS(2565), + [anon_sym_newtype] = ACTIONS(2565), + [anon_sym_shape] = ACTIONS(2565), + [anon_sym_tuple] = ACTIONS(2565), + [anon_sym_clone] = ACTIONS(2565), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_print] = ACTIONS(2565), + [anon_sym_namespace] = ACTIONS(2565), + [anon_sym_include] = ACTIONS(2565), + [anon_sym_include_once] = ACTIONS(2565), + [anon_sym_require] = ACTIONS(2565), + [anon_sym_require_once] = ACTIONS(2565), + [anon_sym_BSLASH] = ACTIONS(2567), + [anon_sym_self] = ACTIONS(2565), + [anon_sym_parent] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2565), + [anon_sym_LT_LT] = ACTIONS(2565), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_throw] = ACTIONS(2565), + [anon_sym_echo] = ACTIONS(2565), + [anon_sym_unset] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_concurrent] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_function] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_elseif] = ACTIONS(2565), + [anon_sym_else] = ACTIONS(2565), + [anon_sym_switch] = ACTIONS(2565), + [anon_sym_foreach] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_do] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [anon_sym_using] = ACTIONS(2565), + [sym_float] = ACTIONS(2567), + [sym_integer] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(2565), + [anon_sym_True] = ACTIONS(2565), + [anon_sym_TRUE] = ACTIONS(2565), + [anon_sym_false] = ACTIONS(2565), + [anon_sym_False] = ACTIONS(2565), + [anon_sym_FALSE] = ACTIONS(2565), + [anon_sym_null] = ACTIONS(2565), + [anon_sym_Null] = ACTIONS(2565), + [anon_sym_NULL] = ACTIONS(2565), + [sym_string] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_array] = ACTIONS(2565), + [anon_sym_varray] = ACTIONS(2565), + [anon_sym_darray] = ACTIONS(2565), + [anon_sym_vec] = ACTIONS(2565), + [anon_sym_dict] = ACTIONS(2565), + [anon_sym_keyset] = ACTIONS(2565), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_PLUS] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2565), + [anon_sym_list] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_await] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_trait] = ACTIONS(2565), + [anon_sym_interface] = ACTIONS(2565), + [anon_sym_class] = ACTIONS(2565), + [anon_sym_enum] = ACTIONS(2565), + [anon_sym_abstract] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(2567), + [sym_final_modifier] = ACTIONS(2565), + [sym_xhp_modifier] = ACTIONS(2565), + [sym_xhp_identifier] = ACTIONS(2565), + [sym_xhp_class_identifier] = ACTIONS(2567), [sym_comment] = ACTIONS(3), }, - [1117] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1013] = { + [sym_identifier] = ACTIONS(2337), + [sym_variable] = ACTIONS(2339), + [sym_pipe_variable] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_newtype] = ACTIONS(2337), + [anon_sym_shape] = ACTIONS(2337), + [anon_sym_tuple] = ACTIONS(2337), + [anon_sym_clone] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_print] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_include] = ACTIONS(2337), + [anon_sym_include_once] = ACTIONS(2337), + [anon_sym_require] = ACTIONS(2337), + [anon_sym_require_once] = ACTIONS(2337), + [anon_sym_BSLASH] = ACTIONS(2339), + [anon_sym_self] = ACTIONS(2337), + [anon_sym_parent] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_LT_LT_LT] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_echo] = ACTIONS(2337), + [anon_sym_unset] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_concurrent] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_function] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_foreach] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [sym_float] = ACTIONS(2339), + [sym_integer] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_True] = ACTIONS(2337), + [anon_sym_TRUE] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_False] = ACTIONS(2337), + [anon_sym_FALSE] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_Null] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [sym_string] = ACTIONS(2339), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_array] = ACTIONS(2337), + [anon_sym_varray] = ACTIONS(2337), + [anon_sym_darray] = ACTIONS(2337), + [anon_sym_vec] = ACTIONS(2337), + [anon_sym_dict] = ACTIONS(2337), + [anon_sym_keyset] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_list] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_abstract] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2339), + [sym_final_modifier] = ACTIONS(2337), + [sym_xhp_modifier] = ACTIONS(2337), + [sym_xhp_identifier] = ACTIONS(2337), + [sym_xhp_class_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(3), }, - [1118] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1014] = { + [sym_identifier] = ACTIONS(2465), + [sym_variable] = ACTIONS(2467), + [sym_pipe_variable] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_newtype] = ACTIONS(2465), + [anon_sym_shape] = ACTIONS(2465), + [anon_sym_tuple] = ACTIONS(2465), + [anon_sym_clone] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_include_once] = ACTIONS(2465), + [anon_sym_require] = ACTIONS(2465), + [anon_sym_require_once] = ACTIONS(2465), + [anon_sym_BSLASH] = ACTIONS(2467), + [anon_sym_self] = ACTIONS(2465), + [anon_sym_parent] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_LT_LT_LT] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_echo] = ACTIONS(2465), + [anon_sym_unset] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_concurrent] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_function] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_foreach] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [sym_float] = ACTIONS(2467), + [sym_integer] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_True] = ACTIONS(2465), + [anon_sym_TRUE] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_False] = ACTIONS(2465), + [anon_sym_FALSE] = ACTIONS(2465), + [anon_sym_null] = ACTIONS(2465), + [anon_sym_Null] = ACTIONS(2465), + [anon_sym_NULL] = ACTIONS(2465), + [sym_string] = ACTIONS(2467), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_array] = ACTIONS(2465), + [anon_sym_varray] = ACTIONS(2465), + [anon_sym_darray] = ACTIONS(2465), + [anon_sym_vec] = ACTIONS(2465), + [anon_sym_dict] = ACTIONS(2465), + [anon_sym_keyset] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_abstract] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2467), + [sym_final_modifier] = ACTIONS(2465), + [sym_xhp_modifier] = ACTIONS(2465), + [sym_xhp_identifier] = ACTIONS(2465), + [sym_xhp_class_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(3), }, - [1119] = { - [sym_identifier] = ACTIONS(2213), - [sym_variable] = ACTIONS(2215), - [sym_pipe_variable] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_newtype] = ACTIONS(2213), - [anon_sym_shape] = ACTIONS(2213), - [anon_sym_tuple] = ACTIONS(2213), - [anon_sym_clone] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_print] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_LT_LT_LT] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_echo] = ACTIONS(2213), - [anon_sym_unset] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_concurrent] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_foreach] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [sym_float] = ACTIONS(2215), - [sym_integer] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_True] = ACTIONS(2213), - [anon_sym_TRUE] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_False] = ACTIONS(2213), - [anon_sym_FALSE] = ACTIONS(2213), - [anon_sym_null] = ACTIONS(2213), - [anon_sym_Null] = ACTIONS(2213), - [anon_sym_NULL] = ACTIONS(2213), - [sym_string] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_array] = ACTIONS(2213), - [anon_sym_varray] = ACTIONS(2213), - [anon_sym_darray] = ACTIONS(2213), - [anon_sym_vec] = ACTIONS(2213), - [anon_sym_dict] = ACTIONS(2213), - [anon_sym_keyset] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2215), - [sym_final_modifier] = ACTIONS(2213), - [sym_xhp_modifier] = ACTIONS(2213), - [sym_xhp_identifier] = ACTIONS(2213), - [sym_xhp_class_identifier] = ACTIONS(2215), + [1015] = { + [sym_identifier] = ACTIONS(2489), + [sym_variable] = ACTIONS(2491), + [sym_pipe_variable] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_newtype] = ACTIONS(2489), + [anon_sym_shape] = ACTIONS(2489), + [anon_sym_tuple] = ACTIONS(2489), + [anon_sym_clone] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_print] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_include] = ACTIONS(2489), + [anon_sym_include_once] = ACTIONS(2489), + [anon_sym_require] = ACTIONS(2489), + [anon_sym_require_once] = ACTIONS(2489), + [anon_sym_BSLASH] = ACTIONS(2491), + [anon_sym_self] = ACTIONS(2489), + [anon_sym_parent] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_LT_LT_LT] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_echo] = ACTIONS(2489), + [anon_sym_unset] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_concurrent] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_foreach] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [sym_float] = ACTIONS(2491), + [sym_integer] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_True] = ACTIONS(2489), + [anon_sym_TRUE] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_False] = ACTIONS(2489), + [anon_sym_FALSE] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [anon_sym_Null] = ACTIONS(2489), + [anon_sym_NULL] = ACTIONS(2489), + [sym_string] = ACTIONS(2491), + [anon_sym_AT] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_array] = ACTIONS(2489), + [anon_sym_varray] = ACTIONS(2489), + [anon_sym_darray] = ACTIONS(2489), + [anon_sym_vec] = ACTIONS(2489), + [anon_sym_dict] = ACTIONS(2489), + [anon_sym_keyset] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2491), + [sym_final_modifier] = ACTIONS(2489), + [sym_xhp_modifier] = ACTIONS(2489), + [sym_xhp_identifier] = ACTIONS(2489), + [sym_xhp_class_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(3), }, - [1120] = { + [1016] = { [sym_identifier] = ACTIONS(2493), [sym_variable] = ACTIONS(2495), [sym_pipe_variable] = ACTIONS(2495), @@ -141401,1239 +125823,2031 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(3), }, - [1121] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1017] = { + [sym_identifier] = ACTIONS(2541), + [sym_variable] = ACTIONS(2543), + [sym_pipe_variable] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_newtype] = ACTIONS(2541), + [anon_sym_shape] = ACTIONS(2541), + [anon_sym_tuple] = ACTIONS(2541), + [anon_sym_clone] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_include] = ACTIONS(2541), + [anon_sym_include_once] = ACTIONS(2541), + [anon_sym_require] = ACTIONS(2541), + [anon_sym_require_once] = ACTIONS(2541), + [anon_sym_BSLASH] = ACTIONS(2543), + [anon_sym_self] = ACTIONS(2541), + [anon_sym_parent] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_LT_LT] = ACTIONS(2541), + [anon_sym_LT_LT_LT] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_echo] = ACTIONS(2541), + [anon_sym_unset] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_concurrent] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_foreach] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [sym_float] = ACTIONS(2543), + [sym_integer] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_True] = ACTIONS(2541), + [anon_sym_TRUE] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_False] = ACTIONS(2541), + [anon_sym_FALSE] = ACTIONS(2541), + [anon_sym_null] = ACTIONS(2541), + [anon_sym_Null] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [sym_string] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_array] = ACTIONS(2541), + [anon_sym_varray] = ACTIONS(2541), + [anon_sym_darray] = ACTIONS(2541), + [anon_sym_vec] = ACTIONS(2541), + [anon_sym_dict] = ACTIONS(2541), + [anon_sym_keyset] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_list] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2543), + [sym_final_modifier] = ACTIONS(2541), + [sym_xhp_modifier] = ACTIONS(2541), + [sym_xhp_identifier] = ACTIONS(2541), + [sym_xhp_class_identifier] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + }, + [1018] = { + [sym_identifier] = ACTIONS(2613), + [sym_variable] = ACTIONS(2615), + [sym_pipe_variable] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_newtype] = ACTIONS(2613), + [anon_sym_shape] = ACTIONS(2613), + [anon_sym_tuple] = ACTIONS(2613), + [anon_sym_clone] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2613), + [anon_sym_print] = ACTIONS(2613), + [anon_sym_namespace] = ACTIONS(2613), + [anon_sym_include] = ACTIONS(2613), + [anon_sym_include_once] = ACTIONS(2613), + [anon_sym_require] = ACTIONS(2613), + [anon_sym_require_once] = ACTIONS(2613), + [anon_sym_BSLASH] = ACTIONS(2615), + [anon_sym_self] = ACTIONS(2613), + [anon_sym_parent] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_throw] = ACTIONS(2613), + [anon_sym_echo] = ACTIONS(2613), + [anon_sym_unset] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_concurrent] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_function] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_switch] = ACTIONS(2613), + [anon_sym_case] = ACTIONS(2613), + [anon_sym_default] = ACTIONS(2613), + [anon_sym_foreach] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [anon_sym_using] = ACTIONS(2613), + [sym_float] = ACTIONS(2615), + [sym_integer] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_True] = ACTIONS(2613), + [anon_sym_TRUE] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_False] = ACTIONS(2613), + [anon_sym_FALSE] = ACTIONS(2613), + [anon_sym_null] = ACTIONS(2613), + [anon_sym_Null] = ACTIONS(2613), + [anon_sym_NULL] = ACTIONS(2613), + [sym_string] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_array] = ACTIONS(2613), + [anon_sym_varray] = ACTIONS(2613), + [anon_sym_darray] = ACTIONS(2613), + [anon_sym_vec] = ACTIONS(2613), + [anon_sym_dict] = ACTIONS(2613), + [anon_sym_keyset] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_list] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_await] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_interface] = ACTIONS(2613), + [anon_sym_class] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_abstract] = ACTIONS(2613), + [anon_sym_POUND] = ACTIONS(2615), + [sym_final_modifier] = ACTIONS(2613), + [sym_xhp_modifier] = ACTIONS(2613), + [sym_xhp_identifier] = ACTIONS(2613), + [sym_xhp_class_identifier] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + }, + [1019] = { + [sym_identifier] = ACTIONS(2609), + [sym_variable] = ACTIONS(2611), + [sym_pipe_variable] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_newtype] = ACTIONS(2609), + [anon_sym_shape] = ACTIONS(2609), + [anon_sym_tuple] = ACTIONS(2609), + [anon_sym_clone] = ACTIONS(2609), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_print] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_include] = ACTIONS(2609), + [anon_sym_include_once] = ACTIONS(2609), + [anon_sym_require] = ACTIONS(2609), + [anon_sym_require_once] = ACTIONS(2609), + [anon_sym_BSLASH] = ACTIONS(2611), + [anon_sym_self] = ACTIONS(2609), + [anon_sym_parent] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_throw] = ACTIONS(2609), + [anon_sym_echo] = ACTIONS(2609), + [anon_sym_unset] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_concurrent] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_function] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2609), + [anon_sym_case] = ACTIONS(2609), + [anon_sym_default] = ACTIONS(2609), + [anon_sym_foreach] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_using] = ACTIONS(2609), + [sym_float] = ACTIONS(2611), + [sym_integer] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_True] = ACTIONS(2609), + [anon_sym_TRUE] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_False] = ACTIONS(2609), + [anon_sym_FALSE] = ACTIONS(2609), + [anon_sym_null] = ACTIONS(2609), + [anon_sym_Null] = ACTIONS(2609), + [anon_sym_NULL] = ACTIONS(2609), + [sym_string] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_array] = ACTIONS(2609), + [anon_sym_varray] = ACTIONS(2609), + [anon_sym_darray] = ACTIONS(2609), + [anon_sym_vec] = ACTIONS(2609), + [anon_sym_dict] = ACTIONS(2609), + [anon_sym_keyset] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_list] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_await] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_interface] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2609), + [anon_sym_POUND] = ACTIONS(2611), + [sym_final_modifier] = ACTIONS(2609), + [sym_xhp_modifier] = ACTIONS(2609), + [sym_xhp_identifier] = ACTIONS(2609), + [sym_xhp_class_identifier] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + }, + [1020] = { + [sym_identifier] = ACTIONS(2605), + [sym_variable] = ACTIONS(2607), + [sym_pipe_variable] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_newtype] = ACTIONS(2605), + [anon_sym_shape] = ACTIONS(2605), + [anon_sym_tuple] = ACTIONS(2605), + [anon_sym_clone] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_include] = ACTIONS(2605), + [anon_sym_include_once] = ACTIONS(2605), + [anon_sym_require] = ACTIONS(2605), + [anon_sym_require_once] = ACTIONS(2605), + [anon_sym_BSLASH] = ACTIONS(2607), + [anon_sym_self] = ACTIONS(2605), + [anon_sym_parent] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_LT_LT] = ACTIONS(2605), + [anon_sym_LT_LT_LT] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_echo] = ACTIONS(2605), + [anon_sym_unset] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_concurrent] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_case] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_foreach] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [sym_float] = ACTIONS(2607), + [sym_integer] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_True] = ACTIONS(2605), + [anon_sym_TRUE] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_False] = ACTIONS(2605), + [anon_sym_FALSE] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2605), + [anon_sym_Null] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [sym_string] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_array] = ACTIONS(2605), + [anon_sym_varray] = ACTIONS(2605), + [anon_sym_darray] = ACTIONS(2605), + [anon_sym_vec] = ACTIONS(2605), + [anon_sym_dict] = ACTIONS(2605), + [anon_sym_keyset] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_list] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_await] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_interface] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_abstract] = ACTIONS(2605), + [anon_sym_POUND] = ACTIONS(2607), + [sym_final_modifier] = ACTIONS(2605), + [sym_xhp_modifier] = ACTIONS(2605), + [sym_xhp_identifier] = ACTIONS(2605), + [sym_xhp_class_identifier] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + }, + [1021] = { + [sym_identifier] = ACTIONS(2601), + [sym_variable] = ACTIONS(2603), + [sym_pipe_variable] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_newtype] = ACTIONS(2601), + [anon_sym_shape] = ACTIONS(2601), + [anon_sym_tuple] = ACTIONS(2601), + [anon_sym_clone] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_namespace] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_include_once] = ACTIONS(2601), + [anon_sym_require] = ACTIONS(2601), + [anon_sym_require_once] = ACTIONS(2601), + [anon_sym_BSLASH] = ACTIONS(2603), + [anon_sym_self] = ACTIONS(2601), + [anon_sym_parent] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_LT_LT] = ACTIONS(2601), + [anon_sym_LT_LT_LT] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_throw] = ACTIONS(2601), + [anon_sym_echo] = ACTIONS(2601), + [anon_sym_unset] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_concurrent] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_function] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_switch] = ACTIONS(2601), + [anon_sym_case] = ACTIONS(2601), + [anon_sym_default] = ACTIONS(2601), + [anon_sym_foreach] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_using] = ACTIONS(2601), + [sym_float] = ACTIONS(2603), + [sym_integer] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_True] = ACTIONS(2601), + [anon_sym_TRUE] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_False] = ACTIONS(2601), + [anon_sym_FALSE] = ACTIONS(2601), + [anon_sym_null] = ACTIONS(2601), + [anon_sym_Null] = ACTIONS(2601), + [anon_sym_NULL] = ACTIONS(2601), + [sym_string] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2603), + [anon_sym_array] = ACTIONS(2601), + [anon_sym_varray] = ACTIONS(2601), + [anon_sym_darray] = ACTIONS(2601), + [anon_sym_vec] = ACTIONS(2601), + [anon_sym_dict] = ACTIONS(2601), + [anon_sym_keyset] = ACTIONS(2601), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_list] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_interface] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_abstract] = ACTIONS(2601), + [anon_sym_POUND] = ACTIONS(2603), + [sym_final_modifier] = ACTIONS(2601), + [sym_xhp_modifier] = ACTIONS(2601), + [sym_xhp_identifier] = ACTIONS(2601), + [sym_xhp_class_identifier] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + }, + [1022] = { + [sym_identifier] = ACTIONS(2597), + [sym_variable] = ACTIONS(2599), + [sym_pipe_variable] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_newtype] = ACTIONS(2597), + [anon_sym_shape] = ACTIONS(2597), + [anon_sym_tuple] = ACTIONS(2597), + [anon_sym_clone] = ACTIONS(2597), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_print] = ACTIONS(2597), + [anon_sym_namespace] = ACTIONS(2597), + [anon_sym_include] = ACTIONS(2597), + [anon_sym_include_once] = ACTIONS(2597), + [anon_sym_require] = ACTIONS(2597), + [anon_sym_require_once] = ACTIONS(2597), + [anon_sym_BSLASH] = ACTIONS(2599), + [anon_sym_self] = ACTIONS(2597), + [anon_sym_parent] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_LT_LT] = ACTIONS(2597), + [anon_sym_LT_LT_LT] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_throw] = ACTIONS(2597), + [anon_sym_echo] = ACTIONS(2597), + [anon_sym_unset] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_concurrent] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_switch] = ACTIONS(2597), + [anon_sym_case] = ACTIONS(2597), + [anon_sym_default] = ACTIONS(2597), + [anon_sym_foreach] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_using] = ACTIONS(2597), + [sym_float] = ACTIONS(2599), + [sym_integer] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_True] = ACTIONS(2597), + [anon_sym_TRUE] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_False] = ACTIONS(2597), + [anon_sym_FALSE] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2597), + [anon_sym_Null] = ACTIONS(2597), + [anon_sym_NULL] = ACTIONS(2597), + [sym_string] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_array] = ACTIONS(2597), + [anon_sym_varray] = ACTIONS(2597), + [anon_sym_darray] = ACTIONS(2597), + [anon_sym_vec] = ACTIONS(2597), + [anon_sym_dict] = ACTIONS(2597), + [anon_sym_keyset] = ACTIONS(2597), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_list] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_interface] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_abstract] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(2599), + [sym_final_modifier] = ACTIONS(2597), + [sym_xhp_modifier] = ACTIONS(2597), + [sym_xhp_identifier] = ACTIONS(2597), + [sym_xhp_class_identifier] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + }, + [1023] = { + [sym_identifier] = ACTIONS(2593), + [sym_variable] = ACTIONS(2595), + [sym_pipe_variable] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_newtype] = ACTIONS(2593), + [anon_sym_shape] = ACTIONS(2593), + [anon_sym_tuple] = ACTIONS(2593), + [anon_sym_clone] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_include] = ACTIONS(2593), + [anon_sym_include_once] = ACTIONS(2593), + [anon_sym_require] = ACTIONS(2593), + [anon_sym_require_once] = ACTIONS(2593), + [anon_sym_BSLASH] = ACTIONS(2595), + [anon_sym_self] = ACTIONS(2593), + [anon_sym_parent] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_LT_LT] = ACTIONS(2593), + [anon_sym_LT_LT_LT] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_echo] = ACTIONS(2593), + [anon_sym_unset] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_concurrent] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_function] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_case] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_foreach] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [sym_float] = ACTIONS(2595), + [sym_integer] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_True] = ACTIONS(2593), + [anon_sym_TRUE] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_False] = ACTIONS(2593), + [anon_sym_FALSE] = ACTIONS(2593), + [anon_sym_null] = ACTIONS(2593), + [anon_sym_Null] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [sym_string] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_array] = ACTIONS(2593), + [anon_sym_varray] = ACTIONS(2593), + [anon_sym_darray] = ACTIONS(2593), + [anon_sym_vec] = ACTIONS(2593), + [anon_sym_dict] = ACTIONS(2593), + [anon_sym_keyset] = ACTIONS(2593), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_list] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_await] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_interface] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(2595), + [sym_final_modifier] = ACTIONS(2593), + [sym_xhp_modifier] = ACTIONS(2593), + [sym_xhp_identifier] = ACTIONS(2593), + [sym_xhp_class_identifier] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + }, + [1024] = { + [sym_identifier] = ACTIONS(2589), + [sym_variable] = ACTIONS(2591), + [sym_pipe_variable] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_newtype] = ACTIONS(2589), + [anon_sym_shape] = ACTIONS(2589), + [anon_sym_tuple] = ACTIONS(2589), + [anon_sym_clone] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_print] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_include] = ACTIONS(2589), + [anon_sym_include_once] = ACTIONS(2589), + [anon_sym_require] = ACTIONS(2589), + [anon_sym_require_once] = ACTIONS(2589), + [anon_sym_BSLASH] = ACTIONS(2591), + [anon_sym_self] = ACTIONS(2589), + [anon_sym_parent] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_echo] = ACTIONS(2589), + [anon_sym_unset] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_concurrent] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_foreach] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [sym_float] = ACTIONS(2591), + [sym_integer] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_True] = ACTIONS(2589), + [anon_sym_TRUE] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_False] = ACTIONS(2589), + [anon_sym_FALSE] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2589), + [anon_sym_Null] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [sym_string] = ACTIONS(2591), + [anon_sym_AT] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_array] = ACTIONS(2589), + [anon_sym_varray] = ACTIONS(2589), + [anon_sym_darray] = ACTIONS(2589), + [anon_sym_vec] = ACTIONS(2589), + [anon_sym_dict] = ACTIONS(2589), + [anon_sym_keyset] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_list] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_await] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_interface] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_abstract] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2591), + [sym_final_modifier] = ACTIONS(2589), + [sym_xhp_modifier] = ACTIONS(2589), + [sym_xhp_identifier] = ACTIONS(2589), + [sym_xhp_class_identifier] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + }, + [1025] = { + [sym_identifier] = ACTIONS(2585), + [sym_variable] = ACTIONS(2587), + [sym_pipe_variable] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_newtype] = ACTIONS(2585), + [anon_sym_shape] = ACTIONS(2585), + [anon_sym_tuple] = ACTIONS(2585), + [anon_sym_clone] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_include] = ACTIONS(2585), + [anon_sym_include_once] = ACTIONS(2585), + [anon_sym_require] = ACTIONS(2585), + [anon_sym_require_once] = ACTIONS(2585), + [anon_sym_BSLASH] = ACTIONS(2587), + [anon_sym_self] = ACTIONS(2585), + [anon_sym_parent] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_LT_LT_LT] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_echo] = ACTIONS(2585), + [anon_sym_unset] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_concurrent] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_case] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_foreach] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_using] = ACTIONS(2585), + [sym_float] = ACTIONS(2587), + [sym_integer] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_True] = ACTIONS(2585), + [anon_sym_TRUE] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_False] = ACTIONS(2585), + [anon_sym_FALSE] = ACTIONS(2585), + [anon_sym_null] = ACTIONS(2585), + [anon_sym_Null] = ACTIONS(2585), + [anon_sym_NULL] = ACTIONS(2585), + [sym_string] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_array] = ACTIONS(2585), + [anon_sym_varray] = ACTIONS(2585), + [anon_sym_darray] = ACTIONS(2585), + [anon_sym_vec] = ACTIONS(2585), + [anon_sym_dict] = ACTIONS(2585), + [anon_sym_keyset] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_list] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_abstract] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2587), + [sym_final_modifier] = ACTIONS(2585), + [sym_xhp_modifier] = ACTIONS(2585), + [sym_xhp_identifier] = ACTIONS(2585), + [sym_xhp_class_identifier] = ACTIONS(2587), [sym_comment] = ACTIONS(3), }, - [1122] = { - [sym_identifier] = ACTIONS(2489), - [sym_variable] = ACTIONS(2491), - [sym_pipe_variable] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_newtype] = ACTIONS(2489), - [anon_sym_shape] = ACTIONS(2489), - [anon_sym_tuple] = ACTIONS(2489), - [anon_sym_clone] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_print] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), - [anon_sym_LT_LT_LT] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_echo] = ACTIONS(2489), - [anon_sym_unset] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_concurrent] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_case] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_foreach] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [sym_float] = ACTIONS(2491), - [sym_integer] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_True] = ACTIONS(2489), - [anon_sym_TRUE] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_False] = ACTIONS(2489), - [anon_sym_FALSE] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [anon_sym_Null] = ACTIONS(2489), - [anon_sym_NULL] = ACTIONS(2489), - [sym_string] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_array] = ACTIONS(2489), - [anon_sym_varray] = ACTIONS(2489), - [anon_sym_darray] = ACTIONS(2489), - [anon_sym_vec] = ACTIONS(2489), - [anon_sym_dict] = ACTIONS(2489), - [anon_sym_keyset] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2491), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_trait] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2491), - [sym_final_modifier] = ACTIONS(2489), - [sym_xhp_modifier] = ACTIONS(2489), - [sym_xhp_identifier] = ACTIONS(2489), - [sym_xhp_class_identifier] = ACTIONS(2491), + [1026] = { + [sym_identifier] = ACTIONS(2581), + [sym_variable] = ACTIONS(2583), + [sym_pipe_variable] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_newtype] = ACTIONS(2581), + [anon_sym_shape] = ACTIONS(2581), + [anon_sym_tuple] = ACTIONS(2581), + [anon_sym_clone] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_include] = ACTIONS(2581), + [anon_sym_include_once] = ACTIONS(2581), + [anon_sym_require] = ACTIONS(2581), + [anon_sym_require_once] = ACTIONS(2581), + [anon_sym_BSLASH] = ACTIONS(2583), + [anon_sym_self] = ACTIONS(2581), + [anon_sym_parent] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_echo] = ACTIONS(2581), + [anon_sym_unset] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_concurrent] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_foreach] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [sym_float] = ACTIONS(2583), + [sym_integer] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_True] = ACTIONS(2581), + [anon_sym_TRUE] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_False] = ACTIONS(2581), + [anon_sym_FALSE] = ACTIONS(2581), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_Null] = ACTIONS(2581), + [anon_sym_NULL] = ACTIONS(2581), + [sym_string] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_array] = ACTIONS(2581), + [anon_sym_varray] = ACTIONS(2581), + [anon_sym_darray] = ACTIONS(2581), + [anon_sym_vec] = ACTIONS(2581), + [anon_sym_dict] = ACTIONS(2581), + [anon_sym_keyset] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_list] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(2583), + [sym_final_modifier] = ACTIONS(2581), + [sym_xhp_modifier] = ACTIONS(2581), + [sym_xhp_identifier] = ACTIONS(2581), + [sym_xhp_class_identifier] = ACTIONS(2583), [sym_comment] = ACTIONS(3), }, - [1123] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1027] = { + [sym_identifier] = ACTIONS(2345), + [sym_variable] = ACTIONS(2347), + [sym_pipe_variable] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_newtype] = ACTIONS(2345), + [anon_sym_shape] = ACTIONS(2345), + [anon_sym_tuple] = ACTIONS(2345), + [anon_sym_clone] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_print] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_include] = ACTIONS(2345), + [anon_sym_include_once] = ACTIONS(2345), + [anon_sym_require] = ACTIONS(2345), + [anon_sym_require_once] = ACTIONS(2345), + [anon_sym_BSLASH] = ACTIONS(2347), + [anon_sym_self] = ACTIONS(2345), + [anon_sym_parent] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_LT_LT_LT] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_echo] = ACTIONS(2345), + [anon_sym_unset] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_concurrent] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_function] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_case] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_foreach] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [sym_float] = ACTIONS(2347), + [sym_integer] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_True] = ACTIONS(2345), + [anon_sym_TRUE] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_False] = ACTIONS(2345), + [anon_sym_FALSE] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_Null] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [sym_string] = ACTIONS(2347), + [anon_sym_AT] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_array] = ACTIONS(2345), + [anon_sym_varray] = ACTIONS(2345), + [anon_sym_darray] = ACTIONS(2345), + [anon_sym_vec] = ACTIONS(2345), + [anon_sym_dict] = ACTIONS(2345), + [anon_sym_keyset] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_list] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_abstract] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2347), + [sym_final_modifier] = ACTIONS(2345), + [sym_xhp_modifier] = ACTIONS(2345), + [sym_xhp_identifier] = ACTIONS(2345), + [sym_xhp_class_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(3), }, - [1124] = { - [sym_identifier] = ACTIONS(2485), - [sym_variable] = ACTIONS(2487), - [sym_pipe_variable] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2485), - [anon_sym_newtype] = ACTIONS(2485), - [anon_sym_shape] = ACTIONS(2485), - [anon_sym_tuple] = ACTIONS(2485), - [anon_sym_clone] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2485), - [anon_sym_namespace] = ACTIONS(2485), - [anon_sym_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_LT_LT_LT] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_echo] = ACTIONS(2485), - [anon_sym_unset] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_concurrent] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_switch] = ACTIONS(2485), - [anon_sym_case] = ACTIONS(2485), - [anon_sym_default] = ACTIONS(2485), - [anon_sym_foreach] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_using] = ACTIONS(2485), - [sym_float] = ACTIONS(2487), - [sym_integer] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_True] = ACTIONS(2485), - [anon_sym_TRUE] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [anon_sym_False] = ACTIONS(2485), - [anon_sym_FALSE] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2485), - [anon_sym_Null] = ACTIONS(2485), - [anon_sym_NULL] = ACTIONS(2485), - [sym_string] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_array] = ACTIONS(2485), - [anon_sym_varray] = ACTIONS(2485), - [anon_sym_darray] = ACTIONS(2485), - [anon_sym_vec] = ACTIONS(2485), - [anon_sym_dict] = ACTIONS(2485), - [anon_sym_keyset] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2485), - [anon_sym_async] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2485), - [anon_sym_trait] = ACTIONS(2485), - [anon_sym_interface] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2485), - [anon_sym_enum] = ACTIONS(2485), - [anon_sym_abstract] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2487), - [sym_final_modifier] = ACTIONS(2485), - [sym_xhp_modifier] = ACTIONS(2485), - [sym_xhp_identifier] = ACTIONS(2485), - [sym_xhp_class_identifier] = ACTIONS(2487), + [1028] = { + [sym_identifier] = ACTIONS(2349), + [sym_variable] = ACTIONS(2351), + [sym_pipe_variable] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_newtype] = ACTIONS(2349), + [anon_sym_shape] = ACTIONS(2349), + [anon_sym_tuple] = ACTIONS(2349), + [anon_sym_clone] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_print] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_include] = ACTIONS(2349), + [anon_sym_include_once] = ACTIONS(2349), + [anon_sym_require] = ACTIONS(2349), + [anon_sym_require_once] = ACTIONS(2349), + [anon_sym_BSLASH] = ACTIONS(2351), + [anon_sym_self] = ACTIONS(2349), + [anon_sym_parent] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_LT_LT] = ACTIONS(2349), + [anon_sym_LT_LT_LT] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_echo] = ACTIONS(2349), + [anon_sym_unset] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_concurrent] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_case] = ACTIONS(2349), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_foreach] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [sym_float] = ACTIONS(2351), + [sym_integer] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_True] = ACTIONS(2349), + [anon_sym_TRUE] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_False] = ACTIONS(2349), + [anon_sym_FALSE] = ACTIONS(2349), + [anon_sym_null] = ACTIONS(2349), + [anon_sym_Null] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [sym_string] = ACTIONS(2351), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_array] = ACTIONS(2349), + [anon_sym_varray] = ACTIONS(2349), + [anon_sym_darray] = ACTIONS(2349), + [anon_sym_vec] = ACTIONS(2349), + [anon_sym_dict] = ACTIONS(2349), + [anon_sym_keyset] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_list] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_interface] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_abstract] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2351), + [sym_final_modifier] = ACTIONS(2349), + [sym_xhp_modifier] = ACTIONS(2349), + [sym_xhp_identifier] = ACTIONS(2349), + [sym_xhp_class_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(3), }, - [1125] = { - [sym_identifier] = ACTIONS(2481), - [sym_variable] = ACTIONS(2483), - [sym_pipe_variable] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_newtype] = ACTIONS(2481), - [anon_sym_shape] = ACTIONS(2481), - [anon_sym_tuple] = ACTIONS(2481), - [anon_sym_clone] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2481), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_LT_LT_LT] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_throw] = ACTIONS(2481), - [anon_sym_echo] = ACTIONS(2481), - [anon_sym_unset] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_concurrent] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_case] = ACTIONS(2481), - [anon_sym_default] = ACTIONS(2481), - [anon_sym_foreach] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_using] = ACTIONS(2481), - [sym_float] = ACTIONS(2483), - [sym_integer] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2481), - [anon_sym_True] = ACTIONS(2481), - [anon_sym_TRUE] = ACTIONS(2481), - [anon_sym_false] = ACTIONS(2481), - [anon_sym_False] = ACTIONS(2481), - [anon_sym_FALSE] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2481), - [anon_sym_Null] = ACTIONS(2481), - [anon_sym_NULL] = ACTIONS(2481), - [sym_string] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_array] = ACTIONS(2481), - [anon_sym_varray] = ACTIONS(2481), - [anon_sym_darray] = ACTIONS(2481), - [anon_sym_vec] = ACTIONS(2481), - [anon_sym_dict] = ACTIONS(2481), - [anon_sym_keyset] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_trait] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_class] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), - [anon_sym_abstract] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2483), - [sym_final_modifier] = ACTIONS(2481), - [sym_xhp_modifier] = ACTIONS(2481), - [sym_xhp_identifier] = ACTIONS(2481), - [sym_xhp_class_identifier] = ACTIONS(2483), + [1029] = { + [sym_identifier] = ACTIONS(2353), + [sym_variable] = ACTIONS(2355), + [sym_pipe_variable] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_newtype] = ACTIONS(2353), + [anon_sym_shape] = ACTIONS(2353), + [anon_sym_tuple] = ACTIONS(2353), + [anon_sym_clone] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_print] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_include] = ACTIONS(2353), + [anon_sym_include_once] = ACTIONS(2353), + [anon_sym_require] = ACTIONS(2353), + [anon_sym_require_once] = ACTIONS(2353), + [anon_sym_BSLASH] = ACTIONS(2355), + [anon_sym_self] = ACTIONS(2353), + [anon_sym_parent] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_LT_LT] = ACTIONS(2353), + [anon_sym_LT_LT_LT] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_echo] = ACTIONS(2353), + [anon_sym_unset] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_concurrent] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_function] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_case] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_foreach] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [sym_float] = ACTIONS(2355), + [sym_integer] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_True] = ACTIONS(2353), + [anon_sym_TRUE] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_False] = ACTIONS(2353), + [anon_sym_FALSE] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_Null] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [sym_string] = ACTIONS(2355), + [anon_sym_AT] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_array] = ACTIONS(2353), + [anon_sym_varray] = ACTIONS(2353), + [anon_sym_darray] = ACTIONS(2353), + [anon_sym_vec] = ACTIONS(2353), + [anon_sym_dict] = ACTIONS(2353), + [anon_sym_keyset] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_list] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_interface] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_abstract] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2355), + [sym_final_modifier] = ACTIONS(2353), + [sym_xhp_modifier] = ACTIONS(2353), + [sym_xhp_identifier] = ACTIONS(2353), + [sym_xhp_class_identifier] = ACTIONS(2355), [sym_comment] = ACTIONS(3), }, - [1126] = { - [sym_identifier] = ACTIONS(2473), - [sym_variable] = ACTIONS(2475), - [sym_pipe_variable] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_newtype] = ACTIONS(2473), - [anon_sym_shape] = ACTIONS(2473), - [anon_sym_tuple] = ACTIONS(2473), - [anon_sym_clone] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_print] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_LT_LT_LT] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_throw] = ACTIONS(2473), - [anon_sym_echo] = ACTIONS(2473), - [anon_sym_unset] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_concurrent] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_switch] = ACTIONS(2473), - [anon_sym_case] = ACTIONS(2473), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_foreach] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_using] = ACTIONS(2473), - [sym_float] = ACTIONS(2475), - [sym_integer] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_True] = ACTIONS(2473), - [anon_sym_TRUE] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [anon_sym_False] = ACTIONS(2473), - [anon_sym_FALSE] = ACTIONS(2473), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_Null] = ACTIONS(2473), - [anon_sym_NULL] = ACTIONS(2473), - [sym_string] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_array] = ACTIONS(2473), - [anon_sym_varray] = ACTIONS(2473), - [anon_sym_darray] = ACTIONS(2473), - [anon_sym_vec] = ACTIONS(2473), - [anon_sym_dict] = ACTIONS(2473), - [anon_sym_keyset] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_trait] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2475), - [sym_final_modifier] = ACTIONS(2473), - [sym_xhp_modifier] = ACTIONS(2473), - [sym_xhp_identifier] = ACTIONS(2473), - [sym_xhp_class_identifier] = ACTIONS(2475), + [1030] = { + [sym_identifier] = ACTIONS(2573), + [sym_variable] = ACTIONS(2575), + [sym_pipe_variable] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_newtype] = ACTIONS(2573), + [anon_sym_shape] = ACTIONS(2573), + [anon_sym_tuple] = ACTIONS(2573), + [anon_sym_clone] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_include_once] = ACTIONS(2573), + [anon_sym_require] = ACTIONS(2573), + [anon_sym_require_once] = ACTIONS(2573), + [anon_sym_BSLASH] = ACTIONS(2575), + [anon_sym_self] = ACTIONS(2573), + [anon_sym_parent] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_LT_LT] = ACTIONS(2573), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_echo] = ACTIONS(2573), + [anon_sym_unset] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_concurrent] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_case] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_foreach] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [sym_float] = ACTIONS(2575), + [sym_integer] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_True] = ACTIONS(2573), + [anon_sym_TRUE] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_False] = ACTIONS(2573), + [anon_sym_FALSE] = ACTIONS(2573), + [anon_sym_null] = ACTIONS(2573), + [anon_sym_Null] = ACTIONS(2573), + [anon_sym_NULL] = ACTIONS(2573), + [sym_string] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_array] = ACTIONS(2573), + [anon_sym_varray] = ACTIONS(2573), + [anon_sym_darray] = ACTIONS(2573), + [anon_sym_vec] = ACTIONS(2573), + [anon_sym_dict] = ACTIONS(2573), + [anon_sym_keyset] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_list] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_interface] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_abstract] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(2575), + [sym_final_modifier] = ACTIONS(2573), + [sym_xhp_modifier] = ACTIONS(2573), + [sym_xhp_identifier] = ACTIONS(2573), + [sym_xhp_class_identifier] = ACTIONS(2575), [sym_comment] = ACTIONS(3), }, - [1127] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1031] = { + [sym_identifier] = ACTIONS(2361), + [sym_variable] = ACTIONS(2363), + [sym_pipe_variable] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_newtype] = ACTIONS(2361), + [anon_sym_shape] = ACTIONS(2361), + [anon_sym_tuple] = ACTIONS(2361), + [anon_sym_clone] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_print] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_include] = ACTIONS(2361), + [anon_sym_include_once] = ACTIONS(2361), + [anon_sym_require] = ACTIONS(2361), + [anon_sym_require_once] = ACTIONS(2361), + [anon_sym_BSLASH] = ACTIONS(2363), + [anon_sym_self] = ACTIONS(2361), + [anon_sym_parent] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_LT_LT] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_echo] = ACTIONS(2361), + [anon_sym_unset] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_concurrent] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_foreach] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [sym_float] = ACTIONS(2363), + [sym_integer] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_True] = ACTIONS(2361), + [anon_sym_TRUE] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_False] = ACTIONS(2361), + [anon_sym_FALSE] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_Null] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [sym_string] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_array] = ACTIONS(2361), + [anon_sym_varray] = ACTIONS(2361), + [anon_sym_darray] = ACTIONS(2361), + [anon_sym_vec] = ACTIONS(2361), + [anon_sym_dict] = ACTIONS(2361), + [anon_sym_keyset] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_list] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_interface] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2363), + [sym_final_modifier] = ACTIONS(2361), + [sym_xhp_modifier] = ACTIONS(2361), + [sym_xhp_identifier] = ACTIONS(2361), + [sym_xhp_class_identifier] = ACTIONS(2363), [sym_comment] = ACTIONS(3), }, - [1128] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), + [1032] = { + [sym_identifier] = ACTIONS(2569), + [sym_variable] = ACTIONS(2571), + [sym_pipe_variable] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_newtype] = ACTIONS(2569), + [anon_sym_shape] = ACTIONS(2569), + [anon_sym_tuple] = ACTIONS(2569), + [anon_sym_clone] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_include_once] = ACTIONS(2569), + [anon_sym_require] = ACTIONS(2569), + [anon_sym_require_once] = ACTIONS(2569), + [anon_sym_BSLASH] = ACTIONS(2571), + [anon_sym_self] = ACTIONS(2569), + [anon_sym_parent] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_throw] = ACTIONS(2569), + [anon_sym_echo] = ACTIONS(2569), + [anon_sym_unset] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_concurrent] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_function] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_switch] = ACTIONS(2569), + [anon_sym_case] = ACTIONS(2569), + [anon_sym_default] = ACTIONS(2569), + [anon_sym_foreach] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_using] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [sym_integer] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_True] = ACTIONS(2569), + [anon_sym_TRUE] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_False] = ACTIONS(2569), + [anon_sym_FALSE] = ACTIONS(2569), + [anon_sym_null] = ACTIONS(2569), + [anon_sym_Null] = ACTIONS(2569), + [anon_sym_NULL] = ACTIONS(2569), + [sym_string] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_array] = ACTIONS(2569), + [anon_sym_varray] = ACTIONS(2569), + [anon_sym_darray] = ACTIONS(2569), + [anon_sym_vec] = ACTIONS(2569), + [anon_sym_dict] = ACTIONS(2569), + [anon_sym_keyset] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_interface] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_abstract] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(2571), + [sym_final_modifier] = ACTIONS(2569), + [sym_xhp_modifier] = ACTIONS(2569), + [sym_xhp_identifier] = ACTIONS(2569), + [sym_xhp_class_identifier] = ACTIONS(2571), [sym_comment] = ACTIONS(3), }, - [1129] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1033] = { + [sym_identifier] = ACTIONS(2561), + [sym_variable] = ACTIONS(2563), + [sym_pipe_variable] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_newtype] = ACTIONS(2561), + [anon_sym_shape] = ACTIONS(2561), + [anon_sym_tuple] = ACTIONS(2561), + [anon_sym_clone] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_print] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_include] = ACTIONS(2561), + [anon_sym_include_once] = ACTIONS(2561), + [anon_sym_require] = ACTIONS(2561), + [anon_sym_require_once] = ACTIONS(2561), + [anon_sym_BSLASH] = ACTIONS(2563), + [anon_sym_self] = ACTIONS(2561), + [anon_sym_parent] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_LT_LT] = ACTIONS(2561), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_echo] = ACTIONS(2561), + [anon_sym_unset] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_concurrent] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_function] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_case] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_foreach] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [sym_float] = ACTIONS(2563), + [sym_integer] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_True] = ACTIONS(2561), + [anon_sym_TRUE] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_False] = ACTIONS(2561), + [anon_sym_FALSE] = ACTIONS(2561), + [anon_sym_null] = ACTIONS(2561), + [anon_sym_Null] = ACTIONS(2561), + [anon_sym_NULL] = ACTIONS(2561), + [sym_string] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_array] = ACTIONS(2561), + [anon_sym_varray] = ACTIONS(2561), + [anon_sym_darray] = ACTIONS(2561), + [anon_sym_vec] = ACTIONS(2561), + [anon_sym_dict] = ACTIONS(2561), + [anon_sym_keyset] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_list] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_interface] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_abstract] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(2563), + [sym_final_modifier] = ACTIONS(2561), + [sym_xhp_modifier] = ACTIONS(2561), + [sym_xhp_identifier] = ACTIONS(2561), + [sym_xhp_class_identifier] = ACTIONS(2563), [sym_comment] = ACTIONS(3), }, - [1130] = { - [sym_identifier] = ACTIONS(2465), - [sym_variable] = ACTIONS(2467), - [sym_pipe_variable] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_newtype] = ACTIONS(2465), - [anon_sym_shape] = ACTIONS(2465), - [anon_sym_tuple] = ACTIONS(2465), - [anon_sym_clone] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_print] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_LT_LT_LT] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_echo] = ACTIONS(2465), - [anon_sym_unset] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_concurrent] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_foreach] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [sym_float] = ACTIONS(2467), - [sym_integer] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_True] = ACTIONS(2465), - [anon_sym_TRUE] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [anon_sym_False] = ACTIONS(2465), - [anon_sym_FALSE] = ACTIONS(2465), - [anon_sym_null] = ACTIONS(2465), - [anon_sym_Null] = ACTIONS(2465), - [anon_sym_NULL] = ACTIONS(2465), - [sym_string] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_array] = ACTIONS(2465), - [anon_sym_varray] = ACTIONS(2465), - [anon_sym_darray] = ACTIONS(2465), - [anon_sym_vec] = ACTIONS(2465), - [anon_sym_dict] = ACTIONS(2465), - [anon_sym_keyset] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_trait] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2467), - [sym_final_modifier] = ACTIONS(2465), - [sym_xhp_modifier] = ACTIONS(2465), - [sym_xhp_identifier] = ACTIONS(2465), - [sym_xhp_class_identifier] = ACTIONS(2467), + [1034] = { + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_case] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [1131] = { - [sym_identifier] = ACTIONS(2137), - [sym_variable] = ACTIONS(2139), - [sym_pipe_variable] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_newtype] = ACTIONS(2137), - [anon_sym_shape] = ACTIONS(2137), - [anon_sym_tuple] = ACTIONS(2137), - [anon_sym_clone] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_print] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_LT_LT_LT] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_echo] = ACTIONS(2137), - [anon_sym_unset] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_concurrent] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_case] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_foreach] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [sym_float] = ACTIONS(2139), - [sym_integer] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_True] = ACTIONS(2137), - [anon_sym_TRUE] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [anon_sym_False] = ACTIONS(2137), - [anon_sym_FALSE] = ACTIONS(2137), - [anon_sym_null] = ACTIONS(2137), - [anon_sym_Null] = ACTIONS(2137), - [anon_sym_NULL] = ACTIONS(2137), - [sym_string] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_array] = ACTIONS(2137), - [anon_sym_varray] = ACTIONS(2137), - [anon_sym_darray] = ACTIONS(2137), - [anon_sym_vec] = ACTIONS(2137), - [anon_sym_dict] = ACTIONS(2137), - [anon_sym_keyset] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2139), - [sym_final_modifier] = ACTIONS(2137), - [sym_xhp_modifier] = ACTIONS(2137), - [sym_xhp_identifier] = ACTIONS(2137), - [sym_xhp_class_identifier] = ACTIONS(2139), + [1035] = { + [sym_identifier] = ACTIONS(2557), + [sym_variable] = ACTIONS(2559), + [sym_pipe_variable] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_newtype] = ACTIONS(2557), + [anon_sym_shape] = ACTIONS(2557), + [anon_sym_tuple] = ACTIONS(2557), + [anon_sym_clone] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_print] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_include] = ACTIONS(2557), + [anon_sym_include_once] = ACTIONS(2557), + [anon_sym_require] = ACTIONS(2557), + [anon_sym_require_once] = ACTIONS(2557), + [anon_sym_BSLASH] = ACTIONS(2559), + [anon_sym_self] = ACTIONS(2557), + [anon_sym_parent] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2557), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_echo] = ACTIONS(2557), + [anon_sym_unset] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_concurrent] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_function] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_case] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_foreach] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [sym_float] = ACTIONS(2559), + [sym_integer] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_True] = ACTIONS(2557), + [anon_sym_TRUE] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_False] = ACTIONS(2557), + [anon_sym_FALSE] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2557), + [anon_sym_Null] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2557), + [sym_string] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_array] = ACTIONS(2557), + [anon_sym_varray] = ACTIONS(2557), + [anon_sym_darray] = ACTIONS(2557), + [anon_sym_vec] = ACTIONS(2557), + [anon_sym_dict] = ACTIONS(2557), + [anon_sym_keyset] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_await] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_interface] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_abstract] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(2559), + [sym_final_modifier] = ACTIONS(2557), + [sym_xhp_modifier] = ACTIONS(2557), + [sym_xhp_identifier] = ACTIONS(2557), + [sym_xhp_class_identifier] = ACTIONS(2559), [sym_comment] = ACTIONS(3), }, - [1132] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1036] = { + [sym_identifier] = ACTIONS(2553), + [sym_variable] = ACTIONS(2555), + [sym_pipe_variable] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_newtype] = ACTIONS(2553), + [anon_sym_shape] = ACTIONS(2553), + [anon_sym_tuple] = ACTIONS(2553), + [anon_sym_clone] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_include] = ACTIONS(2553), + [anon_sym_include_once] = ACTIONS(2553), + [anon_sym_require] = ACTIONS(2553), + [anon_sym_require_once] = ACTIONS(2553), + [anon_sym_BSLASH] = ACTIONS(2555), + [anon_sym_self] = ACTIONS(2553), + [anon_sym_parent] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_LT_LT] = ACTIONS(2553), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_echo] = ACTIONS(2553), + [anon_sym_unset] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_concurrent] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_function] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_case] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_foreach] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [sym_float] = ACTIONS(2555), + [sym_integer] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_True] = ACTIONS(2553), + [anon_sym_TRUE] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_False] = ACTIONS(2553), + [anon_sym_FALSE] = ACTIONS(2553), + [anon_sym_null] = ACTIONS(2553), + [anon_sym_Null] = ACTIONS(2553), + [anon_sym_NULL] = ACTIONS(2553), + [sym_string] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_array] = ACTIONS(2553), + [anon_sym_varray] = ACTIONS(2553), + [anon_sym_darray] = ACTIONS(2553), + [anon_sym_vec] = ACTIONS(2553), + [anon_sym_dict] = ACTIONS(2553), + [anon_sym_keyset] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_list] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_await] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_interface] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(2555), + [sym_final_modifier] = ACTIONS(2553), + [sym_xhp_modifier] = ACTIONS(2553), + [sym_xhp_identifier] = ACTIONS(2553), + [sym_xhp_class_identifier] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + }, + [1037] = { + [sym_identifier] = ACTIONS(2445), + [sym_variable] = ACTIONS(2447), + [sym_pipe_variable] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_newtype] = ACTIONS(2445), + [anon_sym_shape] = ACTIONS(2445), + [anon_sym_tuple] = ACTIONS(2445), + [anon_sym_clone] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_include] = ACTIONS(2445), + [anon_sym_include_once] = ACTIONS(2445), + [anon_sym_require] = ACTIONS(2445), + [anon_sym_require_once] = ACTIONS(2445), + [anon_sym_BSLASH] = ACTIONS(2447), + [anon_sym_self] = ACTIONS(2445), + [anon_sym_parent] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_LT_LT_LT] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_echo] = ACTIONS(2445), + [anon_sym_unset] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_concurrent] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_elseif] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_foreach] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [sym_float] = ACTIONS(2447), + [sym_integer] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_True] = ACTIONS(2445), + [anon_sym_TRUE] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_False] = ACTIONS(2445), + [anon_sym_FALSE] = ACTIONS(2445), + [anon_sym_null] = ACTIONS(2445), + [anon_sym_Null] = ACTIONS(2445), + [anon_sym_NULL] = ACTIONS(2445), + [sym_string] = ACTIONS(2447), + [anon_sym_AT] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_array] = ACTIONS(2445), + [anon_sym_varray] = ACTIONS(2445), + [anon_sym_darray] = ACTIONS(2445), + [anon_sym_vec] = ACTIONS(2445), + [anon_sym_dict] = ACTIONS(2445), + [anon_sym_keyset] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_list] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_abstract] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2447), + [sym_final_modifier] = ACTIONS(2445), + [sym_xhp_modifier] = ACTIONS(2445), + [sym_xhp_identifier] = ACTIONS(2445), + [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, - [1133] = { - [sym_identifier] = ACTIONS(2433), - [sym_variable] = ACTIONS(2435), - [sym_pipe_variable] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_newtype] = ACTIONS(2433), - [anon_sym_shape] = ACTIONS(2433), - [anon_sym_tuple] = ACTIONS(2433), - [anon_sym_clone] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_print] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_LT_LT_LT] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_echo] = ACTIONS(2433), - [anon_sym_unset] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_concurrent] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_case] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_foreach] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [sym_float] = ACTIONS(2435), - [sym_integer] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_True] = ACTIONS(2433), - [anon_sym_TRUE] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [anon_sym_False] = ACTIONS(2433), - [anon_sym_FALSE] = ACTIONS(2433), - [anon_sym_null] = ACTIONS(2433), - [anon_sym_Null] = ACTIONS(2433), - [anon_sym_NULL] = ACTIONS(2433), - [sym_string] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_array] = ACTIONS(2433), - [anon_sym_varray] = ACTIONS(2433), - [anon_sym_darray] = ACTIONS(2433), - [anon_sym_vec] = ACTIONS(2433), - [anon_sym_dict] = ACTIONS(2433), - [anon_sym_keyset] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_abstract] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2435), - [sym_final_modifier] = ACTIONS(2433), - [sym_xhp_modifier] = ACTIONS(2433), - [sym_xhp_identifier] = ACTIONS(2433), - [sym_xhp_class_identifier] = ACTIONS(2435), + [1038] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1134] = { - [sym_identifier] = ACTIONS(2425), - [sym_variable] = ACTIONS(2427), - [sym_pipe_variable] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_newtype] = ACTIONS(2425), - [anon_sym_shape] = ACTIONS(2425), - [anon_sym_tuple] = ACTIONS(2425), - [anon_sym_clone] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_LT_LT] = ACTIONS(2425), - [anon_sym_LT_LT_LT] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_echo] = ACTIONS(2425), - [anon_sym_unset] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_concurrent] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_function] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_case] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_foreach] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [sym_float] = ACTIONS(2427), - [sym_integer] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_True] = ACTIONS(2425), - [anon_sym_TRUE] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [anon_sym_False] = ACTIONS(2425), - [anon_sym_FALSE] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(2425), - [anon_sym_Null] = ACTIONS(2425), - [anon_sym_NULL] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_array] = ACTIONS(2425), - [anon_sym_varray] = ACTIONS(2425), - [anon_sym_darray] = ACTIONS(2425), - [anon_sym_vec] = ACTIONS(2425), - [anon_sym_dict] = ACTIONS(2425), - [anon_sym_keyset] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_interface] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_abstract] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(2427), - [sym_final_modifier] = ACTIONS(2425), - [sym_xhp_modifier] = ACTIONS(2425), - [sym_xhp_identifier] = ACTIONS(2425), - [sym_xhp_class_identifier] = ACTIONS(2427), + [1039] = { + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [1135] = { + [1040] = { [sym_identifier] = ACTIONS(2089), [sym_variable] = ACTIONS(2091), [sym_pipe_variable] = ACTIONS(2091), @@ -142721,799 +127935,1239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2091), [sym_comment] = ACTIONS(3), }, - [1136] = { - [sym_identifier] = ACTIONS(2409), - [sym_variable] = ACTIONS(2411), - [sym_pipe_variable] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_newtype] = ACTIONS(2409), - [anon_sym_shape] = ACTIONS(2409), - [anon_sym_tuple] = ACTIONS(2409), - [anon_sym_clone] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(2409), - [anon_sym_LT_LT_LT] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_echo] = ACTIONS(2409), - [anon_sym_unset] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_concurrent] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_function] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_case] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_foreach] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [sym_float] = ACTIONS(2411), - [sym_integer] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_True] = ACTIONS(2409), - [anon_sym_TRUE] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [anon_sym_False] = ACTIONS(2409), - [anon_sym_FALSE] = ACTIONS(2409), - [anon_sym_null] = ACTIONS(2409), - [anon_sym_Null] = ACTIONS(2409), - [anon_sym_NULL] = ACTIONS(2409), - [sym_string] = ACTIONS(2411), - [anon_sym_AT] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_array] = ACTIONS(2409), - [anon_sym_varray] = ACTIONS(2409), - [anon_sym_darray] = ACTIONS(2409), - [anon_sym_vec] = ACTIONS(2409), - [anon_sym_dict] = ACTIONS(2409), - [anon_sym_keyset] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_trait] = ACTIONS(2409), - [anon_sym_interface] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_abstract] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(2411), - [sym_final_modifier] = ACTIONS(2409), - [sym_xhp_modifier] = ACTIONS(2409), - [sym_xhp_identifier] = ACTIONS(2409), - [sym_xhp_class_identifier] = ACTIONS(2411), + [1041] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1137] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1042] = { + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2369), + [sym_variable] = ACTIONS(2371), + [sym_pipe_variable] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_newtype] = ACTIONS(2369), + [anon_sym_shape] = ACTIONS(2369), + [anon_sym_tuple] = ACTIONS(2369), + [anon_sym_clone] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_print] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_include] = ACTIONS(2369), + [anon_sym_include_once] = ACTIONS(2369), + [anon_sym_require] = ACTIONS(2369), + [anon_sym_require_once] = ACTIONS(2369), + [anon_sym_BSLASH] = ACTIONS(2371), + [anon_sym_self] = ACTIONS(2369), + [anon_sym_parent] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_LT_LT] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_echo] = ACTIONS(2369), + [anon_sym_unset] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_concurrent] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_function] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_elseif] = ACTIONS(2369), + [anon_sym_else] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_foreach] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [sym_float] = ACTIONS(2371), + [sym_integer] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_True] = ACTIONS(2369), + [anon_sym_TRUE] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_False] = ACTIONS(2369), + [anon_sym_FALSE] = ACTIONS(2369), + [anon_sym_null] = ACTIONS(2369), + [anon_sym_Null] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [sym_string] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_array] = ACTIONS(2369), + [anon_sym_varray] = ACTIONS(2369), + [anon_sym_darray] = ACTIONS(2369), + [anon_sym_vec] = ACTIONS(2369), + [anon_sym_dict] = ACTIONS(2369), + [anon_sym_keyset] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_list] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_interface] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_abstract] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2371), + [sym_final_modifier] = ACTIONS(2369), + [sym_xhp_modifier] = ACTIONS(2369), + [sym_xhp_identifier] = ACTIONS(2369), + [sym_xhp_class_identifier] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + }, + [1043] = { + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2365), + [sym_variable] = ACTIONS(2367), + [sym_pipe_variable] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_newtype] = ACTIONS(2365), + [anon_sym_shape] = ACTIONS(2365), + [anon_sym_tuple] = ACTIONS(2365), + [anon_sym_clone] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_print] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_include] = ACTIONS(2365), + [anon_sym_include_once] = ACTIONS(2365), + [anon_sym_require] = ACTIONS(2365), + [anon_sym_require_once] = ACTIONS(2365), + [anon_sym_BSLASH] = ACTIONS(2367), + [anon_sym_self] = ACTIONS(2365), + [anon_sym_parent] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_LT_LT] = ACTIONS(2365), + [anon_sym_LT_LT_LT] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_echo] = ACTIONS(2365), + [anon_sym_unset] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_concurrent] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_elseif] = ACTIONS(2365), + [anon_sym_else] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_foreach] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [sym_float] = ACTIONS(2367), + [sym_integer] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_True] = ACTIONS(2365), + [anon_sym_TRUE] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_False] = ACTIONS(2365), + [anon_sym_FALSE] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [anon_sym_Null] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [sym_string] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_array] = ACTIONS(2365), + [anon_sym_varray] = ACTIONS(2365), + [anon_sym_darray] = ACTIONS(2365), + [anon_sym_vec] = ACTIONS(2365), + [anon_sym_dict] = ACTIONS(2365), + [anon_sym_keyset] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_list] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2367), + [sym_final_modifier] = ACTIONS(2365), + [sym_xhp_modifier] = ACTIONS(2365), + [sym_xhp_identifier] = ACTIONS(2365), + [sym_xhp_class_identifier] = ACTIONS(2367), + [sym_comment] = ACTIONS(3), + }, + [1044] = { + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2361), + [sym_variable] = ACTIONS(2363), + [sym_pipe_variable] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_newtype] = ACTIONS(2361), + [anon_sym_shape] = ACTIONS(2361), + [anon_sym_tuple] = ACTIONS(2361), + [anon_sym_clone] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_print] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_include] = ACTIONS(2361), + [anon_sym_include_once] = ACTIONS(2361), + [anon_sym_require] = ACTIONS(2361), + [anon_sym_require_once] = ACTIONS(2361), + [anon_sym_BSLASH] = ACTIONS(2363), + [anon_sym_self] = ACTIONS(2361), + [anon_sym_parent] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_LT_LT] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_echo] = ACTIONS(2361), + [anon_sym_unset] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_concurrent] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_elseif] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_foreach] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [sym_float] = ACTIONS(2363), + [sym_integer] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_True] = ACTIONS(2361), + [anon_sym_TRUE] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_False] = ACTIONS(2361), + [anon_sym_FALSE] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_Null] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [sym_string] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_array] = ACTIONS(2361), + [anon_sym_varray] = ACTIONS(2361), + [anon_sym_darray] = ACTIONS(2361), + [anon_sym_vec] = ACTIONS(2361), + [anon_sym_dict] = ACTIONS(2361), + [anon_sym_keyset] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_list] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_interface] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2363), + [sym_final_modifier] = ACTIONS(2361), + [sym_xhp_modifier] = ACTIONS(2361), + [sym_xhp_identifier] = ACTIONS(2361), + [sym_xhp_class_identifier] = ACTIONS(2363), + [sym_comment] = ACTIONS(3), + }, + [1045] = { + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2353), + [sym_variable] = ACTIONS(2355), + [sym_pipe_variable] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_newtype] = ACTIONS(2353), + [anon_sym_shape] = ACTIONS(2353), + [anon_sym_tuple] = ACTIONS(2353), + [anon_sym_clone] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_print] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_include] = ACTIONS(2353), + [anon_sym_include_once] = ACTIONS(2353), + [anon_sym_require] = ACTIONS(2353), + [anon_sym_require_once] = ACTIONS(2353), + [anon_sym_BSLASH] = ACTIONS(2355), + [anon_sym_self] = ACTIONS(2353), + [anon_sym_parent] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_LT_LT] = ACTIONS(2353), + [anon_sym_LT_LT_LT] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_echo] = ACTIONS(2353), + [anon_sym_unset] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_concurrent] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_function] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_elseif] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_foreach] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [sym_float] = ACTIONS(2355), + [sym_integer] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_True] = ACTIONS(2353), + [anon_sym_TRUE] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_False] = ACTIONS(2353), + [anon_sym_FALSE] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_Null] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [sym_string] = ACTIONS(2355), + [anon_sym_AT] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_array] = ACTIONS(2353), + [anon_sym_varray] = ACTIONS(2353), + [anon_sym_darray] = ACTIONS(2353), + [anon_sym_vec] = ACTIONS(2353), + [anon_sym_dict] = ACTIONS(2353), + [anon_sym_keyset] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_list] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_interface] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_abstract] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2355), + [sym_final_modifier] = ACTIONS(2353), + [sym_xhp_modifier] = ACTIONS(2353), + [sym_xhp_identifier] = ACTIONS(2353), + [sym_xhp_class_identifier] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + }, + [1046] = { + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2349), + [sym_variable] = ACTIONS(2351), + [sym_pipe_variable] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_newtype] = ACTIONS(2349), + [anon_sym_shape] = ACTIONS(2349), + [anon_sym_tuple] = ACTIONS(2349), + [anon_sym_clone] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_print] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_include] = ACTIONS(2349), + [anon_sym_include_once] = ACTIONS(2349), + [anon_sym_require] = ACTIONS(2349), + [anon_sym_require_once] = ACTIONS(2349), + [anon_sym_BSLASH] = ACTIONS(2351), + [anon_sym_self] = ACTIONS(2349), + [anon_sym_parent] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_LT_LT] = ACTIONS(2349), + [anon_sym_LT_LT_LT] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_echo] = ACTIONS(2349), + [anon_sym_unset] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_concurrent] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_elseif] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_foreach] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [sym_float] = ACTIONS(2351), + [sym_integer] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_True] = ACTIONS(2349), + [anon_sym_TRUE] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_False] = ACTIONS(2349), + [anon_sym_FALSE] = ACTIONS(2349), + [anon_sym_null] = ACTIONS(2349), + [anon_sym_Null] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [sym_string] = ACTIONS(2351), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_array] = ACTIONS(2349), + [anon_sym_varray] = ACTIONS(2349), + [anon_sym_darray] = ACTIONS(2349), + [anon_sym_vec] = ACTIONS(2349), + [anon_sym_dict] = ACTIONS(2349), + [anon_sym_keyset] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_list] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_interface] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_abstract] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2351), + [sym_final_modifier] = ACTIONS(2349), + [sym_xhp_modifier] = ACTIONS(2349), + [sym_xhp_identifier] = ACTIONS(2349), + [sym_xhp_class_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(3), }, - [1138] = { - [sym_identifier] = ACTIONS(2405), - [sym_variable] = ACTIONS(2407), - [sym_pipe_variable] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_newtype] = ACTIONS(2405), - [anon_sym_shape] = ACTIONS(2405), - [anon_sym_tuple] = ACTIONS(2405), - [anon_sym_clone] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), - [anon_sym_LT_LT_LT] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_echo] = ACTIONS(2405), - [anon_sym_unset] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_concurrent] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_foreach] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [sym_float] = ACTIONS(2407), - [sym_integer] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_True] = ACTIONS(2405), - [anon_sym_TRUE] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [anon_sym_False] = ACTIONS(2405), - [anon_sym_FALSE] = ACTIONS(2405), - [anon_sym_null] = ACTIONS(2405), - [anon_sym_Null] = ACTIONS(2405), - [anon_sym_NULL] = ACTIONS(2405), - [sym_string] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_array] = ACTIONS(2405), - [anon_sym_varray] = ACTIONS(2405), - [anon_sym_darray] = ACTIONS(2405), - [anon_sym_vec] = ACTIONS(2405), - [anon_sym_dict] = ACTIONS(2405), - [anon_sym_keyset] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_trait] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_abstract] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2407), - [sym_final_modifier] = ACTIONS(2405), - [sym_xhp_modifier] = ACTIONS(2405), - [sym_xhp_identifier] = ACTIONS(2405), - [sym_xhp_class_identifier] = ACTIONS(2407), + [1047] = { + [sym_identifier] = ACTIONS(2549), + [sym_variable] = ACTIONS(2551), + [sym_pipe_variable] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_newtype] = ACTIONS(2549), + [anon_sym_shape] = ACTIONS(2549), + [anon_sym_tuple] = ACTIONS(2549), + [anon_sym_clone] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_include] = ACTIONS(2549), + [anon_sym_include_once] = ACTIONS(2549), + [anon_sym_require] = ACTIONS(2549), + [anon_sym_require_once] = ACTIONS(2549), + [anon_sym_BSLASH] = ACTIONS(2551), + [anon_sym_self] = ACTIONS(2549), + [anon_sym_parent] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2549), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_echo] = ACTIONS(2549), + [anon_sym_unset] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_concurrent] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_function] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_case] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_foreach] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [sym_float] = ACTIONS(2551), + [sym_integer] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_True] = ACTIONS(2549), + [anon_sym_TRUE] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_False] = ACTIONS(2549), + [anon_sym_FALSE] = ACTIONS(2549), + [anon_sym_null] = ACTIONS(2549), + [anon_sym_Null] = ACTIONS(2549), + [anon_sym_NULL] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_array] = ACTIONS(2549), + [anon_sym_varray] = ACTIONS(2549), + [anon_sym_darray] = ACTIONS(2549), + [anon_sym_vec] = ACTIONS(2549), + [anon_sym_dict] = ACTIONS(2549), + [anon_sym_keyset] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_list] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_interface] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_abstract] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2551), + [sym_final_modifier] = ACTIONS(2549), + [sym_xhp_modifier] = ACTIONS(2549), + [sym_xhp_identifier] = ACTIONS(2549), + [sym_xhp_class_identifier] = ACTIONS(2551), [sym_comment] = ACTIONS(3), }, - [1139] = { - [sym_identifier] = ACTIONS(2093), - [sym_variable] = ACTIONS(2095), - [sym_pipe_variable] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_newtype] = ACTIONS(2093), - [anon_sym_shape] = ACTIONS(2093), - [anon_sym_tuple] = ACTIONS(2093), - [anon_sym_clone] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_print] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_include] = ACTIONS(2093), - [anon_sym_include_once] = ACTIONS(2093), - [anon_sym_require] = ACTIONS(2093), - [anon_sym_require_once] = ACTIONS(2093), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_self] = ACTIONS(2093), - [anon_sym_parent] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_LT_LT_LT] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_echo] = ACTIONS(2093), - [anon_sym_unset] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_concurrent] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_foreach] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [sym_float] = ACTIONS(2095), - [sym_integer] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_True] = ACTIONS(2093), - [anon_sym_TRUE] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [anon_sym_False] = ACTIONS(2093), - [anon_sym_FALSE] = ACTIONS(2093), - [anon_sym_null] = ACTIONS(2093), - [anon_sym_Null] = ACTIONS(2093), - [anon_sym_NULL] = ACTIONS(2093), - [sym_string] = ACTIONS(2095), - [anon_sym_AT] = ACTIONS(2095), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_array] = ACTIONS(2093), - [anon_sym_varray] = ACTIONS(2093), - [anon_sym_darray] = ACTIONS(2093), - [anon_sym_vec] = ACTIONS(2093), - [anon_sym_dict] = ACTIONS(2093), - [anon_sym_keyset] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_list] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2095), - [sym_final_modifier] = ACTIONS(2093), - [sym_xhp_modifier] = ACTIONS(2093), - [sym_xhp_identifier] = ACTIONS(2093), - [sym_xhp_class_identifier] = ACTIONS(2095), + [1048] = { + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2345), + [sym_variable] = ACTIONS(2347), + [sym_pipe_variable] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_newtype] = ACTIONS(2345), + [anon_sym_shape] = ACTIONS(2345), + [anon_sym_tuple] = ACTIONS(2345), + [anon_sym_clone] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_print] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_include] = ACTIONS(2345), + [anon_sym_include_once] = ACTIONS(2345), + [anon_sym_require] = ACTIONS(2345), + [anon_sym_require_once] = ACTIONS(2345), + [anon_sym_BSLASH] = ACTIONS(2347), + [anon_sym_self] = ACTIONS(2345), + [anon_sym_parent] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_LT_LT_LT] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_echo] = ACTIONS(2345), + [anon_sym_unset] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_concurrent] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_function] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_elseif] = ACTIONS(2345), + [anon_sym_else] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_foreach] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [sym_float] = ACTIONS(2347), + [sym_integer] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_True] = ACTIONS(2345), + [anon_sym_TRUE] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_False] = ACTIONS(2345), + [anon_sym_FALSE] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_Null] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [sym_string] = ACTIONS(2347), + [anon_sym_AT] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_array] = ACTIONS(2345), + [anon_sym_varray] = ACTIONS(2345), + [anon_sym_darray] = ACTIONS(2345), + [anon_sym_vec] = ACTIONS(2345), + [anon_sym_dict] = ACTIONS(2345), + [anon_sym_keyset] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_list] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_abstract] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2347), + [sym_final_modifier] = ACTIONS(2345), + [sym_xhp_modifier] = ACTIONS(2345), + [sym_xhp_identifier] = ACTIONS(2345), + [sym_xhp_class_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(3), }, - [1140] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1049] = { + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2337), + [sym_variable] = ACTIONS(2339), + [sym_pipe_variable] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_newtype] = ACTIONS(2337), + [anon_sym_shape] = ACTIONS(2337), + [anon_sym_tuple] = ACTIONS(2337), + [anon_sym_clone] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_print] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_include] = ACTIONS(2337), + [anon_sym_include_once] = ACTIONS(2337), + [anon_sym_require] = ACTIONS(2337), + [anon_sym_require_once] = ACTIONS(2337), + [anon_sym_BSLASH] = ACTIONS(2339), + [anon_sym_self] = ACTIONS(2337), + [anon_sym_parent] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_LT_LT_LT] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_echo] = ACTIONS(2337), + [anon_sym_unset] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_concurrent] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_function] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_elseif] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_foreach] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [sym_float] = ACTIONS(2339), + [sym_integer] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_True] = ACTIONS(2337), + [anon_sym_TRUE] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_False] = ACTIONS(2337), + [anon_sym_FALSE] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_Null] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [sym_string] = ACTIONS(2339), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_array] = ACTIONS(2337), + [anon_sym_varray] = ACTIONS(2337), + [anon_sym_darray] = ACTIONS(2337), + [anon_sym_vec] = ACTIONS(2337), + [anon_sym_dict] = ACTIONS(2337), + [anon_sym_keyset] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_list] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_abstract] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2339), + [sym_final_modifier] = ACTIONS(2337), + [sym_xhp_modifier] = ACTIONS(2337), + [sym_xhp_identifier] = ACTIONS(2337), + [sym_xhp_class_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(3), }, - [1141] = { - [sym_identifier] = ACTIONS(2397), - [sym_variable] = ACTIONS(2399), - [sym_pipe_variable] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_newtype] = ACTIONS(2397), - [anon_sym_shape] = ACTIONS(2397), - [anon_sym_tuple] = ACTIONS(2397), - [anon_sym_clone] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_print] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LT_LT_LT] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_echo] = ACTIONS(2397), - [anon_sym_unset] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_concurrent] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_case] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_foreach] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [sym_float] = ACTIONS(2399), - [sym_integer] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_True] = ACTIONS(2397), - [anon_sym_TRUE] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [anon_sym_False] = ACTIONS(2397), - [anon_sym_FALSE] = ACTIONS(2397), - [anon_sym_null] = ACTIONS(2397), - [anon_sym_Null] = ACTIONS(2397), - [anon_sym_NULL] = ACTIONS(2397), - [sym_string] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_array] = ACTIONS(2397), - [anon_sym_varray] = ACTIONS(2397), - [anon_sym_darray] = ACTIONS(2397), - [anon_sym_vec] = ACTIONS(2397), - [anon_sym_dict] = ACTIONS(2397), - [anon_sym_keyset] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_interface] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_abstract] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(2399), - [sym_final_modifier] = ACTIONS(2397), - [sym_xhp_modifier] = ACTIONS(2397), - [sym_xhp_identifier] = ACTIONS(2397), - [sym_xhp_class_identifier] = ACTIONS(2399), + [1050] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2329), + [sym_variable] = ACTIONS(2331), + [sym_pipe_variable] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_newtype] = ACTIONS(2329), + [anon_sym_shape] = ACTIONS(2329), + [anon_sym_tuple] = ACTIONS(2329), + [anon_sym_clone] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_print] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_include] = ACTIONS(2329), + [anon_sym_include_once] = ACTIONS(2329), + [anon_sym_require] = ACTIONS(2329), + [anon_sym_require_once] = ACTIONS(2329), + [anon_sym_BSLASH] = ACTIONS(2331), + [anon_sym_self] = ACTIONS(2329), + [anon_sym_parent] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_LT_LT_LT] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_echo] = ACTIONS(2329), + [anon_sym_unset] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_concurrent] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_elseif] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_foreach] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [sym_float] = ACTIONS(2331), + [sym_integer] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_True] = ACTIONS(2329), + [anon_sym_TRUE] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_False] = ACTIONS(2329), + [anon_sym_FALSE] = ACTIONS(2329), + [anon_sym_null] = ACTIONS(2329), + [anon_sym_Null] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [sym_string] = ACTIONS(2331), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_array] = ACTIONS(2329), + [anon_sym_varray] = ACTIONS(2329), + [anon_sym_darray] = ACTIONS(2329), + [anon_sym_vec] = ACTIONS(2329), + [anon_sym_dict] = ACTIONS(2329), + [anon_sym_keyset] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_list] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2331), + [sym_final_modifier] = ACTIONS(2329), + [sym_xhp_modifier] = ACTIONS(2329), + [sym_xhp_identifier] = ACTIONS(2329), + [sym_xhp_class_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(3), }, - [1142] = { - [sym_identifier] = ACTIONS(2389), - [sym_variable] = ACTIONS(2391), - [sym_pipe_variable] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_newtype] = ACTIONS(2389), - [anon_sym_shape] = ACTIONS(2389), - [anon_sym_tuple] = ACTIONS(2389), - [anon_sym_clone] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_print] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2389), - [anon_sym_LT_LT_LT] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_echo] = ACTIONS(2389), - [anon_sym_unset] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_concurrent] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_case] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_foreach] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_using] = ACTIONS(2389), - [sym_float] = ACTIONS(2391), - [sym_integer] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_True] = ACTIONS(2389), - [anon_sym_TRUE] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [anon_sym_False] = ACTIONS(2389), - [anon_sym_FALSE] = ACTIONS(2389), - [anon_sym_null] = ACTIONS(2389), - [anon_sym_Null] = ACTIONS(2389), - [anon_sym_NULL] = ACTIONS(2389), - [sym_string] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_array] = ACTIONS(2389), - [anon_sym_varray] = ACTIONS(2389), - [anon_sym_darray] = ACTIONS(2389), - [anon_sym_vec] = ACTIONS(2389), - [anon_sym_dict] = ACTIONS(2389), - [anon_sym_keyset] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_class] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2391), - [sym_final_modifier] = ACTIONS(2389), - [sym_xhp_modifier] = ACTIONS(2389), - [sym_xhp_identifier] = ACTIONS(2389), - [sym_xhp_class_identifier] = ACTIONS(2391), + [1051] = { + [sym_identifier] = ACTIONS(2365), + [sym_variable] = ACTIONS(2367), + [sym_pipe_variable] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_newtype] = ACTIONS(2365), + [anon_sym_shape] = ACTIONS(2365), + [anon_sym_tuple] = ACTIONS(2365), + [anon_sym_clone] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_print] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_include] = ACTIONS(2365), + [anon_sym_include_once] = ACTIONS(2365), + [anon_sym_require] = ACTIONS(2365), + [anon_sym_require_once] = ACTIONS(2365), + [anon_sym_BSLASH] = ACTIONS(2367), + [anon_sym_self] = ACTIONS(2365), + [anon_sym_parent] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_LT_LT] = ACTIONS(2365), + [anon_sym_LT_LT_LT] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_echo] = ACTIONS(2365), + [anon_sym_unset] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_concurrent] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_foreach] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [sym_float] = ACTIONS(2367), + [sym_integer] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_True] = ACTIONS(2365), + [anon_sym_TRUE] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_False] = ACTIONS(2365), + [anon_sym_FALSE] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [anon_sym_Null] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [sym_string] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_array] = ACTIONS(2365), + [anon_sym_varray] = ACTIONS(2365), + [anon_sym_darray] = ACTIONS(2365), + [anon_sym_vec] = ACTIONS(2365), + [anon_sym_dict] = ACTIONS(2365), + [anon_sym_keyset] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_list] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2367), + [sym_final_modifier] = ACTIONS(2365), + [sym_xhp_modifier] = ACTIONS(2365), + [sym_xhp_identifier] = ACTIONS(2365), + [sym_xhp_class_identifier] = ACTIONS(2367), [sym_comment] = ACTIONS(3), }, - [1143] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1052] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2325), + [sym_variable] = ACTIONS(2327), + [sym_pipe_variable] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_newtype] = ACTIONS(2325), + [anon_sym_shape] = ACTIONS(2325), + [anon_sym_tuple] = ACTIONS(2325), + [anon_sym_clone] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_print] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_include] = ACTIONS(2325), + [anon_sym_include_once] = ACTIONS(2325), + [anon_sym_require] = ACTIONS(2325), + [anon_sym_require_once] = ACTIONS(2325), + [anon_sym_BSLASH] = ACTIONS(2327), + [anon_sym_self] = ACTIONS(2325), + [anon_sym_parent] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_LT_LT] = ACTIONS(2325), + [anon_sym_LT_LT_LT] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_echo] = ACTIONS(2325), + [anon_sym_unset] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_concurrent] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_function] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_elseif] = ACTIONS(2325), + [anon_sym_else] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_foreach] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [sym_float] = ACTIONS(2327), + [sym_integer] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_True] = ACTIONS(2325), + [anon_sym_TRUE] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_False] = ACTIONS(2325), + [anon_sym_FALSE] = ACTIONS(2325), + [anon_sym_null] = ACTIONS(2325), + [anon_sym_Null] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [sym_string] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_array] = ACTIONS(2325), + [anon_sym_varray] = ACTIONS(2325), + [anon_sym_darray] = ACTIONS(2325), + [anon_sym_vec] = ACTIONS(2325), + [anon_sym_dict] = ACTIONS(2325), + [anon_sym_keyset] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_list] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_interface] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2327), + [sym_final_modifier] = ACTIONS(2325), + [sym_xhp_modifier] = ACTIONS(2325), + [sym_xhp_identifier] = ACTIONS(2325), + [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [1144] = { - [sym_identifier] = ACTIONS(2385), - [sym_variable] = ACTIONS(2387), - [sym_pipe_variable] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_newtype] = ACTIONS(2385), - [anon_sym_shape] = ACTIONS(2385), - [anon_sym_tuple] = ACTIONS(2385), - [anon_sym_clone] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_print] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_LT_LT] = ACTIONS(2385), - [anon_sym_LT_LT_LT] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_echo] = ACTIONS(2385), - [anon_sym_unset] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_concurrent] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_function] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_case] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_foreach] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [sym_float] = ACTIONS(2387), - [sym_integer] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_True] = ACTIONS(2385), - [anon_sym_TRUE] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_False] = ACTIONS(2385), - [anon_sym_FALSE] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2385), - [anon_sym_Null] = ACTIONS(2385), - [anon_sym_NULL] = ACTIONS(2385), - [sym_string] = ACTIONS(2387), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_array] = ACTIONS(2385), - [anon_sym_varray] = ACTIONS(2385), - [anon_sym_darray] = ACTIONS(2385), - [anon_sym_vec] = ACTIONS(2385), - [anon_sym_dict] = ACTIONS(2385), - [anon_sym_keyset] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_interface] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_abstract] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(2387), - [sym_final_modifier] = ACTIONS(2385), - [sym_xhp_modifier] = ACTIONS(2385), - [sym_xhp_identifier] = ACTIONS(2385), - [sym_xhp_class_identifier] = ACTIONS(2387), + [1053] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2321), + [sym_variable] = ACTIONS(2323), + [sym_pipe_variable] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_newtype] = ACTIONS(2321), + [anon_sym_shape] = ACTIONS(2321), + [anon_sym_tuple] = ACTIONS(2321), + [anon_sym_clone] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_include] = ACTIONS(2321), + [anon_sym_include_once] = ACTIONS(2321), + [anon_sym_require] = ACTIONS(2321), + [anon_sym_require_once] = ACTIONS(2321), + [anon_sym_BSLASH] = ACTIONS(2323), + [anon_sym_self] = ACTIONS(2321), + [anon_sym_parent] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_LT_LT_LT] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_echo] = ACTIONS(2321), + [anon_sym_unset] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_concurrent] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_elseif] = ACTIONS(2321), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [sym_float] = ACTIONS(2323), + [sym_integer] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_True] = ACTIONS(2321), + [anon_sym_TRUE] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_False] = ACTIONS(2321), + [anon_sym_FALSE] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [anon_sym_Null] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [sym_string] = ACTIONS(2323), + [anon_sym_AT] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_array] = ACTIONS(2321), + [anon_sym_varray] = ACTIONS(2321), + [anon_sym_darray] = ACTIONS(2321), + [anon_sym_vec] = ACTIONS(2321), + [anon_sym_dict] = ACTIONS(2321), + [anon_sym_keyset] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_list] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [sym_final_modifier] = ACTIONS(2321), + [sym_xhp_modifier] = ACTIONS(2321), + [sym_xhp_identifier] = ACTIONS(2321), + [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [1145] = { + [1054] = { + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2317), + [sym_variable] = ACTIONS(2319), + [sym_pipe_variable] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_newtype] = ACTIONS(2317), + [anon_sym_shape] = ACTIONS(2317), + [anon_sym_tuple] = ACTIONS(2317), + [anon_sym_clone] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_print] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_include] = ACTIONS(2317), + [anon_sym_include_once] = ACTIONS(2317), + [anon_sym_require] = ACTIONS(2317), + [anon_sym_require_once] = ACTIONS(2317), + [anon_sym_BSLASH] = ACTIONS(2319), + [anon_sym_self] = ACTIONS(2317), + [anon_sym_parent] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_LT_LT] = ACTIONS(2317), + [anon_sym_LT_LT_LT] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_echo] = ACTIONS(2317), + [anon_sym_unset] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_concurrent] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_elseif] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_foreach] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [sym_float] = ACTIONS(2319), + [sym_integer] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_True] = ACTIONS(2317), + [anon_sym_TRUE] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_False] = ACTIONS(2317), + [anon_sym_FALSE] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [anon_sym_Null] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [sym_string] = ACTIONS(2319), + [anon_sym_AT] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_array] = ACTIONS(2317), + [anon_sym_varray] = ACTIONS(2317), + [anon_sym_darray] = ACTIONS(2317), + [anon_sym_vec] = ACTIONS(2317), + [anon_sym_dict] = ACTIONS(2317), + [anon_sym_keyset] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_list] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2319), + [sym_final_modifier] = ACTIONS(2317), + [sym_xhp_modifier] = ACTIONS(2317), + [sym_xhp_identifier] = ACTIONS(2317), + [sym_xhp_class_identifier] = ACTIONS(2319), + [sym_comment] = ACTIONS(3), + }, + [1055] = { [sym_identifier] = ACTIONS(2369), [sym_variable] = ACTIONS(2371), [sym_pipe_variable] = ACTIONS(2371), @@ -143601,624 +129255,1415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2371), [sym_comment] = ACTIONS(3), }, - [1146] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1056] = { + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2309), + [sym_variable] = ACTIONS(2311), + [sym_pipe_variable] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_newtype] = ACTIONS(2309), + [anon_sym_shape] = ACTIONS(2309), + [anon_sym_tuple] = ACTIONS(2309), + [anon_sym_clone] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_print] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_include] = ACTIONS(2309), + [anon_sym_include_once] = ACTIONS(2309), + [anon_sym_require] = ACTIONS(2309), + [anon_sym_require_once] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2311), + [anon_sym_self] = ACTIONS(2309), + [anon_sym_parent] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_LT_LT_LT] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_throw] = ACTIONS(2309), + [anon_sym_echo] = ACTIONS(2309), + [anon_sym_unset] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_concurrent] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_elseif] = ACTIONS(2309), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_foreach] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_using] = ACTIONS(2309), + [sym_float] = ACTIONS(2311), + [sym_integer] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_True] = ACTIONS(2309), + [anon_sym_TRUE] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_False] = ACTIONS(2309), + [anon_sym_FALSE] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [anon_sym_Null] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2309), + [sym_string] = ACTIONS(2311), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_array] = ACTIONS(2309), + [anon_sym_varray] = ACTIONS(2309), + [anon_sym_darray] = ACTIONS(2309), + [anon_sym_vec] = ACTIONS(2309), + [anon_sym_dict] = ACTIONS(2309), + [anon_sym_keyset] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2309), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_abstract] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2311), + [sym_final_modifier] = ACTIONS(2309), + [sym_xhp_modifier] = ACTIONS(2309), + [sym_xhp_identifier] = ACTIONS(2309), + [sym_xhp_class_identifier] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2305), + [sym_variable] = ACTIONS(2307), + [sym_pipe_variable] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_newtype] = ACTIONS(2305), + [anon_sym_shape] = ACTIONS(2305), + [anon_sym_tuple] = ACTIONS(2305), + [anon_sym_clone] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_print] = ACTIONS(2305), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_include] = ACTIONS(2305), + [anon_sym_include_once] = ACTIONS(2305), + [anon_sym_require] = ACTIONS(2305), + [anon_sym_require_once] = ACTIONS(2305), + [anon_sym_BSLASH] = ACTIONS(2307), + [anon_sym_self] = ACTIONS(2305), + [anon_sym_parent] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_LT_LT] = ACTIONS(2305), + [anon_sym_LT_LT_LT] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_throw] = ACTIONS(2305), + [anon_sym_echo] = ACTIONS(2305), + [anon_sym_unset] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_concurrent] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_function] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_elseif] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_switch] = ACTIONS(2305), + [anon_sym_foreach] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_using] = ACTIONS(2305), + [sym_float] = ACTIONS(2307), + [sym_integer] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_True] = ACTIONS(2305), + [anon_sym_TRUE] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_False] = ACTIONS(2305), + [anon_sym_FALSE] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [anon_sym_Null] = ACTIONS(2305), + [anon_sym_NULL] = ACTIONS(2305), + [sym_string] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_array] = ACTIONS(2305), + [anon_sym_varray] = ACTIONS(2305), + [anon_sym_darray] = ACTIONS(2305), + [anon_sym_vec] = ACTIONS(2305), + [anon_sym_dict] = ACTIONS(2305), + [anon_sym_keyset] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2307), + [sym_final_modifier] = ACTIONS(2305), + [sym_xhp_modifier] = ACTIONS(2305), + [sym_xhp_identifier] = ACTIONS(2305), + [sym_xhp_class_identifier] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + }, + [1058] = { + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_case] = ACTIONS(2035), + [anon_sym_default] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2301), + [sym_variable] = ACTIONS(2303), + [sym_pipe_variable] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_newtype] = ACTIONS(2301), + [anon_sym_shape] = ACTIONS(2301), + [anon_sym_tuple] = ACTIONS(2301), + [anon_sym_clone] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_print] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_include] = ACTIONS(2301), + [anon_sym_include_once] = ACTIONS(2301), + [anon_sym_require] = ACTIONS(2301), + [anon_sym_require_once] = ACTIONS(2301), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_self] = ACTIONS(2301), + [anon_sym_parent] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_LT] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_throw] = ACTIONS(2301), + [anon_sym_echo] = ACTIONS(2301), + [anon_sym_unset] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_concurrent] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_function] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_elseif] = ACTIONS(2301), + [anon_sym_else] = ACTIONS(2301), + [anon_sym_switch] = ACTIONS(2301), + [anon_sym_foreach] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_using] = ACTIONS(2301), + [sym_float] = ACTIONS(2303), + [sym_integer] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_True] = ACTIONS(2301), + [anon_sym_TRUE] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_False] = ACTIONS(2301), + [anon_sym_FALSE] = ACTIONS(2301), + [anon_sym_null] = ACTIONS(2301), + [anon_sym_Null] = ACTIONS(2301), + [anon_sym_NULL] = ACTIONS(2301), + [sym_string] = ACTIONS(2303), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_array] = ACTIONS(2301), + [anon_sym_varray] = ACTIONS(2301), + [anon_sym_darray] = ACTIONS(2301), + [anon_sym_vec] = ACTIONS(2301), + [anon_sym_dict] = ACTIONS(2301), + [anon_sym_keyset] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_list] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2301), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_abstract] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2303), + [sym_final_modifier] = ACTIONS(2301), + [sym_xhp_modifier] = ACTIONS(2301), + [sym_xhp_identifier] = ACTIONS(2301), + [sym_xhp_class_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + }, + [1060] = { + [sym_identifier] = ACTIONS(2545), + [sym_variable] = ACTIONS(2547), + [sym_pipe_variable] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_newtype] = ACTIONS(2545), + [anon_sym_shape] = ACTIONS(2545), + [anon_sym_tuple] = ACTIONS(2545), + [anon_sym_clone] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_include] = ACTIONS(2545), + [anon_sym_include_once] = ACTIONS(2545), + [anon_sym_require] = ACTIONS(2545), + [anon_sym_require_once] = ACTIONS(2545), + [anon_sym_BSLASH] = ACTIONS(2547), + [anon_sym_self] = ACTIONS(2545), + [anon_sym_parent] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(2545), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_echo] = ACTIONS(2545), + [anon_sym_unset] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_concurrent] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_case] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_foreach] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [sym_float] = ACTIONS(2547), + [sym_integer] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_True] = ACTIONS(2545), + [anon_sym_TRUE] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_False] = ACTIONS(2545), + [anon_sym_FALSE] = ACTIONS(2545), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_Null] = ACTIONS(2545), + [anon_sym_NULL] = ACTIONS(2545), + [sym_string] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_array] = ACTIONS(2545), + [anon_sym_varray] = ACTIONS(2545), + [anon_sym_darray] = ACTIONS(2545), + [anon_sym_vec] = ACTIONS(2545), + [anon_sym_dict] = ACTIONS(2545), + [anon_sym_keyset] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_list] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_interface] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_abstract] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2547), + [sym_final_modifier] = ACTIONS(2545), + [sym_xhp_modifier] = ACTIONS(2545), + [sym_xhp_identifier] = ACTIONS(2545), + [sym_xhp_class_identifier] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + }, + [1061] = { + [sym_identifier] = ACTIONS(2537), + [sym_variable] = ACTIONS(2539), + [sym_pipe_variable] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_newtype] = ACTIONS(2537), + [anon_sym_shape] = ACTIONS(2537), + [anon_sym_tuple] = ACTIONS(2537), + [anon_sym_clone] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_print] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_include] = ACTIONS(2537), + [anon_sym_include_once] = ACTIONS(2537), + [anon_sym_require] = ACTIONS(2537), + [anon_sym_require_once] = ACTIONS(2537), + [anon_sym_BSLASH] = ACTIONS(2539), + [anon_sym_self] = ACTIONS(2537), + [anon_sym_parent] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_LT_LT] = ACTIONS(2537), + [anon_sym_LT_LT_LT] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_echo] = ACTIONS(2537), + [anon_sym_unset] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_concurrent] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_function] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_case] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_foreach] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [sym_float] = ACTIONS(2539), + [sym_integer] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_True] = ACTIONS(2537), + [anon_sym_TRUE] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_False] = ACTIONS(2537), + [anon_sym_FALSE] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2537), + [anon_sym_Null] = ACTIONS(2537), + [anon_sym_NULL] = ACTIONS(2537), + [sym_string] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_array] = ACTIONS(2537), + [anon_sym_varray] = ACTIONS(2537), + [anon_sym_darray] = ACTIONS(2537), + [anon_sym_vec] = ACTIONS(2537), + [anon_sym_dict] = ACTIONS(2537), + [anon_sym_keyset] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_list] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_interface] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_abstract] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2539), + [sym_final_modifier] = ACTIONS(2537), + [sym_xhp_modifier] = ACTIONS(2537), + [sym_xhp_identifier] = ACTIONS(2537), + [sym_xhp_class_identifier] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2297), + [sym_variable] = ACTIONS(2299), + [sym_pipe_variable] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_newtype] = ACTIONS(2297), + [anon_sym_shape] = ACTIONS(2297), + [anon_sym_tuple] = ACTIONS(2297), + [anon_sym_clone] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_include] = ACTIONS(2297), + [anon_sym_include_once] = ACTIONS(2297), + [anon_sym_require] = ACTIONS(2297), + [anon_sym_require_once] = ACTIONS(2297), + [anon_sym_BSLASH] = ACTIONS(2299), + [anon_sym_self] = ACTIONS(2297), + [anon_sym_parent] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_echo] = ACTIONS(2297), + [anon_sym_unset] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_concurrent] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_elseif] = ACTIONS(2297), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_foreach] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_using] = ACTIONS(2297), + [sym_float] = ACTIONS(2299), + [sym_integer] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_True] = ACTIONS(2297), + [anon_sym_TRUE] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_False] = ACTIONS(2297), + [anon_sym_FALSE] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [anon_sym_Null] = ACTIONS(2297), + [anon_sym_NULL] = ACTIONS(2297), + [sym_string] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_array] = ACTIONS(2297), + [anon_sym_varray] = ACTIONS(2297), + [anon_sym_darray] = ACTIONS(2297), + [anon_sym_vec] = ACTIONS(2297), + [anon_sym_dict] = ACTIONS(2297), + [anon_sym_keyset] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_list] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2299), + [sym_final_modifier] = ACTIONS(2297), + [sym_xhp_modifier] = ACTIONS(2297), + [sym_xhp_identifier] = ACTIONS(2297), + [sym_xhp_class_identifier] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2289), + [sym_variable] = ACTIONS(2291), + [sym_pipe_variable] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_newtype] = ACTIONS(2289), + [anon_sym_shape] = ACTIONS(2289), + [anon_sym_tuple] = ACTIONS(2289), + [anon_sym_clone] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_print] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_include] = ACTIONS(2289), + [anon_sym_include_once] = ACTIONS(2289), + [anon_sym_require] = ACTIONS(2289), + [anon_sym_require_once] = ACTIONS(2289), + [anon_sym_BSLASH] = ACTIONS(2291), + [anon_sym_self] = ACTIONS(2289), + [anon_sym_parent] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_LT_LT] = ACTIONS(2289), + [anon_sym_LT_LT_LT] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_echo] = ACTIONS(2289), + [anon_sym_unset] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_concurrent] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_elseif] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_foreach] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [sym_float] = ACTIONS(2291), + [sym_integer] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_True] = ACTIONS(2289), + [anon_sym_TRUE] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_False] = ACTIONS(2289), + [anon_sym_FALSE] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [anon_sym_Null] = ACTIONS(2289), + [anon_sym_NULL] = ACTIONS(2289), + [sym_string] = ACTIONS(2291), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_array] = ACTIONS(2289), + [anon_sym_varray] = ACTIONS(2289), + [anon_sym_darray] = ACTIONS(2289), + [anon_sym_vec] = ACTIONS(2289), + [anon_sym_dict] = ACTIONS(2289), + [anon_sym_keyset] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_list] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_PLUS_PLUS] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2291), + [sym_final_modifier] = ACTIONS(2289), + [sym_xhp_modifier] = ACTIONS(2289), + [sym_xhp_identifier] = ACTIONS(2289), + [sym_xhp_class_identifier] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2285), + [sym_variable] = ACTIONS(2287), + [sym_pipe_variable] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_newtype] = ACTIONS(2285), + [anon_sym_shape] = ACTIONS(2285), + [anon_sym_tuple] = ACTIONS(2285), + [anon_sym_clone] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_print] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_include] = ACTIONS(2285), + [anon_sym_include_once] = ACTIONS(2285), + [anon_sym_require] = ACTIONS(2285), + [anon_sym_require_once] = ACTIONS(2285), + [anon_sym_BSLASH] = ACTIONS(2287), + [anon_sym_self] = ACTIONS(2285), + [anon_sym_parent] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_LT_LT_LT] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_echo] = ACTIONS(2285), + [anon_sym_unset] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_concurrent] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_elseif] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_foreach] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [sym_float] = ACTIONS(2287), + [sym_integer] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_True] = ACTIONS(2285), + [anon_sym_TRUE] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_False] = ACTIONS(2285), + [anon_sym_FALSE] = ACTIONS(2285), + [anon_sym_null] = ACTIONS(2285), + [anon_sym_Null] = ACTIONS(2285), + [anon_sym_NULL] = ACTIONS(2285), + [sym_string] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_array] = ACTIONS(2285), + [anon_sym_varray] = ACTIONS(2285), + [anon_sym_darray] = ACTIONS(2285), + [anon_sym_vec] = ACTIONS(2285), + [anon_sym_dict] = ACTIONS(2285), + [anon_sym_keyset] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_list] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2287), + [sym_final_modifier] = ACTIONS(2285), + [sym_xhp_modifier] = ACTIONS(2285), + [sym_xhp_identifier] = ACTIONS(2285), + [sym_xhp_class_identifier] = ACTIONS(2287), [sym_comment] = ACTIONS(3), }, - [1147] = { - [sym_identifier] = ACTIONS(2357), - [sym_variable] = ACTIONS(2359), - [sym_pipe_variable] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_newtype] = ACTIONS(2357), - [anon_sym_shape] = ACTIONS(2357), - [anon_sym_tuple] = ACTIONS(2357), - [anon_sym_clone] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_print] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_LT_LT_LT] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_echo] = ACTIONS(2357), - [anon_sym_unset] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_concurrent] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_case] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_foreach] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_using] = ACTIONS(2357), - [sym_float] = ACTIONS(2359), - [sym_integer] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_True] = ACTIONS(2357), - [anon_sym_TRUE] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [anon_sym_False] = ACTIONS(2357), - [anon_sym_FALSE] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2357), - [anon_sym_Null] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2357), - [sym_string] = ACTIONS(2359), - [anon_sym_AT] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_array] = ACTIONS(2357), - [anon_sym_varray] = ACTIONS(2357), - [anon_sym_darray] = ACTIONS(2357), - [anon_sym_vec] = ACTIONS(2357), - [anon_sym_dict] = ACTIONS(2357), - [anon_sym_keyset] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_trait] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(2359), - [sym_final_modifier] = ACTIONS(2357), - [sym_xhp_modifier] = ACTIONS(2357), - [sym_xhp_identifier] = ACTIONS(2357), - [sym_xhp_class_identifier] = ACTIONS(2359), + [1065] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2281), + [sym_variable] = ACTIONS(2283), + [sym_pipe_variable] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_newtype] = ACTIONS(2281), + [anon_sym_shape] = ACTIONS(2281), + [anon_sym_tuple] = ACTIONS(2281), + [anon_sym_clone] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_print] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_include] = ACTIONS(2281), + [anon_sym_include_once] = ACTIONS(2281), + [anon_sym_require] = ACTIONS(2281), + [anon_sym_require_once] = ACTIONS(2281), + [anon_sym_BSLASH] = ACTIONS(2283), + [anon_sym_self] = ACTIONS(2281), + [anon_sym_parent] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_LT_LT] = ACTIONS(2281), + [anon_sym_LT_LT_LT] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_echo] = ACTIONS(2281), + [anon_sym_unset] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_concurrent] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_elseif] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_foreach] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [sym_float] = ACTIONS(2283), + [sym_integer] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_True] = ACTIONS(2281), + [anon_sym_TRUE] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_False] = ACTIONS(2281), + [anon_sym_FALSE] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [anon_sym_Null] = ACTIONS(2281), + [anon_sym_NULL] = ACTIONS(2281), + [sym_string] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_array] = ACTIONS(2281), + [anon_sym_varray] = ACTIONS(2281), + [anon_sym_darray] = ACTIONS(2281), + [anon_sym_vec] = ACTIONS(2281), + [anon_sym_dict] = ACTIONS(2281), + [anon_sym_keyset] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2283), + [sym_final_modifier] = ACTIONS(2281), + [sym_xhp_modifier] = ACTIONS(2281), + [sym_xhp_identifier] = ACTIONS(2281), + [sym_xhp_class_identifier] = ACTIONS(2283), [sym_comment] = ACTIONS(3), }, - [1148] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1066] = { + [ts_builtin_sym_end] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2277), + [sym_variable] = ACTIONS(2279), + [sym_pipe_variable] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_newtype] = ACTIONS(2277), + [anon_sym_shape] = ACTIONS(2277), + [anon_sym_tuple] = ACTIONS(2277), + [anon_sym_clone] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2277), + [anon_sym_include] = ACTIONS(2277), + [anon_sym_include_once] = ACTIONS(2277), + [anon_sym_require] = ACTIONS(2277), + [anon_sym_require_once] = ACTIONS(2277), + [anon_sym_BSLASH] = ACTIONS(2279), + [anon_sym_self] = ACTIONS(2277), + [anon_sym_parent] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_LT_LT_LT] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_throw] = ACTIONS(2277), + [anon_sym_echo] = ACTIONS(2277), + [anon_sym_unset] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_concurrent] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_function] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_elseif] = ACTIONS(2277), + [anon_sym_else] = ACTIONS(2277), + [anon_sym_switch] = ACTIONS(2277), + [anon_sym_foreach] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_using] = ACTIONS(2277), + [sym_float] = ACTIONS(2279), + [sym_integer] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_True] = ACTIONS(2277), + [anon_sym_TRUE] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_False] = ACTIONS(2277), + [anon_sym_FALSE] = ACTIONS(2277), + [anon_sym_null] = ACTIONS(2277), + [anon_sym_Null] = ACTIONS(2277), + [anon_sym_NULL] = ACTIONS(2277), + [sym_string] = ACTIONS(2279), + [anon_sym_AT] = ACTIONS(2279), + [anon_sym_TILDE] = ACTIONS(2279), + [anon_sym_array] = ACTIONS(2277), + [anon_sym_varray] = ACTIONS(2277), + [anon_sym_darray] = ACTIONS(2277), + [anon_sym_vec] = ACTIONS(2277), + [anon_sym_dict] = ACTIONS(2277), + [anon_sym_keyset] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_PLUS_PLUS] = ACTIONS(2279), + [anon_sym_DASH_DASH] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_interface] = ACTIONS(2277), + [anon_sym_class] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_abstract] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(2279), + [sym_final_modifier] = ACTIONS(2277), + [sym_xhp_modifier] = ACTIONS(2277), + [sym_xhp_identifier] = ACTIONS(2277), + [sym_xhp_class_identifier] = ACTIONS(2279), [sym_comment] = ACTIONS(3), }, - [1149] = { - [sym_identifier] = ACTIONS(2349), - [sym_variable] = ACTIONS(2351), - [sym_pipe_variable] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_newtype] = ACTIONS(2349), - [anon_sym_shape] = ACTIONS(2349), - [anon_sym_tuple] = ACTIONS(2349), - [anon_sym_clone] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_print] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_LT_LT_LT] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_echo] = ACTIONS(2349), - [anon_sym_unset] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_concurrent] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_case] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_foreach] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_using] = ACTIONS(2349), - [sym_float] = ACTIONS(2351), - [sym_integer] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_True] = ACTIONS(2349), - [anon_sym_TRUE] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_False] = ACTIONS(2349), - [anon_sym_FALSE] = ACTIONS(2349), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_Null] = ACTIONS(2349), - [anon_sym_NULL] = ACTIONS(2349), - [sym_string] = ACTIONS(2351), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_array] = ACTIONS(2349), - [anon_sym_varray] = ACTIONS(2349), - [anon_sym_darray] = ACTIONS(2349), - [anon_sym_vec] = ACTIONS(2349), - [anon_sym_dict] = ACTIONS(2349), - [anon_sym_keyset] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(2351), - [sym_final_modifier] = ACTIONS(2349), - [sym_xhp_modifier] = ACTIONS(2349), - [sym_xhp_identifier] = ACTIONS(2349), - [sym_xhp_class_identifier] = ACTIONS(2351), + [1067] = { + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2273), + [sym_variable] = ACTIONS(2275), + [sym_pipe_variable] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_newtype] = ACTIONS(2273), + [anon_sym_shape] = ACTIONS(2273), + [anon_sym_tuple] = ACTIONS(2273), + [anon_sym_clone] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_print] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_include] = ACTIONS(2273), + [anon_sym_include_once] = ACTIONS(2273), + [anon_sym_require] = ACTIONS(2273), + [anon_sym_require_once] = ACTIONS(2273), + [anon_sym_BSLASH] = ACTIONS(2275), + [anon_sym_self] = ACTIONS(2273), + [anon_sym_parent] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2273), + [anon_sym_LT_LT_LT] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_echo] = ACTIONS(2273), + [anon_sym_unset] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_concurrent] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_elseif] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_foreach] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [sym_float] = ACTIONS(2275), + [sym_integer] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_True] = ACTIONS(2273), + [anon_sym_TRUE] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_False] = ACTIONS(2273), + [anon_sym_FALSE] = ACTIONS(2273), + [anon_sym_null] = ACTIONS(2273), + [anon_sym_Null] = ACTIONS(2273), + [anon_sym_NULL] = ACTIONS(2273), + [sym_string] = ACTIONS(2275), + [anon_sym_AT] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2275), + [anon_sym_array] = ACTIONS(2273), + [anon_sym_varray] = ACTIONS(2273), + [anon_sym_darray] = ACTIONS(2273), + [anon_sym_vec] = ACTIONS(2273), + [anon_sym_dict] = ACTIONS(2273), + [anon_sym_keyset] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_list] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_PLUS_PLUS] = ACTIONS(2275), + [anon_sym_DASH_DASH] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2275), + [sym_final_modifier] = ACTIONS(2273), + [sym_xhp_modifier] = ACTIONS(2273), + [sym_xhp_identifier] = ACTIONS(2273), + [sym_xhp_class_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), }, - [1150] = { - [sym_identifier] = ACTIONS(2341), - [sym_variable] = ACTIONS(2343), - [sym_pipe_variable] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_newtype] = ACTIONS(2341), - [anon_sym_shape] = ACTIONS(2341), - [anon_sym_tuple] = ACTIONS(2341), - [anon_sym_clone] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_print] = ACTIONS(2341), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_LT_LT] = ACTIONS(2341), - [anon_sym_LT_LT_LT] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_throw] = ACTIONS(2341), - [anon_sym_echo] = ACTIONS(2341), - [anon_sym_unset] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_concurrent] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_function] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_case] = ACTIONS(2341), - [anon_sym_default] = ACTIONS(2341), - [anon_sym_foreach] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_using] = ACTIONS(2341), - [sym_float] = ACTIONS(2343), - [sym_integer] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_True] = ACTIONS(2341), - [anon_sym_TRUE] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_False] = ACTIONS(2341), - [anon_sym_FALSE] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [anon_sym_Null] = ACTIONS(2341), - [anon_sym_NULL] = ACTIONS(2341), - [sym_string] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_array] = ACTIONS(2341), - [anon_sym_varray] = ACTIONS(2341), - [anon_sym_darray] = ACTIONS(2341), - [anon_sym_vec] = ACTIONS(2341), - [anon_sym_dict] = ACTIONS(2341), - [anon_sym_keyset] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2343), - [anon_sym_DASH_DASH] = ACTIONS(2343), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_interface] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_abstract] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2343), - [sym_final_modifier] = ACTIONS(2341), - [sym_xhp_modifier] = ACTIONS(2341), - [sym_xhp_identifier] = ACTIONS(2341), - [sym_xhp_class_identifier] = ACTIONS(2343), + [1068] = { + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2269), + [sym_variable] = ACTIONS(2271), + [sym_pipe_variable] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_newtype] = ACTIONS(2269), + [anon_sym_shape] = ACTIONS(2269), + [anon_sym_tuple] = ACTIONS(2269), + [anon_sym_clone] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_print] = ACTIONS(2269), + [anon_sym_namespace] = ACTIONS(2269), + [anon_sym_include] = ACTIONS(2269), + [anon_sym_include_once] = ACTIONS(2269), + [anon_sym_require] = ACTIONS(2269), + [anon_sym_require_once] = ACTIONS(2269), + [anon_sym_BSLASH] = ACTIONS(2271), + [anon_sym_self] = ACTIONS(2269), + [anon_sym_parent] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_LT_LT_LT] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_echo] = ACTIONS(2269), + [anon_sym_unset] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_concurrent] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_elseif] = ACTIONS(2269), + [anon_sym_else] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_foreach] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_using] = ACTIONS(2269), + [sym_float] = ACTIONS(2271), + [sym_integer] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_True] = ACTIONS(2269), + [anon_sym_TRUE] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_False] = ACTIONS(2269), + [anon_sym_FALSE] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), + [anon_sym_Null] = ACTIONS(2269), + [anon_sym_NULL] = ACTIONS(2269), + [sym_string] = ACTIONS(2271), + [anon_sym_AT] = ACTIONS(2271), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_array] = ACTIONS(2269), + [anon_sym_varray] = ACTIONS(2269), + [anon_sym_darray] = ACTIONS(2269), + [anon_sym_vec] = ACTIONS(2269), + [anon_sym_dict] = ACTIONS(2269), + [anon_sym_keyset] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_list] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_abstract] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2271), + [sym_final_modifier] = ACTIONS(2269), + [sym_xhp_modifier] = ACTIONS(2269), + [sym_xhp_identifier] = ACTIONS(2269), + [sym_xhp_class_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(3), }, - [1151] = { - [sym_identifier] = ACTIONS(2337), - [sym_variable] = ACTIONS(2339), - [sym_pipe_variable] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_newtype] = ACTIONS(2337), - [anon_sym_shape] = ACTIONS(2337), - [anon_sym_tuple] = ACTIONS(2337), - [anon_sym_clone] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_print] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2337), - [anon_sym_LT_LT_LT] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_echo] = ACTIONS(2337), - [anon_sym_unset] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_concurrent] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_function] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2337), - [anon_sym_default] = ACTIONS(2337), - [anon_sym_foreach] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [sym_float] = ACTIONS(2339), - [sym_integer] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_True] = ACTIONS(2337), - [anon_sym_TRUE] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [anon_sym_False] = ACTIONS(2337), - [anon_sym_FALSE] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [anon_sym_Null] = ACTIONS(2337), - [anon_sym_NULL] = ACTIONS(2337), - [sym_string] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_array] = ACTIONS(2337), - [anon_sym_varray] = ACTIONS(2337), - [anon_sym_darray] = ACTIONS(2337), - [anon_sym_vec] = ACTIONS(2337), - [anon_sym_dict] = ACTIONS(2337), - [anon_sym_keyset] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_trait] = ACTIONS(2337), - [anon_sym_interface] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_abstract] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(2339), - [sym_final_modifier] = ACTIONS(2337), - [sym_xhp_modifier] = ACTIONS(2337), - [sym_xhp_identifier] = ACTIONS(2337), - [sym_xhp_class_identifier] = ACTIONS(2339), + [1069] = { + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2265), + [sym_variable] = ACTIONS(2267), + [sym_pipe_variable] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_newtype] = ACTIONS(2265), + [anon_sym_shape] = ACTIONS(2265), + [anon_sym_tuple] = ACTIONS(2265), + [anon_sym_clone] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_print] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2265), + [anon_sym_include] = ACTIONS(2265), + [anon_sym_include_once] = ACTIONS(2265), + [anon_sym_require] = ACTIONS(2265), + [anon_sym_require_once] = ACTIONS(2265), + [anon_sym_BSLASH] = ACTIONS(2267), + [anon_sym_self] = ACTIONS(2265), + [anon_sym_parent] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_LT_LT_LT] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_throw] = ACTIONS(2265), + [anon_sym_echo] = ACTIONS(2265), + [anon_sym_unset] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_concurrent] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_function] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_elseif] = ACTIONS(2265), + [anon_sym_else] = ACTIONS(2265), + [anon_sym_switch] = ACTIONS(2265), + [anon_sym_foreach] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_using] = ACTIONS(2265), + [sym_float] = ACTIONS(2267), + [sym_integer] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_True] = ACTIONS(2265), + [anon_sym_TRUE] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_False] = ACTIONS(2265), + [anon_sym_FALSE] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), + [anon_sym_Null] = ACTIONS(2265), + [anon_sym_NULL] = ACTIONS(2265), + [sym_string] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_array] = ACTIONS(2265), + [anon_sym_varray] = ACTIONS(2265), + [anon_sym_darray] = ACTIONS(2265), + [anon_sym_vec] = ACTIONS(2265), + [anon_sym_dict] = ACTIONS(2265), + [anon_sym_keyset] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_list] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_abstract] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2267), + [sym_final_modifier] = ACTIONS(2265), + [sym_xhp_modifier] = ACTIONS(2265), + [sym_xhp_identifier] = ACTIONS(2265), + [sym_xhp_class_identifier] = ACTIONS(2267), [sym_comment] = ACTIONS(3), }, - [1152] = { - [sym_identifier] = ACTIONS(2333), - [sym_variable] = ACTIONS(2335), - [sym_pipe_variable] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_newtype] = ACTIONS(2333), - [anon_sym_shape] = ACTIONS(2333), - [anon_sym_tuple] = ACTIONS(2333), - [anon_sym_clone] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_print] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_LT_LT] = ACTIONS(2333), - [anon_sym_LT_LT_LT] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_echo] = ACTIONS(2333), - [anon_sym_unset] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_concurrent] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_case] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_foreach] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_using] = ACTIONS(2333), - [sym_float] = ACTIONS(2335), - [sym_integer] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_True] = ACTIONS(2333), - [anon_sym_TRUE] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [anon_sym_False] = ACTIONS(2333), - [anon_sym_FALSE] = ACTIONS(2333), - [anon_sym_null] = ACTIONS(2333), - [anon_sym_Null] = ACTIONS(2333), - [anon_sym_NULL] = ACTIONS(2333), - [sym_string] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_array] = ACTIONS(2333), - [anon_sym_varray] = ACTIONS(2333), - [anon_sym_darray] = ACTIONS(2333), - [anon_sym_vec] = ACTIONS(2333), - [anon_sym_dict] = ACTIONS(2333), - [anon_sym_keyset] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(2335), - [sym_final_modifier] = ACTIONS(2333), - [sym_xhp_modifier] = ACTIONS(2333), - [sym_xhp_identifier] = ACTIONS(2333), - [sym_xhp_class_identifier] = ACTIONS(2335), + [1070] = { + [sym_identifier] = ACTIONS(2533), + [sym_variable] = ACTIONS(2535), + [sym_pipe_variable] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_newtype] = ACTIONS(2533), + [anon_sym_shape] = ACTIONS(2533), + [anon_sym_tuple] = ACTIONS(2533), + [anon_sym_clone] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_include_once] = ACTIONS(2533), + [anon_sym_require] = ACTIONS(2533), + [anon_sym_require_once] = ACTIONS(2533), + [anon_sym_BSLASH] = ACTIONS(2535), + [anon_sym_self] = ACTIONS(2533), + [anon_sym_parent] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_LT_LT] = ACTIONS(2533), + [anon_sym_LT_LT_LT] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_echo] = ACTIONS(2533), + [anon_sym_unset] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_concurrent] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_case] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_foreach] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [sym_float] = ACTIONS(2535), + [sym_integer] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_True] = ACTIONS(2533), + [anon_sym_TRUE] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_False] = ACTIONS(2533), + [anon_sym_FALSE] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [anon_sym_Null] = ACTIONS(2533), + [anon_sym_NULL] = ACTIONS(2533), + [sym_string] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_array] = ACTIONS(2533), + [anon_sym_varray] = ACTIONS(2533), + [anon_sym_darray] = ACTIONS(2533), + [anon_sym_vec] = ACTIONS(2533), + [anon_sym_dict] = ACTIONS(2533), + [anon_sym_keyset] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_list] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_interface] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_abstract] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2535), + [sym_final_modifier] = ACTIONS(2533), + [sym_xhp_modifier] = ACTIONS(2533), + [sym_xhp_identifier] = ACTIONS(2533), + [sym_xhp_class_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(3), }, - [1153] = { - [ts_builtin_sym_end] = ACTIONS(2531), + [1071] = { + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2261), + [sym_variable] = ACTIONS(2263), + [sym_pipe_variable] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_newtype] = ACTIONS(2261), + [anon_sym_shape] = ACTIONS(2261), + [anon_sym_tuple] = ACTIONS(2261), + [anon_sym_clone] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_include] = ACTIONS(2261), + [anon_sym_include_once] = ACTIONS(2261), + [anon_sym_require] = ACTIONS(2261), + [anon_sym_require_once] = ACTIONS(2261), + [anon_sym_BSLASH] = ACTIONS(2263), + [anon_sym_self] = ACTIONS(2261), + [anon_sym_parent] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_LT_LT_LT] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_echo] = ACTIONS(2261), + [anon_sym_unset] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_concurrent] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_elseif] = ACTIONS(2261), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_foreach] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_using] = ACTIONS(2261), + [sym_float] = ACTIONS(2263), + [sym_integer] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_True] = ACTIONS(2261), + [anon_sym_TRUE] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_False] = ACTIONS(2261), + [anon_sym_FALSE] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_Null] = ACTIONS(2261), + [anon_sym_NULL] = ACTIONS(2261), + [sym_string] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_array] = ACTIONS(2261), + [anon_sym_varray] = ACTIONS(2261), + [anon_sym_darray] = ACTIONS(2261), + [anon_sym_vec] = ACTIONS(2261), + [anon_sym_dict] = ACTIONS(2261), + [anon_sym_keyset] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_list] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2263), + [sym_final_modifier] = ACTIONS(2261), + [sym_xhp_modifier] = ACTIONS(2261), + [sym_xhp_identifier] = ACTIONS(2261), + [sym_xhp_class_identifier] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + }, + [1072] = { [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -144240,6 +130685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2529), [anon_sym_LT_LT] = ACTIONS(2529), [anon_sym_LT_LT_LT] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), [anon_sym_LBRACE] = ACTIONS(2531), [anon_sym_SEMI] = ACTIONS(2531), [anon_sym_return] = ACTIONS(2529), @@ -144254,9 +130700,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2529), [anon_sym_const] = ACTIONS(2529), [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), [anon_sym_switch] = ACTIONS(2529), + [anon_sym_case] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), [anon_sym_foreach] = ACTIONS(2529), [anon_sym_while] = ACTIONS(2529), [anon_sym_do] = ACTIONS(2529), @@ -144305,2560 +130751,2647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [1154] = { - [sym_identifier] = ACTIONS(2297), - [sym_variable] = ACTIONS(2299), - [sym_pipe_variable] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_newtype] = ACTIONS(2297), - [anon_sym_shape] = ACTIONS(2297), - [anon_sym_tuple] = ACTIONS(2297), - [anon_sym_clone] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_print] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_LT_LT_LT] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_echo] = ACTIONS(2297), - [anon_sym_unset] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_concurrent] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_foreach] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [sym_float] = ACTIONS(2299), - [sym_integer] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_True] = ACTIONS(2297), - [anon_sym_TRUE] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_False] = ACTIONS(2297), - [anon_sym_FALSE] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [anon_sym_Null] = ACTIONS(2297), - [anon_sym_NULL] = ACTIONS(2297), - [sym_string] = ACTIONS(2299), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_array] = ACTIONS(2297), - [anon_sym_varray] = ACTIONS(2297), - [anon_sym_darray] = ACTIONS(2297), - [anon_sym_vec] = ACTIONS(2297), - [anon_sym_dict] = ACTIONS(2297), - [anon_sym_keyset] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2299), - [sym_final_modifier] = ACTIONS(2297), - [sym_xhp_modifier] = ACTIONS(2297), - [sym_xhp_identifier] = ACTIONS(2297), - [sym_xhp_class_identifier] = ACTIONS(2299), - [sym_comment] = ACTIONS(3), - }, - [1155] = { - [sym_identifier] = ACTIONS(2325), - [sym_variable] = ACTIONS(2327), - [sym_pipe_variable] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_newtype] = ACTIONS(2325), - [anon_sym_shape] = ACTIONS(2325), - [anon_sym_tuple] = ACTIONS(2325), - [anon_sym_clone] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_print] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_LT_LT_LT] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_echo] = ACTIONS(2325), - [anon_sym_unset] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_concurrent] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_case] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_foreach] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_using] = ACTIONS(2325), - [sym_float] = ACTIONS(2327), - [sym_integer] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_True] = ACTIONS(2325), - [anon_sym_TRUE] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_False] = ACTIONS(2325), - [anon_sym_FALSE] = ACTIONS(2325), - [anon_sym_null] = ACTIONS(2325), - [anon_sym_Null] = ACTIONS(2325), - [anon_sym_NULL] = ACTIONS(2325), - [sym_string] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_array] = ACTIONS(2325), - [anon_sym_varray] = ACTIONS(2325), - [anon_sym_darray] = ACTIONS(2325), - [anon_sym_vec] = ACTIONS(2325), - [anon_sym_dict] = ACTIONS(2325), - [anon_sym_keyset] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(2327), - [sym_final_modifier] = ACTIONS(2325), - [sym_xhp_modifier] = ACTIONS(2325), - [sym_xhp_identifier] = ACTIONS(2325), - [sym_xhp_class_identifier] = ACTIONS(2327), + [1073] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2257), + [sym_variable] = ACTIONS(2259), + [sym_pipe_variable] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_newtype] = ACTIONS(2257), + [anon_sym_shape] = ACTIONS(2257), + [anon_sym_tuple] = ACTIONS(2257), + [anon_sym_clone] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_include_once] = ACTIONS(2257), + [anon_sym_require] = ACTIONS(2257), + [anon_sym_require_once] = ACTIONS(2257), + [anon_sym_BSLASH] = ACTIONS(2259), + [anon_sym_self] = ACTIONS(2257), + [anon_sym_parent] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_LT_LT_LT] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_echo] = ACTIONS(2257), + [anon_sym_unset] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_concurrent] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_elseif] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_foreach] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_using] = ACTIONS(2257), + [sym_float] = ACTIONS(2259), + [sym_integer] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_True] = ACTIONS(2257), + [anon_sym_TRUE] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_False] = ACTIONS(2257), + [anon_sym_FALSE] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_Null] = ACTIONS(2257), + [anon_sym_NULL] = ACTIONS(2257), + [sym_string] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_array] = ACTIONS(2257), + [anon_sym_varray] = ACTIONS(2257), + [anon_sym_darray] = ACTIONS(2257), + [anon_sym_vec] = ACTIONS(2257), + [anon_sym_dict] = ACTIONS(2257), + [anon_sym_keyset] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_list] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_abstract] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2259), + [sym_final_modifier] = ACTIONS(2257), + [sym_xhp_modifier] = ACTIONS(2257), + [sym_xhp_identifier] = ACTIONS(2257), + [sym_xhp_class_identifier] = ACTIONS(2259), [sym_comment] = ACTIONS(3), }, - [1156] = { - [sym_identifier] = ACTIONS(2321), - [sym_variable] = ACTIONS(2323), - [sym_pipe_variable] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_newtype] = ACTIONS(2321), - [anon_sym_shape] = ACTIONS(2321), - [anon_sym_tuple] = ACTIONS(2321), - [anon_sym_clone] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_print] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_LT_LT_LT] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_echo] = ACTIONS(2321), - [anon_sym_unset] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_concurrent] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_case] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_using] = ACTIONS(2321), - [sym_float] = ACTIONS(2323), - [sym_integer] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_True] = ACTIONS(2321), - [anon_sym_TRUE] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [anon_sym_False] = ACTIONS(2321), - [anon_sym_FALSE] = ACTIONS(2321), - [anon_sym_null] = ACTIONS(2321), - [anon_sym_Null] = ACTIONS(2321), - [anon_sym_NULL] = ACTIONS(2321), - [sym_string] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_array] = ACTIONS(2321), - [anon_sym_varray] = ACTIONS(2321), - [anon_sym_darray] = ACTIONS(2321), - [anon_sym_vec] = ACTIONS(2321), - [anon_sym_dict] = ACTIONS(2321), - [anon_sym_keyset] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(2323), - [sym_final_modifier] = ACTIONS(2321), - [sym_xhp_modifier] = ACTIONS(2321), - [sym_xhp_identifier] = ACTIONS(2321), - [sym_xhp_class_identifier] = ACTIONS(2323), + [1074] = { + [sym_identifier] = ACTIONS(2525), + [sym_variable] = ACTIONS(2527), + [sym_pipe_variable] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_newtype] = ACTIONS(2525), + [anon_sym_shape] = ACTIONS(2525), + [anon_sym_tuple] = ACTIONS(2525), + [anon_sym_clone] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_include] = ACTIONS(2525), + [anon_sym_include_once] = ACTIONS(2525), + [anon_sym_require] = ACTIONS(2525), + [anon_sym_require_once] = ACTIONS(2525), + [anon_sym_BSLASH] = ACTIONS(2527), + [anon_sym_self] = ACTIONS(2525), + [anon_sym_parent] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_LT_LT_LT] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_echo] = ACTIONS(2525), + [anon_sym_unset] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_concurrent] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_function] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_foreach] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [sym_float] = ACTIONS(2527), + [sym_integer] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_True] = ACTIONS(2525), + [anon_sym_TRUE] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_False] = ACTIONS(2525), + [anon_sym_FALSE] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2525), + [anon_sym_Null] = ACTIONS(2525), + [anon_sym_NULL] = ACTIONS(2525), + [sym_string] = ACTIONS(2527), + [anon_sym_AT] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_array] = ACTIONS(2525), + [anon_sym_varray] = ACTIONS(2525), + [anon_sym_darray] = ACTIONS(2525), + [anon_sym_vec] = ACTIONS(2525), + [anon_sym_dict] = ACTIONS(2525), + [anon_sym_keyset] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_await] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_interface] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2527), + [sym_final_modifier] = ACTIONS(2525), + [sym_xhp_modifier] = ACTIONS(2525), + [sym_xhp_identifier] = ACTIONS(2525), + [sym_xhp_class_identifier] = ACTIONS(2527), [sym_comment] = ACTIONS(3), }, - [1157] = { - [sym_identifier] = ACTIONS(2317), - [sym_variable] = ACTIONS(2319), - [sym_pipe_variable] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_newtype] = ACTIONS(2317), - [anon_sym_shape] = ACTIONS(2317), - [anon_sym_tuple] = ACTIONS(2317), - [anon_sym_clone] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_print] = ACTIONS(2317), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(2317), - [anon_sym_LT_LT_LT] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_throw] = ACTIONS(2317), - [anon_sym_echo] = ACTIONS(2317), - [anon_sym_unset] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_concurrent] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_case] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_foreach] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_using] = ACTIONS(2317), - [sym_float] = ACTIONS(2319), - [sym_integer] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_True] = ACTIONS(2317), - [anon_sym_TRUE] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_False] = ACTIONS(2317), - [anon_sym_FALSE] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [anon_sym_Null] = ACTIONS(2317), - [anon_sym_NULL] = ACTIONS(2317), - [sym_string] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_array] = ACTIONS(2317), - [anon_sym_varray] = ACTIONS(2317), - [anon_sym_darray] = ACTIONS(2317), - [anon_sym_vec] = ACTIONS(2317), - [anon_sym_dict] = ACTIONS(2317), - [anon_sym_keyset] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_abstract] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(2319), - [sym_final_modifier] = ACTIONS(2317), - [sym_xhp_modifier] = ACTIONS(2317), - [sym_xhp_identifier] = ACTIONS(2317), - [sym_xhp_class_identifier] = ACTIONS(2319), + [1075] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1158] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1076] = { + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2253), + [sym_variable] = ACTIONS(2255), + [sym_pipe_variable] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_newtype] = ACTIONS(2253), + [anon_sym_shape] = ACTIONS(2253), + [anon_sym_tuple] = ACTIONS(2253), + [anon_sym_clone] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_print] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_include] = ACTIONS(2253), + [anon_sym_include_once] = ACTIONS(2253), + [anon_sym_require] = ACTIONS(2253), + [anon_sym_require_once] = ACTIONS(2253), + [anon_sym_BSLASH] = ACTIONS(2255), + [anon_sym_self] = ACTIONS(2253), + [anon_sym_parent] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2253), + [anon_sym_LT_LT_LT] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_echo] = ACTIONS(2253), + [anon_sym_unset] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_concurrent] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_elseif] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_foreach] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [sym_float] = ACTIONS(2255), + [sym_integer] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_True] = ACTIONS(2253), + [anon_sym_TRUE] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_False] = ACTIONS(2253), + [anon_sym_FALSE] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [anon_sym_Null] = ACTIONS(2253), + [anon_sym_NULL] = ACTIONS(2253), + [sym_string] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_array] = ACTIONS(2253), + [anon_sym_varray] = ACTIONS(2253), + [anon_sym_darray] = ACTIONS(2253), + [anon_sym_vec] = ACTIONS(2253), + [anon_sym_dict] = ACTIONS(2253), + [anon_sym_keyset] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_list] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2255), + [sym_final_modifier] = ACTIONS(2253), + [sym_xhp_modifier] = ACTIONS(2253), + [sym_xhp_identifier] = ACTIONS(2253), + [sym_xhp_class_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(3), }, - [1159] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1077] = { + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2249), + [sym_variable] = ACTIONS(2251), + [sym_pipe_variable] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_newtype] = ACTIONS(2249), + [anon_sym_shape] = ACTIONS(2249), + [anon_sym_tuple] = ACTIONS(2249), + [anon_sym_clone] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_include] = ACTIONS(2249), + [anon_sym_include_once] = ACTIONS(2249), + [anon_sym_require] = ACTIONS(2249), + [anon_sym_require_once] = ACTIONS(2249), + [anon_sym_BSLASH] = ACTIONS(2251), + [anon_sym_self] = ACTIONS(2249), + [anon_sym_parent] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_LT_LT_LT] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_echo] = ACTIONS(2249), + [anon_sym_unset] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_concurrent] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_elseif] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_foreach] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [sym_float] = ACTIONS(2251), + [sym_integer] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_True] = ACTIONS(2249), + [anon_sym_TRUE] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_False] = ACTIONS(2249), + [anon_sym_FALSE] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_Null] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [sym_string] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_array] = ACTIONS(2249), + [anon_sym_varray] = ACTIONS(2249), + [anon_sym_darray] = ACTIONS(2249), + [anon_sym_vec] = ACTIONS(2249), + [anon_sym_dict] = ACTIONS(2249), + [anon_sym_keyset] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_list] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2251), + [sym_final_modifier] = ACTIONS(2249), + [sym_xhp_modifier] = ACTIONS(2249), + [sym_xhp_identifier] = ACTIONS(2249), + [sym_xhp_class_identifier] = ACTIONS(2251), [sym_comment] = ACTIONS(3), }, - [1160] = { - [sym_identifier] = ACTIONS(2313), - [sym_variable] = ACTIONS(2315), - [sym_pipe_variable] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_newtype] = ACTIONS(2313), - [anon_sym_shape] = ACTIONS(2313), - [anon_sym_tuple] = ACTIONS(2313), - [anon_sym_clone] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_print] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_LT_LT_LT] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_throw] = ACTIONS(2313), - [anon_sym_echo] = ACTIONS(2313), - [anon_sym_unset] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_concurrent] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_function] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_switch] = ACTIONS(2313), - [anon_sym_case] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_foreach] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_using] = ACTIONS(2313), - [sym_float] = ACTIONS(2315), - [sym_integer] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_True] = ACTIONS(2313), - [anon_sym_TRUE] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_False] = ACTIONS(2313), - [anon_sym_FALSE] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [anon_sym_Null] = ACTIONS(2313), - [anon_sym_NULL] = ACTIONS(2313), - [sym_string] = ACTIONS(2315), - [anon_sym_AT] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_array] = ACTIONS(2313), - [anon_sym_varray] = ACTIONS(2313), - [anon_sym_darray] = ACTIONS(2313), - [anon_sym_vec] = ACTIONS(2313), - [anon_sym_dict] = ACTIONS(2313), - [anon_sym_keyset] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_interface] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_abstract] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(2315), - [sym_final_modifier] = ACTIONS(2313), - [sym_xhp_modifier] = ACTIONS(2313), - [sym_xhp_identifier] = ACTIONS(2313), - [sym_xhp_class_identifier] = ACTIONS(2315), + [1078] = { + [sym_identifier] = ACTIONS(2201), + [sym_variable] = ACTIONS(2203), + [sym_pipe_variable] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_newtype] = ACTIONS(2201), + [anon_sym_shape] = ACTIONS(2201), + [anon_sym_tuple] = ACTIONS(2201), + [anon_sym_clone] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_namespace] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_include_once] = ACTIONS(2201), + [anon_sym_require] = ACTIONS(2201), + [anon_sym_require_once] = ACTIONS(2201), + [anon_sym_BSLASH] = ACTIONS(2203), + [anon_sym_self] = ACTIONS(2201), + [anon_sym_parent] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_LT_LT_LT] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_echo] = ACTIONS(2201), + [anon_sym_unset] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_concurrent] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_foreach] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_using] = ACTIONS(2201), + [sym_float] = ACTIONS(2203), + [sym_integer] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [sym_string] = ACTIONS(2203), + [anon_sym_AT] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_array] = ACTIONS(2201), + [anon_sym_varray] = ACTIONS(2201), + [anon_sym_darray] = ACTIONS(2201), + [anon_sym_vec] = ACTIONS(2201), + [anon_sym_dict] = ACTIONS(2201), + [anon_sym_keyset] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_list] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_class] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2203), + [sym_final_modifier] = ACTIONS(2201), + [sym_xhp_modifier] = ACTIONS(2201), + [sym_xhp_identifier] = ACTIONS(2201), + [sym_xhp_class_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(3), }, - [1161] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_elseif] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [1079] = { + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2245), + [sym_variable] = ACTIONS(2247), + [sym_pipe_variable] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_newtype] = ACTIONS(2245), + [anon_sym_shape] = ACTIONS(2245), + [anon_sym_tuple] = ACTIONS(2245), + [anon_sym_clone] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_print] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_include] = ACTIONS(2245), + [anon_sym_include_once] = ACTIONS(2245), + [anon_sym_require] = ACTIONS(2245), + [anon_sym_require_once] = ACTIONS(2245), + [anon_sym_BSLASH] = ACTIONS(2247), + [anon_sym_self] = ACTIONS(2245), + [anon_sym_parent] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_LT_LT_LT] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_echo] = ACTIONS(2245), + [anon_sym_unset] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_concurrent] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_elseif] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_foreach] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [sym_float] = ACTIONS(2247), + [sym_integer] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_True] = ACTIONS(2245), + [anon_sym_TRUE] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_False] = ACTIONS(2245), + [anon_sym_FALSE] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [anon_sym_Null] = ACTIONS(2245), + [anon_sym_NULL] = ACTIONS(2245), + [sym_string] = ACTIONS(2247), + [anon_sym_AT] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2247), + [anon_sym_array] = ACTIONS(2245), + [anon_sym_varray] = ACTIONS(2245), + [anon_sym_darray] = ACTIONS(2245), + [anon_sym_vec] = ACTIONS(2245), + [anon_sym_dict] = ACTIONS(2245), + [anon_sym_keyset] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_list] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(2247), + [anon_sym_DASH_DASH] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2247), + [sym_final_modifier] = ACTIONS(2245), + [sym_xhp_modifier] = ACTIONS(2245), + [sym_xhp_identifier] = ACTIONS(2245), + [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [1162] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1080] = { + [sym_identifier] = ACTIONS(2521), + [sym_variable] = ACTIONS(2523), + [sym_pipe_variable] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_newtype] = ACTIONS(2521), + [anon_sym_shape] = ACTIONS(2521), + [anon_sym_tuple] = ACTIONS(2521), + [anon_sym_clone] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_include] = ACTIONS(2521), + [anon_sym_include_once] = ACTIONS(2521), + [anon_sym_require] = ACTIONS(2521), + [anon_sym_require_once] = ACTIONS(2521), + [anon_sym_BSLASH] = ACTIONS(2523), + [anon_sym_self] = ACTIONS(2521), + [anon_sym_parent] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_LT_LT] = ACTIONS(2521), + [anon_sym_LT_LT_LT] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_echo] = ACTIONS(2521), + [anon_sym_unset] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_concurrent] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_function] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_case] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_foreach] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [sym_float] = ACTIONS(2523), + [sym_integer] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_True] = ACTIONS(2521), + [anon_sym_TRUE] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_False] = ACTIONS(2521), + [anon_sym_FALSE] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [anon_sym_Null] = ACTIONS(2521), + [anon_sym_NULL] = ACTIONS(2521), + [sym_string] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_array] = ACTIONS(2521), + [anon_sym_varray] = ACTIONS(2521), + [anon_sym_darray] = ACTIONS(2521), + [anon_sym_vec] = ACTIONS(2521), + [anon_sym_dict] = ACTIONS(2521), + [anon_sym_keyset] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_await] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_interface] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_abstract] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2523), + [sym_final_modifier] = ACTIONS(2521), + [sym_xhp_modifier] = ACTIONS(2521), + [sym_xhp_identifier] = ACTIONS(2521), + [sym_xhp_class_identifier] = ACTIONS(2523), [sym_comment] = ACTIONS(3), }, - [1163] = { - [ts_builtin_sym_end] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2577), - [sym_variable] = ACTIONS(2579), - [sym_pipe_variable] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_newtype] = ACTIONS(2577), - [anon_sym_shape] = ACTIONS(2577), - [anon_sym_tuple] = ACTIONS(2577), - [anon_sym_clone] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_include] = ACTIONS(2577), - [anon_sym_include_once] = ACTIONS(2577), - [anon_sym_require] = ACTIONS(2577), - [anon_sym_require_once] = ACTIONS(2577), - [anon_sym_BSLASH] = ACTIONS(2579), - [anon_sym_self] = ACTIONS(2577), - [anon_sym_parent] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_LT_LT_LT] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_echo] = ACTIONS(2577), - [anon_sym_unset] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_concurrent] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_elseif] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_foreach] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [sym_float] = ACTIONS(2579), - [sym_integer] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_True] = ACTIONS(2577), - [anon_sym_TRUE] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_False] = ACTIONS(2577), - [anon_sym_FALSE] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2577), - [anon_sym_Null] = ACTIONS(2577), - [anon_sym_NULL] = ACTIONS(2577), - [sym_string] = ACTIONS(2579), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_array] = ACTIONS(2577), - [anon_sym_varray] = ACTIONS(2577), - [anon_sym_darray] = ACTIONS(2577), - [anon_sym_vec] = ACTIONS(2577), - [anon_sym_dict] = ACTIONS(2577), - [anon_sym_keyset] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_list] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_trait] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2579), - [sym_final_modifier] = ACTIONS(2577), - [sym_xhp_modifier] = ACTIONS(2577), - [sym_xhp_identifier] = ACTIONS(2577), - [sym_xhp_class_identifier] = ACTIONS(2579), + [1081] = { + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2241), + [sym_variable] = ACTIONS(2243), + [sym_pipe_variable] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_newtype] = ACTIONS(2241), + [anon_sym_shape] = ACTIONS(2241), + [anon_sym_tuple] = ACTIONS(2241), + [anon_sym_clone] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_print] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_include] = ACTIONS(2241), + [anon_sym_include_once] = ACTIONS(2241), + [anon_sym_require] = ACTIONS(2241), + [anon_sym_require_once] = ACTIONS(2241), + [anon_sym_BSLASH] = ACTIONS(2243), + [anon_sym_self] = ACTIONS(2241), + [anon_sym_parent] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_LT_LT] = ACTIONS(2241), + [anon_sym_LT_LT_LT] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_echo] = ACTIONS(2241), + [anon_sym_unset] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_concurrent] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_elseif] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_foreach] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [sym_float] = ACTIONS(2243), + [sym_integer] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_True] = ACTIONS(2241), + [anon_sym_TRUE] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_False] = ACTIONS(2241), + [anon_sym_FALSE] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [anon_sym_Null] = ACTIONS(2241), + [anon_sym_NULL] = ACTIONS(2241), + [sym_string] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_array] = ACTIONS(2241), + [anon_sym_varray] = ACTIONS(2241), + [anon_sym_darray] = ACTIONS(2241), + [anon_sym_vec] = ACTIONS(2241), + [anon_sym_dict] = ACTIONS(2241), + [anon_sym_keyset] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_list] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2243), + [sym_final_modifier] = ACTIONS(2241), + [sym_xhp_modifier] = ACTIONS(2241), + [sym_xhp_identifier] = ACTIONS(2241), + [sym_xhp_class_identifier] = ACTIONS(2243), [sym_comment] = ACTIONS(3), }, - [1164] = { - [sym_identifier] = ACTIONS(2301), - [sym_variable] = ACTIONS(2303), - [sym_pipe_variable] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_newtype] = ACTIONS(2301), - [anon_sym_shape] = ACTIONS(2301), - [anon_sym_tuple] = ACTIONS(2301), - [anon_sym_clone] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_print] = ACTIONS(2301), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_LT_LT] = ACTIONS(2301), - [anon_sym_LT_LT_LT] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_throw] = ACTIONS(2301), - [anon_sym_echo] = ACTIONS(2301), - [anon_sym_unset] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_concurrent] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_function] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_switch] = ACTIONS(2301), - [anon_sym_case] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_foreach] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_using] = ACTIONS(2301), - [sym_float] = ACTIONS(2303), - [sym_integer] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_True] = ACTIONS(2301), - [anon_sym_TRUE] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_False] = ACTIONS(2301), - [anon_sym_FALSE] = ACTIONS(2301), - [anon_sym_null] = ACTIONS(2301), - [anon_sym_Null] = ACTIONS(2301), - [anon_sym_NULL] = ACTIONS(2301), - [sym_string] = ACTIONS(2303), - [anon_sym_AT] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_array] = ACTIONS(2301), - [anon_sym_varray] = ACTIONS(2301), - [anon_sym_darray] = ACTIONS(2301), - [anon_sym_vec] = ACTIONS(2301), - [anon_sym_dict] = ACTIONS(2301), - [anon_sym_keyset] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_interface] = ACTIONS(2301), - [anon_sym_class] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_abstract] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [sym_final_modifier] = ACTIONS(2301), - [sym_xhp_modifier] = ACTIONS(2301), - [sym_xhp_identifier] = ACTIONS(2301), - [sym_xhp_class_identifier] = ACTIONS(2303), + [1082] = { + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2237), + [sym_variable] = ACTIONS(2239), + [sym_pipe_variable] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_newtype] = ACTIONS(2237), + [anon_sym_shape] = ACTIONS(2237), + [anon_sym_tuple] = ACTIONS(2237), + [anon_sym_clone] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_print] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_include] = ACTIONS(2237), + [anon_sym_include_once] = ACTIONS(2237), + [anon_sym_require] = ACTIONS(2237), + [anon_sym_require_once] = ACTIONS(2237), + [anon_sym_BSLASH] = ACTIONS(2239), + [anon_sym_self] = ACTIONS(2237), + [anon_sym_parent] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_LT_LT_LT] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_echo] = ACTIONS(2237), + [anon_sym_unset] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_concurrent] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_elseif] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_foreach] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [sym_float] = ACTIONS(2239), + [sym_integer] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_True] = ACTIONS(2237), + [anon_sym_TRUE] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_False] = ACTIONS(2237), + [anon_sym_FALSE] = ACTIONS(2237), + [anon_sym_null] = ACTIONS(2237), + [anon_sym_Null] = ACTIONS(2237), + [anon_sym_NULL] = ACTIONS(2237), + [sym_string] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_array] = ACTIONS(2237), + [anon_sym_varray] = ACTIONS(2237), + [anon_sym_darray] = ACTIONS(2237), + [anon_sym_vec] = ACTIONS(2237), + [anon_sym_dict] = ACTIONS(2237), + [anon_sym_keyset] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_list] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2239), + [sym_final_modifier] = ACTIONS(2237), + [sym_xhp_modifier] = ACTIONS(2237), + [sym_xhp_identifier] = ACTIONS(2237), + [sym_xhp_class_identifier] = ACTIONS(2239), + [sym_comment] = ACTIONS(3), + }, + [1083] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2233), + [sym_variable] = ACTIONS(2235), + [sym_pipe_variable] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_newtype] = ACTIONS(2233), + [anon_sym_shape] = ACTIONS(2233), + [anon_sym_tuple] = ACTIONS(2233), + [anon_sym_clone] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_include] = ACTIONS(2233), + [anon_sym_include_once] = ACTIONS(2233), + [anon_sym_require] = ACTIONS(2233), + [anon_sym_require_once] = ACTIONS(2233), + [anon_sym_BSLASH] = ACTIONS(2235), + [anon_sym_self] = ACTIONS(2233), + [anon_sym_parent] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_LT_LT_LT] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_echo] = ACTIONS(2233), + [anon_sym_unset] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_concurrent] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_elseif] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_foreach] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [sym_float] = ACTIONS(2235), + [sym_integer] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_True] = ACTIONS(2233), + [anon_sym_TRUE] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_False] = ACTIONS(2233), + [anon_sym_FALSE] = ACTIONS(2233), + [anon_sym_null] = ACTIONS(2233), + [anon_sym_Null] = ACTIONS(2233), + [anon_sym_NULL] = ACTIONS(2233), + [sym_string] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_array] = ACTIONS(2233), + [anon_sym_varray] = ACTIONS(2233), + [anon_sym_darray] = ACTIONS(2233), + [anon_sym_vec] = ACTIONS(2233), + [anon_sym_dict] = ACTIONS(2233), + [anon_sym_keyset] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_list] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2235), + [sym_final_modifier] = ACTIONS(2233), + [sym_xhp_modifier] = ACTIONS(2233), + [sym_xhp_identifier] = ACTIONS(2233), + [sym_xhp_class_identifier] = ACTIONS(2235), [sym_comment] = ACTIONS(3), }, - [1165] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2573), - [sym_variable] = ACTIONS(2575), - [sym_pipe_variable] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_newtype] = ACTIONS(2573), - [anon_sym_shape] = ACTIONS(2573), - [anon_sym_tuple] = ACTIONS(2573), - [anon_sym_clone] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_print] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_include] = ACTIONS(2573), - [anon_sym_include_once] = ACTIONS(2573), - [anon_sym_require] = ACTIONS(2573), - [anon_sym_require_once] = ACTIONS(2573), - [anon_sym_BSLASH] = ACTIONS(2575), - [anon_sym_self] = ACTIONS(2573), - [anon_sym_parent] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_LT_LT_LT] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_echo] = ACTIONS(2573), - [anon_sym_unset] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_concurrent] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_elseif] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_foreach] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [sym_float] = ACTIONS(2575), - [sym_integer] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2573), - [anon_sym_True] = ACTIONS(2573), - [anon_sym_TRUE] = ACTIONS(2573), - [anon_sym_false] = ACTIONS(2573), - [anon_sym_False] = ACTIONS(2573), - [anon_sym_FALSE] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2573), - [anon_sym_Null] = ACTIONS(2573), - [anon_sym_NULL] = ACTIONS(2573), - [sym_string] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_array] = ACTIONS(2573), - [anon_sym_varray] = ACTIONS(2573), - [anon_sym_darray] = ACTIONS(2573), - [anon_sym_vec] = ACTIONS(2573), - [anon_sym_dict] = ACTIONS(2573), - [anon_sym_keyset] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_list] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_trait] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2575), - [sym_final_modifier] = ACTIONS(2573), - [sym_xhp_modifier] = ACTIONS(2573), - [sym_xhp_identifier] = ACTIONS(2573), - [sym_xhp_class_identifier] = ACTIONS(2575), + [1084] = { + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2229), + [sym_variable] = ACTIONS(2231), + [sym_pipe_variable] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_newtype] = ACTIONS(2229), + [anon_sym_shape] = ACTIONS(2229), + [anon_sym_tuple] = ACTIONS(2229), + [anon_sym_clone] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_print] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_include] = ACTIONS(2229), + [anon_sym_include_once] = ACTIONS(2229), + [anon_sym_require] = ACTIONS(2229), + [anon_sym_require_once] = ACTIONS(2229), + [anon_sym_BSLASH] = ACTIONS(2231), + [anon_sym_self] = ACTIONS(2229), + [anon_sym_parent] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_LT_LT_LT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_echo] = ACTIONS(2229), + [anon_sym_unset] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_concurrent] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_elseif] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_foreach] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [sym_float] = ACTIONS(2231), + [sym_integer] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_True] = ACTIONS(2229), + [anon_sym_TRUE] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_False] = ACTIONS(2229), + [anon_sym_FALSE] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_Null] = ACTIONS(2229), + [anon_sym_NULL] = ACTIONS(2229), + [sym_string] = ACTIONS(2231), + [anon_sym_AT] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2231), + [anon_sym_array] = ACTIONS(2229), + [anon_sym_varray] = ACTIONS(2229), + [anon_sym_darray] = ACTIONS(2229), + [anon_sym_vec] = ACTIONS(2229), + [anon_sym_dict] = ACTIONS(2229), + [anon_sym_keyset] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_list] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_PLUS_PLUS] = ACTIONS(2231), + [anon_sym_DASH_DASH] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2231), + [sym_final_modifier] = ACTIONS(2229), + [sym_xhp_modifier] = ACTIONS(2229), + [sym_xhp_identifier] = ACTIONS(2229), + [sym_xhp_class_identifier] = ACTIONS(2231), [sym_comment] = ACTIONS(3), }, - [1166] = { - [sym_identifier] = ACTIONS(2209), - [sym_variable] = ACTIONS(2211), - [sym_pipe_variable] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_newtype] = ACTIONS(2209), - [anon_sym_shape] = ACTIONS(2209), - [anon_sym_tuple] = ACTIONS(2209), - [anon_sym_clone] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_print] = ACTIONS(2209), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_LT_LT_LT] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_throw] = ACTIONS(2209), - [anon_sym_echo] = ACTIONS(2209), - [anon_sym_unset] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_concurrent] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_foreach] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_using] = ACTIONS(2209), - [sym_float] = ACTIONS(2211), - [sym_integer] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_True] = ACTIONS(2209), - [anon_sym_TRUE] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_False] = ACTIONS(2209), - [anon_sym_FALSE] = ACTIONS(2209), - [anon_sym_null] = ACTIONS(2209), - [anon_sym_Null] = ACTIONS(2209), - [anon_sym_NULL] = ACTIONS(2209), - [sym_string] = ACTIONS(2211), - [anon_sym_AT] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_array] = ACTIONS(2209), - [anon_sym_varray] = ACTIONS(2209), - [anon_sym_darray] = ACTIONS(2209), - [anon_sym_vec] = ACTIONS(2209), - [anon_sym_dict] = ACTIONS(2209), - [anon_sym_keyset] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_class] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_abstract] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2211), - [sym_final_modifier] = ACTIONS(2209), - [sym_xhp_modifier] = ACTIONS(2209), - [sym_xhp_identifier] = ACTIONS(2209), - [sym_xhp_class_identifier] = ACTIONS(2211), + [1085] = { + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2225), + [sym_variable] = ACTIONS(2227), + [sym_pipe_variable] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_newtype] = ACTIONS(2225), + [anon_sym_shape] = ACTIONS(2225), + [anon_sym_tuple] = ACTIONS(2225), + [anon_sym_clone] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_print] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_include] = ACTIONS(2225), + [anon_sym_include_once] = ACTIONS(2225), + [anon_sym_require] = ACTIONS(2225), + [anon_sym_require_once] = ACTIONS(2225), + [anon_sym_BSLASH] = ACTIONS(2227), + [anon_sym_self] = ACTIONS(2225), + [anon_sym_parent] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_LT_LT_LT] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_echo] = ACTIONS(2225), + [anon_sym_unset] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_concurrent] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_elseif] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_foreach] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [sym_float] = ACTIONS(2227), + [sym_integer] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_True] = ACTIONS(2225), + [anon_sym_TRUE] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_False] = ACTIONS(2225), + [anon_sym_FALSE] = ACTIONS(2225), + [anon_sym_null] = ACTIONS(2225), + [anon_sym_Null] = ACTIONS(2225), + [anon_sym_NULL] = ACTIONS(2225), + [sym_string] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_array] = ACTIONS(2225), + [anon_sym_varray] = ACTIONS(2225), + [anon_sym_darray] = ACTIONS(2225), + [anon_sym_vec] = ACTIONS(2225), + [anon_sym_dict] = ACTIONS(2225), + [anon_sym_keyset] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_list] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2227), + [sym_final_modifier] = ACTIONS(2225), + [sym_xhp_modifier] = ACTIONS(2225), + [sym_xhp_identifier] = ACTIONS(2225), + [sym_xhp_class_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(3), }, - [1167] = { - [ts_builtin_sym_end] = ACTIONS(2571), - [sym_identifier] = ACTIONS(2569), - [sym_variable] = ACTIONS(2571), - [sym_pipe_variable] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_newtype] = ACTIONS(2569), - [anon_sym_shape] = ACTIONS(2569), - [anon_sym_tuple] = ACTIONS(2569), - [anon_sym_clone] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_print] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_include] = ACTIONS(2569), - [anon_sym_include_once] = ACTIONS(2569), - [anon_sym_require] = ACTIONS(2569), - [anon_sym_require_once] = ACTIONS(2569), - [anon_sym_BSLASH] = ACTIONS(2571), - [anon_sym_self] = ACTIONS(2569), - [anon_sym_parent] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2569), - [anon_sym_LT_LT_LT] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_echo] = ACTIONS(2569), - [anon_sym_unset] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_concurrent] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_elseif] = ACTIONS(2569), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_foreach] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [sym_float] = ACTIONS(2571), - [sym_integer] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_True] = ACTIONS(2569), - [anon_sym_TRUE] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [anon_sym_False] = ACTIONS(2569), - [anon_sym_FALSE] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2569), - [anon_sym_Null] = ACTIONS(2569), - [anon_sym_NULL] = ACTIONS(2569), - [sym_string] = ACTIONS(2571), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_array] = ACTIONS(2569), - [anon_sym_varray] = ACTIONS(2569), - [anon_sym_darray] = ACTIONS(2569), - [anon_sym_vec] = ACTIONS(2569), - [anon_sym_dict] = ACTIONS(2569), - [anon_sym_keyset] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_trait] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2571), - [sym_final_modifier] = ACTIONS(2569), - [sym_xhp_modifier] = ACTIONS(2569), - [sym_xhp_identifier] = ACTIONS(2569), - [sym_xhp_class_identifier] = ACTIONS(2571), + [1086] = { + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [sym_variable] = ACTIONS(2223), + [sym_pipe_variable] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_newtype] = ACTIONS(2221), + [anon_sym_shape] = ACTIONS(2221), + [anon_sym_tuple] = ACTIONS(2221), + [anon_sym_clone] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_include] = ACTIONS(2221), + [anon_sym_include_once] = ACTIONS(2221), + [anon_sym_require] = ACTIONS(2221), + [anon_sym_require_once] = ACTIONS(2221), + [anon_sym_BSLASH] = ACTIONS(2223), + [anon_sym_self] = ACTIONS(2221), + [anon_sym_parent] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_LT_LT_LT] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_echo] = ACTIONS(2221), + [anon_sym_unset] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_concurrent] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_elseif] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_foreach] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [sym_float] = ACTIONS(2223), + [sym_integer] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_True] = ACTIONS(2221), + [anon_sym_TRUE] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_False] = ACTIONS(2221), + [anon_sym_FALSE] = ACTIONS(2221), + [anon_sym_null] = ACTIONS(2221), + [anon_sym_Null] = ACTIONS(2221), + [anon_sym_NULL] = ACTIONS(2221), + [sym_string] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_array] = ACTIONS(2221), + [anon_sym_varray] = ACTIONS(2221), + [anon_sym_darray] = ACTIONS(2221), + [anon_sym_vec] = ACTIONS(2221), + [anon_sym_dict] = ACTIONS(2221), + [anon_sym_keyset] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_list] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2223), + [sym_final_modifier] = ACTIONS(2221), + [sym_xhp_modifier] = ACTIONS(2221), + [sym_xhp_identifier] = ACTIONS(2221), + [sym_xhp_class_identifier] = ACTIONS(2223), [sym_comment] = ACTIONS(3), }, - [1168] = { - [sym_identifier] = ACTIONS(2293), - [sym_variable] = ACTIONS(2295), - [sym_pipe_variable] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_newtype] = ACTIONS(2293), - [anon_sym_shape] = ACTIONS(2293), - [anon_sym_tuple] = ACTIONS(2293), - [anon_sym_clone] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_print] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_LT_LT_LT] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_echo] = ACTIONS(2293), - [anon_sym_unset] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_concurrent] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_function] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_switch] = ACTIONS(2293), - [anon_sym_case] = ACTIONS(2293), - [anon_sym_default] = ACTIONS(2293), - [anon_sym_foreach] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_using] = ACTIONS(2293), - [sym_float] = ACTIONS(2295), - [sym_integer] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_True] = ACTIONS(2293), - [anon_sym_TRUE] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_False] = ACTIONS(2293), - [anon_sym_FALSE] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [anon_sym_Null] = ACTIONS(2293), - [anon_sym_NULL] = ACTIONS(2293), - [sym_string] = ACTIONS(2295), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_array] = ACTIONS(2293), - [anon_sym_varray] = ACTIONS(2293), - [anon_sym_darray] = ACTIONS(2293), - [anon_sym_vec] = ACTIONS(2293), - [anon_sym_dict] = ACTIONS(2293), - [anon_sym_keyset] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_trait] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_abstract] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2295), - [sym_final_modifier] = ACTIONS(2293), - [sym_xhp_modifier] = ACTIONS(2293), - [sym_xhp_identifier] = ACTIONS(2293), - [sym_xhp_class_identifier] = ACTIONS(2295), + [1087] = { + [sym_identifier] = ACTIONS(2517), + [sym_variable] = ACTIONS(2519), + [sym_pipe_variable] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_newtype] = ACTIONS(2517), + [anon_sym_shape] = ACTIONS(2517), + [anon_sym_tuple] = ACTIONS(2517), + [anon_sym_clone] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_include_once] = ACTIONS(2517), + [anon_sym_require] = ACTIONS(2517), + [anon_sym_require_once] = ACTIONS(2517), + [anon_sym_BSLASH] = ACTIONS(2519), + [anon_sym_self] = ACTIONS(2517), + [anon_sym_parent] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_LT_LT] = ACTIONS(2517), + [anon_sym_LT_LT_LT] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_echo] = ACTIONS(2517), + [anon_sym_unset] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_concurrent] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_case] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_foreach] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [sym_float] = ACTIONS(2519), + [sym_integer] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_True] = ACTIONS(2517), + [anon_sym_TRUE] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_False] = ACTIONS(2517), + [anon_sym_FALSE] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_Null] = ACTIONS(2517), + [anon_sym_NULL] = ACTIONS(2517), + [sym_string] = ACTIONS(2519), + [anon_sym_AT] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_array] = ACTIONS(2517), + [anon_sym_varray] = ACTIONS(2517), + [anon_sym_darray] = ACTIONS(2517), + [anon_sym_vec] = ACTIONS(2517), + [anon_sym_dict] = ACTIONS(2517), + [anon_sym_keyset] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2519), + [sym_final_modifier] = ACTIONS(2517), + [sym_xhp_modifier] = ACTIONS(2517), + [sym_xhp_identifier] = ACTIONS(2517), + [sym_xhp_class_identifier] = ACTIONS(2519), [sym_comment] = ACTIONS(3), }, - [1169] = { - [ts_builtin_sym_end] = ACTIONS(2559), - [sym_identifier] = ACTIONS(2557), - [sym_variable] = ACTIONS(2559), - [sym_pipe_variable] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_newtype] = ACTIONS(2557), - [anon_sym_shape] = ACTIONS(2557), - [anon_sym_tuple] = ACTIONS(2557), - [anon_sym_clone] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_print] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_LT_LT] = ACTIONS(2557), - [anon_sym_LT_LT_LT] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_echo] = ACTIONS(2557), - [anon_sym_unset] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_concurrent] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_elseif] = ACTIONS(2557), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_foreach] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [sym_float] = ACTIONS(2559), - [sym_integer] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_True] = ACTIONS(2557), - [anon_sym_TRUE] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_False] = ACTIONS(2557), - [anon_sym_FALSE] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2557), - [anon_sym_Null] = ACTIONS(2557), - [anon_sym_NULL] = ACTIONS(2557), - [sym_string] = ACTIONS(2559), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_array] = ACTIONS(2557), - [anon_sym_varray] = ACTIONS(2557), - [anon_sym_darray] = ACTIONS(2557), - [anon_sym_vec] = ACTIONS(2557), - [anon_sym_dict] = ACTIONS(2557), - [anon_sym_keyset] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_trait] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2559), - [sym_final_modifier] = ACTIONS(2557), - [sym_xhp_modifier] = ACTIONS(2557), - [sym_xhp_identifier] = ACTIONS(2557), - [sym_xhp_class_identifier] = ACTIONS(2559), + [1088] = { + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2217), + [sym_variable] = ACTIONS(2219), + [sym_pipe_variable] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_newtype] = ACTIONS(2217), + [anon_sym_shape] = ACTIONS(2217), + [anon_sym_tuple] = ACTIONS(2217), + [anon_sym_clone] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2217), + [anon_sym_include] = ACTIONS(2217), + [anon_sym_include_once] = ACTIONS(2217), + [anon_sym_require] = ACTIONS(2217), + [anon_sym_require_once] = ACTIONS(2217), + [anon_sym_BSLASH] = ACTIONS(2219), + [anon_sym_self] = ACTIONS(2217), + [anon_sym_parent] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_LT_LT_LT] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_throw] = ACTIONS(2217), + [anon_sym_echo] = ACTIONS(2217), + [anon_sym_unset] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_concurrent] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_function] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_elseif] = ACTIONS(2217), + [anon_sym_else] = ACTIONS(2217), + [anon_sym_switch] = ACTIONS(2217), + [anon_sym_foreach] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_using] = ACTIONS(2217), + [sym_float] = ACTIONS(2219), + [sym_integer] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_True] = ACTIONS(2217), + [anon_sym_TRUE] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_False] = ACTIONS(2217), + [anon_sym_FALSE] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [anon_sym_Null] = ACTIONS(2217), + [anon_sym_NULL] = ACTIONS(2217), + [sym_string] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_array] = ACTIONS(2217), + [anon_sym_varray] = ACTIONS(2217), + [anon_sym_darray] = ACTIONS(2217), + [anon_sym_vec] = ACTIONS(2217), + [anon_sym_dict] = ACTIONS(2217), + [anon_sym_keyset] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_list] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_class] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_abstract] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2219), + [sym_final_modifier] = ACTIONS(2217), + [sym_xhp_modifier] = ACTIONS(2217), + [sym_xhp_identifier] = ACTIONS(2217), + [sym_xhp_class_identifier] = ACTIONS(2219), [sym_comment] = ACTIONS(3), }, - [1170] = { - [sym_identifier] = ACTIONS(2289), - [sym_variable] = ACTIONS(2291), - [sym_pipe_variable] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_newtype] = ACTIONS(2289), - [anon_sym_shape] = ACTIONS(2289), - [anon_sym_tuple] = ACTIONS(2289), - [anon_sym_clone] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_print] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2289), - [anon_sym_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_LT_LT_LT] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2289), - [anon_sym_echo] = ACTIONS(2289), - [anon_sym_unset] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_concurrent] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_case] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_foreach] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_using] = ACTIONS(2289), - [sym_float] = ACTIONS(2291), - [sym_integer] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_True] = ACTIONS(2289), - [anon_sym_TRUE] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_False] = ACTIONS(2289), - [anon_sym_FALSE] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [anon_sym_Null] = ACTIONS(2289), - [anon_sym_NULL] = ACTIONS(2289), - [sym_string] = ACTIONS(2291), - [anon_sym_AT] = ACTIONS(2291), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_array] = ACTIONS(2289), - [anon_sym_varray] = ACTIONS(2289), - [anon_sym_darray] = ACTIONS(2289), - [anon_sym_vec] = ACTIONS(2289), - [anon_sym_dict] = ACTIONS(2289), - [anon_sym_keyset] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_abstract] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2291), - [sym_final_modifier] = ACTIONS(2289), - [sym_xhp_modifier] = ACTIONS(2289), - [sym_xhp_identifier] = ACTIONS(2289), - [sym_xhp_class_identifier] = ACTIONS(2291), + [1089] = { + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2213), + [sym_variable] = ACTIONS(2215), + [sym_pipe_variable] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_newtype] = ACTIONS(2213), + [anon_sym_shape] = ACTIONS(2213), + [anon_sym_tuple] = ACTIONS(2213), + [anon_sym_clone] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_print] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_include] = ACTIONS(2213), + [anon_sym_include_once] = ACTIONS(2213), + [anon_sym_require] = ACTIONS(2213), + [anon_sym_require_once] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2215), + [anon_sym_self] = ACTIONS(2213), + [anon_sym_parent] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_LT_LT_LT] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_echo] = ACTIONS(2213), + [anon_sym_unset] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_concurrent] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_elseif] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_foreach] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [sym_float] = ACTIONS(2215), + [sym_integer] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_True] = ACTIONS(2213), + [anon_sym_TRUE] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_False] = ACTIONS(2213), + [anon_sym_FALSE] = ACTIONS(2213), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_Null] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2213), + [sym_string] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_array] = ACTIONS(2213), + [anon_sym_varray] = ACTIONS(2213), + [anon_sym_darray] = ACTIONS(2213), + [anon_sym_vec] = ACTIONS(2213), + [anon_sym_dict] = ACTIONS(2213), + [anon_sym_keyset] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_list] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2215), + [sym_final_modifier] = ACTIONS(2213), + [sym_xhp_modifier] = ACTIONS(2213), + [sym_xhp_identifier] = ACTIONS(2213), + [sym_xhp_class_identifier] = ACTIONS(2215), [sym_comment] = ACTIONS(3), }, - [1171] = { - [sym_identifier] = ACTIONS(2285), - [sym_variable] = ACTIONS(2287), - [sym_pipe_variable] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_newtype] = ACTIONS(2285), - [anon_sym_shape] = ACTIONS(2285), - [anon_sym_tuple] = ACTIONS(2285), - [anon_sym_clone] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_print] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_LT_LT_LT] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_throw] = ACTIONS(2285), - [anon_sym_echo] = ACTIONS(2285), - [anon_sym_unset] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_concurrent] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_function] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_switch] = ACTIONS(2285), - [anon_sym_case] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_foreach] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_using] = ACTIONS(2285), - [sym_float] = ACTIONS(2287), - [sym_integer] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_True] = ACTIONS(2285), - [anon_sym_TRUE] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_False] = ACTIONS(2285), - [anon_sym_FALSE] = ACTIONS(2285), - [anon_sym_null] = ACTIONS(2285), - [anon_sym_Null] = ACTIONS(2285), - [anon_sym_NULL] = ACTIONS(2285), - [sym_string] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_array] = ACTIONS(2285), - [anon_sym_varray] = ACTIONS(2285), - [anon_sym_darray] = ACTIONS(2285), - [anon_sym_vec] = ACTIONS(2285), - [anon_sym_dict] = ACTIONS(2285), - [anon_sym_keyset] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_abstract] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2287), - [sym_final_modifier] = ACTIONS(2285), - [sym_xhp_modifier] = ACTIONS(2285), - [sym_xhp_identifier] = ACTIONS(2285), - [sym_xhp_class_identifier] = ACTIONS(2287), + [1090] = { + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2209), + [sym_variable] = ACTIONS(2211), + [sym_pipe_variable] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_newtype] = ACTIONS(2209), + [anon_sym_shape] = ACTIONS(2209), + [anon_sym_tuple] = ACTIONS(2209), + [anon_sym_clone] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_print] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_include] = ACTIONS(2209), + [anon_sym_include_once] = ACTIONS(2209), + [anon_sym_require] = ACTIONS(2209), + [anon_sym_require_once] = ACTIONS(2209), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_self] = ACTIONS(2209), + [anon_sym_parent] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_LT_LT_LT] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_echo] = ACTIONS(2209), + [anon_sym_unset] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_concurrent] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_elseif] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_foreach] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [sym_float] = ACTIONS(2211), + [sym_integer] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_True] = ACTIONS(2209), + [anon_sym_TRUE] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_False] = ACTIONS(2209), + [anon_sym_FALSE] = ACTIONS(2209), + [anon_sym_null] = ACTIONS(2209), + [anon_sym_Null] = ACTIONS(2209), + [anon_sym_NULL] = ACTIONS(2209), + [sym_string] = ACTIONS(2211), + [anon_sym_AT] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_array] = ACTIONS(2209), + [anon_sym_varray] = ACTIONS(2209), + [anon_sym_darray] = ACTIONS(2209), + [anon_sym_vec] = ACTIONS(2209), + [anon_sym_dict] = ACTIONS(2209), + [anon_sym_keyset] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_list] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2211), + [sym_final_modifier] = ACTIONS(2209), + [sym_xhp_modifier] = ACTIONS(2209), + [sym_xhp_identifier] = ACTIONS(2209), + [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [1172] = { - [sym_identifier] = ACTIONS(2281), - [sym_variable] = ACTIONS(2283), - [sym_pipe_variable] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_newtype] = ACTIONS(2281), - [anon_sym_shape] = ACTIONS(2281), - [anon_sym_tuple] = ACTIONS(2281), - [anon_sym_clone] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_print] = ACTIONS(2281), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_LT_LT_LT] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_throw] = ACTIONS(2281), - [anon_sym_echo] = ACTIONS(2281), - [anon_sym_unset] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_concurrent] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_case] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_foreach] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_using] = ACTIONS(2281), - [sym_float] = ACTIONS(2283), - [sym_integer] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_True] = ACTIONS(2281), - [anon_sym_TRUE] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_False] = ACTIONS(2281), - [anon_sym_FALSE] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [anon_sym_Null] = ACTIONS(2281), - [anon_sym_NULL] = ACTIONS(2281), - [sym_string] = ACTIONS(2283), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_array] = ACTIONS(2281), - [anon_sym_varray] = ACTIONS(2281), - [anon_sym_darray] = ACTIONS(2281), - [anon_sym_vec] = ACTIONS(2281), - [anon_sym_dict] = ACTIONS(2281), - [anon_sym_keyset] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_abstract] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2283), - [sym_final_modifier] = ACTIONS(2281), - [sym_xhp_modifier] = ACTIONS(2281), - [sym_xhp_identifier] = ACTIONS(2281), - [sym_xhp_class_identifier] = ACTIONS(2283), + [1091] = { + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_finally] = ACTIONS(2051), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, - [1173] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_identifier] = ACTIONS(2553), - [sym_variable] = ACTIONS(2555), - [sym_pipe_variable] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2553), - [anon_sym_newtype] = ACTIONS(2553), - [anon_sym_shape] = ACTIONS(2553), - [anon_sym_tuple] = ACTIONS(2553), - [anon_sym_clone] = ACTIONS(2553), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_namespace] = ACTIONS(2553), - [anon_sym_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_LT_LT] = ACTIONS(2553), - [anon_sym_LT_LT_LT] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_throw] = ACTIONS(2553), - [anon_sym_echo] = ACTIONS(2553), - [anon_sym_unset] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_concurrent] = ACTIONS(2553), - [anon_sym_use] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_elseif] = ACTIONS(2553), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_foreach] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(2553), - [sym_float] = ACTIONS(2555), - [sym_integer] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_True] = ACTIONS(2553), - [anon_sym_TRUE] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_False] = ACTIONS(2553), - [anon_sym_FALSE] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_Null] = ACTIONS(2553), - [anon_sym_NULL] = ACTIONS(2553), - [sym_string] = ACTIONS(2555), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_array] = ACTIONS(2553), - [anon_sym_varray] = ACTIONS(2553), - [anon_sym_darray] = ACTIONS(2553), - [anon_sym_vec] = ACTIONS(2553), - [anon_sym_dict] = ACTIONS(2553), - [anon_sym_keyset] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_trait] = ACTIONS(2553), - [anon_sym_interface] = ACTIONS(2553), - [anon_sym_class] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2555), - [sym_final_modifier] = ACTIONS(2553), - [sym_xhp_modifier] = ACTIONS(2553), - [sym_xhp_identifier] = ACTIONS(2553), - [sym_xhp_class_identifier] = ACTIONS(2555), + [1092] = { + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_case] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, - [1174] = { - [ts_builtin_sym_end] = ACTIONS(2547), - [sym_identifier] = ACTIONS(2545), - [sym_variable] = ACTIONS(2547), - [sym_pipe_variable] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_newtype] = ACTIONS(2545), - [anon_sym_shape] = ACTIONS(2545), - [anon_sym_tuple] = ACTIONS(2545), - [anon_sym_clone] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_print] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), - [anon_sym_LT_LT_LT] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_echo] = ACTIONS(2545), - [anon_sym_unset] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_concurrent] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_elseif] = ACTIONS(2545), - [anon_sym_else] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_foreach] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [sym_float] = ACTIONS(2547), - [sym_integer] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_True] = ACTIONS(2545), - [anon_sym_TRUE] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_False] = ACTIONS(2545), - [anon_sym_FALSE] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_Null] = ACTIONS(2545), - [anon_sym_NULL] = ACTIONS(2545), - [sym_string] = ACTIONS(2547), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_array] = ACTIONS(2545), - [anon_sym_varray] = ACTIONS(2545), - [anon_sym_darray] = ACTIONS(2545), - [anon_sym_vec] = ACTIONS(2545), - [anon_sym_dict] = ACTIONS(2545), - [anon_sym_keyset] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2547), - [sym_final_modifier] = ACTIONS(2545), - [sym_xhp_modifier] = ACTIONS(2545), - [sym_xhp_identifier] = ACTIONS(2545), - [sym_xhp_class_identifier] = ACTIONS(2547), + [1093] = { + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2205), + [sym_variable] = ACTIONS(2207), + [sym_pipe_variable] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_newtype] = ACTIONS(2205), + [anon_sym_shape] = ACTIONS(2205), + [anon_sym_tuple] = ACTIONS(2205), + [anon_sym_clone] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_print] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_include] = ACTIONS(2205), + [anon_sym_include_once] = ACTIONS(2205), + [anon_sym_require] = ACTIONS(2205), + [anon_sym_require_once] = ACTIONS(2205), + [anon_sym_BSLASH] = ACTIONS(2207), + [anon_sym_self] = ACTIONS(2205), + [anon_sym_parent] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_LT_LT_LT] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_echo] = ACTIONS(2205), + [anon_sym_unset] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_concurrent] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_elseif] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_foreach] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [sym_float] = ACTIONS(2207), + [sym_integer] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_True] = ACTIONS(2205), + [anon_sym_TRUE] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_False] = ACTIONS(2205), + [anon_sym_FALSE] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(2205), + [anon_sym_Null] = ACTIONS(2205), + [anon_sym_NULL] = ACTIONS(2205), + [sym_string] = ACTIONS(2207), + [anon_sym_AT] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_array] = ACTIONS(2205), + [anon_sym_varray] = ACTIONS(2205), + [anon_sym_darray] = ACTIONS(2205), + [anon_sym_vec] = ACTIONS(2205), + [anon_sym_dict] = ACTIONS(2205), + [anon_sym_keyset] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_list] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2207), + [sym_final_modifier] = ACTIONS(2205), + [sym_xhp_modifier] = ACTIONS(2205), + [sym_xhp_identifier] = ACTIONS(2205), + [sym_xhp_class_identifier] = ACTIONS(2207), [sym_comment] = ACTIONS(3), }, - [1175] = { - [sym_identifier] = ACTIONS(2277), - [sym_variable] = ACTIONS(2279), - [sym_pipe_variable] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_newtype] = ACTIONS(2277), - [anon_sym_shape] = ACTIONS(2277), - [anon_sym_tuple] = ACTIONS(2277), - [anon_sym_clone] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_print] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_LT_LT] = ACTIONS(2277), - [anon_sym_LT_LT_LT] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_throw] = ACTIONS(2277), - [anon_sym_echo] = ACTIONS(2277), - [anon_sym_unset] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_concurrent] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_function] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_case] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_foreach] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_using] = ACTIONS(2277), - [sym_float] = ACTIONS(2279), - [sym_integer] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_True] = ACTIONS(2277), - [anon_sym_TRUE] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_False] = ACTIONS(2277), - [anon_sym_FALSE] = ACTIONS(2277), - [anon_sym_null] = ACTIONS(2277), - [anon_sym_Null] = ACTIONS(2277), - [anon_sym_NULL] = ACTIONS(2277), - [sym_string] = ACTIONS(2279), - [anon_sym_AT] = ACTIONS(2279), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_array] = ACTIONS(2277), - [anon_sym_varray] = ACTIONS(2277), - [anon_sym_darray] = ACTIONS(2277), - [anon_sym_vec] = ACTIONS(2277), - [anon_sym_dict] = ACTIONS(2277), - [anon_sym_keyset] = ACTIONS(2277), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_interface] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_abstract] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(2279), - [sym_final_modifier] = ACTIONS(2277), - [sym_xhp_modifier] = ACTIONS(2277), - [sym_xhp_identifier] = ACTIONS(2277), - [sym_xhp_class_identifier] = ACTIONS(2279), + [1094] = { + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2201), + [sym_variable] = ACTIONS(2203), + [sym_pipe_variable] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_newtype] = ACTIONS(2201), + [anon_sym_shape] = ACTIONS(2201), + [anon_sym_tuple] = ACTIONS(2201), + [anon_sym_clone] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_namespace] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_include_once] = ACTIONS(2201), + [anon_sym_require] = ACTIONS(2201), + [anon_sym_require_once] = ACTIONS(2201), + [anon_sym_BSLASH] = ACTIONS(2203), + [anon_sym_self] = ACTIONS(2201), + [anon_sym_parent] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_LT_LT_LT] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_echo] = ACTIONS(2201), + [anon_sym_unset] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_concurrent] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_elseif] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_foreach] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_using] = ACTIONS(2201), + [sym_float] = ACTIONS(2203), + [sym_integer] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [sym_string] = ACTIONS(2203), + [anon_sym_AT] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_array] = ACTIONS(2201), + [anon_sym_varray] = ACTIONS(2201), + [anon_sym_darray] = ACTIONS(2201), + [anon_sym_vec] = ACTIONS(2201), + [anon_sym_dict] = ACTIONS(2201), + [anon_sym_keyset] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_list] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_class] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2203), + [sym_final_modifier] = ACTIONS(2201), + [sym_xhp_modifier] = ACTIONS(2201), + [sym_xhp_identifier] = ACTIONS(2201), + [sym_xhp_class_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(3), }, - [1176] = { - [ts_builtin_sym_end] = ACTIONS(2543), - [sym_identifier] = ACTIONS(2541), - [sym_variable] = ACTIONS(2543), - [sym_pipe_variable] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_newtype] = ACTIONS(2541), - [anon_sym_shape] = ACTIONS(2541), - [anon_sym_tuple] = ACTIONS(2541), - [anon_sym_clone] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), - [anon_sym_LT_LT_LT] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_echo] = ACTIONS(2541), - [anon_sym_unset] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_concurrent] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2541), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_foreach] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [sym_float] = ACTIONS(2543), - [sym_integer] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_True] = ACTIONS(2541), - [anon_sym_TRUE] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_False] = ACTIONS(2541), - [anon_sym_FALSE] = ACTIONS(2541), - [anon_sym_null] = ACTIONS(2541), - [anon_sym_Null] = ACTIONS(2541), - [anon_sym_NULL] = ACTIONS(2541), - [sym_string] = ACTIONS(2543), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_array] = ACTIONS(2541), - [anon_sym_varray] = ACTIONS(2541), - [anon_sym_darray] = ACTIONS(2541), - [anon_sym_vec] = ACTIONS(2541), - [anon_sym_dict] = ACTIONS(2541), - [anon_sym_keyset] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2543), - [sym_final_modifier] = ACTIONS(2541), - [sym_xhp_modifier] = ACTIONS(2541), - [sym_xhp_identifier] = ACTIONS(2541), - [sym_xhp_class_identifier] = ACTIONS(2543), + [1095] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1177] = { - [sym_identifier] = ACTIONS(2273), - [sym_variable] = ACTIONS(2275), - [sym_pipe_variable] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_newtype] = ACTIONS(2273), - [anon_sym_shape] = ACTIONS(2273), - [anon_sym_tuple] = ACTIONS(2273), - [anon_sym_clone] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_print] = ACTIONS(2273), - [anon_sym_namespace] = ACTIONS(2273), - [anon_sym_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_LT_LT_LT] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_throw] = ACTIONS(2273), - [anon_sym_echo] = ACTIONS(2273), - [anon_sym_unset] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_concurrent] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_function] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_case] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_foreach] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_using] = ACTIONS(2273), - [sym_float] = ACTIONS(2275), - [sym_integer] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_True] = ACTIONS(2273), - [anon_sym_TRUE] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_False] = ACTIONS(2273), - [anon_sym_FALSE] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [anon_sym_Null] = ACTIONS(2273), - [anon_sym_NULL] = ACTIONS(2273), - [sym_string] = ACTIONS(2275), - [anon_sym_AT] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_array] = ACTIONS(2273), - [anon_sym_varray] = ACTIONS(2273), - [anon_sym_darray] = ACTIONS(2273), - [anon_sym_vec] = ACTIONS(2273), - [anon_sym_dict] = ACTIONS(2273), - [anon_sym_keyset] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_class] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_abstract] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2275), - [sym_final_modifier] = ACTIONS(2273), - [sym_xhp_modifier] = ACTIONS(2273), - [sym_xhp_identifier] = ACTIONS(2273), - [sym_xhp_class_identifier] = ACTIONS(2275), + [1096] = { + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2197), + [sym_variable] = ACTIONS(2199), + [sym_pipe_variable] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_newtype] = ACTIONS(2197), + [anon_sym_shape] = ACTIONS(2197), + [anon_sym_tuple] = ACTIONS(2197), + [anon_sym_clone] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_print] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_include] = ACTIONS(2197), + [anon_sym_include_once] = ACTIONS(2197), + [anon_sym_require] = ACTIONS(2197), + [anon_sym_require_once] = ACTIONS(2197), + [anon_sym_BSLASH] = ACTIONS(2199), + [anon_sym_self] = ACTIONS(2197), + [anon_sym_parent] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_LT_LT_LT] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_echo] = ACTIONS(2197), + [anon_sym_unset] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_concurrent] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_elseif] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_foreach] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [sym_float] = ACTIONS(2199), + [sym_integer] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_True] = ACTIONS(2197), + [anon_sym_TRUE] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_False] = ACTIONS(2197), + [anon_sym_FALSE] = ACTIONS(2197), + [anon_sym_null] = ACTIONS(2197), + [anon_sym_Null] = ACTIONS(2197), + [anon_sym_NULL] = ACTIONS(2197), + [sym_string] = ACTIONS(2199), + [anon_sym_AT] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_array] = ACTIONS(2197), + [anon_sym_varray] = ACTIONS(2197), + [anon_sym_darray] = ACTIONS(2197), + [anon_sym_vec] = ACTIONS(2197), + [anon_sym_dict] = ACTIONS(2197), + [anon_sym_keyset] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_list] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2199), + [sym_final_modifier] = ACTIONS(2197), + [sym_xhp_modifier] = ACTIONS(2197), + [sym_xhp_identifier] = ACTIONS(2197), + [sym_xhp_class_identifier] = ACTIONS(2199), [sym_comment] = ACTIONS(3), }, - [1178] = { - [ts_builtin_sym_end] = ACTIONS(2527), - [sym_identifier] = ACTIONS(2525), - [sym_variable] = ACTIONS(2527), - [sym_pipe_variable] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_newtype] = ACTIONS(2525), - [anon_sym_shape] = ACTIONS(2525), - [anon_sym_tuple] = ACTIONS(2525), - [anon_sym_clone] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_LT_LT_LT] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_echo] = ACTIONS(2525), - [anon_sym_unset] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_concurrent] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_elseif] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_foreach] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [sym_float] = ACTIONS(2527), - [sym_integer] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_True] = ACTIONS(2525), - [anon_sym_TRUE] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_False] = ACTIONS(2525), - [anon_sym_FALSE] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2525), - [anon_sym_Null] = ACTIONS(2525), - [anon_sym_NULL] = ACTIONS(2525), - [sym_string] = ACTIONS(2527), - [anon_sym_AT] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_array] = ACTIONS(2525), - [anon_sym_varray] = ACTIONS(2525), - [anon_sym_darray] = ACTIONS(2525), - [anon_sym_vec] = ACTIONS(2525), - [anon_sym_dict] = ACTIONS(2525), - [anon_sym_keyset] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_trait] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2527), - [sym_final_modifier] = ACTIONS(2525), - [sym_xhp_modifier] = ACTIONS(2525), - [sym_xhp_identifier] = ACTIONS(2525), - [sym_xhp_class_identifier] = ACTIONS(2527), + [1097] = { + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [sym_variable] = ACTIONS(2195), + [sym_pipe_variable] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_newtype] = ACTIONS(2193), + [anon_sym_shape] = ACTIONS(2193), + [anon_sym_tuple] = ACTIONS(2193), + [anon_sym_clone] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_print] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_include] = ACTIONS(2193), + [anon_sym_include_once] = ACTIONS(2193), + [anon_sym_require] = ACTIONS(2193), + [anon_sym_require_once] = ACTIONS(2193), + [anon_sym_BSLASH] = ACTIONS(2195), + [anon_sym_self] = ACTIONS(2193), + [anon_sym_parent] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_LT_LT_LT] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_echo] = ACTIONS(2193), + [anon_sym_unset] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_concurrent] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_elseif] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_foreach] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [sym_float] = ACTIONS(2195), + [sym_integer] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_True] = ACTIONS(2193), + [anon_sym_TRUE] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_False] = ACTIONS(2193), + [anon_sym_FALSE] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [anon_sym_Null] = ACTIONS(2193), + [anon_sym_NULL] = ACTIONS(2193), + [sym_string] = ACTIONS(2195), + [anon_sym_AT] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_array] = ACTIONS(2193), + [anon_sym_varray] = ACTIONS(2193), + [anon_sym_darray] = ACTIONS(2193), + [anon_sym_vec] = ACTIONS(2193), + [anon_sym_dict] = ACTIONS(2193), + [anon_sym_keyset] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_list] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2195), + [sym_final_modifier] = ACTIONS(2193), + [sym_xhp_modifier] = ACTIONS(2193), + [sym_xhp_identifier] = ACTIONS(2193), + [sym_xhp_class_identifier] = ACTIONS(2195), [sym_comment] = ACTIONS(3), }, - [1179] = { - [sym_identifier] = ACTIONS(2265), - [sym_variable] = ACTIONS(2267), - [sym_pipe_variable] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_newtype] = ACTIONS(2265), - [anon_sym_shape] = ACTIONS(2265), - [anon_sym_tuple] = ACTIONS(2265), - [anon_sym_clone] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_print] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_LT] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_echo] = ACTIONS(2265), - [anon_sym_unset] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_concurrent] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_case] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_using] = ACTIONS(2265), - [sym_float] = ACTIONS(2267), - [sym_integer] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_True] = ACTIONS(2265), - [anon_sym_TRUE] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_False] = ACTIONS(2265), - [anon_sym_FALSE] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_Null] = ACTIONS(2265), - [anon_sym_NULL] = ACTIONS(2265), - [sym_string] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_array] = ACTIONS(2265), - [anon_sym_varray] = ACTIONS(2265), - [anon_sym_darray] = ACTIONS(2265), - [anon_sym_vec] = ACTIONS(2265), - [anon_sym_dict] = ACTIONS(2265), - [anon_sym_keyset] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2267), - [sym_final_modifier] = ACTIONS(2265), - [sym_xhp_modifier] = ACTIONS(2265), - [sym_xhp_identifier] = ACTIONS(2265), - [sym_xhp_class_identifier] = ACTIONS(2267), + [1098] = { + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2189), + [sym_variable] = ACTIONS(2191), + [sym_pipe_variable] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_newtype] = ACTIONS(2189), + [anon_sym_shape] = ACTIONS(2189), + [anon_sym_tuple] = ACTIONS(2189), + [anon_sym_clone] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_include] = ACTIONS(2189), + [anon_sym_include_once] = ACTIONS(2189), + [anon_sym_require] = ACTIONS(2189), + [anon_sym_require_once] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_self] = ACTIONS(2189), + [anon_sym_parent] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT_LT_LT] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_echo] = ACTIONS(2189), + [anon_sym_unset] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_concurrent] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_elseif] = ACTIONS(2189), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_foreach] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [sym_float] = ACTIONS(2191), + [sym_integer] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_True] = ACTIONS(2189), + [anon_sym_TRUE] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_False] = ACTIONS(2189), + [anon_sym_FALSE] = ACTIONS(2189), + [anon_sym_null] = ACTIONS(2189), + [anon_sym_Null] = ACTIONS(2189), + [anon_sym_NULL] = ACTIONS(2189), + [sym_string] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_array] = ACTIONS(2189), + [anon_sym_varray] = ACTIONS(2189), + [anon_sym_darray] = ACTIONS(2189), + [anon_sym_vec] = ACTIONS(2189), + [anon_sym_dict] = ACTIONS(2189), + [anon_sym_keyset] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_list] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2191), + [sym_final_modifier] = ACTIONS(2189), + [sym_xhp_modifier] = ACTIONS(2189), + [sym_xhp_identifier] = ACTIONS(2189), + [sym_xhp_class_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(3), }, - [1180] = { - [sym_identifier] = ACTIONS(2261), - [sym_variable] = ACTIONS(2263), - [sym_pipe_variable] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_newtype] = ACTIONS(2261), - [anon_sym_shape] = ACTIONS(2261), - [anon_sym_tuple] = ACTIONS(2261), - [anon_sym_clone] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_print] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_LT_LT_LT] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_throw] = ACTIONS(2261), - [anon_sym_echo] = ACTIONS(2261), - [anon_sym_unset] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_concurrent] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_function] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(2261), - [anon_sym_case] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_foreach] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_do] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_using] = ACTIONS(2261), - [sym_float] = ACTIONS(2263), - [sym_integer] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_True] = ACTIONS(2261), - [anon_sym_TRUE] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_False] = ACTIONS(2261), - [anon_sym_FALSE] = ACTIONS(2261), - [anon_sym_null] = ACTIONS(2261), - [anon_sym_Null] = ACTIONS(2261), - [anon_sym_NULL] = ACTIONS(2261), - [sym_string] = ACTIONS(2263), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_array] = ACTIONS(2261), - [anon_sym_varray] = ACTIONS(2261), - [anon_sym_darray] = ACTIONS(2261), - [anon_sym_vec] = ACTIONS(2261), - [anon_sym_dict] = ACTIONS(2261), - [anon_sym_keyset] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_abstract] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2263), - [sym_final_modifier] = ACTIONS(2261), - [sym_xhp_modifier] = ACTIONS(2261), - [sym_xhp_identifier] = ACTIONS(2261), - [sym_xhp_class_identifier] = ACTIONS(2263), + [1099] = { + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2185), + [sym_variable] = ACTIONS(2187), + [sym_pipe_variable] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_newtype] = ACTIONS(2185), + [anon_sym_shape] = ACTIONS(2185), + [anon_sym_tuple] = ACTIONS(2185), + [anon_sym_clone] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_print] = ACTIONS(2185), + [anon_sym_namespace] = ACTIONS(2185), + [anon_sym_include] = ACTIONS(2185), + [anon_sym_include_once] = ACTIONS(2185), + [anon_sym_require] = ACTIONS(2185), + [anon_sym_require_once] = ACTIONS(2185), + [anon_sym_BSLASH] = ACTIONS(2187), + [anon_sym_self] = ACTIONS(2185), + [anon_sym_parent] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_LT_LT_LT] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_throw] = ACTIONS(2185), + [anon_sym_echo] = ACTIONS(2185), + [anon_sym_unset] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_concurrent] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_elseif] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_foreach] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_using] = ACTIONS(2185), + [sym_float] = ACTIONS(2187), + [sym_integer] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_True] = ACTIONS(2185), + [anon_sym_TRUE] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_False] = ACTIONS(2185), + [anon_sym_FALSE] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_Null] = ACTIONS(2185), + [anon_sym_NULL] = ACTIONS(2185), + [sym_string] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_array] = ACTIONS(2185), + [anon_sym_varray] = ACTIONS(2185), + [anon_sym_darray] = ACTIONS(2185), + [anon_sym_vec] = ACTIONS(2185), + [anon_sym_dict] = ACTIONS(2185), + [anon_sym_keyset] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_list] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_class] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_abstract] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2187), + [sym_final_modifier] = ACTIONS(2185), + [sym_xhp_modifier] = ACTIONS(2185), + [sym_xhp_identifier] = ACTIONS(2185), + [sym_xhp_class_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(3), }, - [1181] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_elseif] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), + [1100] = { + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2181), + [sym_variable] = ACTIONS(2183), + [sym_pipe_variable] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_newtype] = ACTIONS(2181), + [anon_sym_shape] = ACTIONS(2181), + [anon_sym_tuple] = ACTIONS(2181), + [anon_sym_clone] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(2181), + [anon_sym_namespace] = ACTIONS(2181), + [anon_sym_include] = ACTIONS(2181), + [anon_sym_include_once] = ACTIONS(2181), + [anon_sym_require] = ACTIONS(2181), + [anon_sym_require_once] = ACTIONS(2181), + [anon_sym_BSLASH] = ACTIONS(2183), + [anon_sym_self] = ACTIONS(2181), + [anon_sym_parent] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_LT_LT_LT] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2181), + [anon_sym_echo] = ACTIONS(2181), + [anon_sym_unset] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_concurrent] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_elseif] = ACTIONS(2181), + [anon_sym_else] = ACTIONS(2181), + [anon_sym_switch] = ACTIONS(2181), + [anon_sym_foreach] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_using] = ACTIONS(2181), + [sym_float] = ACTIONS(2183), + [sym_integer] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_True] = ACTIONS(2181), + [anon_sym_TRUE] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_False] = ACTIONS(2181), + [anon_sym_FALSE] = ACTIONS(2181), + [anon_sym_null] = ACTIONS(2181), + [anon_sym_Null] = ACTIONS(2181), + [anon_sym_NULL] = ACTIONS(2181), + [sym_string] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_array] = ACTIONS(2181), + [anon_sym_varray] = ACTIONS(2181), + [anon_sym_darray] = ACTIONS(2181), + [anon_sym_vec] = ACTIONS(2181), + [anon_sym_dict] = ACTIONS(2181), + [anon_sym_keyset] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_list] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_class] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_abstract] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2183), + [sym_final_modifier] = ACTIONS(2181), + [sym_xhp_modifier] = ACTIONS(2181), + [sym_xhp_identifier] = ACTIONS(2181), + [sym_xhp_class_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(3), }, - [1182] = { - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2521), - [sym_variable] = ACTIONS(2523), - [sym_pipe_variable] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_newtype] = ACTIONS(2521), - [anon_sym_shape] = ACTIONS(2521), - [anon_sym_tuple] = ACTIONS(2521), - [anon_sym_clone] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_print] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_LT_LT_LT] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_echo] = ACTIONS(2521), - [anon_sym_unset] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_concurrent] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_elseif] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_foreach] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [sym_float] = ACTIONS(2523), - [sym_integer] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_True] = ACTIONS(2521), - [anon_sym_TRUE] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_False] = ACTIONS(2521), - [anon_sym_FALSE] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [anon_sym_Null] = ACTIONS(2521), - [anon_sym_NULL] = ACTIONS(2521), - [sym_string] = ACTIONS(2523), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_array] = ACTIONS(2521), - [anon_sym_varray] = ACTIONS(2521), - [anon_sym_darray] = ACTIONS(2521), - [anon_sym_vec] = ACTIONS(2521), - [anon_sym_dict] = ACTIONS(2521), - [anon_sym_keyset] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_trait] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2523), - [sym_final_modifier] = ACTIONS(2521), - [sym_xhp_modifier] = ACTIONS(2521), - [sym_xhp_identifier] = ACTIONS(2521), - [sym_xhp_class_identifier] = ACTIONS(2523), + [1101] = { + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2177), + [sym_variable] = ACTIONS(2179), + [sym_pipe_variable] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_newtype] = ACTIONS(2177), + [anon_sym_shape] = ACTIONS(2177), + [anon_sym_tuple] = ACTIONS(2177), + [anon_sym_clone] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2177), + [anon_sym_print] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2177), + [anon_sym_include] = ACTIONS(2177), + [anon_sym_include_once] = ACTIONS(2177), + [anon_sym_require] = ACTIONS(2177), + [anon_sym_require_once] = ACTIONS(2177), + [anon_sym_BSLASH] = ACTIONS(2179), + [anon_sym_self] = ACTIONS(2177), + [anon_sym_parent] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_LT_LT_LT] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_throw] = ACTIONS(2177), + [anon_sym_echo] = ACTIONS(2177), + [anon_sym_unset] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_concurrent] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_function] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_elseif] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_switch] = ACTIONS(2177), + [anon_sym_foreach] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_using] = ACTIONS(2177), + [sym_float] = ACTIONS(2179), + [sym_integer] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_True] = ACTIONS(2177), + [anon_sym_TRUE] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_False] = ACTIONS(2177), + [anon_sym_FALSE] = ACTIONS(2177), + [anon_sym_null] = ACTIONS(2177), + [anon_sym_Null] = ACTIONS(2177), + [anon_sym_NULL] = ACTIONS(2177), + [sym_string] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_array] = ACTIONS(2177), + [anon_sym_varray] = ACTIONS(2177), + [anon_sym_darray] = ACTIONS(2177), + [anon_sym_vec] = ACTIONS(2177), + [anon_sym_dict] = ACTIONS(2177), + [anon_sym_keyset] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_list] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_PLUS_PLUS] = ACTIONS(2179), + [anon_sym_DASH_DASH] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2177), + [anon_sym_class] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_abstract] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2179), + [sym_final_modifier] = ACTIONS(2177), + [sym_xhp_modifier] = ACTIONS(2177), + [sym_xhp_identifier] = ACTIONS(2177), + [sym_xhp_class_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(3), }, - [1183] = { - [ts_builtin_sym_end] = ACTIONS(2511), + [1102] = { + [sym_identifier] = ACTIONS(2513), + [sym_variable] = ACTIONS(2515), + [sym_pipe_variable] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_newtype] = ACTIONS(2513), + [anon_sym_shape] = ACTIONS(2513), + [anon_sym_tuple] = ACTIONS(2513), + [anon_sym_clone] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_include] = ACTIONS(2513), + [anon_sym_include_once] = ACTIONS(2513), + [anon_sym_require] = ACTIONS(2513), + [anon_sym_require_once] = ACTIONS(2513), + [anon_sym_BSLASH] = ACTIONS(2515), + [anon_sym_self] = ACTIONS(2513), + [anon_sym_parent] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_LT_LT_LT] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_echo] = ACTIONS(2513), + [anon_sym_unset] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_concurrent] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_foreach] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [sym_float] = ACTIONS(2515), + [sym_integer] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_True] = ACTIONS(2513), + [anon_sym_TRUE] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_False] = ACTIONS(2513), + [anon_sym_FALSE] = ACTIONS(2513), + [anon_sym_null] = ACTIONS(2513), + [anon_sym_Null] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2513), + [sym_string] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_array] = ACTIONS(2513), + [anon_sym_varray] = ACTIONS(2513), + [anon_sym_darray] = ACTIONS(2513), + [anon_sym_vec] = ACTIONS(2513), + [anon_sym_dict] = ACTIONS(2513), + [anon_sym_keyset] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2515), + [sym_final_modifier] = ACTIONS(2513), + [sym_xhp_modifier] = ACTIONS(2513), + [sym_xhp_identifier] = ACTIONS(2513), + [sym_xhp_class_identifier] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + }, + [1103] = { [sym_identifier] = ACTIONS(2509), [sym_variable] = ACTIONS(2511), [sym_pipe_variable] = ACTIONS(2511), @@ -146880,6 +133413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2509), [anon_sym_LT_LT] = ACTIONS(2509), [anon_sym_LT_LT_LT] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), [anon_sym_LBRACE] = ACTIONS(2511), [anon_sym_SEMI] = ACTIONS(2511), [anon_sym_return] = ACTIONS(2509), @@ -146894,9 +133428,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2509), [anon_sym_const] = ACTIONS(2509), [anon_sym_if] = ACTIONS(2509), - [anon_sym_elseif] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), [anon_sym_foreach] = ACTIONS(2509), [anon_sym_while] = ACTIONS(2509), [anon_sym_do] = ACTIONS(2509), @@ -146945,1151 +133479,1327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2511), [sym_comment] = ACTIONS(3), }, - [1184] = { - [sym_identifier] = ACTIONS(2257), - [sym_variable] = ACTIONS(2259), - [sym_pipe_variable] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_newtype] = ACTIONS(2257), - [anon_sym_shape] = ACTIONS(2257), - [anon_sym_tuple] = ACTIONS(2257), - [anon_sym_clone] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_print] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_LT_LT_LT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_echo] = ACTIONS(2257), - [anon_sym_unset] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_concurrent] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_foreach] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [sym_float] = ACTIONS(2259), - [sym_integer] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_True] = ACTIONS(2257), - [anon_sym_TRUE] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_False] = ACTIONS(2257), - [anon_sym_FALSE] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2257), - [anon_sym_Null] = ACTIONS(2257), - [anon_sym_NULL] = ACTIONS(2257), - [sym_string] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_array] = ACTIONS(2257), - [anon_sym_varray] = ACTIONS(2257), - [anon_sym_darray] = ACTIONS(2257), - [anon_sym_vec] = ACTIONS(2257), - [anon_sym_dict] = ACTIONS(2257), - [anon_sym_keyset] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2259), - [sym_final_modifier] = ACTIONS(2257), - [sym_xhp_modifier] = ACTIONS(2257), - [sym_xhp_identifier] = ACTIONS(2257), - [sym_xhp_class_identifier] = ACTIONS(2259), + [1104] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1105] = { + [ts_builtin_sym_end] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2173), + [sym_variable] = ACTIONS(2175), + [sym_pipe_variable] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_newtype] = ACTIONS(2173), + [anon_sym_shape] = ACTIONS(2173), + [anon_sym_tuple] = ACTIONS(2173), + [anon_sym_clone] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_print] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_include] = ACTIONS(2173), + [anon_sym_include_once] = ACTIONS(2173), + [anon_sym_require] = ACTIONS(2173), + [anon_sym_require_once] = ACTIONS(2173), + [anon_sym_BSLASH] = ACTIONS(2175), + [anon_sym_self] = ACTIONS(2173), + [anon_sym_parent] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LT_LT_LT] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_echo] = ACTIONS(2173), + [anon_sym_unset] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_concurrent] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_elseif] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_foreach] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(2173), + [sym_float] = ACTIONS(2175), + [sym_integer] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_True] = ACTIONS(2173), + [anon_sym_TRUE] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_False] = ACTIONS(2173), + [anon_sym_FALSE] = ACTIONS(2173), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_Null] = ACTIONS(2173), + [anon_sym_NULL] = ACTIONS(2173), + [sym_string] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_array] = ACTIONS(2173), + [anon_sym_varray] = ACTIONS(2173), + [anon_sym_darray] = ACTIONS(2173), + [anon_sym_vec] = ACTIONS(2173), + [anon_sym_dict] = ACTIONS(2173), + [anon_sym_keyset] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_list] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2175), + [sym_final_modifier] = ACTIONS(2173), + [sym_xhp_modifier] = ACTIONS(2173), + [sym_xhp_identifier] = ACTIONS(2173), + [sym_xhp_class_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(3), }, - [1185] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2213), - [sym_variable] = ACTIONS(2215), - [sym_pipe_variable] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_newtype] = ACTIONS(2213), - [anon_sym_shape] = ACTIONS(2213), - [anon_sym_tuple] = ACTIONS(2213), - [anon_sym_clone] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_print] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_LT_LT_LT] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_echo] = ACTIONS(2213), - [anon_sym_unset] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_concurrent] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_elseif] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_foreach] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [sym_float] = ACTIONS(2215), - [sym_integer] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_True] = ACTIONS(2213), - [anon_sym_TRUE] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_False] = ACTIONS(2213), - [anon_sym_FALSE] = ACTIONS(2213), - [anon_sym_null] = ACTIONS(2213), - [anon_sym_Null] = ACTIONS(2213), - [anon_sym_NULL] = ACTIONS(2213), - [sym_string] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_array] = ACTIONS(2213), - [anon_sym_varray] = ACTIONS(2213), - [anon_sym_darray] = ACTIONS(2213), - [anon_sym_vec] = ACTIONS(2213), - [anon_sym_dict] = ACTIONS(2213), - [anon_sym_keyset] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2215), - [sym_final_modifier] = ACTIONS(2213), - [sym_xhp_modifier] = ACTIONS(2213), - [sym_xhp_identifier] = ACTIONS(2213), - [sym_xhp_class_identifier] = ACTIONS(2215), + [1106] = { + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_case] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), [sym_comment] = ACTIONS(3), }, - [1186] = { - [ts_builtin_sym_end] = ACTIONS(2495), - [sym_identifier] = ACTIONS(2493), - [sym_variable] = ACTIONS(2495), - [sym_pipe_variable] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2493), - [anon_sym_newtype] = ACTIONS(2493), - [anon_sym_shape] = ACTIONS(2493), - [anon_sym_tuple] = ACTIONS(2493), - [anon_sym_clone] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_print] = ACTIONS(2493), - [anon_sym_namespace] = ACTIONS(2493), - [anon_sym_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = ACTIONS(2493), - [anon_sym_LT_LT] = ACTIONS(2493), - [anon_sym_LT_LT_LT] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_throw] = ACTIONS(2493), - [anon_sym_echo] = ACTIONS(2493), - [anon_sym_unset] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_concurrent] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_function] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_elseif] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_switch] = ACTIONS(2493), - [anon_sym_foreach] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_using] = ACTIONS(2493), - [sym_float] = ACTIONS(2495), - [sym_integer] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_True] = ACTIONS(2493), - [anon_sym_TRUE] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_False] = ACTIONS(2493), - [anon_sym_FALSE] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [anon_sym_Null] = ACTIONS(2493), - [anon_sym_NULL] = ACTIONS(2493), - [sym_string] = ACTIONS(2495), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_array] = ACTIONS(2493), - [anon_sym_varray] = ACTIONS(2493), - [anon_sym_darray] = ACTIONS(2493), - [anon_sym_vec] = ACTIONS(2493), - [anon_sym_dict] = ACTIONS(2493), - [anon_sym_keyset] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2493), - [anon_sym_async] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2493), - [anon_sym_interface] = ACTIONS(2493), - [anon_sym_class] = ACTIONS(2493), - [anon_sym_enum] = ACTIONS(2493), - [anon_sym_abstract] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2495), - [sym_final_modifier] = ACTIONS(2493), - [sym_xhp_modifier] = ACTIONS(2493), - [sym_xhp_identifier] = ACTIONS(2493), - [sym_xhp_class_identifier] = ACTIONS(2495), + [1107] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2169), + [sym_variable] = ACTIONS(2171), + [sym_pipe_variable] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_newtype] = ACTIONS(2169), + [anon_sym_shape] = ACTIONS(2169), + [anon_sym_tuple] = ACTIONS(2169), + [anon_sym_clone] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_print] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2169), + [anon_sym_include] = ACTIONS(2169), + [anon_sym_include_once] = ACTIONS(2169), + [anon_sym_require] = ACTIONS(2169), + [anon_sym_require_once] = ACTIONS(2169), + [anon_sym_BSLASH] = ACTIONS(2171), + [anon_sym_self] = ACTIONS(2169), + [anon_sym_parent] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_LT_LT_LT] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_throw] = ACTIONS(2169), + [anon_sym_echo] = ACTIONS(2169), + [anon_sym_unset] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_concurrent] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_function] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_elseif] = ACTIONS(2169), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_switch] = ACTIONS(2169), + [anon_sym_foreach] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_using] = ACTIONS(2169), + [sym_float] = ACTIONS(2171), + [sym_integer] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_True] = ACTIONS(2169), + [anon_sym_TRUE] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [anon_sym_False] = ACTIONS(2169), + [anon_sym_FALSE] = ACTIONS(2169), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_Null] = ACTIONS(2169), + [anon_sym_NULL] = ACTIONS(2169), + [sym_string] = ACTIONS(2171), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_array] = ACTIONS(2169), + [anon_sym_varray] = ACTIONS(2169), + [anon_sym_darray] = ACTIONS(2169), + [anon_sym_vec] = ACTIONS(2169), + [anon_sym_dict] = ACTIONS(2169), + [anon_sym_keyset] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2169), + [anon_sym_class] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_abstract] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2171), + [sym_final_modifier] = ACTIONS(2169), + [sym_xhp_modifier] = ACTIONS(2169), + [sym_xhp_identifier] = ACTIONS(2169), + [sym_xhp_class_identifier] = ACTIONS(2171), [sym_comment] = ACTIONS(3), }, - [1187] = { - [ts_builtin_sym_end] = ACTIONS(2491), - [sym_identifier] = ACTIONS(2489), - [sym_variable] = ACTIONS(2491), - [sym_pipe_variable] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_newtype] = ACTIONS(2489), - [anon_sym_shape] = ACTIONS(2489), - [anon_sym_tuple] = ACTIONS(2489), - [anon_sym_clone] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_print] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), - [anon_sym_LT_LT_LT] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_echo] = ACTIONS(2489), - [anon_sym_unset] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_concurrent] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_elseif] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_foreach] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [sym_float] = ACTIONS(2491), - [sym_integer] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_True] = ACTIONS(2489), - [anon_sym_TRUE] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_False] = ACTIONS(2489), - [anon_sym_FALSE] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [anon_sym_Null] = ACTIONS(2489), - [anon_sym_NULL] = ACTIONS(2489), - [sym_string] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_array] = ACTIONS(2489), - [anon_sym_varray] = ACTIONS(2489), - [anon_sym_darray] = ACTIONS(2489), - [anon_sym_vec] = ACTIONS(2489), - [anon_sym_dict] = ACTIONS(2489), - [anon_sym_keyset] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2491), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_trait] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2491), - [sym_final_modifier] = ACTIONS(2489), - [sym_xhp_modifier] = ACTIONS(2489), - [sym_xhp_identifier] = ACTIONS(2489), - [sym_xhp_class_identifier] = ACTIONS(2491), + [1108] = { + [ts_builtin_sym_end] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2165), + [sym_variable] = ACTIONS(2167), + [sym_pipe_variable] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_newtype] = ACTIONS(2165), + [anon_sym_shape] = ACTIONS(2165), + [anon_sym_tuple] = ACTIONS(2165), + [anon_sym_clone] = ACTIONS(2165), + [anon_sym_new] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_namespace] = ACTIONS(2165), + [anon_sym_include] = ACTIONS(2165), + [anon_sym_include_once] = ACTIONS(2165), + [anon_sym_require] = ACTIONS(2165), + [anon_sym_require_once] = ACTIONS(2165), + [anon_sym_BSLASH] = ACTIONS(2167), + [anon_sym_self] = ACTIONS(2165), + [anon_sym_parent] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(2165), + [anon_sym_LT_LT_LT] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_throw] = ACTIONS(2165), + [anon_sym_echo] = ACTIONS(2165), + [anon_sym_unset] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_concurrent] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_function] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_elseif] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_switch] = ACTIONS(2165), + [anon_sym_foreach] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_using] = ACTIONS(2165), + [sym_float] = ACTIONS(2167), + [sym_integer] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_True] = ACTIONS(2165), + [anon_sym_TRUE] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_False] = ACTIONS(2165), + [anon_sym_FALSE] = ACTIONS(2165), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_Null] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2165), + [sym_string] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_array] = ACTIONS(2165), + [anon_sym_varray] = ACTIONS(2165), + [anon_sym_darray] = ACTIONS(2165), + [anon_sym_vec] = ACTIONS(2165), + [anon_sym_dict] = ACTIONS(2165), + [anon_sym_keyset] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_list] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_interface] = ACTIONS(2165), + [anon_sym_class] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2167), + [sym_final_modifier] = ACTIONS(2165), + [sym_xhp_modifier] = ACTIONS(2165), + [sym_xhp_identifier] = ACTIONS(2165), + [sym_xhp_class_identifier] = ACTIONS(2167), [sym_comment] = ACTIONS(3), }, - [1188] = { - [ts_builtin_sym_end] = ACTIONS(2487), - [sym_identifier] = ACTIONS(2485), - [sym_variable] = ACTIONS(2487), - [sym_pipe_variable] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2485), - [anon_sym_newtype] = ACTIONS(2485), - [anon_sym_shape] = ACTIONS(2485), - [anon_sym_tuple] = ACTIONS(2485), - [anon_sym_clone] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2485), - [anon_sym_namespace] = ACTIONS(2485), - [anon_sym_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_LT_LT_LT] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_echo] = ACTIONS(2485), - [anon_sym_unset] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_concurrent] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_elseif] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_switch] = ACTIONS(2485), - [anon_sym_foreach] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_using] = ACTIONS(2485), - [sym_float] = ACTIONS(2487), - [sym_integer] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_True] = ACTIONS(2485), - [anon_sym_TRUE] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [anon_sym_False] = ACTIONS(2485), - [anon_sym_FALSE] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2485), - [anon_sym_Null] = ACTIONS(2485), - [anon_sym_NULL] = ACTIONS(2485), - [sym_string] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_array] = ACTIONS(2485), - [anon_sym_varray] = ACTIONS(2485), - [anon_sym_darray] = ACTIONS(2485), - [anon_sym_vec] = ACTIONS(2485), - [anon_sym_dict] = ACTIONS(2485), - [anon_sym_keyset] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2485), - [anon_sym_async] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2485), - [anon_sym_trait] = ACTIONS(2485), - [anon_sym_interface] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2485), - [anon_sym_enum] = ACTIONS(2485), - [anon_sym_abstract] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2487), - [sym_final_modifier] = ACTIONS(2485), - [sym_xhp_modifier] = ACTIONS(2485), - [sym_xhp_identifier] = ACTIONS(2485), - [sym_xhp_class_identifier] = ACTIONS(2487), + [1109] = { + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2161), + [sym_variable] = ACTIONS(2163), + [sym_pipe_variable] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_newtype] = ACTIONS(2161), + [anon_sym_shape] = ACTIONS(2161), + [anon_sym_tuple] = ACTIONS(2161), + [anon_sym_clone] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_include] = ACTIONS(2161), + [anon_sym_include_once] = ACTIONS(2161), + [anon_sym_require] = ACTIONS(2161), + [anon_sym_require_once] = ACTIONS(2161), + [anon_sym_BSLASH] = ACTIONS(2163), + [anon_sym_self] = ACTIONS(2161), + [anon_sym_parent] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_LT_LT_LT] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_echo] = ACTIONS(2161), + [anon_sym_unset] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_concurrent] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_elseif] = ACTIONS(2161), + [anon_sym_else] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_foreach] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [sym_float] = ACTIONS(2163), + [sym_integer] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_True] = ACTIONS(2161), + [anon_sym_TRUE] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_False] = ACTIONS(2161), + [anon_sym_FALSE] = ACTIONS(2161), + [anon_sym_null] = ACTIONS(2161), + [anon_sym_Null] = ACTIONS(2161), + [anon_sym_NULL] = ACTIONS(2161), + [sym_string] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_array] = ACTIONS(2161), + [anon_sym_varray] = ACTIONS(2161), + [anon_sym_darray] = ACTIONS(2161), + [anon_sym_vec] = ACTIONS(2161), + [anon_sym_dict] = ACTIONS(2161), + [anon_sym_keyset] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_list] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2163), + [sym_final_modifier] = ACTIONS(2161), + [sym_xhp_modifier] = ACTIONS(2161), + [sym_xhp_identifier] = ACTIONS(2161), + [sym_xhp_class_identifier] = ACTIONS(2163), [sym_comment] = ACTIONS(3), }, - [1189] = { - [sym_identifier] = ACTIONS(2249), - [sym_variable] = ACTIONS(2251), - [sym_pipe_variable] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_newtype] = ACTIONS(2249), - [anon_sym_shape] = ACTIONS(2249), - [anon_sym_tuple] = ACTIONS(2249), - [anon_sym_clone] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_print] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_LT_LT_LT] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_echo] = ACTIONS(2249), - [anon_sym_unset] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_concurrent] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_case] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_foreach] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [sym_float] = ACTIONS(2251), - [sym_integer] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_True] = ACTIONS(2249), - [anon_sym_TRUE] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [anon_sym_False] = ACTIONS(2249), - [anon_sym_FALSE] = ACTIONS(2249), - [anon_sym_null] = ACTIONS(2249), - [anon_sym_Null] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2249), - [sym_string] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_array] = ACTIONS(2249), - [anon_sym_varray] = ACTIONS(2249), - [anon_sym_darray] = ACTIONS(2249), - [anon_sym_vec] = ACTIONS(2249), - [anon_sym_dict] = ACTIONS(2249), - [anon_sym_keyset] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2251), - [sym_final_modifier] = ACTIONS(2249), - [sym_xhp_modifier] = ACTIONS(2249), - [sym_xhp_identifier] = ACTIONS(2249), - [sym_xhp_class_identifier] = ACTIONS(2251), + [1110] = { + [ts_builtin_sym_end] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2157), + [sym_variable] = ACTIONS(2159), + [sym_pipe_variable] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_newtype] = ACTIONS(2157), + [anon_sym_shape] = ACTIONS(2157), + [anon_sym_tuple] = ACTIONS(2157), + [anon_sym_clone] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_print] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2157), + [anon_sym_include] = ACTIONS(2157), + [anon_sym_include_once] = ACTIONS(2157), + [anon_sym_require] = ACTIONS(2157), + [anon_sym_require_once] = ACTIONS(2157), + [anon_sym_BSLASH] = ACTIONS(2159), + [anon_sym_self] = ACTIONS(2157), + [anon_sym_parent] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_LT_LT] = ACTIONS(2157), + [anon_sym_LT_LT_LT] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_throw] = ACTIONS(2157), + [anon_sym_echo] = ACTIONS(2157), + [anon_sym_unset] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_concurrent] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_function] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_elseif] = ACTIONS(2157), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(2157), + [anon_sym_foreach] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [sym_float] = ACTIONS(2159), + [sym_integer] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_True] = ACTIONS(2157), + [anon_sym_TRUE] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_False] = ACTIONS(2157), + [anon_sym_FALSE] = ACTIONS(2157), + [anon_sym_null] = ACTIONS(2157), + [anon_sym_Null] = ACTIONS(2157), + [anon_sym_NULL] = ACTIONS(2157), + [sym_string] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_array] = ACTIONS(2157), + [anon_sym_varray] = ACTIONS(2157), + [anon_sym_darray] = ACTIONS(2157), + [anon_sym_vec] = ACTIONS(2157), + [anon_sym_dict] = ACTIONS(2157), + [anon_sym_keyset] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_list] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_interface] = ACTIONS(2157), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_abstract] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2159), + [sym_final_modifier] = ACTIONS(2157), + [sym_xhp_modifier] = ACTIONS(2157), + [sym_xhp_identifier] = ACTIONS(2157), + [sym_xhp_class_identifier] = ACTIONS(2159), + [sym_comment] = ACTIONS(3), + }, + [1111] = { + [sym_identifier] = ACTIONS(2505), + [sym_variable] = ACTIONS(2507), + [sym_pipe_variable] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_newtype] = ACTIONS(2505), + [anon_sym_shape] = ACTIONS(2505), + [anon_sym_tuple] = ACTIONS(2505), + [anon_sym_clone] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_namespace] = ACTIONS(2505), + [anon_sym_include] = ACTIONS(2505), + [anon_sym_include_once] = ACTIONS(2505), + [anon_sym_require] = ACTIONS(2505), + [anon_sym_require_once] = ACTIONS(2505), + [anon_sym_BSLASH] = ACTIONS(2507), + [anon_sym_self] = ACTIONS(2505), + [anon_sym_parent] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_LT_LT_LT] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_throw] = ACTIONS(2505), + [anon_sym_echo] = ACTIONS(2505), + [anon_sym_unset] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_concurrent] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_function] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_switch] = ACTIONS(2505), + [anon_sym_case] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_foreach] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(2505), + [sym_float] = ACTIONS(2507), + [sym_integer] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_True] = ACTIONS(2505), + [anon_sym_TRUE] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_False] = ACTIONS(2505), + [anon_sym_FALSE] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [anon_sym_Null] = ACTIONS(2505), + [anon_sym_NULL] = ACTIONS(2505), + [sym_string] = ACTIONS(2507), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_array] = ACTIONS(2505), + [anon_sym_varray] = ACTIONS(2505), + [anon_sym_darray] = ACTIONS(2505), + [anon_sym_vec] = ACTIONS(2505), + [anon_sym_dict] = ACTIONS(2505), + [anon_sym_keyset] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_class] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_abstract] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2507), + [sym_final_modifier] = ACTIONS(2505), + [sym_xhp_modifier] = ACTIONS(2505), + [sym_xhp_identifier] = ACTIONS(2505), + [sym_xhp_class_identifier] = ACTIONS(2507), [sym_comment] = ACTIONS(3), }, - [1190] = { - [ts_builtin_sym_end] = ACTIONS(2483), - [sym_identifier] = ACTIONS(2481), - [sym_variable] = ACTIONS(2483), - [sym_pipe_variable] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_newtype] = ACTIONS(2481), - [anon_sym_shape] = ACTIONS(2481), - [anon_sym_tuple] = ACTIONS(2481), - [anon_sym_clone] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2481), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_LT_LT_LT] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_throw] = ACTIONS(2481), - [anon_sym_echo] = ACTIONS(2481), - [anon_sym_unset] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_concurrent] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_foreach] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_using] = ACTIONS(2481), - [sym_float] = ACTIONS(2483), - [sym_integer] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2481), - [anon_sym_True] = ACTIONS(2481), - [anon_sym_TRUE] = ACTIONS(2481), - [anon_sym_false] = ACTIONS(2481), - [anon_sym_False] = ACTIONS(2481), - [anon_sym_FALSE] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2481), - [anon_sym_Null] = ACTIONS(2481), - [anon_sym_NULL] = ACTIONS(2481), - [sym_string] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_array] = ACTIONS(2481), - [anon_sym_varray] = ACTIONS(2481), - [anon_sym_darray] = ACTIONS(2481), - [anon_sym_vec] = ACTIONS(2481), - [anon_sym_dict] = ACTIONS(2481), - [anon_sym_keyset] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_trait] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_class] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), - [anon_sym_abstract] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2483), - [sym_final_modifier] = ACTIONS(2481), - [sym_xhp_modifier] = ACTIONS(2481), - [sym_xhp_identifier] = ACTIONS(2481), - [sym_xhp_class_identifier] = ACTIONS(2483), + [1112] = { + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2153), + [sym_variable] = ACTIONS(2155), + [sym_pipe_variable] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_newtype] = ACTIONS(2153), + [anon_sym_shape] = ACTIONS(2153), + [anon_sym_tuple] = ACTIONS(2153), + [anon_sym_clone] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_print] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2153), + [anon_sym_include] = ACTIONS(2153), + [anon_sym_include_once] = ACTIONS(2153), + [anon_sym_require] = ACTIONS(2153), + [anon_sym_require_once] = ACTIONS(2153), + [anon_sym_BSLASH] = ACTIONS(2155), + [anon_sym_self] = ACTIONS(2153), + [anon_sym_parent] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_LT_LT_LT] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_throw] = ACTIONS(2153), + [anon_sym_echo] = ACTIONS(2153), + [anon_sym_unset] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_concurrent] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_function] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_elseif] = ACTIONS(2153), + [anon_sym_else] = ACTIONS(2153), + [anon_sym_switch] = ACTIONS(2153), + [anon_sym_foreach] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_do] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_using] = ACTIONS(2153), + [sym_float] = ACTIONS(2155), + [sym_integer] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_True] = ACTIONS(2153), + [anon_sym_TRUE] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_False] = ACTIONS(2153), + [anon_sym_FALSE] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(2153), + [anon_sym_Null] = ACTIONS(2153), + [anon_sym_NULL] = ACTIONS(2153), + [sym_string] = ACTIONS(2155), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_array] = ACTIONS(2153), + [anon_sym_varray] = ACTIONS(2153), + [anon_sym_darray] = ACTIONS(2153), + [anon_sym_vec] = ACTIONS(2153), + [anon_sym_dict] = ACTIONS(2153), + [anon_sym_keyset] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_list] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2153), + [anon_sym_class] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_abstract] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2155), + [sym_final_modifier] = ACTIONS(2153), + [sym_xhp_modifier] = ACTIONS(2153), + [sym_xhp_identifier] = ACTIONS(2153), + [sym_xhp_class_identifier] = ACTIONS(2155), [sym_comment] = ACTIONS(3), }, - [1191] = { - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [sym_variable] = ACTIONS(2475), - [sym_pipe_variable] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_newtype] = ACTIONS(2473), - [anon_sym_shape] = ACTIONS(2473), - [anon_sym_tuple] = ACTIONS(2473), - [anon_sym_clone] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_print] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_LT_LT_LT] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_throw] = ACTIONS(2473), - [anon_sym_echo] = ACTIONS(2473), - [anon_sym_unset] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_concurrent] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_switch] = ACTIONS(2473), - [anon_sym_foreach] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_using] = ACTIONS(2473), - [sym_float] = ACTIONS(2475), - [sym_integer] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_True] = ACTIONS(2473), - [anon_sym_TRUE] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [anon_sym_False] = ACTIONS(2473), - [anon_sym_FALSE] = ACTIONS(2473), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_Null] = ACTIONS(2473), - [anon_sym_NULL] = ACTIONS(2473), - [sym_string] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_array] = ACTIONS(2473), - [anon_sym_varray] = ACTIONS(2473), - [anon_sym_darray] = ACTIONS(2473), - [anon_sym_vec] = ACTIONS(2473), - [anon_sym_dict] = ACTIONS(2473), - [anon_sym_keyset] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_trait] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2475), - [sym_final_modifier] = ACTIONS(2473), - [sym_xhp_modifier] = ACTIONS(2473), - [sym_xhp_identifier] = ACTIONS(2473), - [sym_xhp_class_identifier] = ACTIONS(2475), + [1113] = { + [ts_builtin_sym_end] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2149), + [sym_variable] = ACTIONS(2151), + [sym_pipe_variable] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_newtype] = ACTIONS(2149), + [anon_sym_shape] = ACTIONS(2149), + [anon_sym_tuple] = ACTIONS(2149), + [anon_sym_clone] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_print] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_include] = ACTIONS(2149), + [anon_sym_include_once] = ACTIONS(2149), + [anon_sym_require] = ACTIONS(2149), + [anon_sym_require_once] = ACTIONS(2149), + [anon_sym_BSLASH] = ACTIONS(2151), + [anon_sym_self] = ACTIONS(2149), + [anon_sym_parent] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_echo] = ACTIONS(2149), + [anon_sym_unset] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_concurrent] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_elseif] = ACTIONS(2149), + [anon_sym_else] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_foreach] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [sym_float] = ACTIONS(2151), + [sym_integer] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_True] = ACTIONS(2149), + [anon_sym_TRUE] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_False] = ACTIONS(2149), + [anon_sym_FALSE] = ACTIONS(2149), + [anon_sym_null] = ACTIONS(2149), + [anon_sym_Null] = ACTIONS(2149), + [anon_sym_NULL] = ACTIONS(2149), + [sym_string] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_array] = ACTIONS(2149), + [anon_sym_varray] = ACTIONS(2149), + [anon_sym_darray] = ACTIONS(2149), + [anon_sym_vec] = ACTIONS(2149), + [anon_sym_dict] = ACTIONS(2149), + [anon_sym_keyset] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_list] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_abstract] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2151), + [sym_final_modifier] = ACTIONS(2149), + [sym_xhp_modifier] = ACTIONS(2149), + [sym_xhp_identifier] = ACTIONS(2149), + [sym_xhp_class_identifier] = ACTIONS(2151), [sym_comment] = ACTIONS(3), }, - [1192] = { - [sym_identifier] = ACTIONS(2197), - [sym_variable] = ACTIONS(2199), - [sym_pipe_variable] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_newtype] = ACTIONS(2197), - [anon_sym_shape] = ACTIONS(2197), - [anon_sym_tuple] = ACTIONS(2197), - [anon_sym_clone] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_print] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_LT_LT_LT] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_echo] = ACTIONS(2197), - [anon_sym_unset] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_concurrent] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_elseif] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_foreach] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [sym_float] = ACTIONS(2199), - [sym_integer] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_True] = ACTIONS(2197), - [anon_sym_TRUE] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_False] = ACTIONS(2197), - [anon_sym_FALSE] = ACTIONS(2197), - [anon_sym_null] = ACTIONS(2197), - [anon_sym_Null] = ACTIONS(2197), - [anon_sym_NULL] = ACTIONS(2197), - [sym_string] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_array] = ACTIONS(2197), - [anon_sym_varray] = ACTIONS(2197), - [anon_sym_darray] = ACTIONS(2197), - [anon_sym_vec] = ACTIONS(2197), - [anon_sym_dict] = ACTIONS(2197), - [anon_sym_keyset] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2199), - [sym_final_modifier] = ACTIONS(2197), - [sym_xhp_modifier] = ACTIONS(2197), - [sym_xhp_identifier] = ACTIONS(2197), - [sym_xhp_class_identifier] = ACTIONS(2199), + [1114] = { + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2145), + [sym_variable] = ACTIONS(2147), + [sym_pipe_variable] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_newtype] = ACTIONS(2145), + [anon_sym_shape] = ACTIONS(2145), + [anon_sym_tuple] = ACTIONS(2145), + [anon_sym_clone] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_print] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_include] = ACTIONS(2145), + [anon_sym_include_once] = ACTIONS(2145), + [anon_sym_require] = ACTIONS(2145), + [anon_sym_require_once] = ACTIONS(2145), + [anon_sym_BSLASH] = ACTIONS(2147), + [anon_sym_self] = ACTIONS(2145), + [anon_sym_parent] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_LT_LT_LT] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_echo] = ACTIONS(2145), + [anon_sym_unset] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_concurrent] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_elseif] = ACTIONS(2145), + [anon_sym_else] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_foreach] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [sym_float] = ACTIONS(2147), + [sym_integer] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_True] = ACTIONS(2145), + [anon_sym_TRUE] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_False] = ACTIONS(2145), + [anon_sym_FALSE] = ACTIONS(2145), + [anon_sym_null] = ACTIONS(2145), + [anon_sym_Null] = ACTIONS(2145), + [anon_sym_NULL] = ACTIONS(2145), + [sym_string] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_array] = ACTIONS(2145), + [anon_sym_varray] = ACTIONS(2145), + [anon_sym_darray] = ACTIONS(2145), + [anon_sym_vec] = ACTIONS(2145), + [anon_sym_dict] = ACTIONS(2145), + [anon_sym_keyset] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_list] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2147), + [sym_final_modifier] = ACTIONS(2145), + [sym_xhp_modifier] = ACTIONS(2145), + [sym_xhp_identifier] = ACTIONS(2145), + [sym_xhp_class_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(3), }, - [1193] = { - [sym_identifier] = ACTIONS(2193), - [sym_variable] = ACTIONS(2195), - [sym_pipe_variable] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_newtype] = ACTIONS(2193), - [anon_sym_shape] = ACTIONS(2193), - [anon_sym_tuple] = ACTIONS(2193), - [anon_sym_clone] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_print] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_LT_LT_LT] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_echo] = ACTIONS(2193), - [anon_sym_unset] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_concurrent] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_elseif] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_foreach] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [sym_float] = ACTIONS(2195), - [sym_integer] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_True] = ACTIONS(2193), - [anon_sym_TRUE] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_False] = ACTIONS(2193), - [anon_sym_FALSE] = ACTIONS(2193), - [anon_sym_null] = ACTIONS(2193), - [anon_sym_Null] = ACTIONS(2193), - [anon_sym_NULL] = ACTIONS(2193), - [sym_string] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_array] = ACTIONS(2193), - [anon_sym_varray] = ACTIONS(2193), - [anon_sym_darray] = ACTIONS(2193), - [anon_sym_vec] = ACTIONS(2193), - [anon_sym_dict] = ACTIONS(2193), - [anon_sym_keyset] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2195), - [sym_final_modifier] = ACTIONS(2193), - [sym_xhp_modifier] = ACTIONS(2193), - [sym_xhp_identifier] = ACTIONS(2193), - [sym_xhp_class_identifier] = ACTIONS(2195), + [1115] = { + [ts_builtin_sym_end] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2141), + [sym_variable] = ACTIONS(2143), + [sym_pipe_variable] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_newtype] = ACTIONS(2141), + [anon_sym_shape] = ACTIONS(2141), + [anon_sym_tuple] = ACTIONS(2141), + [anon_sym_clone] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_print] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_include_once] = ACTIONS(2141), + [anon_sym_require] = ACTIONS(2141), + [anon_sym_require_once] = ACTIONS(2141), + [anon_sym_BSLASH] = ACTIONS(2143), + [anon_sym_self] = ACTIONS(2141), + [anon_sym_parent] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2141), + [anon_sym_echo] = ACTIONS(2141), + [anon_sym_unset] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_concurrent] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_function] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_elseif] = ACTIONS(2141), + [anon_sym_else] = ACTIONS(2141), + [anon_sym_switch] = ACTIONS(2141), + [anon_sym_foreach] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_using] = ACTIONS(2141), + [sym_float] = ACTIONS(2143), + [sym_integer] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_True] = ACTIONS(2141), + [anon_sym_TRUE] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_False] = ACTIONS(2141), + [anon_sym_FALSE] = ACTIONS(2141), + [anon_sym_null] = ACTIONS(2141), + [anon_sym_Null] = ACTIONS(2141), + [anon_sym_NULL] = ACTIONS(2141), + [sym_string] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_array] = ACTIONS(2141), + [anon_sym_varray] = ACTIONS(2141), + [anon_sym_darray] = ACTIONS(2141), + [anon_sym_vec] = ACTIONS(2141), + [anon_sym_dict] = ACTIONS(2141), + [anon_sym_keyset] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_list] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2141), + [anon_sym_class] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2143), + [sym_final_modifier] = ACTIONS(2141), + [sym_xhp_modifier] = ACTIONS(2141), + [sym_xhp_identifier] = ACTIONS(2141), + [sym_xhp_class_identifier] = ACTIONS(2143), [sym_comment] = ACTIONS(3), }, - [1194] = { - [sym_identifier] = ACTIONS(2181), - [sym_variable] = ACTIONS(2183), - [sym_pipe_variable] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_newtype] = ACTIONS(2181), - [anon_sym_shape] = ACTIONS(2181), - [anon_sym_tuple] = ACTIONS(2181), - [anon_sym_clone] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_print] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_LT_LT_LT] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_echo] = ACTIONS(2181), - [anon_sym_unset] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_concurrent] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_elseif] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_foreach] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [sym_float] = ACTIONS(2183), - [sym_integer] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_True] = ACTIONS(2181), - [anon_sym_TRUE] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [anon_sym_False] = ACTIONS(2181), - [anon_sym_FALSE] = ACTIONS(2181), - [anon_sym_null] = ACTIONS(2181), - [anon_sym_Null] = ACTIONS(2181), - [anon_sym_NULL] = ACTIONS(2181), - [sym_string] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_array] = ACTIONS(2181), - [anon_sym_varray] = ACTIONS(2181), - [anon_sym_darray] = ACTIONS(2181), - [anon_sym_vec] = ACTIONS(2181), - [anon_sym_dict] = ACTIONS(2181), - [anon_sym_keyset] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2183), - [sym_final_modifier] = ACTIONS(2181), - [sym_xhp_modifier] = ACTIONS(2181), - [sym_xhp_identifier] = ACTIONS(2181), - [sym_xhp_class_identifier] = ACTIONS(2183), + [1116] = { + [sym_identifier] = ACTIONS(2501), + [sym_variable] = ACTIONS(2503), + [sym_pipe_variable] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_newtype] = ACTIONS(2501), + [anon_sym_shape] = ACTIONS(2501), + [anon_sym_tuple] = ACTIONS(2501), + [anon_sym_clone] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_print] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_include] = ACTIONS(2501), + [anon_sym_include_once] = ACTIONS(2501), + [anon_sym_require] = ACTIONS(2501), + [anon_sym_require_once] = ACTIONS(2501), + [anon_sym_BSLASH] = ACTIONS(2503), + [anon_sym_self] = ACTIONS(2501), + [anon_sym_parent] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_LT_LT_LT] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_echo] = ACTIONS(2501), + [anon_sym_unset] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_concurrent] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_case] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_foreach] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_using] = ACTIONS(2501), + [sym_float] = ACTIONS(2503), + [sym_integer] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_True] = ACTIONS(2501), + [anon_sym_TRUE] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_False] = ACTIONS(2501), + [anon_sym_FALSE] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), + [anon_sym_Null] = ACTIONS(2501), + [anon_sym_NULL] = ACTIONS(2501), + [sym_string] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_array] = ACTIONS(2501), + [anon_sym_varray] = ACTIONS(2501), + [anon_sym_darray] = ACTIONS(2501), + [anon_sym_vec] = ACTIONS(2501), + [anon_sym_dict] = ACTIONS(2501), + [anon_sym_keyset] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2503), + [sym_final_modifier] = ACTIONS(2501), + [sym_xhp_modifier] = ACTIONS(2501), + [sym_xhp_identifier] = ACTIONS(2501), + [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [1195] = { - [ts_builtin_sym_end] = ACTIONS(2467), - [sym_identifier] = ACTIONS(2465), - [sym_variable] = ACTIONS(2467), - [sym_pipe_variable] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_newtype] = ACTIONS(2465), - [anon_sym_shape] = ACTIONS(2465), - [anon_sym_tuple] = ACTIONS(2465), - [anon_sym_clone] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_print] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_LT_LT_LT] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_echo] = ACTIONS(2465), - [anon_sym_unset] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_concurrent] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_foreach] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [sym_float] = ACTIONS(2467), - [sym_integer] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_True] = ACTIONS(2465), - [anon_sym_TRUE] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [anon_sym_False] = ACTIONS(2465), - [anon_sym_FALSE] = ACTIONS(2465), - [anon_sym_null] = ACTIONS(2465), - [anon_sym_Null] = ACTIONS(2465), - [anon_sym_NULL] = ACTIONS(2465), - [sym_string] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_array] = ACTIONS(2465), - [anon_sym_varray] = ACTIONS(2465), - [anon_sym_darray] = ACTIONS(2465), - [anon_sym_vec] = ACTIONS(2465), - [anon_sym_dict] = ACTIONS(2465), - [anon_sym_keyset] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_trait] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2467), - [sym_final_modifier] = ACTIONS(2465), - [sym_xhp_modifier] = ACTIONS(2465), - [sym_xhp_identifier] = ACTIONS(2465), - [sym_xhp_class_identifier] = ACTIONS(2467), + [1117] = { + [sym_identifier] = ACTIONS(2497), + [sym_variable] = ACTIONS(2499), + [sym_pipe_variable] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_newtype] = ACTIONS(2497), + [anon_sym_shape] = ACTIONS(2497), + [anon_sym_tuple] = ACTIONS(2497), + [anon_sym_clone] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_print] = ACTIONS(2497), + [anon_sym_namespace] = ACTIONS(2497), + [anon_sym_include] = ACTIONS(2497), + [anon_sym_include_once] = ACTIONS(2497), + [anon_sym_require] = ACTIONS(2497), + [anon_sym_require_once] = ACTIONS(2497), + [anon_sym_BSLASH] = ACTIONS(2499), + [anon_sym_self] = ACTIONS(2497), + [anon_sym_parent] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_LT_LT] = ACTIONS(2497), + [anon_sym_LT_LT_LT] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_throw] = ACTIONS(2497), + [anon_sym_echo] = ACTIONS(2497), + [anon_sym_unset] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_concurrent] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_function] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2497), + [anon_sym_case] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_foreach] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_using] = ACTIONS(2497), + [sym_float] = ACTIONS(2499), + [sym_integer] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_True] = ACTIONS(2497), + [anon_sym_TRUE] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_False] = ACTIONS(2497), + [anon_sym_FALSE] = ACTIONS(2497), + [anon_sym_null] = ACTIONS(2497), + [anon_sym_Null] = ACTIONS(2497), + [anon_sym_NULL] = ACTIONS(2497), + [sym_string] = ACTIONS(2499), + [anon_sym_AT] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_array] = ACTIONS(2497), + [anon_sym_varray] = ACTIONS(2497), + [anon_sym_darray] = ACTIONS(2497), + [anon_sym_vec] = ACTIONS(2497), + [anon_sym_dict] = ACTIONS(2497), + [anon_sym_keyset] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_interface] = ACTIONS(2497), + [anon_sym_class] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_abstract] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2499), + [sym_final_modifier] = ACTIONS(2497), + [sym_xhp_modifier] = ACTIONS(2497), + [sym_xhp_identifier] = ACTIONS(2497), + [sym_xhp_class_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [1196] = { - [sym_identifier] = ACTIONS(2153), - [sym_variable] = ACTIONS(2155), - [sym_pipe_variable] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_newtype] = ACTIONS(2153), - [anon_sym_shape] = ACTIONS(2153), - [anon_sym_tuple] = ACTIONS(2153), - [anon_sym_clone] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_print] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_LT_LT_LT] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_throw] = ACTIONS(2153), - [anon_sym_echo] = ACTIONS(2153), - [anon_sym_unset] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_concurrent] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_function] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_elseif] = ACTIONS(2153), - [anon_sym_else] = ACTIONS(2153), - [anon_sym_switch] = ACTIONS(2153), - [anon_sym_foreach] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_using] = ACTIONS(2153), - [sym_float] = ACTIONS(2155), - [sym_integer] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_True] = ACTIONS(2153), - [anon_sym_TRUE] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_False] = ACTIONS(2153), - [anon_sym_FALSE] = ACTIONS(2153), - [anon_sym_null] = ACTIONS(2153), - [anon_sym_Null] = ACTIONS(2153), - [anon_sym_NULL] = ACTIONS(2153), - [sym_string] = ACTIONS(2155), - [anon_sym_AT] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_array] = ACTIONS(2153), - [anon_sym_varray] = ACTIONS(2153), - [anon_sym_darray] = ACTIONS(2153), - [anon_sym_vec] = ACTIONS(2153), - [anon_sym_dict] = ACTIONS(2153), - [anon_sym_keyset] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_class] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_abstract] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2155), - [sym_final_modifier] = ACTIONS(2153), - [sym_xhp_modifier] = ACTIONS(2153), - [sym_xhp_identifier] = ACTIONS(2153), - [sym_xhp_class_identifier] = ACTIONS(2155), + [1118] = { + [sym_identifier] = ACTIONS(2485), + [sym_variable] = ACTIONS(2487), + [sym_pipe_variable] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_newtype] = ACTIONS(2485), + [anon_sym_shape] = ACTIONS(2485), + [anon_sym_tuple] = ACTIONS(2485), + [anon_sym_clone] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_include] = ACTIONS(2485), + [anon_sym_include_once] = ACTIONS(2485), + [anon_sym_require] = ACTIONS(2485), + [anon_sym_require_once] = ACTIONS(2485), + [anon_sym_BSLASH] = ACTIONS(2487), + [anon_sym_self] = ACTIONS(2485), + [anon_sym_parent] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2485), + [anon_sym_LT_LT_LT] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_echo] = ACTIONS(2485), + [anon_sym_unset] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_concurrent] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_function] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_case] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_foreach] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [sym_float] = ACTIONS(2487), + [sym_integer] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_True] = ACTIONS(2485), + [anon_sym_TRUE] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_False] = ACTIONS(2485), + [anon_sym_FALSE] = ACTIONS(2485), + [anon_sym_null] = ACTIONS(2485), + [anon_sym_Null] = ACTIONS(2485), + [anon_sym_NULL] = ACTIONS(2485), + [sym_string] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_array] = ACTIONS(2485), + [anon_sym_varray] = ACTIONS(2485), + [anon_sym_darray] = ACTIONS(2485), + [anon_sym_vec] = ACTIONS(2485), + [anon_sym_dict] = ACTIONS(2485), + [anon_sym_keyset] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_interface] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_abstract] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2487), + [sym_final_modifier] = ACTIONS(2485), + [sym_xhp_modifier] = ACTIONS(2485), + [sym_xhp_identifier] = ACTIONS(2485), + [sym_xhp_class_identifier] = ACTIONS(2487), [sym_comment] = ACTIONS(3), }, - [1197] = { + [1119] = { [ts_builtin_sym_end] = ACTIONS(2139), [sym_identifier] = ACTIONS(2137), [sym_variable] = ACTIONS(2139), @@ -148177,1063 +134887,1943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2139), [sym_comment] = ACTIONS(3), }, - [1198] = { - [sym_identifier] = ACTIONS(2121), - [sym_variable] = ACTIONS(2123), - [sym_pipe_variable] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_newtype] = ACTIONS(2121), - [anon_sym_shape] = ACTIONS(2121), - [anon_sym_tuple] = ACTIONS(2121), - [anon_sym_clone] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_print] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_LT_LT_LT] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_echo] = ACTIONS(2121), - [anon_sym_unset] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_concurrent] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_elseif] = ACTIONS(2121), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_foreach] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_using] = ACTIONS(2121), - [sym_float] = ACTIONS(2123), - [sym_integer] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_True] = ACTIONS(2121), - [anon_sym_TRUE] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_False] = ACTIONS(2121), - [anon_sym_FALSE] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2121), - [anon_sym_Null] = ACTIONS(2121), - [anon_sym_NULL] = ACTIONS(2121), - [sym_string] = ACTIONS(2123), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_array] = ACTIONS(2121), - [anon_sym_varray] = ACTIONS(2121), - [anon_sym_darray] = ACTIONS(2121), - [anon_sym_vec] = ACTIONS(2121), - [anon_sym_dict] = ACTIONS(2121), - [anon_sym_keyset] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_trait] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2123), - [sym_final_modifier] = ACTIONS(2121), - [sym_xhp_modifier] = ACTIONS(2121), - [sym_xhp_identifier] = ACTIONS(2121), - [sym_xhp_class_identifier] = ACTIONS(2123), + [1120] = { + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2133), + [sym_variable] = ACTIONS(2135), + [sym_pipe_variable] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_newtype] = ACTIONS(2133), + [anon_sym_shape] = ACTIONS(2133), + [anon_sym_tuple] = ACTIONS(2133), + [anon_sym_clone] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_namespace] = ACTIONS(2133), + [anon_sym_include] = ACTIONS(2133), + [anon_sym_include_once] = ACTIONS(2133), + [anon_sym_require] = ACTIONS(2133), + [anon_sym_require_once] = ACTIONS(2133), + [anon_sym_BSLASH] = ACTIONS(2135), + [anon_sym_self] = ACTIONS(2133), + [anon_sym_parent] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_LT_LT_LT] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_throw] = ACTIONS(2133), + [anon_sym_echo] = ACTIONS(2133), + [anon_sym_unset] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_concurrent] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_function] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_elseif] = ACTIONS(2133), + [anon_sym_else] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_foreach] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(2133), + [sym_float] = ACTIONS(2135), + [sym_integer] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_True] = ACTIONS(2133), + [anon_sym_TRUE] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_False] = ACTIONS(2133), + [anon_sym_FALSE] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [anon_sym_Null] = ACTIONS(2133), + [anon_sym_NULL] = ACTIONS(2133), + [sym_string] = ACTIONS(2135), + [anon_sym_AT] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_array] = ACTIONS(2133), + [anon_sym_varray] = ACTIONS(2133), + [anon_sym_darray] = ACTIONS(2133), + [anon_sym_vec] = ACTIONS(2133), + [anon_sym_dict] = ACTIONS(2133), + [anon_sym_keyset] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_class] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_abstract] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2135), + [sym_final_modifier] = ACTIONS(2133), + [sym_xhp_modifier] = ACTIONS(2133), + [sym_xhp_identifier] = ACTIONS(2133), + [sym_xhp_class_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(3), + }, + [1121] = { + [sym_identifier] = ACTIONS(2481), + [sym_variable] = ACTIONS(2483), + [sym_pipe_variable] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_newtype] = ACTIONS(2481), + [anon_sym_shape] = ACTIONS(2481), + [anon_sym_tuple] = ACTIONS(2481), + [anon_sym_clone] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_print] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_include] = ACTIONS(2481), + [anon_sym_include_once] = ACTIONS(2481), + [anon_sym_require] = ACTIONS(2481), + [anon_sym_require_once] = ACTIONS(2481), + [anon_sym_BSLASH] = ACTIONS(2483), + [anon_sym_self] = ACTIONS(2481), + [anon_sym_parent] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_LT_LT] = ACTIONS(2481), + [anon_sym_LT_LT_LT] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_echo] = ACTIONS(2481), + [anon_sym_unset] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_concurrent] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_case] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_foreach] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [sym_float] = ACTIONS(2483), + [sym_integer] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_True] = ACTIONS(2481), + [anon_sym_TRUE] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_False] = ACTIONS(2481), + [anon_sym_FALSE] = ACTIONS(2481), + [anon_sym_null] = ACTIONS(2481), + [anon_sym_Null] = ACTIONS(2481), + [anon_sym_NULL] = ACTIONS(2481), + [sym_string] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(2483), + [anon_sym_TILDE] = ACTIONS(2483), + [anon_sym_array] = ACTIONS(2481), + [anon_sym_varray] = ACTIONS(2481), + [anon_sym_darray] = ACTIONS(2481), + [anon_sym_vec] = ACTIONS(2481), + [anon_sym_dict] = ACTIONS(2481), + [anon_sym_keyset] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_list] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_PLUS_PLUS] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2483), + [sym_final_modifier] = ACTIONS(2481), + [sym_xhp_modifier] = ACTIONS(2481), + [sym_xhp_identifier] = ACTIONS(2481), + [sym_xhp_class_identifier] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + }, + [1122] = { + [sym_identifier] = ACTIONS(2205), + [sym_variable] = ACTIONS(2207), + [sym_pipe_variable] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_newtype] = ACTIONS(2205), + [anon_sym_shape] = ACTIONS(2205), + [anon_sym_tuple] = ACTIONS(2205), + [anon_sym_clone] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_print] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_include] = ACTIONS(2205), + [anon_sym_include_once] = ACTIONS(2205), + [anon_sym_require] = ACTIONS(2205), + [anon_sym_require_once] = ACTIONS(2205), + [anon_sym_BSLASH] = ACTIONS(2207), + [anon_sym_self] = ACTIONS(2205), + [anon_sym_parent] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_LT_LT_LT] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_echo] = ACTIONS(2205), + [anon_sym_unset] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_concurrent] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_foreach] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [sym_float] = ACTIONS(2207), + [sym_integer] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_True] = ACTIONS(2205), + [anon_sym_TRUE] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_False] = ACTIONS(2205), + [anon_sym_FALSE] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(2205), + [anon_sym_Null] = ACTIONS(2205), + [anon_sym_NULL] = ACTIONS(2205), + [sym_string] = ACTIONS(2207), + [anon_sym_AT] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_array] = ACTIONS(2205), + [anon_sym_varray] = ACTIONS(2205), + [anon_sym_darray] = ACTIONS(2205), + [anon_sym_vec] = ACTIONS(2205), + [anon_sym_dict] = ACTIONS(2205), + [anon_sym_keyset] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_list] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2207), + [sym_final_modifier] = ACTIONS(2205), + [sym_xhp_modifier] = ACTIONS(2205), + [sym_xhp_identifier] = ACTIONS(2205), + [sym_xhp_class_identifier] = ACTIONS(2207), + [sym_comment] = ACTIONS(3), + }, + [1123] = { + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2129), + [sym_variable] = ACTIONS(2131), + [sym_pipe_variable] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_newtype] = ACTIONS(2129), + [anon_sym_shape] = ACTIONS(2129), + [anon_sym_tuple] = ACTIONS(2129), + [anon_sym_clone] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_print] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_include] = ACTIONS(2129), + [anon_sym_include_once] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2129), + [anon_sym_require_once] = ACTIONS(2129), + [anon_sym_BSLASH] = ACTIONS(2131), + [anon_sym_self] = ACTIONS(2129), + [anon_sym_parent] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2129), + [anon_sym_LT_LT_LT] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_echo] = ACTIONS(2129), + [anon_sym_unset] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_concurrent] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_elseif] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_foreach] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [sym_float] = ACTIONS(2131), + [sym_integer] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_True] = ACTIONS(2129), + [anon_sym_TRUE] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_False] = ACTIONS(2129), + [anon_sym_FALSE] = ACTIONS(2129), + [anon_sym_null] = ACTIONS(2129), + [anon_sym_Null] = ACTIONS(2129), + [anon_sym_NULL] = ACTIONS(2129), + [sym_string] = ACTIONS(2131), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_array] = ACTIONS(2129), + [anon_sym_varray] = ACTIONS(2129), + [anon_sym_darray] = ACTIONS(2129), + [anon_sym_vec] = ACTIONS(2129), + [anon_sym_dict] = ACTIONS(2129), + [anon_sym_keyset] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_list] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2131), + [sym_final_modifier] = ACTIONS(2129), + [sym_xhp_modifier] = ACTIONS(2129), + [sym_xhp_identifier] = ACTIONS(2129), + [sym_xhp_class_identifier] = ACTIONS(2131), + [sym_comment] = ACTIONS(3), + }, + [1124] = { + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [sym_variable] = ACTIONS(2127), + [sym_pipe_variable] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_newtype] = ACTIONS(2125), + [anon_sym_shape] = ACTIONS(2125), + [anon_sym_tuple] = ACTIONS(2125), + [anon_sym_clone] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_print] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_include] = ACTIONS(2125), + [anon_sym_include_once] = ACTIONS(2125), + [anon_sym_require] = ACTIONS(2125), + [anon_sym_require_once] = ACTIONS(2125), + [anon_sym_BSLASH] = ACTIONS(2127), + [anon_sym_self] = ACTIONS(2125), + [anon_sym_parent] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_LT_LT_LT] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_echo] = ACTIONS(2125), + [anon_sym_unset] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_concurrent] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_elseif] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_foreach] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [sym_float] = ACTIONS(2127), + [sym_integer] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_True] = ACTIONS(2125), + [anon_sym_TRUE] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_False] = ACTIONS(2125), + [anon_sym_FALSE] = ACTIONS(2125), + [anon_sym_null] = ACTIONS(2125), + [anon_sym_Null] = ACTIONS(2125), + [anon_sym_NULL] = ACTIONS(2125), + [sym_string] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_array] = ACTIONS(2125), + [anon_sym_varray] = ACTIONS(2125), + [anon_sym_darray] = ACTIONS(2125), + [anon_sym_vec] = ACTIONS(2125), + [anon_sym_dict] = ACTIONS(2125), + [anon_sym_keyset] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_list] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2127), + [sym_final_modifier] = ACTIONS(2125), + [sym_xhp_modifier] = ACTIONS(2125), + [sym_xhp_identifier] = ACTIONS(2125), + [sym_xhp_class_identifier] = ACTIONS(2127), + [sym_comment] = ACTIONS(3), + }, + [1125] = { + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2121), + [sym_variable] = ACTIONS(2123), + [sym_pipe_variable] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_newtype] = ACTIONS(2121), + [anon_sym_shape] = ACTIONS(2121), + [anon_sym_tuple] = ACTIONS(2121), + [anon_sym_clone] = ACTIONS(2121), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_print] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_include] = ACTIONS(2121), + [anon_sym_include_once] = ACTIONS(2121), + [anon_sym_require] = ACTIONS(2121), + [anon_sym_require_once] = ACTIONS(2121), + [anon_sym_BSLASH] = ACTIONS(2123), + [anon_sym_self] = ACTIONS(2121), + [anon_sym_parent] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(2121), + [anon_sym_LT_LT_LT] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_echo] = ACTIONS(2121), + [anon_sym_unset] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_concurrent] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_elseif] = ACTIONS(2121), + [anon_sym_else] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_foreach] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_using] = ACTIONS(2121), + [sym_float] = ACTIONS(2123), + [sym_integer] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_True] = ACTIONS(2121), + [anon_sym_TRUE] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_False] = ACTIONS(2121), + [anon_sym_FALSE] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_Null] = ACTIONS(2121), + [anon_sym_NULL] = ACTIONS(2121), + [sym_string] = ACTIONS(2123), + [anon_sym_AT] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_array] = ACTIONS(2121), + [anon_sym_varray] = ACTIONS(2121), + [anon_sym_darray] = ACTIONS(2121), + [anon_sym_vec] = ACTIONS(2121), + [anon_sym_dict] = ACTIONS(2121), + [anon_sym_keyset] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_list] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_await] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2123), + [sym_final_modifier] = ACTIONS(2121), + [sym_xhp_modifier] = ACTIONS(2121), + [sym_xhp_identifier] = ACTIONS(2121), + [sym_xhp_class_identifier] = ACTIONS(2123), + [sym_comment] = ACTIONS(3), + }, + [1126] = { + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2117), + [sym_variable] = ACTIONS(2119), + [sym_pipe_variable] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_newtype] = ACTIONS(2117), + [anon_sym_shape] = ACTIONS(2117), + [anon_sym_tuple] = ACTIONS(2117), + [anon_sym_clone] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_print] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_include] = ACTIONS(2117), + [anon_sym_include_once] = ACTIONS(2117), + [anon_sym_require] = ACTIONS(2117), + [anon_sym_require_once] = ACTIONS(2117), + [anon_sym_BSLASH] = ACTIONS(2119), + [anon_sym_self] = ACTIONS(2117), + [anon_sym_parent] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_LT_LT] = ACTIONS(2117), + [anon_sym_LT_LT_LT] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_echo] = ACTIONS(2117), + [anon_sym_unset] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_concurrent] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_elseif] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_foreach] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_using] = ACTIONS(2117), + [sym_float] = ACTIONS(2119), + [sym_integer] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_True] = ACTIONS(2117), + [anon_sym_TRUE] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_False] = ACTIONS(2117), + [anon_sym_FALSE] = ACTIONS(2117), + [anon_sym_null] = ACTIONS(2117), + [anon_sym_Null] = ACTIONS(2117), + [anon_sym_NULL] = ACTIONS(2117), + [sym_string] = ACTIONS(2119), + [anon_sym_AT] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_array] = ACTIONS(2117), + [anon_sym_varray] = ACTIONS(2117), + [anon_sym_darray] = ACTIONS(2117), + [anon_sym_vec] = ACTIONS(2117), + [anon_sym_dict] = ACTIONS(2117), + [anon_sym_keyset] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_list] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2119), + [sym_final_modifier] = ACTIONS(2117), + [sym_xhp_modifier] = ACTIONS(2117), + [sym_xhp_identifier] = ACTIONS(2117), + [sym_xhp_class_identifier] = ACTIONS(2119), + [sym_comment] = ACTIONS(3), + }, + [1127] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2113), + [sym_variable] = ACTIONS(2115), + [sym_pipe_variable] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_newtype] = ACTIONS(2113), + [anon_sym_shape] = ACTIONS(2113), + [anon_sym_tuple] = ACTIONS(2113), + [anon_sym_clone] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_print] = ACTIONS(2113), + [anon_sym_namespace] = ACTIONS(2113), + [anon_sym_include] = ACTIONS(2113), + [anon_sym_include_once] = ACTIONS(2113), + [anon_sym_require] = ACTIONS(2113), + [anon_sym_require_once] = ACTIONS(2113), + [anon_sym_BSLASH] = ACTIONS(2115), + [anon_sym_self] = ACTIONS(2113), + [anon_sym_parent] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_LT_LT] = ACTIONS(2113), + [anon_sym_LT_LT_LT] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_throw] = ACTIONS(2113), + [anon_sym_echo] = ACTIONS(2113), + [anon_sym_unset] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_concurrent] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_elseif] = ACTIONS(2113), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_switch] = ACTIONS(2113), + [anon_sym_foreach] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_using] = ACTIONS(2113), + [sym_float] = ACTIONS(2115), + [sym_integer] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_True] = ACTIONS(2113), + [anon_sym_TRUE] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_False] = ACTIONS(2113), + [anon_sym_FALSE] = ACTIONS(2113), + [anon_sym_null] = ACTIONS(2113), + [anon_sym_Null] = ACTIONS(2113), + [anon_sym_NULL] = ACTIONS(2113), + [sym_string] = ACTIONS(2115), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_array] = ACTIONS(2113), + [anon_sym_varray] = ACTIONS(2113), + [anon_sym_darray] = ACTIONS(2113), + [anon_sym_vec] = ACTIONS(2113), + [anon_sym_dict] = ACTIONS(2113), + [anon_sym_keyset] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_interface] = ACTIONS(2113), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_abstract] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2115), + [sym_final_modifier] = ACTIONS(2113), + [sym_xhp_modifier] = ACTIONS(2113), + [sym_xhp_identifier] = ACTIONS(2113), + [sym_xhp_class_identifier] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + }, + [1128] = { + [sym_identifier] = ACTIONS(2477), + [sym_variable] = ACTIONS(2479), + [sym_pipe_variable] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_newtype] = ACTIONS(2477), + [anon_sym_shape] = ACTIONS(2477), + [anon_sym_tuple] = ACTIONS(2477), + [anon_sym_clone] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_include] = ACTIONS(2477), + [anon_sym_include_once] = ACTIONS(2477), + [anon_sym_require] = ACTIONS(2477), + [anon_sym_require_once] = ACTIONS(2477), + [anon_sym_BSLASH] = ACTIONS(2479), + [anon_sym_self] = ACTIONS(2477), + [anon_sym_parent] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT_LT_LT] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_throw] = ACTIONS(2477), + [anon_sym_echo] = ACTIONS(2477), + [anon_sym_unset] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_concurrent] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_case] = ACTIONS(2477), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_foreach] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_using] = ACTIONS(2477), + [sym_float] = ACTIONS(2479), + [sym_integer] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_True] = ACTIONS(2477), + [anon_sym_TRUE] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_False] = ACTIONS(2477), + [anon_sym_FALSE] = ACTIONS(2477), + [anon_sym_null] = ACTIONS(2477), + [anon_sym_Null] = ACTIONS(2477), + [anon_sym_NULL] = ACTIONS(2477), + [sym_string] = ACTIONS(2479), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_array] = ACTIONS(2477), + [anon_sym_varray] = ACTIONS(2477), + [anon_sym_darray] = ACTIONS(2477), + [anon_sym_vec] = ACTIONS(2477), + [anon_sym_dict] = ACTIONS(2477), + [anon_sym_keyset] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_interface] = ACTIONS(2477), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_abstract] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2479), + [sym_final_modifier] = ACTIONS(2477), + [sym_xhp_modifier] = ACTIONS(2477), + [sym_xhp_identifier] = ACTIONS(2477), + [sym_xhp_class_identifier] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + }, + [1129] = { + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [sym_variable] = ACTIONS(2111), + [sym_pipe_variable] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_newtype] = ACTIONS(2109), + [anon_sym_shape] = ACTIONS(2109), + [anon_sym_tuple] = ACTIONS(2109), + [anon_sym_clone] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_include] = ACTIONS(2109), + [anon_sym_include_once] = ACTIONS(2109), + [anon_sym_require] = ACTIONS(2109), + [anon_sym_require_once] = ACTIONS(2109), + [anon_sym_BSLASH] = ACTIONS(2111), + [anon_sym_self] = ACTIONS(2109), + [anon_sym_parent] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_LT_LT_LT] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_echo] = ACTIONS(2109), + [anon_sym_unset] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_concurrent] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_elseif] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_foreach] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [sym_float] = ACTIONS(2111), + [sym_integer] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_True] = ACTIONS(2109), + [anon_sym_TRUE] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_False] = ACTIONS(2109), + [anon_sym_FALSE] = ACTIONS(2109), + [anon_sym_null] = ACTIONS(2109), + [anon_sym_Null] = ACTIONS(2109), + [anon_sym_NULL] = ACTIONS(2109), + [sym_string] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_array] = ACTIONS(2109), + [anon_sym_varray] = ACTIONS(2109), + [anon_sym_darray] = ACTIONS(2109), + [anon_sym_vec] = ACTIONS(2109), + [anon_sym_dict] = ACTIONS(2109), + [anon_sym_keyset] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_list] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2111), + [sym_final_modifier] = ACTIONS(2109), + [sym_xhp_modifier] = ACTIONS(2109), + [sym_xhp_identifier] = ACTIONS(2109), + [sym_xhp_class_identifier] = ACTIONS(2111), + [sym_comment] = ACTIONS(3), + }, + [1130] = { + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [sym_variable] = ACTIONS(2107), + [sym_pipe_variable] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_newtype] = ACTIONS(2105), + [anon_sym_shape] = ACTIONS(2105), + [anon_sym_tuple] = ACTIONS(2105), + [anon_sym_clone] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_print] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_include] = ACTIONS(2105), + [anon_sym_include_once] = ACTIONS(2105), + [anon_sym_require] = ACTIONS(2105), + [anon_sym_require_once] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2107), + [anon_sym_self] = ACTIONS(2105), + [anon_sym_parent] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_LT_LT_LT] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_echo] = ACTIONS(2105), + [anon_sym_unset] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_concurrent] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_elseif] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_foreach] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [sym_float] = ACTIONS(2107), + [sym_integer] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_True] = ACTIONS(2105), + [anon_sym_TRUE] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_False] = ACTIONS(2105), + [anon_sym_FALSE] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [anon_sym_Null] = ACTIONS(2105), + [anon_sym_NULL] = ACTIONS(2105), + [sym_string] = ACTIONS(2107), + [anon_sym_AT] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_array] = ACTIONS(2105), + [anon_sym_varray] = ACTIONS(2105), + [anon_sym_darray] = ACTIONS(2105), + [anon_sym_vec] = ACTIONS(2105), + [anon_sym_dict] = ACTIONS(2105), + [anon_sym_keyset] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2107), + [sym_final_modifier] = ACTIONS(2105), + [sym_xhp_modifier] = ACTIONS(2105), + [sym_xhp_identifier] = ACTIONS(2105), + [sym_xhp_class_identifier] = ACTIONS(2107), [sym_comment] = ACTIONS(3), }, - [1199] = { - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2433), - [sym_variable] = ACTIONS(2435), - [sym_pipe_variable] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_newtype] = ACTIONS(2433), - [anon_sym_shape] = ACTIONS(2433), - [anon_sym_tuple] = ACTIONS(2433), - [anon_sym_clone] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_print] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_LT_LT_LT] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_echo] = ACTIONS(2433), - [anon_sym_unset] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_concurrent] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_elseif] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_foreach] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [sym_float] = ACTIONS(2435), - [sym_integer] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_True] = ACTIONS(2433), - [anon_sym_TRUE] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [anon_sym_False] = ACTIONS(2433), - [anon_sym_FALSE] = ACTIONS(2433), - [anon_sym_null] = ACTIONS(2433), - [anon_sym_Null] = ACTIONS(2433), - [anon_sym_NULL] = ACTIONS(2433), - [sym_string] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_array] = ACTIONS(2433), - [anon_sym_varray] = ACTIONS(2433), - [anon_sym_darray] = ACTIONS(2433), - [anon_sym_vec] = ACTIONS(2433), - [anon_sym_dict] = ACTIONS(2433), - [anon_sym_keyset] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_abstract] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2435), - [sym_final_modifier] = ACTIONS(2433), - [sym_xhp_modifier] = ACTIONS(2433), - [sym_xhp_identifier] = ACTIONS(2433), - [sym_xhp_class_identifier] = ACTIONS(2435), + [1131] = { + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2101), + [sym_variable] = ACTIONS(2103), + [sym_pipe_variable] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_newtype] = ACTIONS(2101), + [anon_sym_shape] = ACTIONS(2101), + [anon_sym_tuple] = ACTIONS(2101), + [anon_sym_clone] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2101), + [anon_sym_namespace] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_include_once] = ACTIONS(2101), + [anon_sym_require] = ACTIONS(2101), + [anon_sym_require_once] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2103), + [anon_sym_self] = ACTIONS(2101), + [anon_sym_parent] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_LT_LT_LT] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(2101), + [anon_sym_echo] = ACTIONS(2101), + [anon_sym_unset] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_concurrent] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_function] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_elseif] = ACTIONS(2101), + [anon_sym_else] = ACTIONS(2101), + [anon_sym_switch] = ACTIONS(2101), + [anon_sym_foreach] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_using] = ACTIONS(2101), + [sym_float] = ACTIONS(2103), + [sym_integer] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_True] = ACTIONS(2101), + [anon_sym_TRUE] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_False] = ACTIONS(2101), + [anon_sym_FALSE] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [anon_sym_Null] = ACTIONS(2101), + [anon_sym_NULL] = ACTIONS(2101), + [sym_string] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_array] = ACTIONS(2101), + [anon_sym_varray] = ACTIONS(2101), + [anon_sym_darray] = ACTIONS(2101), + [anon_sym_vec] = ACTIONS(2101), + [anon_sym_dict] = ACTIONS(2101), + [anon_sym_keyset] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_list] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_interface] = ACTIONS(2101), + [anon_sym_class] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_abstract] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2103), + [sym_final_modifier] = ACTIONS(2101), + [sym_xhp_modifier] = ACTIONS(2101), + [sym_xhp_identifier] = ACTIONS(2101), + [sym_xhp_class_identifier] = ACTIONS(2103), [sym_comment] = ACTIONS(3), }, - [1200] = { - [ts_builtin_sym_end] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2425), - [sym_variable] = ACTIONS(2427), - [sym_pipe_variable] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_newtype] = ACTIONS(2425), - [anon_sym_shape] = ACTIONS(2425), - [anon_sym_tuple] = ACTIONS(2425), - [anon_sym_clone] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_LT_LT] = ACTIONS(2425), - [anon_sym_LT_LT_LT] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_echo] = ACTIONS(2425), - [anon_sym_unset] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_concurrent] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_function] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_elseif] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_foreach] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [sym_float] = ACTIONS(2427), - [sym_integer] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_True] = ACTIONS(2425), - [anon_sym_TRUE] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [anon_sym_False] = ACTIONS(2425), - [anon_sym_FALSE] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(2425), - [anon_sym_Null] = ACTIONS(2425), - [anon_sym_NULL] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_array] = ACTIONS(2425), - [anon_sym_varray] = ACTIONS(2425), - [anon_sym_darray] = ACTIONS(2425), - [anon_sym_vec] = ACTIONS(2425), - [anon_sym_dict] = ACTIONS(2425), - [anon_sym_keyset] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_interface] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_abstract] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(2427), - [sym_final_modifier] = ACTIONS(2425), - [sym_xhp_modifier] = ACTIONS(2425), - [sym_xhp_identifier] = ACTIONS(2425), - [sym_xhp_class_identifier] = ACTIONS(2427), + [1132] = { + [sym_identifier] = ACTIONS(2473), + [sym_variable] = ACTIONS(2475), + [sym_pipe_variable] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_newtype] = ACTIONS(2473), + [anon_sym_shape] = ACTIONS(2473), + [anon_sym_tuple] = ACTIONS(2473), + [anon_sym_clone] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_include] = ACTIONS(2473), + [anon_sym_include_once] = ACTIONS(2473), + [anon_sym_require] = ACTIONS(2473), + [anon_sym_require_once] = ACTIONS(2473), + [anon_sym_BSLASH] = ACTIONS(2475), + [anon_sym_self] = ACTIONS(2473), + [anon_sym_parent] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_LT_LT_LT] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_throw] = ACTIONS(2473), + [anon_sym_echo] = ACTIONS(2473), + [anon_sym_unset] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_concurrent] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_switch] = ACTIONS(2473), + [anon_sym_case] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_foreach] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_using] = ACTIONS(2473), + [sym_float] = ACTIONS(2475), + [sym_integer] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_True] = ACTIONS(2473), + [anon_sym_TRUE] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_False] = ACTIONS(2473), + [anon_sym_FALSE] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2473), + [anon_sym_Null] = ACTIONS(2473), + [anon_sym_NULL] = ACTIONS(2473), + [sym_string] = ACTIONS(2475), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_array] = ACTIONS(2473), + [anon_sym_varray] = ACTIONS(2473), + [anon_sym_darray] = ACTIONS(2473), + [anon_sym_vec] = ACTIONS(2473), + [anon_sym_dict] = ACTIONS(2473), + [anon_sym_keyset] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_interface] = ACTIONS(2473), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_abstract] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2475), + [sym_final_modifier] = ACTIONS(2473), + [sym_xhp_modifier] = ACTIONS(2473), + [sym_xhp_identifier] = ACTIONS(2473), + [sym_xhp_class_identifier] = ACTIONS(2475), [sym_comment] = ACTIONS(3), }, - [1201] = { - [sym_identifier] = ACTIONS(2377), - [sym_variable] = ACTIONS(2379), - [sym_pipe_variable] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_newtype] = ACTIONS(2377), - [anon_sym_shape] = ACTIONS(2377), - [anon_sym_tuple] = ACTIONS(2377), - [anon_sym_clone] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_print] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_LT_LT_LT] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_echo] = ACTIONS(2377), - [anon_sym_unset] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_concurrent] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_elseif] = ACTIONS(2377), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_foreach] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_using] = ACTIONS(2377), - [sym_float] = ACTIONS(2379), - [sym_integer] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_True] = ACTIONS(2377), - [anon_sym_TRUE] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [anon_sym_False] = ACTIONS(2377), - [anon_sym_FALSE] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(2377), - [anon_sym_Null] = ACTIONS(2377), - [anon_sym_NULL] = ACTIONS(2377), - [sym_string] = ACTIONS(2379), - [anon_sym_AT] = ACTIONS(2379), - [anon_sym_TILDE] = ACTIONS(2379), - [anon_sym_array] = ACTIONS(2377), - [anon_sym_varray] = ACTIONS(2377), - [anon_sym_darray] = ACTIONS(2377), - [anon_sym_vec] = ACTIONS(2377), - [anon_sym_dict] = ACTIONS(2377), - [anon_sym_keyset] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(2379), - [sym_final_modifier] = ACTIONS(2377), - [sym_xhp_modifier] = ACTIONS(2377), - [sym_xhp_identifier] = ACTIONS(2377), - [sym_xhp_class_identifier] = ACTIONS(2379), + [1133] = { + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2097), + [sym_variable] = ACTIONS(2099), + [sym_pipe_variable] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_newtype] = ACTIONS(2097), + [anon_sym_shape] = ACTIONS(2097), + [anon_sym_tuple] = ACTIONS(2097), + [anon_sym_clone] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_print] = ACTIONS(2097), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_include] = ACTIONS(2097), + [anon_sym_include_once] = ACTIONS(2097), + [anon_sym_require] = ACTIONS(2097), + [anon_sym_require_once] = ACTIONS(2097), + [anon_sym_BSLASH] = ACTIONS(2099), + [anon_sym_self] = ACTIONS(2097), + [anon_sym_parent] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2097), + [anon_sym_LT_LT_LT] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_echo] = ACTIONS(2097), + [anon_sym_unset] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_concurrent] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_elseif] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_foreach] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [sym_float] = ACTIONS(2099), + [sym_integer] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_True] = ACTIONS(2097), + [anon_sym_TRUE] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_False] = ACTIONS(2097), + [anon_sym_FALSE] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [anon_sym_Null] = ACTIONS(2097), + [anon_sym_NULL] = ACTIONS(2097), + [sym_string] = ACTIONS(2099), + [anon_sym_AT] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_array] = ACTIONS(2097), + [anon_sym_varray] = ACTIONS(2097), + [anon_sym_darray] = ACTIONS(2097), + [anon_sym_vec] = ACTIONS(2097), + [anon_sym_dict] = ACTIONS(2097), + [anon_sym_keyset] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_list] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2099), + [sym_final_modifier] = ACTIONS(2097), + [sym_xhp_modifier] = ACTIONS(2097), + [sym_xhp_identifier] = ACTIONS(2097), + [sym_xhp_class_identifier] = ACTIONS(2099), [sym_comment] = ACTIONS(3), }, - [1202] = { - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2089), - [sym_variable] = ACTIONS(2091), - [sym_pipe_variable] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_newtype] = ACTIONS(2089), - [anon_sym_shape] = ACTIONS(2089), - [anon_sym_tuple] = ACTIONS(2089), - [anon_sym_clone] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_print] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_LT_LT_LT] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_echo] = ACTIONS(2089), - [anon_sym_unset] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_concurrent] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_elseif] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_foreach] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [sym_float] = ACTIONS(2091), - [sym_integer] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_True] = ACTIONS(2089), - [anon_sym_TRUE] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_False] = ACTIONS(2089), - [anon_sym_FALSE] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_Null] = ACTIONS(2089), - [anon_sym_NULL] = ACTIONS(2089), - [sym_string] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_array] = ACTIONS(2089), - [anon_sym_varray] = ACTIONS(2089), - [anon_sym_darray] = ACTIONS(2089), - [anon_sym_vec] = ACTIONS(2089), - [anon_sym_dict] = ACTIONS(2089), - [anon_sym_keyset] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2091), - [sym_final_modifier] = ACTIONS(2089), - [sym_xhp_modifier] = ACTIONS(2089), - [sym_xhp_identifier] = ACTIONS(2089), - [sym_xhp_class_identifier] = ACTIONS(2091), + [1134] = { + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2373), + [sym_variable] = ACTIONS(2375), + [sym_pipe_variable] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_newtype] = ACTIONS(2373), + [anon_sym_shape] = ACTIONS(2373), + [anon_sym_tuple] = ACTIONS(2373), + [anon_sym_clone] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_print] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_include] = ACTIONS(2373), + [anon_sym_include_once] = ACTIONS(2373), + [anon_sym_require] = ACTIONS(2373), + [anon_sym_require_once] = ACTIONS(2373), + [anon_sym_BSLASH] = ACTIONS(2375), + [anon_sym_self] = ACTIONS(2373), + [anon_sym_parent] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_LT_LT_LT] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_echo] = ACTIONS(2373), + [anon_sym_unset] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_concurrent] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_elseif] = ACTIONS(2373), + [anon_sym_else] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_foreach] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [sym_float] = ACTIONS(2375), + [sym_integer] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_True] = ACTIONS(2373), + [anon_sym_TRUE] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_False] = ACTIONS(2373), + [anon_sym_FALSE] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_Null] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [sym_string] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_array] = ACTIONS(2373), + [anon_sym_varray] = ACTIONS(2373), + [anon_sym_darray] = ACTIONS(2373), + [anon_sym_vec] = ACTIONS(2373), + [anon_sym_dict] = ACTIONS(2373), + [anon_sym_keyset] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_list] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_abstract] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2375), + [sym_final_modifier] = ACTIONS(2373), + [sym_xhp_modifier] = ACTIONS(2373), + [sym_xhp_identifier] = ACTIONS(2373), + [sym_xhp_class_identifier] = ACTIONS(2375), [sym_comment] = ACTIONS(3), }, - [1203] = { - [sym_identifier] = ACTIONS(2205), - [sym_variable] = ACTIONS(2207), - [sym_pipe_variable] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_newtype] = ACTIONS(2205), - [anon_sym_shape] = ACTIONS(2205), - [anon_sym_tuple] = ACTIONS(2205), - [anon_sym_clone] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_print] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_LT_LT_LT] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_echo] = ACTIONS(2205), - [anon_sym_unset] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_concurrent] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_elseif] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_foreach] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [sym_float] = ACTIONS(2207), - [sym_integer] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_True] = ACTIONS(2205), - [anon_sym_TRUE] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_False] = ACTIONS(2205), - [anon_sym_FALSE] = ACTIONS(2205), - [anon_sym_null] = ACTIONS(2205), - [anon_sym_Null] = ACTIONS(2205), - [anon_sym_NULL] = ACTIONS(2205), - [sym_string] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_array] = ACTIONS(2205), - [anon_sym_varray] = ACTIONS(2205), - [anon_sym_darray] = ACTIONS(2205), - [anon_sym_vec] = ACTIONS(2205), - [anon_sym_dict] = ACTIONS(2205), - [anon_sym_keyset] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2207), - [sym_final_modifier] = ACTIONS(2205), - [sym_xhp_modifier] = ACTIONS(2205), - [sym_xhp_identifier] = ACTIONS(2205), - [sym_xhp_class_identifier] = ACTIONS(2207), + [1135] = { + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2293), + [sym_variable] = ACTIONS(2295), + [sym_pipe_variable] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_newtype] = ACTIONS(2293), + [anon_sym_shape] = ACTIONS(2293), + [anon_sym_tuple] = ACTIONS(2293), + [anon_sym_clone] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_include] = ACTIONS(2293), + [anon_sym_include_once] = ACTIONS(2293), + [anon_sym_require] = ACTIONS(2293), + [anon_sym_require_once] = ACTIONS(2293), + [anon_sym_BSLASH] = ACTIONS(2295), + [anon_sym_self] = ACTIONS(2293), + [anon_sym_parent] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_LT_LT] = ACTIONS(2293), + [anon_sym_LT_LT_LT] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_echo] = ACTIONS(2293), + [anon_sym_unset] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_concurrent] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_elseif] = ACTIONS(2293), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_foreach] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_using] = ACTIONS(2293), + [sym_float] = ACTIONS(2295), + [sym_integer] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_True] = ACTIONS(2293), + [anon_sym_TRUE] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_False] = ACTIONS(2293), + [anon_sym_FALSE] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [anon_sym_Null] = ACTIONS(2293), + [anon_sym_NULL] = ACTIONS(2293), + [sym_string] = ACTIONS(2295), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_array] = ACTIONS(2293), + [anon_sym_varray] = ACTIONS(2293), + [anon_sym_darray] = ACTIONS(2293), + [anon_sym_vec] = ACTIONS(2293), + [anon_sym_dict] = ACTIONS(2293), + [anon_sym_keyset] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2295), + [sym_final_modifier] = ACTIONS(2293), + [sym_xhp_modifier] = ACTIONS(2293), + [sym_xhp_identifier] = ACTIONS(2293), + [sym_xhp_class_identifier] = ACTIONS(2295), [sym_comment] = ACTIONS(3), }, - [1204] = { - [sym_identifier] = ACTIONS(2437), - [sym_variable] = ACTIONS(2439), - [sym_pipe_variable] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_newtype] = ACTIONS(2437), - [anon_sym_shape] = ACTIONS(2437), - [anon_sym_tuple] = ACTIONS(2437), - [anon_sym_clone] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_print] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), - [anon_sym_LT_LT_LT] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_echo] = ACTIONS(2437), - [anon_sym_unset] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_concurrent] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_foreach] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [sym_float] = ACTIONS(2439), - [sym_integer] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_True] = ACTIONS(2437), - [anon_sym_TRUE] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_False] = ACTIONS(2437), - [anon_sym_FALSE] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_Null] = ACTIONS(2437), - [anon_sym_NULL] = ACTIONS(2437), - [sym_string] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_array] = ACTIONS(2437), - [anon_sym_varray] = ACTIONS(2437), - [anon_sym_darray] = ACTIONS(2437), - [anon_sym_vec] = ACTIONS(2437), - [anon_sym_dict] = ACTIONS(2437), - [anon_sym_keyset] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_abstract] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2439), - [sym_final_modifier] = ACTIONS(2437), - [sym_xhp_modifier] = ACTIONS(2437), - [sym_xhp_identifier] = ACTIONS(2437), - [sym_xhp_class_identifier] = ACTIONS(2439), + [1136] = { + [sym_identifier] = ACTIONS(2469), + [sym_variable] = ACTIONS(2471), + [sym_pipe_variable] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_newtype] = ACTIONS(2469), + [anon_sym_shape] = ACTIONS(2469), + [anon_sym_tuple] = ACTIONS(2469), + [anon_sym_clone] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_include_once] = ACTIONS(2469), + [anon_sym_require] = ACTIONS(2469), + [anon_sym_require_once] = ACTIONS(2469), + [anon_sym_BSLASH] = ACTIONS(2471), + [anon_sym_self] = ACTIONS(2469), + [anon_sym_parent] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_LT_LT_LT] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_echo] = ACTIONS(2469), + [anon_sym_unset] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_concurrent] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_function] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_case] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_foreach] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [sym_integer] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_True] = ACTIONS(2469), + [anon_sym_TRUE] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_False] = ACTIONS(2469), + [anon_sym_FALSE] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [anon_sym_Null] = ACTIONS(2469), + [anon_sym_NULL] = ACTIONS(2469), + [sym_string] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_array] = ACTIONS(2469), + [anon_sym_varray] = ACTIONS(2469), + [anon_sym_darray] = ACTIONS(2469), + [anon_sym_vec] = ACTIONS(2469), + [anon_sym_dict] = ACTIONS(2469), + [anon_sym_keyset] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_abstract] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2471), + [sym_final_modifier] = ACTIONS(2469), + [sym_xhp_modifier] = ACTIONS(2469), + [sym_xhp_identifier] = ACTIONS(2469), + [sym_xhp_class_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(3), }, - [1205] = { - [sym_identifier] = ACTIONS(2413), - [sym_variable] = ACTIONS(2415), - [sym_pipe_variable] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_newtype] = ACTIONS(2413), - [anon_sym_shape] = ACTIONS(2413), - [anon_sym_tuple] = ACTIONS(2413), - [anon_sym_clone] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_print] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_LT_LT] = ACTIONS(2413), - [anon_sym_LT_LT_LT] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_echo] = ACTIONS(2413), - [anon_sym_unset] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_concurrent] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_elseif] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_foreach] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [sym_float] = ACTIONS(2415), - [sym_integer] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_True] = ACTIONS(2413), - [anon_sym_TRUE] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [anon_sym_False] = ACTIONS(2413), - [anon_sym_FALSE] = ACTIONS(2413), - [anon_sym_null] = ACTIONS(2413), - [anon_sym_Null] = ACTIONS(2413), - [anon_sym_NULL] = ACTIONS(2413), - [sym_string] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_array] = ACTIONS(2413), - [anon_sym_varray] = ACTIONS(2413), - [anon_sym_darray] = ACTIONS(2413), - [anon_sym_vec] = ACTIONS(2413), - [anon_sym_dict] = ACTIONS(2413), - [anon_sym_keyset] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_await] = ACTIONS(2413), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2413), - [anon_sym_trait] = ACTIONS(2413), - [anon_sym_interface] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_abstract] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2415), - [sym_final_modifier] = ACTIONS(2413), - [sym_xhp_modifier] = ACTIONS(2413), - [sym_xhp_identifier] = ACTIONS(2413), - [sym_xhp_class_identifier] = ACTIONS(2415), + [1137] = { + [sym_identifier] = ACTIONS(2461), + [sym_variable] = ACTIONS(2463), + [sym_pipe_variable] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_newtype] = ACTIONS(2461), + [anon_sym_shape] = ACTIONS(2461), + [anon_sym_tuple] = ACTIONS(2461), + [anon_sym_clone] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_include] = ACTIONS(2461), + [anon_sym_include_once] = ACTIONS(2461), + [anon_sym_require] = ACTIONS(2461), + [anon_sym_require_once] = ACTIONS(2461), + [anon_sym_BSLASH] = ACTIONS(2463), + [anon_sym_self] = ACTIONS(2461), + [anon_sym_parent] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_LT_LT_LT] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_echo] = ACTIONS(2461), + [anon_sym_unset] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_concurrent] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_function] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_case] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_foreach] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_using] = ACTIONS(2461), + [sym_float] = ACTIONS(2463), + [sym_integer] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_True] = ACTIONS(2461), + [anon_sym_TRUE] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_False] = ACTIONS(2461), + [anon_sym_FALSE] = ACTIONS(2461), + [anon_sym_null] = ACTIONS(2461), + [anon_sym_Null] = ACTIONS(2461), + [anon_sym_NULL] = ACTIONS(2461), + [sym_string] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_array] = ACTIONS(2461), + [anon_sym_varray] = ACTIONS(2461), + [anon_sym_darray] = ACTIONS(2461), + [anon_sym_vec] = ACTIONS(2461), + [anon_sym_dict] = ACTIONS(2461), + [anon_sym_keyset] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_list] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_interface] = ACTIONS(2461), + [anon_sym_class] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_abstract] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2463), + [sym_final_modifier] = ACTIONS(2461), + [sym_xhp_modifier] = ACTIONS(2461), + [sym_xhp_identifier] = ACTIONS(2461), + [sym_xhp_class_identifier] = ACTIONS(2463), [sym_comment] = ACTIONS(3), }, - [1206] = { - [sym_identifier] = ACTIONS(2421), - [sym_variable] = ACTIONS(2423), - [sym_pipe_variable] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_newtype] = ACTIONS(2421), - [anon_sym_shape] = ACTIONS(2421), - [anon_sym_tuple] = ACTIONS(2421), - [anon_sym_clone] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LT_LT_LT] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_echo] = ACTIONS(2421), - [anon_sym_unset] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_concurrent] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_elseif] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_foreach] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [sym_float] = ACTIONS(2423), - [sym_integer] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_True] = ACTIONS(2421), - [anon_sym_TRUE] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [anon_sym_False] = ACTIONS(2421), - [anon_sym_FALSE] = ACTIONS(2421), - [anon_sym_null] = ACTIONS(2421), - [anon_sym_Null] = ACTIONS(2421), - [anon_sym_NULL] = ACTIONS(2421), - [sym_string] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_array] = ACTIONS(2421), - [anon_sym_varray] = ACTIONS(2421), - [anon_sym_darray] = ACTIONS(2421), - [anon_sym_vec] = ACTIONS(2421), - [anon_sym_dict] = ACTIONS(2421), - [anon_sym_keyset] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_interface] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_abstract] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2423), - [sym_final_modifier] = ACTIONS(2421), - [sym_xhp_modifier] = ACTIONS(2421), - [sym_xhp_identifier] = ACTIONS(2421), - [sym_xhp_class_identifier] = ACTIONS(2423), + [1138] = { + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2313), + [sym_variable] = ACTIONS(2315), + [sym_pipe_variable] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_newtype] = ACTIONS(2313), + [anon_sym_shape] = ACTIONS(2313), + [anon_sym_tuple] = ACTIONS(2313), + [anon_sym_clone] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_print] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_include] = ACTIONS(2313), + [anon_sym_include_once] = ACTIONS(2313), + [anon_sym_require] = ACTIONS(2313), + [anon_sym_require_once] = ACTIONS(2313), + [anon_sym_BSLASH] = ACTIONS(2315), + [anon_sym_self] = ACTIONS(2313), + [anon_sym_parent] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_LT_LT] = ACTIONS(2313), + [anon_sym_LT_LT_LT] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_echo] = ACTIONS(2313), + [anon_sym_unset] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_concurrent] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_elseif] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [sym_float] = ACTIONS(2315), + [sym_integer] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_True] = ACTIONS(2313), + [anon_sym_TRUE] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_False] = ACTIONS(2313), + [anon_sym_FALSE] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [anon_sym_Null] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [sym_string] = ACTIONS(2315), + [anon_sym_AT] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_array] = ACTIONS(2313), + [anon_sym_varray] = ACTIONS(2313), + [anon_sym_darray] = ACTIONS(2313), + [anon_sym_vec] = ACTIONS(2313), + [anon_sym_dict] = ACTIONS(2313), + [anon_sym_keyset] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2315), + [sym_final_modifier] = ACTIONS(2313), + [sym_xhp_modifier] = ACTIONS(2313), + [sym_xhp_identifier] = ACTIONS(2313), + [sym_xhp_class_identifier] = ACTIONS(2315), [sym_comment] = ACTIONS(3), }, - [1207] = { - [ts_builtin_sym_end] = ACTIONS(2411), - [sym_identifier] = ACTIONS(2409), - [sym_variable] = ACTIONS(2411), - [sym_pipe_variable] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_newtype] = ACTIONS(2409), - [anon_sym_shape] = ACTIONS(2409), - [anon_sym_tuple] = ACTIONS(2409), - [anon_sym_clone] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(2409), - [anon_sym_LT_LT_LT] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_echo] = ACTIONS(2409), - [anon_sym_unset] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_concurrent] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_function] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_elseif] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_foreach] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [sym_float] = ACTIONS(2411), - [sym_integer] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_True] = ACTIONS(2409), - [anon_sym_TRUE] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [anon_sym_False] = ACTIONS(2409), - [anon_sym_FALSE] = ACTIONS(2409), - [anon_sym_null] = ACTIONS(2409), - [anon_sym_Null] = ACTIONS(2409), - [anon_sym_NULL] = ACTIONS(2409), - [sym_string] = ACTIONS(2411), - [anon_sym_AT] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_array] = ACTIONS(2409), - [anon_sym_varray] = ACTIONS(2409), - [anon_sym_darray] = ACTIONS(2409), - [anon_sym_vec] = ACTIONS(2409), - [anon_sym_dict] = ACTIONS(2409), - [anon_sym_keyset] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_trait] = ACTIONS(2409), - [anon_sym_interface] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_abstract] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(2411), - [sym_final_modifier] = ACTIONS(2409), - [sym_xhp_modifier] = ACTIONS(2409), - [sym_xhp_identifier] = ACTIONS(2409), - [sym_xhp_class_identifier] = ACTIONS(2411), + [1139] = { + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2341), + [sym_variable] = ACTIONS(2343), + [sym_pipe_variable] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_newtype] = ACTIONS(2341), + [anon_sym_shape] = ACTIONS(2341), + [anon_sym_tuple] = ACTIONS(2341), + [anon_sym_clone] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_print] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_include] = ACTIONS(2341), + [anon_sym_include_once] = ACTIONS(2341), + [anon_sym_require] = ACTIONS(2341), + [anon_sym_require_once] = ACTIONS(2341), + [anon_sym_BSLASH] = ACTIONS(2343), + [anon_sym_self] = ACTIONS(2341), + [anon_sym_parent] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_LT_LT_LT] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_echo] = ACTIONS(2341), + [anon_sym_unset] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_concurrent] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_function] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_elseif] = ACTIONS(2341), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_foreach] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [sym_float] = ACTIONS(2343), + [sym_integer] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_True] = ACTIONS(2341), + [anon_sym_TRUE] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_False] = ACTIONS(2341), + [anon_sym_FALSE] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [anon_sym_Null] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [sym_string] = ACTIONS(2343), + [anon_sym_AT] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_array] = ACTIONS(2341), + [anon_sym_varray] = ACTIONS(2341), + [anon_sym_darray] = ACTIONS(2341), + [anon_sym_vec] = ACTIONS(2341), + [anon_sym_dict] = ACTIONS(2341), + [anon_sym_keyset] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_abstract] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2343), + [sym_final_modifier] = ACTIONS(2341), + [sym_xhp_modifier] = ACTIONS(2341), + [sym_xhp_identifier] = ACTIONS(2341), + [sym_xhp_class_identifier] = ACTIONS(2343), [sym_comment] = ACTIONS(3), }, - [1208] = { - [sym_identifier] = ACTIONS(2201), - [sym_variable] = ACTIONS(2203), - [sym_pipe_variable] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_newtype] = ACTIONS(2201), - [anon_sym_shape] = ACTIONS(2201), - [anon_sym_tuple] = ACTIONS(2201), - [anon_sym_clone] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_print] = ACTIONS(2201), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_LT_LT_LT] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_throw] = ACTIONS(2201), - [anon_sym_echo] = ACTIONS(2201), - [anon_sym_unset] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_concurrent] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_function] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_elseif] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_switch] = ACTIONS(2201), - [anon_sym_foreach] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_using] = ACTIONS(2201), - [sym_float] = ACTIONS(2203), - [sym_integer] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_True] = ACTIONS(2201), - [anon_sym_TRUE] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_False] = ACTIONS(2201), - [anon_sym_FALSE] = ACTIONS(2201), - [anon_sym_null] = ACTIONS(2201), - [anon_sym_Null] = ACTIONS(2201), - [anon_sym_NULL] = ACTIONS(2201), - [sym_string] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_array] = ACTIONS(2201), - [anon_sym_varray] = ACTIONS(2201), - [anon_sym_darray] = ACTIONS(2201), - [anon_sym_vec] = ACTIONS(2201), - [anon_sym_dict] = ACTIONS(2201), - [anon_sym_keyset] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_class] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2203), - [sym_final_modifier] = ACTIONS(2201), - [sym_xhp_modifier] = ACTIONS(2201), - [sym_xhp_identifier] = ACTIONS(2201), - [sym_xhp_class_identifier] = ACTIONS(2203), + [1140] = { + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2333), + [sym_variable] = ACTIONS(2335), + [sym_pipe_variable] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_newtype] = ACTIONS(2333), + [anon_sym_shape] = ACTIONS(2333), + [anon_sym_tuple] = ACTIONS(2333), + [anon_sym_clone] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_print] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_include] = ACTIONS(2333), + [anon_sym_include_once] = ACTIONS(2333), + [anon_sym_require] = ACTIONS(2333), + [anon_sym_require_once] = ACTIONS(2333), + [anon_sym_BSLASH] = ACTIONS(2335), + [anon_sym_self] = ACTIONS(2333), + [anon_sym_parent] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_LT_LT] = ACTIONS(2333), + [anon_sym_LT_LT_LT] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_echo] = ACTIONS(2333), + [anon_sym_unset] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_concurrent] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_elseif] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_foreach] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [sym_float] = ACTIONS(2335), + [sym_integer] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_True] = ACTIONS(2333), + [anon_sym_TRUE] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_False] = ACTIONS(2333), + [anon_sym_FALSE] = ACTIONS(2333), + [anon_sym_null] = ACTIONS(2333), + [anon_sym_Null] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [sym_string] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_array] = ACTIONS(2333), + [anon_sym_varray] = ACTIONS(2333), + [anon_sym_darray] = ACTIONS(2333), + [anon_sym_vec] = ACTIONS(2333), + [anon_sym_dict] = ACTIONS(2333), + [anon_sym_keyset] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_list] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2335), + [sym_final_modifier] = ACTIONS(2333), + [sym_xhp_modifier] = ACTIONS(2333), + [sym_xhp_identifier] = ACTIONS(2333), + [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, - [1209] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [sym_variable] = ACTIONS(2407), - [sym_pipe_variable] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_newtype] = ACTIONS(2405), - [anon_sym_shape] = ACTIONS(2405), - [anon_sym_tuple] = ACTIONS(2405), - [anon_sym_clone] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), - [anon_sym_LT_LT_LT] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_echo] = ACTIONS(2405), - [anon_sym_unset] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_concurrent] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_elseif] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_foreach] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [sym_float] = ACTIONS(2407), - [sym_integer] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_True] = ACTIONS(2405), - [anon_sym_TRUE] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [anon_sym_False] = ACTIONS(2405), - [anon_sym_FALSE] = ACTIONS(2405), - [anon_sym_null] = ACTIONS(2405), - [anon_sym_Null] = ACTIONS(2405), - [anon_sym_NULL] = ACTIONS(2405), - [sym_string] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_array] = ACTIONS(2405), - [anon_sym_varray] = ACTIONS(2405), - [anon_sym_darray] = ACTIONS(2405), - [anon_sym_vec] = ACTIONS(2405), - [anon_sym_dict] = ACTIONS(2405), - [anon_sym_keyset] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_trait] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_abstract] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2407), - [sym_final_modifier] = ACTIONS(2405), - [sym_xhp_modifier] = ACTIONS(2405), - [sym_xhp_identifier] = ACTIONS(2405), - [sym_xhp_class_identifier] = ACTIONS(2407), + [1141] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1210] = { + [1142] = { [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2093), [sym_variable] = ACTIONS(2095), @@ -149321,888 +136911,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1211] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_identifier] = ACTIONS(2397), - [sym_variable] = ACTIONS(2399), - [sym_pipe_variable] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_newtype] = ACTIONS(2397), - [anon_sym_shape] = ACTIONS(2397), - [anon_sym_tuple] = ACTIONS(2397), - [anon_sym_clone] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_print] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LT_LT_LT] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_echo] = ACTIONS(2397), - [anon_sym_unset] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_concurrent] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_elseif] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_foreach] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [sym_float] = ACTIONS(2399), - [sym_integer] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_True] = ACTIONS(2397), - [anon_sym_TRUE] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [anon_sym_False] = ACTIONS(2397), - [anon_sym_FALSE] = ACTIONS(2397), - [anon_sym_null] = ACTIONS(2397), - [anon_sym_Null] = ACTIONS(2397), - [anon_sym_NULL] = ACTIONS(2397), - [sym_string] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_array] = ACTIONS(2397), - [anon_sym_varray] = ACTIONS(2397), - [anon_sym_darray] = ACTIONS(2397), - [anon_sym_vec] = ACTIONS(2397), - [anon_sym_dict] = ACTIONS(2397), - [anon_sym_keyset] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_interface] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_abstract] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(2399), - [sym_final_modifier] = ACTIONS(2397), - [sym_xhp_modifier] = ACTIONS(2397), - [sym_xhp_identifier] = ACTIONS(2397), - [sym_xhp_class_identifier] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - }, - [1212] = { - [sym_identifier] = ACTIONS(2497), - [sym_variable] = ACTIONS(2499), - [sym_pipe_variable] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_newtype] = ACTIONS(2497), - [anon_sym_shape] = ACTIONS(2497), - [anon_sym_tuple] = ACTIONS(2497), - [anon_sym_clone] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_print] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_LT_LT_LT] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_echo] = ACTIONS(2497), - [anon_sym_unset] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_concurrent] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_elseif] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_foreach] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_using] = ACTIONS(2497), - [sym_float] = ACTIONS(2499), - [sym_integer] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_True] = ACTIONS(2497), - [anon_sym_TRUE] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_False] = ACTIONS(2497), - [anon_sym_FALSE] = ACTIONS(2497), - [anon_sym_null] = ACTIONS(2497), - [anon_sym_Null] = ACTIONS(2497), - [anon_sym_NULL] = ACTIONS(2497), - [sym_string] = ACTIONS(2499), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_array] = ACTIONS(2497), - [anon_sym_varray] = ACTIONS(2497), - [anon_sym_darray] = ACTIONS(2497), - [anon_sym_vec] = ACTIONS(2497), - [anon_sym_dict] = ACTIONS(2497), - [anon_sym_keyset] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_trait] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2499), - [sym_final_modifier] = ACTIONS(2497), - [sym_xhp_modifier] = ACTIONS(2497), - [sym_xhp_identifier] = ACTIONS(2497), - [sym_xhp_class_identifier] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - }, - [1213] = { - [ts_builtin_sym_end] = ACTIONS(2391), - [sym_identifier] = ACTIONS(2389), - [sym_variable] = ACTIONS(2391), - [sym_pipe_variable] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_newtype] = ACTIONS(2389), - [anon_sym_shape] = ACTIONS(2389), - [anon_sym_tuple] = ACTIONS(2389), - [anon_sym_clone] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_print] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2389), - [anon_sym_LT_LT_LT] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_echo] = ACTIONS(2389), - [anon_sym_unset] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_concurrent] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_elseif] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_foreach] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_using] = ACTIONS(2389), - [sym_float] = ACTIONS(2391), - [sym_integer] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_True] = ACTIONS(2389), - [anon_sym_TRUE] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [anon_sym_False] = ACTIONS(2389), - [anon_sym_FALSE] = ACTIONS(2389), - [anon_sym_null] = ACTIONS(2389), - [anon_sym_Null] = ACTIONS(2389), - [anon_sym_NULL] = ACTIONS(2389), - [sym_string] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_array] = ACTIONS(2389), - [anon_sym_varray] = ACTIONS(2389), - [anon_sym_darray] = ACTIONS(2389), - [anon_sym_vec] = ACTIONS(2389), - [anon_sym_dict] = ACTIONS(2389), - [anon_sym_keyset] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_class] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2391), - [sym_final_modifier] = ACTIONS(2389), - [sym_xhp_modifier] = ACTIONS(2389), - [sym_xhp_identifier] = ACTIONS(2389), - [sym_xhp_class_identifier] = ACTIONS(2391), - [sym_comment] = ACTIONS(3), - }, - [1214] = { - [sym_identifier] = ACTIONS(2221), - [sym_variable] = ACTIONS(2223), - [sym_pipe_variable] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_newtype] = ACTIONS(2221), - [anon_sym_shape] = ACTIONS(2221), - [anon_sym_tuple] = ACTIONS(2221), - [anon_sym_clone] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_print] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_LT_LT_LT] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_echo] = ACTIONS(2221), - [anon_sym_unset] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_concurrent] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_elseif] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_foreach] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [sym_float] = ACTIONS(2223), - [sym_integer] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_True] = ACTIONS(2221), - [anon_sym_TRUE] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_False] = ACTIONS(2221), - [anon_sym_FALSE] = ACTIONS(2221), - [anon_sym_null] = ACTIONS(2221), - [anon_sym_Null] = ACTIONS(2221), - [anon_sym_NULL] = ACTIONS(2221), - [sym_string] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_array] = ACTIONS(2221), - [anon_sym_varray] = ACTIONS(2221), - [anon_sym_darray] = ACTIONS(2221), - [anon_sym_vec] = ACTIONS(2221), - [anon_sym_dict] = ACTIONS(2221), - [anon_sym_keyset] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2223), - [sym_final_modifier] = ACTIONS(2221), - [sym_xhp_modifier] = ACTIONS(2221), - [sym_xhp_identifier] = ACTIONS(2221), - [sym_xhp_class_identifier] = ACTIONS(2223), - [sym_comment] = ACTIONS(3), - }, - [1215] = { - [sym_identifier] = ACTIONS(2225), - [sym_variable] = ACTIONS(2227), - [sym_pipe_variable] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_newtype] = ACTIONS(2225), - [anon_sym_shape] = ACTIONS(2225), - [anon_sym_tuple] = ACTIONS(2225), - [anon_sym_clone] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_print] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_LT_LT_LT] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_echo] = ACTIONS(2225), - [anon_sym_unset] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_concurrent] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_elseif] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_foreach] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [sym_float] = ACTIONS(2227), - [sym_integer] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_True] = ACTIONS(2225), - [anon_sym_TRUE] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [anon_sym_False] = ACTIONS(2225), - [anon_sym_FALSE] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2225), - [anon_sym_Null] = ACTIONS(2225), - [anon_sym_NULL] = ACTIONS(2225), - [sym_string] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_array] = ACTIONS(2225), - [anon_sym_varray] = ACTIONS(2225), - [anon_sym_darray] = ACTIONS(2225), - [anon_sym_vec] = ACTIONS(2225), - [anon_sym_dict] = ACTIONS(2225), - [anon_sym_keyset] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2227), - [sym_final_modifier] = ACTIONS(2225), - [sym_xhp_modifier] = ACTIONS(2225), - [sym_xhp_identifier] = ACTIONS(2225), - [sym_xhp_class_identifier] = ACTIONS(2227), - [sym_comment] = ACTIONS(3), - }, - [1216] = { - [sym_identifier] = ACTIONS(2229), - [sym_variable] = ACTIONS(2231), - [sym_pipe_variable] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_newtype] = ACTIONS(2229), - [anon_sym_shape] = ACTIONS(2229), - [anon_sym_tuple] = ACTIONS(2229), - [anon_sym_clone] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_print] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_LT_LT_LT] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_echo] = ACTIONS(2229), - [anon_sym_unset] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_concurrent] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_elseif] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_foreach] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [sym_float] = ACTIONS(2231), - [sym_integer] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_True] = ACTIONS(2229), - [anon_sym_TRUE] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_False] = ACTIONS(2229), - [anon_sym_FALSE] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_Null] = ACTIONS(2229), - [anon_sym_NULL] = ACTIONS(2229), - [sym_string] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_array] = ACTIONS(2229), - [anon_sym_varray] = ACTIONS(2229), - [anon_sym_darray] = ACTIONS(2229), - [anon_sym_vec] = ACTIONS(2229), - [anon_sym_dict] = ACTIONS(2229), - [anon_sym_keyset] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2231), - [sym_final_modifier] = ACTIONS(2229), - [sym_xhp_modifier] = ACTIONS(2229), - [sym_xhp_identifier] = ACTIONS(2229), - [sym_xhp_class_identifier] = ACTIONS(2231), - [sym_comment] = ACTIONS(3), - }, - [1217] = { - [sym_identifier] = ACTIONS(2233), - [sym_variable] = ACTIONS(2235), - [sym_pipe_variable] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_newtype] = ACTIONS(2233), - [anon_sym_shape] = ACTIONS(2233), - [anon_sym_tuple] = ACTIONS(2233), - [anon_sym_clone] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_print] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_LT_LT_LT] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_echo] = ACTIONS(2233), - [anon_sym_unset] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_concurrent] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_elseif] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_foreach] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [sym_float] = ACTIONS(2235), - [sym_integer] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_True] = ACTIONS(2233), - [anon_sym_TRUE] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_False] = ACTIONS(2233), - [anon_sym_FALSE] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_Null] = ACTIONS(2233), - [anon_sym_NULL] = ACTIONS(2233), - [sym_string] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_array] = ACTIONS(2233), - [anon_sym_varray] = ACTIONS(2233), - [anon_sym_darray] = ACTIONS(2233), - [anon_sym_vec] = ACTIONS(2233), - [anon_sym_dict] = ACTIONS(2233), - [anon_sym_keyset] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2235), - [sym_final_modifier] = ACTIONS(2233), - [sym_xhp_modifier] = ACTIONS(2233), - [sym_xhp_identifier] = ACTIONS(2233), - [sym_xhp_class_identifier] = ACTIONS(2235), - [sym_comment] = ACTIONS(3), - }, - [1218] = { - [sym_identifier] = ACTIONS(2237), - [sym_variable] = ACTIONS(2239), - [sym_pipe_variable] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_newtype] = ACTIONS(2237), - [anon_sym_shape] = ACTIONS(2237), - [anon_sym_tuple] = ACTIONS(2237), - [anon_sym_clone] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_print] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_LT_LT_LT] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_echo] = ACTIONS(2237), - [anon_sym_unset] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_concurrent] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_elseif] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_foreach] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [sym_float] = ACTIONS(2239), - [sym_integer] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_True] = ACTIONS(2237), - [anon_sym_TRUE] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_False] = ACTIONS(2237), - [anon_sym_FALSE] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [anon_sym_Null] = ACTIONS(2237), - [anon_sym_NULL] = ACTIONS(2237), - [sym_string] = ACTIONS(2239), - [anon_sym_AT] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_array] = ACTIONS(2237), - [anon_sym_varray] = ACTIONS(2237), - [anon_sym_darray] = ACTIONS(2237), - [anon_sym_vec] = ACTIONS(2237), - [anon_sym_dict] = ACTIONS(2237), - [anon_sym_keyset] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2239), - [sym_final_modifier] = ACTIONS(2237), - [sym_xhp_modifier] = ACTIONS(2237), - [sym_xhp_identifier] = ACTIONS(2237), - [sym_xhp_class_identifier] = ACTIONS(2239), + [1143] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1219] = { - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2385), - [sym_variable] = ACTIONS(2387), - [sym_pipe_variable] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_newtype] = ACTIONS(2385), - [anon_sym_shape] = ACTIONS(2385), - [anon_sym_tuple] = ACTIONS(2385), - [anon_sym_clone] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_print] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_LT_LT] = ACTIONS(2385), - [anon_sym_LT_LT_LT] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_echo] = ACTIONS(2385), - [anon_sym_unset] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_concurrent] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_function] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_elseif] = ACTIONS(2385), - [anon_sym_else] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_foreach] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [sym_float] = ACTIONS(2387), - [sym_integer] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_True] = ACTIONS(2385), - [anon_sym_TRUE] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_False] = ACTIONS(2385), - [anon_sym_FALSE] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2385), - [anon_sym_Null] = ACTIONS(2385), - [anon_sym_NULL] = ACTIONS(2385), - [sym_string] = ACTIONS(2387), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_array] = ACTIONS(2385), - [anon_sym_varray] = ACTIONS(2385), - [anon_sym_darray] = ACTIONS(2385), - [anon_sym_vec] = ACTIONS(2385), - [anon_sym_dict] = ACTIONS(2385), - [anon_sym_keyset] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_interface] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_abstract] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(2387), - [sym_final_modifier] = ACTIONS(2385), - [sym_xhp_modifier] = ACTIONS(2385), - [sym_xhp_identifier] = ACTIONS(2385), - [sym_xhp_class_identifier] = ACTIONS(2387), + [1144] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1220] = { - [ts_builtin_sym_end] = ACTIONS(2371), - [sym_identifier] = ACTIONS(2369), - [sym_variable] = ACTIONS(2371), - [sym_pipe_variable] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_newtype] = ACTIONS(2369), - [anon_sym_shape] = ACTIONS(2369), - [anon_sym_tuple] = ACTIONS(2369), - [anon_sym_clone] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_print] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_throw] = ACTIONS(2369), - [anon_sym_echo] = ACTIONS(2369), - [anon_sym_unset] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_concurrent] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_elseif] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_switch] = ACTIONS(2369), - [anon_sym_foreach] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_using] = ACTIONS(2369), - [sym_float] = ACTIONS(2371), - [sym_integer] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_True] = ACTIONS(2369), - [anon_sym_TRUE] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_False] = ACTIONS(2369), - [anon_sym_FALSE] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [anon_sym_Null] = ACTIONS(2369), - [anon_sym_NULL] = ACTIONS(2369), - [sym_string] = ACTIONS(2371), - [anon_sym_AT] = ACTIONS(2371), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_array] = ACTIONS(2369), - [anon_sym_varray] = ACTIONS(2369), - [anon_sym_darray] = ACTIONS(2369), - [anon_sym_vec] = ACTIONS(2369), - [anon_sym_dict] = ACTIONS(2369), - [anon_sym_keyset] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2371), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_interface] = ACTIONS(2369), - [anon_sym_class] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_abstract] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(2371), - [sym_final_modifier] = ACTIONS(2369), - [sym_xhp_modifier] = ACTIONS(2369), - [sym_xhp_identifier] = ACTIONS(2369), - [sym_xhp_class_identifier] = ACTIONS(2371), + [1145] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1221] = { - [ts_builtin_sym_end] = ACTIONS(2359), + [1146] = { [sym_identifier] = ACTIONS(2357), [sym_variable] = ACTIONS(2359), [sym_pipe_variable] = ACTIONS(2359), @@ -150224,6 +137197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2357), [anon_sym_LT_LT] = ACTIONS(2357), [anon_sym_LT_LT_LT] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), [anon_sym_LBRACE] = ACTIONS(2359), [anon_sym_SEMI] = ACTIONS(2359), [anon_sym_return] = ACTIONS(2357), @@ -150238,9 +137212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2357), [anon_sym_const] = ACTIONS(2357), [anon_sym_if] = ACTIONS(2357), - [anon_sym_elseif] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), [anon_sym_switch] = ACTIONS(2357), + [anon_sym_case] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), [anon_sym_foreach] = ACTIONS(2357), [anon_sym_while] = ACTIONS(2357), [anon_sym_do] = ACTIONS(2357), @@ -150289,2911 +137263,3792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2359), [sym_comment] = ACTIONS(3), }, - [1222] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2349), - [sym_variable] = ACTIONS(2351), - [sym_pipe_variable] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_newtype] = ACTIONS(2349), - [anon_sym_shape] = ACTIONS(2349), - [anon_sym_tuple] = ACTIONS(2349), - [anon_sym_clone] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_print] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_LT_LT_LT] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_echo] = ACTIONS(2349), - [anon_sym_unset] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_concurrent] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_elseif] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_foreach] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_using] = ACTIONS(2349), - [sym_float] = ACTIONS(2351), - [sym_integer] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_True] = ACTIONS(2349), - [anon_sym_TRUE] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_False] = ACTIONS(2349), - [anon_sym_FALSE] = ACTIONS(2349), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_Null] = ACTIONS(2349), - [anon_sym_NULL] = ACTIONS(2349), - [sym_string] = ACTIONS(2351), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_array] = ACTIONS(2349), - [anon_sym_varray] = ACTIONS(2349), - [anon_sym_darray] = ACTIONS(2349), - [anon_sym_vec] = ACTIONS(2349), - [anon_sym_dict] = ACTIONS(2349), - [anon_sym_keyset] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(2351), - [sym_final_modifier] = ACTIONS(2349), - [sym_xhp_modifier] = ACTIONS(2349), - [sym_xhp_identifier] = ACTIONS(2349), - [sym_xhp_class_identifier] = ACTIONS(2351), + [1147] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1148] = { + [sym_identifier] = ACTIONS(2453), + [sym_variable] = ACTIONS(2455), + [sym_pipe_variable] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_newtype] = ACTIONS(2453), + [anon_sym_shape] = ACTIONS(2453), + [anon_sym_tuple] = ACTIONS(2453), + [anon_sym_clone] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_include] = ACTIONS(2453), + [anon_sym_include_once] = ACTIONS(2453), + [anon_sym_require] = ACTIONS(2453), + [anon_sym_require_once] = ACTIONS(2453), + [anon_sym_BSLASH] = ACTIONS(2455), + [anon_sym_self] = ACTIONS(2453), + [anon_sym_parent] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_LT_LT_LT] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_throw] = ACTIONS(2453), + [anon_sym_echo] = ACTIONS(2453), + [anon_sym_unset] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_concurrent] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_case] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_foreach] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_using] = ACTIONS(2453), + [sym_float] = ACTIONS(2455), + [sym_integer] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_True] = ACTIONS(2453), + [anon_sym_TRUE] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_False] = ACTIONS(2453), + [anon_sym_FALSE] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [anon_sym_Null] = ACTIONS(2453), + [anon_sym_NULL] = ACTIONS(2453), + [sym_string] = ACTIONS(2455), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_array] = ACTIONS(2453), + [anon_sym_varray] = ACTIONS(2453), + [anon_sym_darray] = ACTIONS(2453), + [anon_sym_vec] = ACTIONS(2453), + [anon_sym_dict] = ACTIONS(2453), + [anon_sym_keyset] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_abstract] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2455), + [sym_final_modifier] = ACTIONS(2453), + [sym_xhp_modifier] = ACTIONS(2453), + [sym_xhp_identifier] = ACTIONS(2453), + [sym_xhp_class_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(3), + }, + [1149] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1150] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1151] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1152] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1153] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1154] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1155] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1223] = { - [sym_identifier] = ACTIONS(2241), - [sym_variable] = ACTIONS(2243), - [sym_pipe_variable] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_newtype] = ACTIONS(2241), - [anon_sym_shape] = ACTIONS(2241), - [anon_sym_tuple] = ACTIONS(2241), - [anon_sym_clone] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_print] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_include] = ACTIONS(2241), - [anon_sym_include_once] = ACTIONS(2241), - [anon_sym_require] = ACTIONS(2241), - [anon_sym_require_once] = ACTIONS(2241), - [anon_sym_BSLASH] = ACTIONS(2243), - [anon_sym_self] = ACTIONS(2241), - [anon_sym_parent] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_LT_LT_LT] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_echo] = ACTIONS(2241), - [anon_sym_unset] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_concurrent] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_elseif] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_foreach] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [sym_float] = ACTIONS(2243), - [sym_integer] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_True] = ACTIONS(2241), - [anon_sym_TRUE] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [anon_sym_False] = ACTIONS(2241), - [anon_sym_FALSE] = ACTIONS(2241), - [anon_sym_null] = ACTIONS(2241), - [anon_sym_Null] = ACTIONS(2241), - [anon_sym_NULL] = ACTIONS(2241), - [sym_string] = ACTIONS(2243), - [anon_sym_AT] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_array] = ACTIONS(2241), - [anon_sym_varray] = ACTIONS(2241), - [anon_sym_darray] = ACTIONS(2241), - [anon_sym_vec] = ACTIONS(2241), - [anon_sym_dict] = ACTIONS(2241), - [anon_sym_keyset] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2243), - [sym_final_modifier] = ACTIONS(2241), - [sym_xhp_modifier] = ACTIONS(2241), - [sym_xhp_identifier] = ACTIONS(2241), - [sym_xhp_class_identifier] = ACTIONS(2243), + [1156] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1224] = { - [sym_identifier] = ACTIONS(2245), - [sym_variable] = ACTIONS(2247), - [sym_pipe_variable] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_newtype] = ACTIONS(2245), - [anon_sym_shape] = ACTIONS(2245), - [anon_sym_tuple] = ACTIONS(2245), - [anon_sym_clone] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_print] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_LT_LT_LT] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_echo] = ACTIONS(2245), - [anon_sym_unset] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_concurrent] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_elseif] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_foreach] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [sym_float] = ACTIONS(2247), - [sym_integer] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_True] = ACTIONS(2245), - [anon_sym_TRUE] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_False] = ACTIONS(2245), - [anon_sym_FALSE] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_Null] = ACTIONS(2245), - [anon_sym_NULL] = ACTIONS(2245), - [sym_string] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_array] = ACTIONS(2245), - [anon_sym_varray] = ACTIONS(2245), - [anon_sym_darray] = ACTIONS(2245), - [anon_sym_vec] = ACTIONS(2245), - [anon_sym_dict] = ACTIONS(2245), - [anon_sym_keyset] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2247), - [sym_final_modifier] = ACTIONS(2245), - [sym_xhp_modifier] = ACTIONS(2245), - [sym_xhp_identifier] = ACTIONS(2245), - [sym_xhp_class_identifier] = ACTIONS(2247), + [1157] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1225] = { - [sym_identifier] = ACTIONS(2249), - [sym_variable] = ACTIONS(2251), - [sym_pipe_variable] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_newtype] = ACTIONS(2249), - [anon_sym_shape] = ACTIONS(2249), - [anon_sym_tuple] = ACTIONS(2249), - [anon_sym_clone] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_print] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_LT_LT_LT] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_echo] = ACTIONS(2249), - [anon_sym_unset] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_concurrent] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_elseif] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_foreach] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [sym_float] = ACTIONS(2251), - [sym_integer] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_True] = ACTIONS(2249), - [anon_sym_TRUE] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [anon_sym_False] = ACTIONS(2249), - [anon_sym_FALSE] = ACTIONS(2249), - [anon_sym_null] = ACTIONS(2249), - [anon_sym_Null] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2249), - [sym_string] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_array] = ACTIONS(2249), - [anon_sym_varray] = ACTIONS(2249), - [anon_sym_darray] = ACTIONS(2249), - [anon_sym_vec] = ACTIONS(2249), - [anon_sym_dict] = ACTIONS(2249), - [anon_sym_keyset] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2251), - [sym_final_modifier] = ACTIONS(2249), - [sym_xhp_modifier] = ACTIONS(2249), - [sym_xhp_identifier] = ACTIONS(2249), - [sym_xhp_class_identifier] = ACTIONS(2251), + [1158] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1226] = { - [sym_identifier] = ACTIONS(2257), - [sym_variable] = ACTIONS(2259), - [sym_pipe_variable] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_newtype] = ACTIONS(2257), - [anon_sym_shape] = ACTIONS(2257), - [anon_sym_tuple] = ACTIONS(2257), - [anon_sym_clone] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_print] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_LT_LT_LT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_echo] = ACTIONS(2257), - [anon_sym_unset] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_concurrent] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_elseif] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_foreach] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [sym_float] = ACTIONS(2259), - [sym_integer] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_True] = ACTIONS(2257), - [anon_sym_TRUE] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_False] = ACTIONS(2257), - [anon_sym_FALSE] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2257), - [anon_sym_Null] = ACTIONS(2257), - [anon_sym_NULL] = ACTIONS(2257), - [sym_string] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_array] = ACTIONS(2257), - [anon_sym_varray] = ACTIONS(2257), - [anon_sym_darray] = ACTIONS(2257), - [anon_sym_vec] = ACTIONS(2257), - [anon_sym_dict] = ACTIONS(2257), - [anon_sym_keyset] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2259), - [sym_final_modifier] = ACTIONS(2257), - [sym_xhp_modifier] = ACTIONS(2257), - [sym_xhp_identifier] = ACTIONS(2257), - [sym_xhp_class_identifier] = ACTIONS(2259), + [1159] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1227] = { - [sym_identifier] = ACTIONS(2261), - [sym_variable] = ACTIONS(2263), - [sym_pipe_variable] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_newtype] = ACTIONS(2261), - [anon_sym_shape] = ACTIONS(2261), - [anon_sym_tuple] = ACTIONS(2261), - [anon_sym_clone] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_print] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_LT_LT_LT] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_throw] = ACTIONS(2261), - [anon_sym_echo] = ACTIONS(2261), - [anon_sym_unset] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_concurrent] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_function] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_elseif] = ACTIONS(2261), - [anon_sym_else] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(2261), - [anon_sym_foreach] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_do] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_using] = ACTIONS(2261), - [sym_float] = ACTIONS(2263), - [sym_integer] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_True] = ACTIONS(2261), - [anon_sym_TRUE] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_False] = ACTIONS(2261), - [anon_sym_FALSE] = ACTIONS(2261), - [anon_sym_null] = ACTIONS(2261), - [anon_sym_Null] = ACTIONS(2261), - [anon_sym_NULL] = ACTIONS(2261), - [sym_string] = ACTIONS(2263), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_array] = ACTIONS(2261), - [anon_sym_varray] = ACTIONS(2261), - [anon_sym_darray] = ACTIONS(2261), - [anon_sym_vec] = ACTIONS(2261), - [anon_sym_dict] = ACTIONS(2261), - [anon_sym_keyset] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_abstract] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2263), - [sym_final_modifier] = ACTIONS(2261), - [sym_xhp_modifier] = ACTIONS(2261), - [sym_xhp_identifier] = ACTIONS(2261), - [sym_xhp_class_identifier] = ACTIONS(2263), + [1160] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1228] = { - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2341), - [sym_variable] = ACTIONS(2343), - [sym_pipe_variable] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_newtype] = ACTIONS(2341), - [anon_sym_shape] = ACTIONS(2341), - [anon_sym_tuple] = ACTIONS(2341), - [anon_sym_clone] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_print] = ACTIONS(2341), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_LT_LT] = ACTIONS(2341), - [anon_sym_LT_LT_LT] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_throw] = ACTIONS(2341), - [anon_sym_echo] = ACTIONS(2341), - [anon_sym_unset] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_concurrent] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_function] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_elseif] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_foreach] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_using] = ACTIONS(2341), - [sym_float] = ACTIONS(2343), - [sym_integer] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_True] = ACTIONS(2341), - [anon_sym_TRUE] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_False] = ACTIONS(2341), - [anon_sym_FALSE] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [anon_sym_Null] = ACTIONS(2341), - [anon_sym_NULL] = ACTIONS(2341), - [sym_string] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_array] = ACTIONS(2341), - [anon_sym_varray] = ACTIONS(2341), - [anon_sym_darray] = ACTIONS(2341), - [anon_sym_vec] = ACTIONS(2341), - [anon_sym_dict] = ACTIONS(2341), - [anon_sym_keyset] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2343), - [anon_sym_DASH_DASH] = ACTIONS(2343), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_interface] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_abstract] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2343), - [sym_final_modifier] = ACTIONS(2341), - [sym_xhp_modifier] = ACTIONS(2341), - [sym_xhp_identifier] = ACTIONS(2341), - [sym_xhp_class_identifier] = ACTIONS(2343), + [1161] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1229] = { - [sym_identifier] = ACTIONS(2265), - [sym_variable] = ACTIONS(2267), - [sym_pipe_variable] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_newtype] = ACTIONS(2265), - [anon_sym_shape] = ACTIONS(2265), - [anon_sym_tuple] = ACTIONS(2265), - [anon_sym_clone] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_print] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_LT] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_echo] = ACTIONS(2265), - [anon_sym_unset] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_concurrent] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_elseif] = ACTIONS(2265), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_using] = ACTIONS(2265), - [sym_float] = ACTIONS(2267), - [sym_integer] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_True] = ACTIONS(2265), - [anon_sym_TRUE] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_False] = ACTIONS(2265), - [anon_sym_FALSE] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_Null] = ACTIONS(2265), - [anon_sym_NULL] = ACTIONS(2265), - [sym_string] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_array] = ACTIONS(2265), - [anon_sym_varray] = ACTIONS(2265), - [anon_sym_darray] = ACTIONS(2265), - [anon_sym_vec] = ACTIONS(2265), - [anon_sym_dict] = ACTIONS(2265), - [anon_sym_keyset] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2267), - [sym_final_modifier] = ACTIONS(2265), - [sym_xhp_modifier] = ACTIONS(2265), - [sym_xhp_identifier] = ACTIONS(2265), - [sym_xhp_class_identifier] = ACTIONS(2267), + [1162] = { + [sym_identifier] = ACTIONS(2441), + [sym_variable] = ACTIONS(2443), + [sym_pipe_variable] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_newtype] = ACTIONS(2441), + [anon_sym_shape] = ACTIONS(2441), + [anon_sym_tuple] = ACTIONS(2441), + [anon_sym_clone] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_include] = ACTIONS(2441), + [anon_sym_include_once] = ACTIONS(2441), + [anon_sym_require] = ACTIONS(2441), + [anon_sym_require_once] = ACTIONS(2441), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_self] = ACTIONS(2441), + [anon_sym_parent] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_LT] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_echo] = ACTIONS(2441), + [anon_sym_unset] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_concurrent] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_case] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_foreach] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [sym_float] = ACTIONS(2443), + [sym_integer] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_True] = ACTIONS(2441), + [anon_sym_TRUE] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_False] = ACTIONS(2441), + [anon_sym_FALSE] = ACTIONS(2441), + [anon_sym_null] = ACTIONS(2441), + [anon_sym_Null] = ACTIONS(2441), + [anon_sym_NULL] = ACTIONS(2441), + [sym_string] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_array] = ACTIONS(2441), + [anon_sym_varray] = ACTIONS(2441), + [anon_sym_darray] = ACTIONS(2441), + [anon_sym_vec] = ACTIONS(2441), + [anon_sym_dict] = ACTIONS(2441), + [anon_sym_keyset] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_abstract] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2443), + [sym_final_modifier] = ACTIONS(2441), + [sym_xhp_modifier] = ACTIONS(2441), + [sym_xhp_identifier] = ACTIONS(2441), + [sym_xhp_class_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(3), }, - [1230] = { - [sym_identifier] = ACTIONS(2597), - [sym_variable] = ACTIONS(2599), - [sym_pipe_variable] = ACTIONS(2599), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_newtype] = ACTIONS(2597), - [anon_sym_shape] = ACTIONS(2597), - [anon_sym_tuple] = ACTIONS(2597), - [anon_sym_clone] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_print] = ACTIONS(2597), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_include] = ACTIONS(2597), - [anon_sym_include_once] = ACTIONS(2597), - [anon_sym_require] = ACTIONS(2597), - [anon_sym_require_once] = ACTIONS(2597), - [anon_sym_BSLASH] = ACTIONS(2599), - [anon_sym_self] = ACTIONS(2597), - [anon_sym_parent] = ACTIONS(2597), - [anon_sym_static] = ACTIONS(2597), - [anon_sym_LT_LT] = ACTIONS(2597), - [anon_sym_LT_LT_LT] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_throw] = ACTIONS(2597), - [anon_sym_echo] = ACTIONS(2597), - [anon_sym_unset] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_concurrent] = ACTIONS(2597), - [anon_sym_use] = ACTIONS(2597), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_const] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_elseif] = ACTIONS(2597), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_switch] = ACTIONS(2597), - [anon_sym_foreach] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_using] = ACTIONS(2597), - [sym_float] = ACTIONS(2599), - [sym_integer] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2597), - [anon_sym_True] = ACTIONS(2597), - [anon_sym_TRUE] = ACTIONS(2597), - [anon_sym_false] = ACTIONS(2597), - [anon_sym_False] = ACTIONS(2597), - [anon_sym_FALSE] = ACTIONS(2597), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_Null] = ACTIONS(2597), - [anon_sym_NULL] = ACTIONS(2597), - [sym_string] = ACTIONS(2599), - [anon_sym_AT] = ACTIONS(2599), - [anon_sym_TILDE] = ACTIONS(2599), - [anon_sym_array] = ACTIONS(2597), - [anon_sym_varray] = ACTIONS(2597), - [anon_sym_darray] = ACTIONS(2597), - [anon_sym_vec] = ACTIONS(2597), - [anon_sym_dict] = ACTIONS(2597), - [anon_sym_keyset] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_list] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2599), - [anon_sym_PLUS_PLUS] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2599), - [anon_sym_await] = ACTIONS(2597), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_trait] = ACTIONS(2597), - [anon_sym_interface] = ACTIONS(2597), - [anon_sym_class] = ACTIONS(2597), - [anon_sym_enum] = ACTIONS(2597), - [anon_sym_abstract] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(2599), - [sym_final_modifier] = ACTIONS(2597), - [sym_xhp_modifier] = ACTIONS(2597), - [sym_xhp_identifier] = ACTIONS(2597), - [sym_xhp_class_identifier] = ACTIONS(2599), + [1163] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1231] = { - [sym_identifier] = ACTIONS(2273), - [sym_variable] = ACTIONS(2275), - [sym_pipe_variable] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_newtype] = ACTIONS(2273), - [anon_sym_shape] = ACTIONS(2273), - [anon_sym_tuple] = ACTIONS(2273), - [anon_sym_clone] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_print] = ACTIONS(2273), - [anon_sym_namespace] = ACTIONS(2273), - [anon_sym_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_LT_LT_LT] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_throw] = ACTIONS(2273), - [anon_sym_echo] = ACTIONS(2273), - [anon_sym_unset] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_concurrent] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_function] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_elseif] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_foreach] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_using] = ACTIONS(2273), - [sym_float] = ACTIONS(2275), - [sym_integer] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_True] = ACTIONS(2273), - [anon_sym_TRUE] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_False] = ACTIONS(2273), - [anon_sym_FALSE] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [anon_sym_Null] = ACTIONS(2273), - [anon_sym_NULL] = ACTIONS(2273), - [sym_string] = ACTIONS(2275), - [anon_sym_AT] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_array] = ACTIONS(2273), - [anon_sym_varray] = ACTIONS(2273), - [anon_sym_darray] = ACTIONS(2273), - [anon_sym_vec] = ACTIONS(2273), - [anon_sym_dict] = ACTIONS(2273), - [anon_sym_keyset] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_class] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_abstract] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2275), - [sym_final_modifier] = ACTIONS(2273), - [sym_xhp_modifier] = ACTIONS(2273), - [sym_xhp_identifier] = ACTIONS(2273), - [sym_xhp_class_identifier] = ACTIONS(2275), + [1164] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1232] = { - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2337), - [sym_variable] = ACTIONS(2339), - [sym_pipe_variable] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_newtype] = ACTIONS(2337), - [anon_sym_shape] = ACTIONS(2337), - [anon_sym_tuple] = ACTIONS(2337), - [anon_sym_clone] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_print] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2337), - [anon_sym_LT_LT_LT] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_echo] = ACTIONS(2337), - [anon_sym_unset] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_concurrent] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_function] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_elseif] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_foreach] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [sym_float] = ACTIONS(2339), - [sym_integer] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_True] = ACTIONS(2337), - [anon_sym_TRUE] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [anon_sym_False] = ACTIONS(2337), - [anon_sym_FALSE] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [anon_sym_Null] = ACTIONS(2337), - [anon_sym_NULL] = ACTIONS(2337), - [sym_string] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_array] = ACTIONS(2337), - [anon_sym_varray] = ACTIONS(2337), - [anon_sym_darray] = ACTIONS(2337), - [anon_sym_vec] = ACTIONS(2337), - [anon_sym_dict] = ACTIONS(2337), - [anon_sym_keyset] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_trait] = ACTIONS(2337), - [anon_sym_interface] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_abstract] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(2339), - [sym_final_modifier] = ACTIONS(2337), - [sym_xhp_modifier] = ACTIONS(2337), - [sym_xhp_identifier] = ACTIONS(2337), - [sym_xhp_class_identifier] = ACTIONS(2339), + [1165] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1233] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2333), - [sym_variable] = ACTIONS(2335), - [sym_pipe_variable] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_newtype] = ACTIONS(2333), - [anon_sym_shape] = ACTIONS(2333), - [anon_sym_tuple] = ACTIONS(2333), - [anon_sym_clone] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_print] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_LT_LT] = ACTIONS(2333), - [anon_sym_LT_LT_LT] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_echo] = ACTIONS(2333), - [anon_sym_unset] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_concurrent] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_elseif] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_foreach] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_using] = ACTIONS(2333), - [sym_float] = ACTIONS(2335), - [sym_integer] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_True] = ACTIONS(2333), - [anon_sym_TRUE] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [anon_sym_False] = ACTIONS(2333), - [anon_sym_FALSE] = ACTIONS(2333), - [anon_sym_null] = ACTIONS(2333), - [anon_sym_Null] = ACTIONS(2333), - [anon_sym_NULL] = ACTIONS(2333), - [sym_string] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_array] = ACTIONS(2333), - [anon_sym_varray] = ACTIONS(2333), - [anon_sym_darray] = ACTIONS(2333), - [anon_sym_vec] = ACTIONS(2333), - [anon_sym_dict] = ACTIONS(2333), - [anon_sym_keyset] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(2335), - [sym_final_modifier] = ACTIONS(2333), - [sym_xhp_modifier] = ACTIONS(2333), - [sym_xhp_identifier] = ACTIONS(2333), - [sym_xhp_class_identifier] = ACTIONS(2335), + [1166] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1234] = { - [sym_identifier] = ACTIONS(2277), - [sym_variable] = ACTIONS(2279), - [sym_pipe_variable] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_newtype] = ACTIONS(2277), - [anon_sym_shape] = ACTIONS(2277), - [anon_sym_tuple] = ACTIONS(2277), - [anon_sym_clone] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_print] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_LT_LT] = ACTIONS(2277), - [anon_sym_LT_LT_LT] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_throw] = ACTIONS(2277), - [anon_sym_echo] = ACTIONS(2277), - [anon_sym_unset] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_concurrent] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_function] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_elseif] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_foreach] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_using] = ACTIONS(2277), - [sym_float] = ACTIONS(2279), - [sym_integer] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_True] = ACTIONS(2277), - [anon_sym_TRUE] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_False] = ACTIONS(2277), - [anon_sym_FALSE] = ACTIONS(2277), - [anon_sym_null] = ACTIONS(2277), - [anon_sym_Null] = ACTIONS(2277), - [anon_sym_NULL] = ACTIONS(2277), - [sym_string] = ACTIONS(2279), - [anon_sym_AT] = ACTIONS(2279), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_array] = ACTIONS(2277), - [anon_sym_varray] = ACTIONS(2277), - [anon_sym_darray] = ACTIONS(2277), - [anon_sym_vec] = ACTIONS(2277), - [anon_sym_dict] = ACTIONS(2277), - [anon_sym_keyset] = ACTIONS(2277), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_interface] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_abstract] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(2279), - [sym_final_modifier] = ACTIONS(2277), - [sym_xhp_modifier] = ACTIONS(2277), - [sym_xhp_identifier] = ACTIONS(2277), - [sym_xhp_class_identifier] = ACTIONS(2279), + [1167] = { + [sym_identifier] = ACTIONS(2437), + [sym_variable] = ACTIONS(2439), + [sym_pipe_variable] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_newtype] = ACTIONS(2437), + [anon_sym_shape] = ACTIONS(2437), + [anon_sym_tuple] = ACTIONS(2437), + [anon_sym_clone] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_print] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_include] = ACTIONS(2437), + [anon_sym_include_once] = ACTIONS(2437), + [anon_sym_require] = ACTIONS(2437), + [anon_sym_require_once] = ACTIONS(2437), + [anon_sym_BSLASH] = ACTIONS(2439), + [anon_sym_self] = ACTIONS(2437), + [anon_sym_parent] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_LT_LT] = ACTIONS(2437), + [anon_sym_LT_LT_LT] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_echo] = ACTIONS(2437), + [anon_sym_unset] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_concurrent] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_case] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_foreach] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [sym_float] = ACTIONS(2439), + [sym_integer] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_True] = ACTIONS(2437), + [anon_sym_TRUE] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_False] = ACTIONS(2437), + [anon_sym_FALSE] = ACTIONS(2437), + [anon_sym_null] = ACTIONS(2437), + [anon_sym_Null] = ACTIONS(2437), + [anon_sym_NULL] = ACTIONS(2437), + [sym_string] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_array] = ACTIONS(2437), + [anon_sym_varray] = ACTIONS(2437), + [anon_sym_darray] = ACTIONS(2437), + [anon_sym_vec] = ACTIONS(2437), + [anon_sym_dict] = ACTIONS(2437), + [anon_sym_keyset] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_interface] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_abstract] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [sym_final_modifier] = ACTIONS(2437), + [sym_xhp_modifier] = ACTIONS(2437), + [sym_xhp_identifier] = ACTIONS(2437), + [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, - [1235] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2297), - [sym_variable] = ACTIONS(2299), - [sym_pipe_variable] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_newtype] = ACTIONS(2297), - [anon_sym_shape] = ACTIONS(2297), - [anon_sym_tuple] = ACTIONS(2297), - [anon_sym_clone] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_print] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_LT_LT_LT] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_echo] = ACTIONS(2297), - [anon_sym_unset] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_concurrent] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_elseif] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_foreach] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [sym_float] = ACTIONS(2299), - [sym_integer] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_True] = ACTIONS(2297), - [anon_sym_TRUE] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_False] = ACTIONS(2297), - [anon_sym_FALSE] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [anon_sym_Null] = ACTIONS(2297), - [anon_sym_NULL] = ACTIONS(2297), - [sym_string] = ACTIONS(2299), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_array] = ACTIONS(2297), - [anon_sym_varray] = ACTIONS(2297), - [anon_sym_darray] = ACTIONS(2297), - [anon_sym_vec] = ACTIONS(2297), - [anon_sym_dict] = ACTIONS(2297), - [anon_sym_keyset] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2299), - [sym_final_modifier] = ACTIONS(2297), - [sym_xhp_modifier] = ACTIONS(2297), - [sym_xhp_identifier] = ACTIONS(2297), - [sym_xhp_class_identifier] = ACTIONS(2299), + [1168] = { + [sym_identifier] = ACTIONS(2097), + [sym_variable] = ACTIONS(2099), + [sym_pipe_variable] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_newtype] = ACTIONS(2097), + [anon_sym_shape] = ACTIONS(2097), + [anon_sym_tuple] = ACTIONS(2097), + [anon_sym_clone] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_print] = ACTIONS(2097), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_include] = ACTIONS(2097), + [anon_sym_include_once] = ACTIONS(2097), + [anon_sym_require] = ACTIONS(2097), + [anon_sym_require_once] = ACTIONS(2097), + [anon_sym_BSLASH] = ACTIONS(2099), + [anon_sym_self] = ACTIONS(2097), + [anon_sym_parent] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2097), + [anon_sym_LT_LT_LT] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_echo] = ACTIONS(2097), + [anon_sym_unset] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_concurrent] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_elseif] = ACTIONS(2097), + [anon_sym_else] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_foreach] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [sym_float] = ACTIONS(2099), + [sym_integer] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_True] = ACTIONS(2097), + [anon_sym_TRUE] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_False] = ACTIONS(2097), + [anon_sym_FALSE] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [anon_sym_Null] = ACTIONS(2097), + [anon_sym_NULL] = ACTIONS(2097), + [sym_string] = ACTIONS(2099), + [anon_sym_AT] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_array] = ACTIONS(2097), + [anon_sym_varray] = ACTIONS(2097), + [anon_sym_darray] = ACTIONS(2097), + [anon_sym_vec] = ACTIONS(2097), + [anon_sym_dict] = ACTIONS(2097), + [anon_sym_keyset] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_list] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2099), + [sym_final_modifier] = ACTIONS(2097), + [sym_xhp_modifier] = ACTIONS(2097), + [sym_xhp_identifier] = ACTIONS(2097), + [sym_xhp_class_identifier] = ACTIONS(2099), [sym_comment] = ACTIONS(3), }, - [1236] = { - [sym_identifier] = ACTIONS(2281), - [sym_variable] = ACTIONS(2283), - [sym_pipe_variable] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_newtype] = ACTIONS(2281), - [anon_sym_shape] = ACTIONS(2281), - [anon_sym_tuple] = ACTIONS(2281), - [anon_sym_clone] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_print] = ACTIONS(2281), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_LT_LT_LT] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_throw] = ACTIONS(2281), - [anon_sym_echo] = ACTIONS(2281), - [anon_sym_unset] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_concurrent] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_elseif] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_foreach] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_using] = ACTIONS(2281), - [sym_float] = ACTIONS(2283), - [sym_integer] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_True] = ACTIONS(2281), - [anon_sym_TRUE] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_False] = ACTIONS(2281), - [anon_sym_FALSE] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [anon_sym_Null] = ACTIONS(2281), - [anon_sym_NULL] = ACTIONS(2281), - [sym_string] = ACTIONS(2283), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_array] = ACTIONS(2281), - [anon_sym_varray] = ACTIONS(2281), - [anon_sym_darray] = ACTIONS(2281), - [anon_sym_vec] = ACTIONS(2281), - [anon_sym_dict] = ACTIONS(2281), - [anon_sym_keyset] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_abstract] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2283), - [sym_final_modifier] = ACTIONS(2281), - [sym_xhp_modifier] = ACTIONS(2281), - [sym_xhp_identifier] = ACTIONS(2281), - [sym_xhp_class_identifier] = ACTIONS(2283), + [1169] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1237] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2325), - [sym_variable] = ACTIONS(2327), - [sym_pipe_variable] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_newtype] = ACTIONS(2325), - [anon_sym_shape] = ACTIONS(2325), - [anon_sym_tuple] = ACTIONS(2325), - [anon_sym_clone] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_print] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_LT_LT_LT] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_echo] = ACTIONS(2325), - [anon_sym_unset] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_concurrent] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_elseif] = ACTIONS(2325), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_foreach] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_using] = ACTIONS(2325), - [sym_float] = ACTIONS(2327), - [sym_integer] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_True] = ACTIONS(2325), - [anon_sym_TRUE] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_False] = ACTIONS(2325), - [anon_sym_FALSE] = ACTIONS(2325), - [anon_sym_null] = ACTIONS(2325), - [anon_sym_Null] = ACTIONS(2325), - [anon_sym_NULL] = ACTIONS(2325), - [sym_string] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_array] = ACTIONS(2325), - [anon_sym_varray] = ACTIONS(2325), - [anon_sym_darray] = ACTIONS(2325), - [anon_sym_vec] = ACTIONS(2325), - [anon_sym_dict] = ACTIONS(2325), - [anon_sym_keyset] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(2327), - [sym_final_modifier] = ACTIONS(2325), - [sym_xhp_modifier] = ACTIONS(2325), - [sym_xhp_identifier] = ACTIONS(2325), - [sym_xhp_class_identifier] = ACTIONS(2327), + [1170] = { + [sym_identifier] = ACTIONS(2433), + [sym_variable] = ACTIONS(2435), + [sym_pipe_variable] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_newtype] = ACTIONS(2433), + [anon_sym_shape] = ACTIONS(2433), + [anon_sym_tuple] = ACTIONS(2433), + [anon_sym_clone] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_print] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_include] = ACTIONS(2433), + [anon_sym_include_once] = ACTIONS(2433), + [anon_sym_require] = ACTIONS(2433), + [anon_sym_require_once] = ACTIONS(2433), + [anon_sym_BSLASH] = ACTIONS(2435), + [anon_sym_self] = ACTIONS(2433), + [anon_sym_parent] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_LT_LT_LT] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_echo] = ACTIONS(2433), + [anon_sym_unset] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_concurrent] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_case] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_foreach] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [sym_float] = ACTIONS(2435), + [sym_integer] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_True] = ACTIONS(2433), + [anon_sym_TRUE] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_False] = ACTIONS(2433), + [anon_sym_FALSE] = ACTIONS(2433), + [anon_sym_null] = ACTIONS(2433), + [anon_sym_Null] = ACTIONS(2433), + [anon_sym_NULL] = ACTIONS(2433), + [sym_string] = ACTIONS(2435), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_array] = ACTIONS(2433), + [anon_sym_varray] = ACTIONS(2433), + [anon_sym_darray] = ACTIONS(2433), + [anon_sym_vec] = ACTIONS(2433), + [anon_sym_dict] = ACTIONS(2433), + [anon_sym_keyset] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_abstract] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2435), + [sym_final_modifier] = ACTIONS(2433), + [sym_xhp_modifier] = ACTIONS(2433), + [sym_xhp_identifier] = ACTIONS(2433), + [sym_xhp_class_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(3), }, - [1238] = { - [sym_identifier] = ACTIONS(2285), - [sym_variable] = ACTIONS(2287), - [sym_pipe_variable] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_newtype] = ACTIONS(2285), - [anon_sym_shape] = ACTIONS(2285), - [anon_sym_tuple] = ACTIONS(2285), - [anon_sym_clone] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_print] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_LT_LT_LT] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_throw] = ACTIONS(2285), - [anon_sym_echo] = ACTIONS(2285), - [anon_sym_unset] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_concurrent] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_function] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_elseif] = ACTIONS(2285), - [anon_sym_else] = ACTIONS(2285), - [anon_sym_switch] = ACTIONS(2285), - [anon_sym_foreach] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_using] = ACTIONS(2285), - [sym_float] = ACTIONS(2287), - [sym_integer] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_True] = ACTIONS(2285), - [anon_sym_TRUE] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_False] = ACTIONS(2285), - [anon_sym_FALSE] = ACTIONS(2285), - [anon_sym_null] = ACTIONS(2285), - [anon_sym_Null] = ACTIONS(2285), - [anon_sym_NULL] = ACTIONS(2285), - [sym_string] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_array] = ACTIONS(2285), - [anon_sym_varray] = ACTIONS(2285), - [anon_sym_darray] = ACTIONS(2285), - [anon_sym_vec] = ACTIONS(2285), - [anon_sym_dict] = ACTIONS(2285), - [anon_sym_keyset] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_abstract] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2287), - [sym_final_modifier] = ACTIONS(2285), - [sym_xhp_modifier] = ACTIONS(2285), - [sym_xhp_identifier] = ACTIONS(2285), - [sym_xhp_class_identifier] = ACTIONS(2287), + [1171] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1239] = { - [sym_identifier] = ACTIONS(2289), - [sym_variable] = ACTIONS(2291), - [sym_pipe_variable] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_newtype] = ACTIONS(2289), - [anon_sym_shape] = ACTIONS(2289), - [anon_sym_tuple] = ACTIONS(2289), - [anon_sym_clone] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_print] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2289), - [anon_sym_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_LT_LT_LT] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2289), - [anon_sym_echo] = ACTIONS(2289), - [anon_sym_unset] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_concurrent] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_elseif] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_foreach] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_using] = ACTIONS(2289), - [sym_float] = ACTIONS(2291), - [sym_integer] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_True] = ACTIONS(2289), - [anon_sym_TRUE] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_False] = ACTIONS(2289), - [anon_sym_FALSE] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [anon_sym_Null] = ACTIONS(2289), - [anon_sym_NULL] = ACTIONS(2289), - [sym_string] = ACTIONS(2291), - [anon_sym_AT] = ACTIONS(2291), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_array] = ACTIONS(2289), - [anon_sym_varray] = ACTIONS(2289), - [anon_sym_darray] = ACTIONS(2289), - [anon_sym_vec] = ACTIONS(2289), - [anon_sym_dict] = ACTIONS(2289), - [anon_sym_keyset] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_abstract] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2291), - [sym_final_modifier] = ACTIONS(2289), - [sym_xhp_modifier] = ACTIONS(2289), - [sym_xhp_identifier] = ACTIONS(2289), - [sym_xhp_class_identifier] = ACTIONS(2291), + [1172] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1240] = { - [sym_identifier] = ACTIONS(2293), - [sym_variable] = ACTIONS(2295), - [sym_pipe_variable] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_newtype] = ACTIONS(2293), - [anon_sym_shape] = ACTIONS(2293), - [anon_sym_tuple] = ACTIONS(2293), - [anon_sym_clone] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_print] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_LT_LT_LT] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_echo] = ACTIONS(2293), - [anon_sym_unset] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_concurrent] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_function] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_elseif] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_switch] = ACTIONS(2293), - [anon_sym_foreach] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_using] = ACTIONS(2293), - [sym_float] = ACTIONS(2295), - [sym_integer] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_True] = ACTIONS(2293), - [anon_sym_TRUE] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_False] = ACTIONS(2293), - [anon_sym_FALSE] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [anon_sym_Null] = ACTIONS(2293), - [anon_sym_NULL] = ACTIONS(2293), - [sym_string] = ACTIONS(2295), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_array] = ACTIONS(2293), - [anon_sym_varray] = ACTIONS(2293), - [anon_sym_darray] = ACTIONS(2293), - [anon_sym_vec] = ACTIONS(2293), - [anon_sym_dict] = ACTIONS(2293), - [anon_sym_keyset] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_trait] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_abstract] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2295), - [sym_final_modifier] = ACTIONS(2293), - [sym_xhp_modifier] = ACTIONS(2293), - [sym_xhp_identifier] = ACTIONS(2293), - [sym_xhp_class_identifier] = ACTIONS(2295), + [1173] = { + [sym_identifier] = ACTIONS(2429), + [sym_variable] = ACTIONS(2431), + [sym_pipe_variable] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_newtype] = ACTIONS(2429), + [anon_sym_shape] = ACTIONS(2429), + [anon_sym_tuple] = ACTIONS(2429), + [anon_sym_clone] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_include] = ACTIONS(2429), + [anon_sym_include_once] = ACTIONS(2429), + [anon_sym_require] = ACTIONS(2429), + [anon_sym_require_once] = ACTIONS(2429), + [anon_sym_BSLASH] = ACTIONS(2431), + [anon_sym_self] = ACTIONS(2429), + [anon_sym_parent] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_echo] = ACTIONS(2429), + [anon_sym_unset] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_concurrent] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_foreach] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [sym_float] = ACTIONS(2431), + [sym_integer] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_True] = ACTIONS(2429), + [anon_sym_TRUE] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_False] = ACTIONS(2429), + [anon_sym_FALSE] = ACTIONS(2429), + [anon_sym_null] = ACTIONS(2429), + [anon_sym_Null] = ACTIONS(2429), + [anon_sym_NULL] = ACTIONS(2429), + [sym_string] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_array] = ACTIONS(2429), + [anon_sym_varray] = ACTIONS(2429), + [anon_sym_darray] = ACTIONS(2429), + [anon_sym_vec] = ACTIONS(2429), + [anon_sym_dict] = ACTIONS(2429), + [anon_sym_keyset] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_abstract] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2431), + [sym_final_modifier] = ACTIONS(2429), + [sym_xhp_modifier] = ACTIONS(2429), + [sym_xhp_identifier] = ACTIONS(2429), + [sym_xhp_class_identifier] = ACTIONS(2431), [sym_comment] = ACTIONS(3), }, - [1241] = { - [sym_identifier] = ACTIONS(2209), - [sym_variable] = ACTIONS(2211), - [sym_pipe_variable] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_newtype] = ACTIONS(2209), - [anon_sym_shape] = ACTIONS(2209), - [anon_sym_tuple] = ACTIONS(2209), - [anon_sym_clone] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_print] = ACTIONS(2209), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_LT_LT_LT] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_throw] = ACTIONS(2209), - [anon_sym_echo] = ACTIONS(2209), - [anon_sym_unset] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_concurrent] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_elseif] = ACTIONS(2209), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_foreach] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_using] = ACTIONS(2209), - [sym_float] = ACTIONS(2211), - [sym_integer] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_True] = ACTIONS(2209), - [anon_sym_TRUE] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_False] = ACTIONS(2209), - [anon_sym_FALSE] = ACTIONS(2209), - [anon_sym_null] = ACTIONS(2209), - [anon_sym_Null] = ACTIONS(2209), - [anon_sym_NULL] = ACTIONS(2209), - [sym_string] = ACTIONS(2211), - [anon_sym_AT] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_array] = ACTIONS(2209), - [anon_sym_varray] = ACTIONS(2209), - [anon_sym_darray] = ACTIONS(2209), - [anon_sym_vec] = ACTIONS(2209), - [anon_sym_dict] = ACTIONS(2209), - [anon_sym_keyset] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_class] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_abstract] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2211), - [sym_final_modifier] = ACTIONS(2209), - [sym_xhp_modifier] = ACTIONS(2209), - [sym_xhp_identifier] = ACTIONS(2209), - [sym_xhp_class_identifier] = ACTIONS(2211), + [1174] = { + [sym_identifier] = ACTIONS(2425), + [sym_variable] = ACTIONS(2427), + [sym_pipe_variable] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_newtype] = ACTIONS(2425), + [anon_sym_shape] = ACTIONS(2425), + [anon_sym_tuple] = ACTIONS(2425), + [anon_sym_clone] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_print] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_include] = ACTIONS(2425), + [anon_sym_include_once] = ACTIONS(2425), + [anon_sym_require] = ACTIONS(2425), + [anon_sym_require_once] = ACTIONS(2425), + [anon_sym_BSLASH] = ACTIONS(2427), + [anon_sym_self] = ACTIONS(2425), + [anon_sym_parent] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_LT_LT_LT] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_echo] = ACTIONS(2425), + [anon_sym_unset] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_concurrent] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_case] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_foreach] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [sym_float] = ACTIONS(2427), + [sym_integer] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_True] = ACTIONS(2425), + [anon_sym_TRUE] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_False] = ACTIONS(2425), + [anon_sym_FALSE] = ACTIONS(2425), + [anon_sym_null] = ACTIONS(2425), + [anon_sym_Null] = ACTIONS(2425), + [anon_sym_NULL] = ACTIONS(2425), + [sym_string] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_array] = ACTIONS(2425), + [anon_sym_varray] = ACTIONS(2425), + [anon_sym_darray] = ACTIONS(2425), + [anon_sym_vec] = ACTIONS(2425), + [anon_sym_dict] = ACTIONS(2425), + [anon_sym_keyset] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_list] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_interface] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_abstract] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2427), + [sym_final_modifier] = ACTIONS(2425), + [sym_xhp_modifier] = ACTIONS(2425), + [sym_xhp_identifier] = ACTIONS(2425), + [sym_xhp_class_identifier] = ACTIONS(2427), [sym_comment] = ACTIONS(3), }, - [1242] = { - [sym_identifier] = ACTIONS(2301), - [sym_variable] = ACTIONS(2303), - [sym_pipe_variable] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_newtype] = ACTIONS(2301), - [anon_sym_shape] = ACTIONS(2301), - [anon_sym_tuple] = ACTIONS(2301), - [anon_sym_clone] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_print] = ACTIONS(2301), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_LT_LT] = ACTIONS(2301), - [anon_sym_LT_LT_LT] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_throw] = ACTIONS(2301), - [anon_sym_echo] = ACTIONS(2301), - [anon_sym_unset] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_concurrent] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_function] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_elseif] = ACTIONS(2301), - [anon_sym_else] = ACTIONS(2301), - [anon_sym_switch] = ACTIONS(2301), - [anon_sym_foreach] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_using] = ACTIONS(2301), - [sym_float] = ACTIONS(2303), - [sym_integer] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_True] = ACTIONS(2301), - [anon_sym_TRUE] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_False] = ACTIONS(2301), - [anon_sym_FALSE] = ACTIONS(2301), - [anon_sym_null] = ACTIONS(2301), - [anon_sym_Null] = ACTIONS(2301), - [anon_sym_NULL] = ACTIONS(2301), - [sym_string] = ACTIONS(2303), - [anon_sym_AT] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_array] = ACTIONS(2301), - [anon_sym_varray] = ACTIONS(2301), - [anon_sym_darray] = ACTIONS(2301), - [anon_sym_vec] = ACTIONS(2301), - [anon_sym_dict] = ACTIONS(2301), - [anon_sym_keyset] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_interface] = ACTIONS(2301), - [anon_sym_class] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_abstract] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [sym_final_modifier] = ACTIONS(2301), - [sym_xhp_modifier] = ACTIONS(2301), - [sym_xhp_identifier] = ACTIONS(2301), - [sym_xhp_class_identifier] = ACTIONS(2303), + [1175] = { + [sym_identifier] = ACTIONS(2421), + [sym_variable] = ACTIONS(2423), + [sym_pipe_variable] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_newtype] = ACTIONS(2421), + [anon_sym_shape] = ACTIONS(2421), + [anon_sym_tuple] = ACTIONS(2421), + [anon_sym_clone] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_print] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_include] = ACTIONS(2421), + [anon_sym_include_once] = ACTIONS(2421), + [anon_sym_require] = ACTIONS(2421), + [anon_sym_require_once] = ACTIONS(2421), + [anon_sym_BSLASH] = ACTIONS(2423), + [anon_sym_self] = ACTIONS(2421), + [anon_sym_parent] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_LT_LT_LT] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_throw] = ACTIONS(2421), + [anon_sym_echo] = ACTIONS(2421), + [anon_sym_unset] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_concurrent] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_switch] = ACTIONS(2421), + [anon_sym_case] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_foreach] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_using] = ACTIONS(2421), + [sym_float] = ACTIONS(2423), + [sym_integer] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_True] = ACTIONS(2421), + [anon_sym_TRUE] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_False] = ACTIONS(2421), + [anon_sym_FALSE] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2421), + [anon_sym_Null] = ACTIONS(2421), + [anon_sym_NULL] = ACTIONS(2421), + [sym_string] = ACTIONS(2423), + [anon_sym_AT] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_array] = ACTIONS(2421), + [anon_sym_varray] = ACTIONS(2421), + [anon_sym_darray] = ACTIONS(2421), + [anon_sym_vec] = ACTIONS(2421), + [anon_sym_dict] = ACTIONS(2421), + [anon_sym_keyset] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_class] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_abstract] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2423), + [sym_final_modifier] = ACTIONS(2421), + [sym_xhp_modifier] = ACTIONS(2421), + [sym_xhp_identifier] = ACTIONS(2421), + [sym_xhp_class_identifier] = ACTIONS(2423), [sym_comment] = ACTIONS(3), }, - [1243] = { - [sym_identifier] = ACTIONS(2313), - [sym_variable] = ACTIONS(2315), - [sym_pipe_variable] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_newtype] = ACTIONS(2313), - [anon_sym_shape] = ACTIONS(2313), - [anon_sym_tuple] = ACTIONS(2313), - [anon_sym_clone] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_print] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_LT_LT_LT] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_throw] = ACTIONS(2313), - [anon_sym_echo] = ACTIONS(2313), - [anon_sym_unset] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_concurrent] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_function] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_elseif] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_switch] = ACTIONS(2313), - [anon_sym_foreach] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_using] = ACTIONS(2313), - [sym_float] = ACTIONS(2315), - [sym_integer] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_True] = ACTIONS(2313), - [anon_sym_TRUE] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_False] = ACTIONS(2313), - [anon_sym_FALSE] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [anon_sym_Null] = ACTIONS(2313), - [anon_sym_NULL] = ACTIONS(2313), - [sym_string] = ACTIONS(2315), - [anon_sym_AT] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_array] = ACTIONS(2313), - [anon_sym_varray] = ACTIONS(2313), - [anon_sym_darray] = ACTIONS(2313), - [anon_sym_vec] = ACTIONS(2313), - [anon_sym_dict] = ACTIONS(2313), - [anon_sym_keyset] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_interface] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_abstract] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(2315), - [sym_final_modifier] = ACTIONS(2313), - [sym_xhp_modifier] = ACTIONS(2313), - [sym_xhp_identifier] = ACTIONS(2313), - [sym_xhp_class_identifier] = ACTIONS(2315), + [1176] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1244] = { - [sym_identifier] = ACTIONS(2317), - [sym_variable] = ACTIONS(2319), - [sym_pipe_variable] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_newtype] = ACTIONS(2317), - [anon_sym_shape] = ACTIONS(2317), - [anon_sym_tuple] = ACTIONS(2317), - [anon_sym_clone] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_print] = ACTIONS(2317), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(2317), - [anon_sym_LT_LT_LT] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_throw] = ACTIONS(2317), - [anon_sym_echo] = ACTIONS(2317), - [anon_sym_unset] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_concurrent] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_elseif] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_foreach] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_using] = ACTIONS(2317), - [sym_float] = ACTIONS(2319), - [sym_integer] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_True] = ACTIONS(2317), - [anon_sym_TRUE] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_False] = ACTIONS(2317), - [anon_sym_FALSE] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [anon_sym_Null] = ACTIONS(2317), - [anon_sym_NULL] = ACTIONS(2317), - [sym_string] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_array] = ACTIONS(2317), - [anon_sym_varray] = ACTIONS(2317), - [anon_sym_darray] = ACTIONS(2317), - [anon_sym_vec] = ACTIONS(2317), - [anon_sym_dict] = ACTIONS(2317), - [anon_sym_keyset] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_abstract] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(2319), - [sym_final_modifier] = ACTIONS(2317), - [sym_xhp_modifier] = ACTIONS(2317), - [sym_xhp_identifier] = ACTIONS(2317), - [sym_xhp_class_identifier] = ACTIONS(2319), + [1177] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1245] = { - [sym_identifier] = ACTIONS(2321), - [sym_variable] = ACTIONS(2323), - [sym_pipe_variable] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_newtype] = ACTIONS(2321), - [anon_sym_shape] = ACTIONS(2321), - [anon_sym_tuple] = ACTIONS(2321), - [anon_sym_clone] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_print] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_LT_LT_LT] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_echo] = ACTIONS(2321), - [anon_sym_unset] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_concurrent] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_elseif] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_using] = ACTIONS(2321), - [sym_float] = ACTIONS(2323), - [sym_integer] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_True] = ACTIONS(2321), - [anon_sym_TRUE] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [anon_sym_False] = ACTIONS(2321), - [anon_sym_FALSE] = ACTIONS(2321), - [anon_sym_null] = ACTIONS(2321), - [anon_sym_Null] = ACTIONS(2321), - [anon_sym_NULL] = ACTIONS(2321), - [sym_string] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_array] = ACTIONS(2321), - [anon_sym_varray] = ACTIONS(2321), - [anon_sym_darray] = ACTIONS(2321), - [anon_sym_vec] = ACTIONS(2321), - [anon_sym_dict] = ACTIONS(2321), - [anon_sym_keyset] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(2323), - [sym_final_modifier] = ACTIONS(2321), - [sym_xhp_modifier] = ACTIONS(2321), - [sym_xhp_identifier] = ACTIONS(2321), - [sym_xhp_class_identifier] = ACTIONS(2323), + [1178] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1246] = { - [sym_identifier] = ACTIONS(2325), - [sym_variable] = ACTIONS(2327), - [sym_pipe_variable] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_newtype] = ACTIONS(2325), - [anon_sym_shape] = ACTIONS(2325), - [anon_sym_tuple] = ACTIONS(2325), - [anon_sym_clone] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_print] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_LT_LT_LT] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_echo] = ACTIONS(2325), - [anon_sym_unset] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_concurrent] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_elseif] = ACTIONS(2325), - [anon_sym_else] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_foreach] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_using] = ACTIONS(2325), - [sym_float] = ACTIONS(2327), - [sym_integer] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_True] = ACTIONS(2325), - [anon_sym_TRUE] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_False] = ACTIONS(2325), - [anon_sym_FALSE] = ACTIONS(2325), - [anon_sym_null] = ACTIONS(2325), - [anon_sym_Null] = ACTIONS(2325), - [anon_sym_NULL] = ACTIONS(2325), - [sym_string] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_array] = ACTIONS(2325), - [anon_sym_varray] = ACTIONS(2325), - [anon_sym_darray] = ACTIONS(2325), - [anon_sym_vec] = ACTIONS(2325), - [anon_sym_dict] = ACTIONS(2325), - [anon_sym_keyset] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(2327), - [sym_final_modifier] = ACTIONS(2325), - [sym_xhp_modifier] = ACTIONS(2325), - [sym_xhp_identifier] = ACTIONS(2325), - [sym_xhp_class_identifier] = ACTIONS(2327), + [1179] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1247] = { - [sym_identifier] = ACTIONS(2297), - [sym_variable] = ACTIONS(2299), - [sym_pipe_variable] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_newtype] = ACTIONS(2297), - [anon_sym_shape] = ACTIONS(2297), - [anon_sym_tuple] = ACTIONS(2297), - [anon_sym_clone] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_print] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_LT_LT_LT] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_echo] = ACTIONS(2297), - [anon_sym_unset] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_concurrent] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_elseif] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_foreach] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [sym_float] = ACTIONS(2299), - [sym_integer] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_True] = ACTIONS(2297), - [anon_sym_TRUE] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_False] = ACTIONS(2297), - [anon_sym_FALSE] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [anon_sym_Null] = ACTIONS(2297), - [anon_sym_NULL] = ACTIONS(2297), - [sym_string] = ACTIONS(2299), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_array] = ACTIONS(2297), - [anon_sym_varray] = ACTIONS(2297), - [anon_sym_darray] = ACTIONS(2297), - [anon_sym_vec] = ACTIONS(2297), - [anon_sym_dict] = ACTIONS(2297), - [anon_sym_keyset] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2299), - [sym_final_modifier] = ACTIONS(2297), - [sym_xhp_modifier] = ACTIONS(2297), - [sym_xhp_identifier] = ACTIONS(2297), - [sym_xhp_class_identifier] = ACTIONS(2299), + [1180] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1248] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2321), - [sym_variable] = ACTIONS(2323), - [sym_pipe_variable] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_newtype] = ACTIONS(2321), - [anon_sym_shape] = ACTIONS(2321), - [anon_sym_tuple] = ACTIONS(2321), - [anon_sym_clone] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_print] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_LT_LT_LT] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_echo] = ACTIONS(2321), - [anon_sym_unset] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_concurrent] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_elseif] = ACTIONS(2321), - [anon_sym_else] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_using] = ACTIONS(2321), - [sym_float] = ACTIONS(2323), - [sym_integer] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_True] = ACTIONS(2321), - [anon_sym_TRUE] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [anon_sym_False] = ACTIONS(2321), - [anon_sym_FALSE] = ACTIONS(2321), - [anon_sym_null] = ACTIONS(2321), - [anon_sym_Null] = ACTIONS(2321), - [anon_sym_NULL] = ACTIONS(2321), - [sym_string] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_array] = ACTIONS(2321), - [anon_sym_varray] = ACTIONS(2321), - [anon_sym_darray] = ACTIONS(2321), - [anon_sym_vec] = ACTIONS(2321), - [anon_sym_dict] = ACTIONS(2321), - [anon_sym_keyset] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(2323), - [sym_final_modifier] = ACTIONS(2321), - [sym_xhp_modifier] = ACTIONS(2321), - [sym_xhp_identifier] = ACTIONS(2321), - [sym_xhp_class_identifier] = ACTIONS(2323), + [1181] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1249] = { - [sym_identifier] = ACTIONS(2333), - [sym_variable] = ACTIONS(2335), - [sym_pipe_variable] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_newtype] = ACTIONS(2333), - [anon_sym_shape] = ACTIONS(2333), - [anon_sym_tuple] = ACTIONS(2333), - [anon_sym_clone] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_print] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_LT_LT] = ACTIONS(2333), - [anon_sym_LT_LT_LT] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_echo] = ACTIONS(2333), - [anon_sym_unset] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_concurrent] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_elseif] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_foreach] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_using] = ACTIONS(2333), - [sym_float] = ACTIONS(2335), - [sym_integer] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_True] = ACTIONS(2333), - [anon_sym_TRUE] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [anon_sym_False] = ACTIONS(2333), - [anon_sym_FALSE] = ACTIONS(2333), - [anon_sym_null] = ACTIONS(2333), - [anon_sym_Null] = ACTIONS(2333), - [anon_sym_NULL] = ACTIONS(2333), - [sym_string] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_array] = ACTIONS(2333), - [anon_sym_varray] = ACTIONS(2333), - [anon_sym_darray] = ACTIONS(2333), - [anon_sym_vec] = ACTIONS(2333), - [anon_sym_dict] = ACTIONS(2333), - [anon_sym_keyset] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(2335), - [sym_final_modifier] = ACTIONS(2333), - [sym_xhp_modifier] = ACTIONS(2333), - [sym_xhp_identifier] = ACTIONS(2333), - [sym_xhp_class_identifier] = ACTIONS(2335), + [1182] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1250] = { - [sym_identifier] = ACTIONS(2337), - [sym_variable] = ACTIONS(2339), - [sym_pipe_variable] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_newtype] = ACTIONS(2337), - [anon_sym_shape] = ACTIONS(2337), - [anon_sym_tuple] = ACTIONS(2337), - [anon_sym_clone] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_print] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2337), - [anon_sym_LT_LT_LT] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_echo] = ACTIONS(2337), - [anon_sym_unset] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_concurrent] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_function] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_elseif] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_foreach] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [sym_float] = ACTIONS(2339), - [sym_integer] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_True] = ACTIONS(2337), - [anon_sym_TRUE] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [anon_sym_False] = ACTIONS(2337), - [anon_sym_FALSE] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [anon_sym_Null] = ACTIONS(2337), - [anon_sym_NULL] = ACTIONS(2337), - [sym_string] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_array] = ACTIONS(2337), - [anon_sym_varray] = ACTIONS(2337), - [anon_sym_darray] = ACTIONS(2337), - [anon_sym_vec] = ACTIONS(2337), - [anon_sym_dict] = ACTIONS(2337), - [anon_sym_keyset] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_trait] = ACTIONS(2337), - [anon_sym_interface] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_abstract] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(2339), - [sym_final_modifier] = ACTIONS(2337), - [sym_xhp_modifier] = ACTIONS(2337), - [sym_xhp_identifier] = ACTIONS(2337), - [sym_xhp_class_identifier] = ACTIONS(2339), + [1183] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1251] = { - [sym_identifier] = ACTIONS(2341), - [sym_variable] = ACTIONS(2343), - [sym_pipe_variable] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_newtype] = ACTIONS(2341), - [anon_sym_shape] = ACTIONS(2341), - [anon_sym_tuple] = ACTIONS(2341), - [anon_sym_clone] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_print] = ACTIONS(2341), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_LT_LT] = ACTIONS(2341), - [anon_sym_LT_LT_LT] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_throw] = ACTIONS(2341), - [anon_sym_echo] = ACTIONS(2341), - [anon_sym_unset] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_concurrent] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_function] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_elseif] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_foreach] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_using] = ACTIONS(2341), - [sym_float] = ACTIONS(2343), - [sym_integer] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_True] = ACTIONS(2341), - [anon_sym_TRUE] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_False] = ACTIONS(2341), - [anon_sym_FALSE] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [anon_sym_Null] = ACTIONS(2341), - [anon_sym_NULL] = ACTIONS(2341), - [sym_string] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_array] = ACTIONS(2341), - [anon_sym_varray] = ACTIONS(2341), - [anon_sym_darray] = ACTIONS(2341), - [anon_sym_vec] = ACTIONS(2341), - [anon_sym_dict] = ACTIONS(2341), - [anon_sym_keyset] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2343), - [anon_sym_DASH_DASH] = ACTIONS(2343), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_interface] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_abstract] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2343), - [sym_final_modifier] = ACTIONS(2341), - [sym_xhp_modifier] = ACTIONS(2341), - [sym_xhp_identifier] = ACTIONS(2341), - [sym_xhp_class_identifier] = ACTIONS(2343), + [1184] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1185] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1252] = { - [sym_identifier] = ACTIONS(2349), - [sym_variable] = ACTIONS(2351), - [sym_pipe_variable] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_newtype] = ACTIONS(2349), - [anon_sym_shape] = ACTIONS(2349), - [anon_sym_tuple] = ACTIONS(2349), - [anon_sym_clone] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_print] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_LT_LT_LT] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_echo] = ACTIONS(2349), - [anon_sym_unset] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_concurrent] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_elseif] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_foreach] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_using] = ACTIONS(2349), - [sym_float] = ACTIONS(2351), - [sym_integer] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_True] = ACTIONS(2349), - [anon_sym_TRUE] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_False] = ACTIONS(2349), - [anon_sym_FALSE] = ACTIONS(2349), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_Null] = ACTIONS(2349), - [anon_sym_NULL] = ACTIONS(2349), - [sym_string] = ACTIONS(2351), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_array] = ACTIONS(2349), - [anon_sym_varray] = ACTIONS(2349), - [anon_sym_darray] = ACTIONS(2349), - [anon_sym_vec] = ACTIONS(2349), - [anon_sym_dict] = ACTIONS(2349), - [anon_sym_keyset] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(2351), - [sym_final_modifier] = ACTIONS(2349), - [sym_xhp_modifier] = ACTIONS(2349), - [sym_xhp_identifier] = ACTIONS(2349), - [sym_xhp_class_identifier] = ACTIONS(2351), + [1186] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2377), + [sym_variable] = ACTIONS(2379), + [sym_pipe_variable] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_newtype] = ACTIONS(2377), + [anon_sym_shape] = ACTIONS(2377), + [anon_sym_tuple] = ACTIONS(2377), + [anon_sym_clone] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_print] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_include] = ACTIONS(2377), + [anon_sym_include_once] = ACTIONS(2377), + [anon_sym_require] = ACTIONS(2377), + [anon_sym_require_once] = ACTIONS(2377), + [anon_sym_BSLASH] = ACTIONS(2379), + [anon_sym_self] = ACTIONS(2377), + [anon_sym_parent] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_LT_LT_LT] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_echo] = ACTIONS(2377), + [anon_sym_unset] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_concurrent] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_function] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_elseif] = ACTIONS(2377), + [anon_sym_else] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_foreach] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [sym_float] = ACTIONS(2379), + [sym_integer] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_True] = ACTIONS(2377), + [anon_sym_TRUE] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_False] = ACTIONS(2377), + [anon_sym_FALSE] = ACTIONS(2377), + [anon_sym_null] = ACTIONS(2377), + [anon_sym_Null] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [sym_string] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_array] = ACTIONS(2377), + [anon_sym_varray] = ACTIONS(2377), + [anon_sym_darray] = ACTIONS(2377), + [anon_sym_vec] = ACTIONS(2377), + [anon_sym_dict] = ACTIONS(2377), + [anon_sym_keyset] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_list] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_abstract] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2379), + [sym_final_modifier] = ACTIONS(2377), + [sym_xhp_modifier] = ACTIONS(2377), + [sym_xhp_identifier] = ACTIONS(2377), + [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, - [1253] = { - [sym_identifier] = ACTIONS(2357), - [sym_variable] = ACTIONS(2359), - [sym_pipe_variable] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_newtype] = ACTIONS(2357), - [anon_sym_shape] = ACTIONS(2357), - [anon_sym_tuple] = ACTIONS(2357), - [anon_sym_clone] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_print] = ACTIONS(2357), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_include] = ACTIONS(2357), - [anon_sym_include_once] = ACTIONS(2357), - [anon_sym_require] = ACTIONS(2357), - [anon_sym_require_once] = ACTIONS(2357), - [anon_sym_BSLASH] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2357), - [anon_sym_parent] = ACTIONS(2357), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_LT_LT_LT] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_throw] = ACTIONS(2357), - [anon_sym_echo] = ACTIONS(2357), - [anon_sym_unset] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_concurrent] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_function] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_elseif] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_switch] = ACTIONS(2357), - [anon_sym_foreach] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_using] = ACTIONS(2357), - [sym_float] = ACTIONS(2359), - [sym_integer] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_True] = ACTIONS(2357), - [anon_sym_TRUE] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [anon_sym_False] = ACTIONS(2357), - [anon_sym_FALSE] = ACTIONS(2357), - [anon_sym_null] = ACTIONS(2357), - [anon_sym_Null] = ACTIONS(2357), - [anon_sym_NULL] = ACTIONS(2357), - [sym_string] = ACTIONS(2359), - [anon_sym_AT] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_array] = ACTIONS(2357), - [anon_sym_varray] = ACTIONS(2357), - [anon_sym_darray] = ACTIONS(2357), - [anon_sym_vec] = ACTIONS(2357), - [anon_sym_dict] = ACTIONS(2357), - [anon_sym_keyset] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_list] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_PLUS_PLUS] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_trait] = ACTIONS(2357), - [anon_sym_interface] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [anon_sym_abstract] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(2359), - [sym_final_modifier] = ACTIONS(2357), - [sym_xhp_modifier] = ACTIONS(2357), - [sym_xhp_identifier] = ACTIONS(2357), - [sym_xhp_class_identifier] = ACTIONS(2359), + [1187] = { + [ts_builtin_sym_end] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2381), + [sym_variable] = ACTIONS(2383), + [sym_pipe_variable] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_newtype] = ACTIONS(2381), + [anon_sym_shape] = ACTIONS(2381), + [anon_sym_tuple] = ACTIONS(2381), + [anon_sym_clone] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_include] = ACTIONS(2381), + [anon_sym_include_once] = ACTIONS(2381), + [anon_sym_require] = ACTIONS(2381), + [anon_sym_require_once] = ACTIONS(2381), + [anon_sym_BSLASH] = ACTIONS(2383), + [anon_sym_self] = ACTIONS(2381), + [anon_sym_parent] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_LT_LT_LT] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_echo] = ACTIONS(2381), + [anon_sym_unset] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_concurrent] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_elseif] = ACTIONS(2381), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_foreach] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [sym_float] = ACTIONS(2383), + [sym_integer] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_True] = ACTIONS(2381), + [anon_sym_TRUE] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_False] = ACTIONS(2381), + [anon_sym_FALSE] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [anon_sym_Null] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [sym_string] = ACTIONS(2383), + [anon_sym_AT] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_array] = ACTIONS(2381), + [anon_sym_varray] = ACTIONS(2381), + [anon_sym_darray] = ACTIONS(2381), + [anon_sym_vec] = ACTIONS(2381), + [anon_sym_dict] = ACTIONS(2381), + [anon_sym_keyset] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_list] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2383), + [sym_final_modifier] = ACTIONS(2381), + [sym_xhp_modifier] = ACTIONS(2381), + [sym_xhp_identifier] = ACTIONS(2381), + [sym_xhp_class_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(3), }, - [1254] = { - [sym_identifier] = ACTIONS(2369), - [sym_variable] = ACTIONS(2371), - [sym_pipe_variable] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_newtype] = ACTIONS(2369), - [anon_sym_shape] = ACTIONS(2369), - [anon_sym_tuple] = ACTIONS(2369), - [anon_sym_clone] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_print] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_throw] = ACTIONS(2369), - [anon_sym_echo] = ACTIONS(2369), - [anon_sym_unset] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_concurrent] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_elseif] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_switch] = ACTIONS(2369), - [anon_sym_foreach] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_using] = ACTIONS(2369), - [sym_float] = ACTIONS(2371), - [sym_integer] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_True] = ACTIONS(2369), - [anon_sym_TRUE] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_False] = ACTIONS(2369), - [anon_sym_FALSE] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [anon_sym_Null] = ACTIONS(2369), - [anon_sym_NULL] = ACTIONS(2369), - [sym_string] = ACTIONS(2371), - [anon_sym_AT] = ACTIONS(2371), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_array] = ACTIONS(2369), - [anon_sym_varray] = ACTIONS(2369), - [anon_sym_darray] = ACTIONS(2369), - [anon_sym_vec] = ACTIONS(2369), - [anon_sym_dict] = ACTIONS(2369), - [anon_sym_keyset] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2371), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_interface] = ACTIONS(2369), - [anon_sym_class] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_abstract] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(2371), - [sym_final_modifier] = ACTIONS(2369), - [sym_xhp_modifier] = ACTIONS(2369), - [sym_xhp_identifier] = ACTIONS(2369), - [sym_xhp_class_identifier] = ACTIONS(2371), + [1188] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1255] = { + [1189] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1190] = { + [ts_builtin_sym_end] = ACTIONS(2387), [sym_identifier] = ACTIONS(2385), [sym_variable] = ACTIONS(2387), [sym_pipe_variable] = ACTIONS(2387), @@ -153215,7 +141070,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2385), [anon_sym_LT_LT] = ACTIONS(2385), [anon_sym_LT_LT_LT] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), [anon_sym_LBRACE] = ACTIONS(2387), [anon_sym_SEMI] = ACTIONS(2387), [anon_sym_return] = ACTIONS(2385), @@ -153281,183 +141135,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(3), }, - [1256] = { - [ts_builtin_sym_end] = ACTIONS(2319), - [sym_identifier] = ACTIONS(2317), - [sym_variable] = ACTIONS(2319), - [sym_pipe_variable] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_newtype] = ACTIONS(2317), - [anon_sym_shape] = ACTIONS(2317), - [anon_sym_tuple] = ACTIONS(2317), - [anon_sym_clone] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_print] = ACTIONS(2317), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(2317), - [anon_sym_LT_LT_LT] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_throw] = ACTIONS(2317), - [anon_sym_echo] = ACTIONS(2317), - [anon_sym_unset] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_concurrent] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_elseif] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_foreach] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_using] = ACTIONS(2317), - [sym_float] = ACTIONS(2319), - [sym_integer] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_True] = ACTIONS(2317), - [anon_sym_TRUE] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_False] = ACTIONS(2317), - [anon_sym_FALSE] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [anon_sym_Null] = ACTIONS(2317), - [anon_sym_NULL] = ACTIONS(2317), - [sym_string] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_array] = ACTIONS(2317), - [anon_sym_varray] = ACTIONS(2317), - [anon_sym_darray] = ACTIONS(2317), - [anon_sym_vec] = ACTIONS(2317), - [anon_sym_dict] = ACTIONS(2317), - [anon_sym_keyset] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_abstract] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(2319), - [sym_final_modifier] = ACTIONS(2317), - [sym_xhp_modifier] = ACTIONS(2317), - [sym_xhp_identifier] = ACTIONS(2317), - [sym_xhp_class_identifier] = ACTIONS(2319), + [1191] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1192] = { + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2389), + [sym_variable] = ACTIONS(2391), + [sym_pipe_variable] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_newtype] = ACTIONS(2389), + [anon_sym_shape] = ACTIONS(2389), + [anon_sym_tuple] = ACTIONS(2389), + [anon_sym_clone] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_print] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_include] = ACTIONS(2389), + [anon_sym_include_once] = ACTIONS(2389), + [anon_sym_require] = ACTIONS(2389), + [anon_sym_require_once] = ACTIONS(2389), + [anon_sym_BSLASH] = ACTIONS(2391), + [anon_sym_self] = ACTIONS(2389), + [anon_sym_parent] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(2389), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_echo] = ACTIONS(2389), + [anon_sym_unset] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_concurrent] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_elseif] = ACTIONS(2389), + [anon_sym_else] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_foreach] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [sym_float] = ACTIONS(2391), + [sym_integer] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_True] = ACTIONS(2389), + [anon_sym_TRUE] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_False] = ACTIONS(2389), + [anon_sym_FALSE] = ACTIONS(2389), + [anon_sym_null] = ACTIONS(2389), + [anon_sym_Null] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [sym_string] = ACTIONS(2391), + [anon_sym_AT] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_array] = ACTIONS(2389), + [anon_sym_varray] = ACTIONS(2389), + [anon_sym_darray] = ACTIONS(2389), + [anon_sym_vec] = ACTIONS(2389), + [anon_sym_dict] = ACTIONS(2389), + [anon_sym_keyset] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_interface] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_abstract] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2391), + [sym_final_modifier] = ACTIONS(2389), + [sym_xhp_modifier] = ACTIONS(2389), + [sym_xhp_identifier] = ACTIONS(2389), + [sym_xhp_class_identifier] = ACTIONS(2391), + [sym_comment] = ACTIONS(3), + }, + [1193] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1194] = { + [sym_identifier] = ACTIONS(2417), + [sym_variable] = ACTIONS(2419), + [sym_pipe_variable] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_newtype] = ACTIONS(2417), + [anon_sym_shape] = ACTIONS(2417), + [anon_sym_tuple] = ACTIONS(2417), + [anon_sym_clone] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_include] = ACTIONS(2417), + [anon_sym_include_once] = ACTIONS(2417), + [anon_sym_require] = ACTIONS(2417), + [anon_sym_require_once] = ACTIONS(2417), + [anon_sym_BSLASH] = ACTIONS(2419), + [anon_sym_self] = ACTIONS(2417), + [anon_sym_parent] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_LT_LT] = ACTIONS(2417), + [anon_sym_LT_LT_LT] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_echo] = ACTIONS(2417), + [anon_sym_unset] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_concurrent] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_switch] = ACTIONS(2417), + [anon_sym_case] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_foreach] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_using] = ACTIONS(2417), + [sym_float] = ACTIONS(2419), + [sym_integer] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_True] = ACTIONS(2417), + [anon_sym_TRUE] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_False] = ACTIONS(2417), + [anon_sym_FALSE] = ACTIONS(2417), + [anon_sym_null] = ACTIONS(2417), + [anon_sym_Null] = ACTIONS(2417), + [anon_sym_NULL] = ACTIONS(2417), + [sym_string] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_array] = ACTIONS(2417), + [anon_sym_varray] = ACTIONS(2417), + [anon_sym_darray] = ACTIONS(2417), + [anon_sym_vec] = ACTIONS(2417), + [anon_sym_dict] = ACTIONS(2417), + [anon_sym_keyset] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_interface] = ACTIONS(2417), + [anon_sym_class] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_abstract] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2419), + [sym_final_modifier] = ACTIONS(2417), + [sym_xhp_modifier] = ACTIONS(2417), + [sym_xhp_identifier] = ACTIONS(2417), + [sym_xhp_class_identifier] = ACTIONS(2419), [sym_comment] = ACTIONS(3), }, - [1257] = { - [sym_identifier] = ACTIONS(2389), - [sym_variable] = ACTIONS(2391), - [sym_pipe_variable] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_newtype] = ACTIONS(2389), - [anon_sym_shape] = ACTIONS(2389), - [anon_sym_tuple] = ACTIONS(2389), - [anon_sym_clone] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_print] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2389), - [anon_sym_LT_LT_LT] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_echo] = ACTIONS(2389), - [anon_sym_unset] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_concurrent] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_elseif] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_foreach] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_using] = ACTIONS(2389), - [sym_float] = ACTIONS(2391), - [sym_integer] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_True] = ACTIONS(2389), - [anon_sym_TRUE] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [anon_sym_False] = ACTIONS(2389), - [anon_sym_FALSE] = ACTIONS(2389), - [anon_sym_null] = ACTIONS(2389), - [anon_sym_Null] = ACTIONS(2389), - [anon_sym_NULL] = ACTIONS(2389), - [sym_string] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_array] = ACTIONS(2389), - [anon_sym_varray] = ACTIONS(2389), - [anon_sym_darray] = ACTIONS(2389), - [anon_sym_vec] = ACTIONS(2389), - [anon_sym_dict] = ACTIONS(2389), - [anon_sym_keyset] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_class] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2391), - [sym_final_modifier] = ACTIONS(2389), - [sym_xhp_modifier] = ACTIONS(2389), - [sym_xhp_identifier] = ACTIONS(2389), - [sym_xhp_class_identifier] = ACTIONS(2391), + [1195] = { + [ts_builtin_sym_end] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2393), + [sym_variable] = ACTIONS(2395), + [sym_pipe_variable] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_newtype] = ACTIONS(2393), + [anon_sym_shape] = ACTIONS(2393), + [anon_sym_tuple] = ACTIONS(2393), + [anon_sym_clone] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_print] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_include] = ACTIONS(2393), + [anon_sym_include_once] = ACTIONS(2393), + [anon_sym_require] = ACTIONS(2393), + [anon_sym_require_once] = ACTIONS(2393), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_self] = ACTIONS(2393), + [anon_sym_parent] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(2393), + [anon_sym_LT_LT_LT] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_throw] = ACTIONS(2393), + [anon_sym_echo] = ACTIONS(2393), + [anon_sym_unset] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_concurrent] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_elseif] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_foreach] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_using] = ACTIONS(2393), + [sym_float] = ACTIONS(2395), + [sym_integer] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_True] = ACTIONS(2393), + [anon_sym_TRUE] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_False] = ACTIONS(2393), + [anon_sym_FALSE] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2393), + [anon_sym_Null] = ACTIONS(2393), + [anon_sym_NULL] = ACTIONS(2393), + [sym_string] = ACTIONS(2395), + [anon_sym_AT] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_array] = ACTIONS(2393), + [anon_sym_varray] = ACTIONS(2393), + [anon_sym_darray] = ACTIONS(2393), + [anon_sym_vec] = ACTIONS(2393), + [anon_sym_dict] = ACTIONS(2393), + [anon_sym_keyset] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_interface] = ACTIONS(2393), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_abstract] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2395), + [sym_final_modifier] = ACTIONS(2393), + [sym_xhp_modifier] = ACTIONS(2393), + [sym_xhp_identifier] = ACTIONS(2393), + [sym_xhp_class_identifier] = ACTIONS(2395), [sym_comment] = ACTIONS(3), }, - [1258] = { + [1196] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1197] = { + [ts_builtin_sym_end] = ACTIONS(2399), [sym_identifier] = ACTIONS(2397), [sym_variable] = ACTIONS(2399), [sym_pipe_variable] = ACTIONS(2399), @@ -153479,7 +141686,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2397), [anon_sym_LT_LT] = ACTIONS(2397), [anon_sym_LT_LT_LT] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), [anon_sym_LBRACE] = ACTIONS(2399), [anon_sym_SEMI] = ACTIONS(2399), [anon_sym_return] = ACTIONS(2397), @@ -153545,7 +141751,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2399), [sym_comment] = ACTIONS(3), }, - [1259] = { + [1198] = { + [ts_builtin_sym_end] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2401), + [sym_variable] = ACTIONS(2403), + [sym_pipe_variable] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_newtype] = ACTIONS(2401), + [anon_sym_shape] = ACTIONS(2401), + [anon_sym_tuple] = ACTIONS(2401), + [anon_sym_clone] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_print] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_include] = ACTIONS(2401), + [anon_sym_include_once] = ACTIONS(2401), + [anon_sym_require] = ACTIONS(2401), + [anon_sym_require_once] = ACTIONS(2401), + [anon_sym_BSLASH] = ACTIONS(2403), + [anon_sym_self] = ACTIONS(2401), + [anon_sym_parent] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LT_LT_LT] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_echo] = ACTIONS(2401), + [anon_sym_unset] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_concurrent] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_elseif] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_foreach] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_using] = ACTIONS(2401), + [sym_float] = ACTIONS(2403), + [sym_integer] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_True] = ACTIONS(2401), + [anon_sym_TRUE] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_False] = ACTIONS(2401), + [anon_sym_FALSE] = ACTIONS(2401), + [anon_sym_null] = ACTIONS(2401), + [anon_sym_Null] = ACTIONS(2401), + [anon_sym_NULL] = ACTIONS(2401), + [sym_string] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_array] = ACTIONS(2401), + [anon_sym_varray] = ACTIONS(2401), + [anon_sym_darray] = ACTIONS(2401), + [anon_sym_vec] = ACTIONS(2401), + [anon_sym_dict] = ACTIONS(2401), + [anon_sym_keyset] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2403), + [sym_final_modifier] = ACTIONS(2401), + [sym_xhp_modifier] = ACTIONS(2401), + [sym_xhp_identifier] = ACTIONS(2401), + [sym_xhp_class_identifier] = ACTIONS(2403), + [sym_comment] = ACTIONS(3), + }, + [1199] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [sym_variable] = ACTIONS(2407), + [sym_pipe_variable] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_newtype] = ACTIONS(2405), + [anon_sym_shape] = ACTIONS(2405), + [anon_sym_tuple] = ACTIONS(2405), + [anon_sym_clone] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_print] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_include] = ACTIONS(2405), + [anon_sym_include_once] = ACTIONS(2405), + [anon_sym_require] = ACTIONS(2405), + [anon_sym_require_once] = ACTIONS(2405), + [anon_sym_BSLASH] = ACTIONS(2407), + [anon_sym_self] = ACTIONS(2405), + [anon_sym_parent] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_LT_LT] = ACTIONS(2405), + [anon_sym_LT_LT_LT] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_echo] = ACTIONS(2405), + [anon_sym_unset] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_concurrent] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_elseif] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_foreach] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [sym_float] = ACTIONS(2407), + [sym_integer] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_True] = ACTIONS(2405), + [anon_sym_TRUE] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_False] = ACTIONS(2405), + [anon_sym_FALSE] = ACTIONS(2405), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_Null] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2405), + [sym_string] = ACTIONS(2407), + [anon_sym_AT] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_array] = ACTIONS(2405), + [anon_sym_varray] = ACTIONS(2405), + [anon_sym_darray] = ACTIONS(2405), + [anon_sym_vec] = ACTIONS(2405), + [anon_sym_dict] = ACTIONS(2405), + [anon_sym_keyset] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_abstract] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2407), + [sym_final_modifier] = ACTIONS(2405), + [sym_xhp_modifier] = ACTIONS(2405), + [sym_xhp_identifier] = ACTIONS(2405), + [sym_xhp_class_identifier] = ACTIONS(2407), + [sym_comment] = ACTIONS(3), + }, + [1200] = { + [sym_identifier] = ACTIONS(2413), + [sym_variable] = ACTIONS(2415), + [sym_pipe_variable] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_newtype] = ACTIONS(2413), + [anon_sym_shape] = ACTIONS(2413), + [anon_sym_tuple] = ACTIONS(2413), + [anon_sym_clone] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_print] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_include] = ACTIONS(2413), + [anon_sym_include_once] = ACTIONS(2413), + [anon_sym_require] = ACTIONS(2413), + [anon_sym_require_once] = ACTIONS(2413), + [anon_sym_BSLASH] = ACTIONS(2415), + [anon_sym_self] = ACTIONS(2413), + [anon_sym_parent] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_LT_LT] = ACTIONS(2413), + [anon_sym_LT_LT_LT] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_throw] = ACTIONS(2413), + [anon_sym_echo] = ACTIONS(2413), + [anon_sym_unset] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_concurrent] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(2413), + [anon_sym_case] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_foreach] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_using] = ACTIONS(2413), + [sym_float] = ACTIONS(2415), + [sym_integer] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_True] = ACTIONS(2413), + [anon_sym_TRUE] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_False] = ACTIONS(2413), + [anon_sym_FALSE] = ACTIONS(2413), + [anon_sym_null] = ACTIONS(2413), + [anon_sym_Null] = ACTIONS(2413), + [anon_sym_NULL] = ACTIONS(2413), + [sym_string] = ACTIONS(2415), + [anon_sym_AT] = ACTIONS(2415), + [anon_sym_TILDE] = ACTIONS(2415), + [anon_sym_array] = ACTIONS(2413), + [anon_sym_varray] = ACTIONS(2413), + [anon_sym_darray] = ACTIONS(2413), + [anon_sym_vec] = ACTIONS(2413), + [anon_sym_dict] = ACTIONS(2413), + [anon_sym_keyset] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_PLUS_PLUS] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_interface] = ACTIONS(2413), + [anon_sym_class] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_abstract] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2415), + [sym_final_modifier] = ACTIONS(2413), + [sym_xhp_modifier] = ACTIONS(2413), + [sym_xhp_identifier] = ACTIONS(2413), + [sym_xhp_class_identifier] = ACTIONS(2415), + [sym_comment] = ACTIONS(3), + }, + [1201] = { + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2409), + [sym_variable] = ACTIONS(2411), + [sym_pipe_variable] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_newtype] = ACTIONS(2409), + [anon_sym_shape] = ACTIONS(2409), + [anon_sym_tuple] = ACTIONS(2409), + [anon_sym_clone] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_include] = ACTIONS(2409), + [anon_sym_include_once] = ACTIONS(2409), + [anon_sym_require] = ACTIONS(2409), + [anon_sym_require_once] = ACTIONS(2409), + [anon_sym_BSLASH] = ACTIONS(2411), + [anon_sym_self] = ACTIONS(2409), + [anon_sym_parent] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_LT_LT] = ACTIONS(2409), + [anon_sym_LT_LT_LT] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_throw] = ACTIONS(2409), + [anon_sym_echo] = ACTIONS(2409), + [anon_sym_unset] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_concurrent] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_elseif] = ACTIONS(2409), + [anon_sym_else] = ACTIONS(2409), + [anon_sym_switch] = ACTIONS(2409), + [anon_sym_foreach] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_using] = ACTIONS(2409), + [sym_float] = ACTIONS(2411), + [sym_integer] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_True] = ACTIONS(2409), + [anon_sym_TRUE] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_False] = ACTIONS(2409), + [anon_sym_FALSE] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2409), + [anon_sym_Null] = ACTIONS(2409), + [anon_sym_NULL] = ACTIONS(2409), + [sym_string] = ACTIONS(2411), + [anon_sym_AT] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2411), + [anon_sym_array] = ACTIONS(2409), + [anon_sym_varray] = ACTIONS(2409), + [anon_sym_darray] = ACTIONS(2409), + [anon_sym_vec] = ACTIONS(2409), + [anon_sym_dict] = ACTIONS(2409), + [anon_sym_keyset] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_list] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_PLUS_PLUS] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_interface] = ACTIONS(2409), + [anon_sym_class] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_abstract] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(2411), + [sym_final_modifier] = ACTIONS(2409), + [sym_xhp_modifier] = ACTIONS(2409), + [sym_xhp_identifier] = ACTIONS(2409), + [sym_xhp_class_identifier] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + }, + [1202] = { + [ts_builtin_sym_end] = ACTIONS(2415), + [sym_identifier] = ACTIONS(2413), + [sym_variable] = ACTIONS(2415), + [sym_pipe_variable] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_newtype] = ACTIONS(2413), + [anon_sym_shape] = ACTIONS(2413), + [anon_sym_tuple] = ACTIONS(2413), + [anon_sym_clone] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_print] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_include] = ACTIONS(2413), + [anon_sym_include_once] = ACTIONS(2413), + [anon_sym_require] = ACTIONS(2413), + [anon_sym_require_once] = ACTIONS(2413), + [anon_sym_BSLASH] = ACTIONS(2415), + [anon_sym_self] = ACTIONS(2413), + [anon_sym_parent] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_LT_LT] = ACTIONS(2413), + [anon_sym_LT_LT_LT] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_throw] = ACTIONS(2413), + [anon_sym_echo] = ACTIONS(2413), + [anon_sym_unset] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_concurrent] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_elseif] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(2413), + [anon_sym_foreach] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_using] = ACTIONS(2413), + [sym_float] = ACTIONS(2415), + [sym_integer] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_True] = ACTIONS(2413), + [anon_sym_TRUE] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_False] = ACTIONS(2413), + [anon_sym_FALSE] = ACTIONS(2413), + [anon_sym_null] = ACTIONS(2413), + [anon_sym_Null] = ACTIONS(2413), + [anon_sym_NULL] = ACTIONS(2413), + [sym_string] = ACTIONS(2415), + [anon_sym_AT] = ACTIONS(2415), + [anon_sym_TILDE] = ACTIONS(2415), + [anon_sym_array] = ACTIONS(2413), + [anon_sym_varray] = ACTIONS(2413), + [anon_sym_darray] = ACTIONS(2413), + [anon_sym_vec] = ACTIONS(2413), + [anon_sym_dict] = ACTIONS(2413), + [anon_sym_keyset] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_PLUS_PLUS] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_interface] = ACTIONS(2413), + [anon_sym_class] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_abstract] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2415), + [sym_final_modifier] = ACTIONS(2413), + [sym_xhp_modifier] = ACTIONS(2413), + [sym_xhp_identifier] = ACTIONS(2413), + [sym_xhp_class_identifier] = ACTIONS(2415), + [sym_comment] = ACTIONS(3), + }, + [1203] = { + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2417), + [sym_variable] = ACTIONS(2419), + [sym_pipe_variable] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_newtype] = ACTIONS(2417), + [anon_sym_shape] = ACTIONS(2417), + [anon_sym_tuple] = ACTIONS(2417), + [anon_sym_clone] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_include] = ACTIONS(2417), + [anon_sym_include_once] = ACTIONS(2417), + [anon_sym_require] = ACTIONS(2417), + [anon_sym_require_once] = ACTIONS(2417), + [anon_sym_BSLASH] = ACTIONS(2419), + [anon_sym_self] = ACTIONS(2417), + [anon_sym_parent] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_LT_LT] = ACTIONS(2417), + [anon_sym_LT_LT_LT] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_echo] = ACTIONS(2417), + [anon_sym_unset] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_concurrent] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_elseif] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_switch] = ACTIONS(2417), + [anon_sym_foreach] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_using] = ACTIONS(2417), + [sym_float] = ACTIONS(2419), + [sym_integer] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_True] = ACTIONS(2417), + [anon_sym_TRUE] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_False] = ACTIONS(2417), + [anon_sym_FALSE] = ACTIONS(2417), + [anon_sym_null] = ACTIONS(2417), + [anon_sym_Null] = ACTIONS(2417), + [anon_sym_NULL] = ACTIONS(2417), + [sym_string] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_array] = ACTIONS(2417), + [anon_sym_varray] = ACTIONS(2417), + [anon_sym_darray] = ACTIONS(2417), + [anon_sym_vec] = ACTIONS(2417), + [anon_sym_dict] = ACTIONS(2417), + [anon_sym_keyset] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_interface] = ACTIONS(2417), + [anon_sym_class] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_abstract] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2419), + [sym_final_modifier] = ACTIONS(2417), + [sym_xhp_modifier] = ACTIONS(2417), + [sym_xhp_identifier] = ACTIONS(2417), + [sym_xhp_class_identifier] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + }, + [1204] = { + [sym_identifier] = ACTIONS(2209), + [sym_variable] = ACTIONS(2211), + [sym_pipe_variable] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_newtype] = ACTIONS(2209), + [anon_sym_shape] = ACTIONS(2209), + [anon_sym_tuple] = ACTIONS(2209), + [anon_sym_clone] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_print] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_include] = ACTIONS(2209), + [anon_sym_include_once] = ACTIONS(2209), + [anon_sym_require] = ACTIONS(2209), + [anon_sym_require_once] = ACTIONS(2209), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_self] = ACTIONS(2209), + [anon_sym_parent] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_LT_LT_LT] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_echo] = ACTIONS(2209), + [anon_sym_unset] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_concurrent] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_case] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_foreach] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [sym_float] = ACTIONS(2211), + [sym_integer] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_True] = ACTIONS(2209), + [anon_sym_TRUE] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_False] = ACTIONS(2209), + [anon_sym_FALSE] = ACTIONS(2209), + [anon_sym_null] = ACTIONS(2209), + [anon_sym_Null] = ACTIONS(2209), + [anon_sym_NULL] = ACTIONS(2209), + [sym_string] = ACTIONS(2211), + [anon_sym_AT] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_array] = ACTIONS(2209), + [anon_sym_varray] = ACTIONS(2209), + [anon_sym_darray] = ACTIONS(2209), + [anon_sym_vec] = ACTIONS(2209), + [anon_sym_dict] = ACTIONS(2209), + [anon_sym_keyset] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_list] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2211), + [sym_final_modifier] = ACTIONS(2209), + [sym_xhp_modifier] = ACTIONS(2209), + [sym_xhp_identifier] = ACTIONS(2209), + [sym_xhp_class_identifier] = ACTIONS(2211), + [sym_comment] = ACTIONS(3), + }, + [1205] = { + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2421), + [sym_variable] = ACTIONS(2423), + [sym_pipe_variable] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_newtype] = ACTIONS(2421), + [anon_sym_shape] = ACTIONS(2421), + [anon_sym_tuple] = ACTIONS(2421), + [anon_sym_clone] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_print] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_include] = ACTIONS(2421), + [anon_sym_include_once] = ACTIONS(2421), + [anon_sym_require] = ACTIONS(2421), + [anon_sym_require_once] = ACTIONS(2421), + [anon_sym_BSLASH] = ACTIONS(2423), + [anon_sym_self] = ACTIONS(2421), + [anon_sym_parent] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_LT_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_throw] = ACTIONS(2421), + [anon_sym_echo] = ACTIONS(2421), + [anon_sym_unset] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_concurrent] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_elseif] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_switch] = ACTIONS(2421), + [anon_sym_foreach] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_using] = ACTIONS(2421), + [sym_float] = ACTIONS(2423), + [sym_integer] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_True] = ACTIONS(2421), + [anon_sym_TRUE] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_False] = ACTIONS(2421), + [anon_sym_FALSE] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2421), + [anon_sym_Null] = ACTIONS(2421), + [anon_sym_NULL] = ACTIONS(2421), + [sym_string] = ACTIONS(2423), + [anon_sym_AT] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_array] = ACTIONS(2421), + [anon_sym_varray] = ACTIONS(2421), + [anon_sym_darray] = ACTIONS(2421), + [anon_sym_vec] = ACTIONS(2421), + [anon_sym_dict] = ACTIONS(2421), + [anon_sym_keyset] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_class] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_abstract] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2423), + [sym_final_modifier] = ACTIONS(2421), + [sym_xhp_modifier] = ACTIONS(2421), + [sym_xhp_identifier] = ACTIONS(2421), + [sym_xhp_class_identifier] = ACTIONS(2423), + [sym_comment] = ACTIONS(3), + }, + [1206] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1207] = { [sym_identifier] = ACTIONS(2093), [sym_variable] = ACTIONS(2095), [sym_pipe_variable] = ACTIONS(2095), @@ -153633,271 +142631,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1260] = { - [sym_identifier] = ACTIONS(2405), - [sym_variable] = ACTIONS(2407), - [sym_pipe_variable] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_newtype] = ACTIONS(2405), - [anon_sym_shape] = ACTIONS(2405), - [anon_sym_tuple] = ACTIONS(2405), - [anon_sym_clone] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), - [anon_sym_LT_LT_LT] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_echo] = ACTIONS(2405), - [anon_sym_unset] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_concurrent] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_elseif] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_foreach] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [sym_float] = ACTIONS(2407), - [sym_integer] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_True] = ACTIONS(2405), - [anon_sym_TRUE] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [anon_sym_False] = ACTIONS(2405), - [anon_sym_FALSE] = ACTIONS(2405), - [anon_sym_null] = ACTIONS(2405), - [anon_sym_Null] = ACTIONS(2405), - [anon_sym_NULL] = ACTIONS(2405), - [sym_string] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_array] = ACTIONS(2405), - [anon_sym_varray] = ACTIONS(2405), - [anon_sym_darray] = ACTIONS(2405), - [anon_sym_vec] = ACTIONS(2405), - [anon_sym_dict] = ACTIONS(2405), - [anon_sym_keyset] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_trait] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_abstract] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2407), - [sym_final_modifier] = ACTIONS(2405), - [sym_xhp_modifier] = ACTIONS(2405), - [sym_xhp_identifier] = ACTIONS(2405), - [sym_xhp_class_identifier] = ACTIONS(2407), - [sym_comment] = ACTIONS(3), - }, - [1261] = { - [sym_identifier] = ACTIONS(2409), - [sym_variable] = ACTIONS(2411), - [sym_pipe_variable] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_newtype] = ACTIONS(2409), - [anon_sym_shape] = ACTIONS(2409), - [anon_sym_tuple] = ACTIONS(2409), - [anon_sym_clone] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(2409), - [anon_sym_LT_LT_LT] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_echo] = ACTIONS(2409), - [anon_sym_unset] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_concurrent] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_function] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_elseif] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_foreach] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [sym_float] = ACTIONS(2411), - [sym_integer] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_True] = ACTIONS(2409), - [anon_sym_TRUE] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [anon_sym_False] = ACTIONS(2409), - [anon_sym_FALSE] = ACTIONS(2409), - [anon_sym_null] = ACTIONS(2409), - [anon_sym_Null] = ACTIONS(2409), - [anon_sym_NULL] = ACTIONS(2409), - [sym_string] = ACTIONS(2411), - [anon_sym_AT] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_array] = ACTIONS(2409), - [anon_sym_varray] = ACTIONS(2409), - [anon_sym_darray] = ACTIONS(2409), - [anon_sym_vec] = ACTIONS(2409), - [anon_sym_dict] = ACTIONS(2409), - [anon_sym_keyset] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_trait] = ACTIONS(2409), - [anon_sym_interface] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_abstract] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(2411), - [sym_final_modifier] = ACTIONS(2409), - [sym_xhp_modifier] = ACTIONS(2409), - [sym_xhp_identifier] = ACTIONS(2409), - [sym_xhp_class_identifier] = ACTIONS(2411), - [sym_comment] = ACTIONS(3), - }, - [1262] = { - [sym_identifier] = ACTIONS(2089), - [sym_variable] = ACTIONS(2091), - [sym_pipe_variable] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_newtype] = ACTIONS(2089), - [anon_sym_shape] = ACTIONS(2089), - [anon_sym_tuple] = ACTIONS(2089), - [anon_sym_clone] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_print] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_LT_LT_LT] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_echo] = ACTIONS(2089), - [anon_sym_unset] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_concurrent] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_elseif] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_foreach] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [sym_float] = ACTIONS(2091), - [sym_integer] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_True] = ACTIONS(2089), - [anon_sym_TRUE] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_False] = ACTIONS(2089), - [anon_sym_FALSE] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_Null] = ACTIONS(2089), - [anon_sym_NULL] = ACTIONS(2089), - [sym_string] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_array] = ACTIONS(2089), - [anon_sym_varray] = ACTIONS(2089), - [anon_sym_darray] = ACTIONS(2089), - [anon_sym_vec] = ACTIONS(2089), - [anon_sym_dict] = ACTIONS(2089), - [anon_sym_keyset] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2091), - [sym_final_modifier] = ACTIONS(2089), - [sym_xhp_modifier] = ACTIONS(2089), - [sym_xhp_identifier] = ACTIONS(2089), - [sym_xhp_class_identifier] = ACTIONS(2091), + [1208] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1263] = { + [1209] = { + [ts_builtin_sym_end] = ACTIONS(2427), [sym_identifier] = ACTIONS(2425), [sym_variable] = ACTIONS(2427), [sym_pipe_variable] = ACTIONS(2427), @@ -153919,7 +142742,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2425), [anon_sym_LT_LT] = ACTIONS(2425), [anon_sym_LT_LT_LT] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), [anon_sym_LBRACE] = ACTIONS(2427), [anon_sym_SEMI] = ACTIONS(2427), [anon_sym_return] = ACTIONS(2425), @@ -153985,2207 +142807,2032 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2427), [sym_comment] = ACTIONS(3), }, - [1264] = { - [sym_identifier] = ACTIONS(2433), - [sym_variable] = ACTIONS(2435), - [sym_pipe_variable] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_newtype] = ACTIONS(2433), - [anon_sym_shape] = ACTIONS(2433), - [anon_sym_tuple] = ACTIONS(2433), - [anon_sym_clone] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_print] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_LT_LT_LT] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_echo] = ACTIONS(2433), - [anon_sym_unset] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_concurrent] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_elseif] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_foreach] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [sym_float] = ACTIONS(2435), - [sym_integer] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_True] = ACTIONS(2433), - [anon_sym_TRUE] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [anon_sym_False] = ACTIONS(2433), - [anon_sym_FALSE] = ACTIONS(2433), - [anon_sym_null] = ACTIONS(2433), - [anon_sym_Null] = ACTIONS(2433), - [anon_sym_NULL] = ACTIONS(2433), - [sym_string] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_array] = ACTIONS(2433), - [anon_sym_varray] = ACTIONS(2433), - [anon_sym_darray] = ACTIONS(2433), - [anon_sym_vec] = ACTIONS(2433), - [anon_sym_dict] = ACTIONS(2433), - [anon_sym_keyset] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_abstract] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2435), - [sym_final_modifier] = ACTIONS(2433), - [sym_xhp_modifier] = ACTIONS(2433), - [sym_xhp_identifier] = ACTIONS(2433), - [sym_xhp_class_identifier] = ACTIONS(2435), - [sym_comment] = ACTIONS(3), - }, - [1265] = { - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2039), - [anon_sym_finally] = ACTIONS(2039), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), - [sym_comment] = ACTIONS(3), - }, - [1266] = { - [sym_identifier] = ACTIONS(2137), - [sym_variable] = ACTIONS(2139), - [sym_pipe_variable] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_newtype] = ACTIONS(2137), - [anon_sym_shape] = ACTIONS(2137), - [anon_sym_tuple] = ACTIONS(2137), - [anon_sym_clone] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_print] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_LT_LT_LT] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_echo] = ACTIONS(2137), - [anon_sym_unset] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_concurrent] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_elseif] = ACTIONS(2137), - [anon_sym_else] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_foreach] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [sym_float] = ACTIONS(2139), - [sym_integer] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_True] = ACTIONS(2137), - [anon_sym_TRUE] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [anon_sym_False] = ACTIONS(2137), - [anon_sym_FALSE] = ACTIONS(2137), - [anon_sym_null] = ACTIONS(2137), - [anon_sym_Null] = ACTIONS(2137), - [anon_sym_NULL] = ACTIONS(2137), - [sym_string] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_array] = ACTIONS(2137), - [anon_sym_varray] = ACTIONS(2137), - [anon_sym_darray] = ACTIONS(2137), - [anon_sym_vec] = ACTIONS(2137), - [anon_sym_dict] = ACTIONS(2137), - [anon_sym_keyset] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2139), - [sym_final_modifier] = ACTIONS(2137), - [sym_xhp_modifier] = ACTIONS(2137), - [sym_xhp_identifier] = ACTIONS(2137), - [sym_xhp_class_identifier] = ACTIONS(2139), - [sym_comment] = ACTIONS(3), - }, - [1267] = { - [sym_identifier] = ACTIONS(2465), - [sym_variable] = ACTIONS(2467), - [sym_pipe_variable] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_newtype] = ACTIONS(2465), - [anon_sym_shape] = ACTIONS(2465), - [anon_sym_tuple] = ACTIONS(2465), - [anon_sym_clone] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_print] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_LT_LT_LT] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_echo] = ACTIONS(2465), - [anon_sym_unset] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_concurrent] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_foreach] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [sym_float] = ACTIONS(2467), - [sym_integer] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_True] = ACTIONS(2465), - [anon_sym_TRUE] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [anon_sym_False] = ACTIONS(2465), - [anon_sym_FALSE] = ACTIONS(2465), - [anon_sym_null] = ACTIONS(2465), - [anon_sym_Null] = ACTIONS(2465), - [anon_sym_NULL] = ACTIONS(2465), - [sym_string] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_array] = ACTIONS(2465), - [anon_sym_varray] = ACTIONS(2465), - [anon_sym_darray] = ACTIONS(2465), - [anon_sym_vec] = ACTIONS(2465), - [anon_sym_dict] = ACTIONS(2465), - [anon_sym_keyset] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_trait] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2467), - [sym_final_modifier] = ACTIONS(2465), - [sym_xhp_modifier] = ACTIONS(2465), - [sym_xhp_identifier] = ACTIONS(2465), - [sym_xhp_class_identifier] = ACTIONS(2467), + [1210] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1268] = { - [sym_identifier] = ACTIONS(2473), - [sym_variable] = ACTIONS(2475), - [sym_pipe_variable] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_newtype] = ACTIONS(2473), - [anon_sym_shape] = ACTIONS(2473), - [anon_sym_tuple] = ACTIONS(2473), - [anon_sym_clone] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_print] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_LT_LT_LT] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_throw] = ACTIONS(2473), - [anon_sym_echo] = ACTIONS(2473), - [anon_sym_unset] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_concurrent] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_switch] = ACTIONS(2473), - [anon_sym_foreach] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_using] = ACTIONS(2473), - [sym_float] = ACTIONS(2475), - [sym_integer] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_True] = ACTIONS(2473), - [anon_sym_TRUE] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [anon_sym_False] = ACTIONS(2473), - [anon_sym_FALSE] = ACTIONS(2473), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_Null] = ACTIONS(2473), - [anon_sym_NULL] = ACTIONS(2473), - [sym_string] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_array] = ACTIONS(2473), - [anon_sym_varray] = ACTIONS(2473), - [anon_sym_darray] = ACTIONS(2473), - [anon_sym_vec] = ACTIONS(2473), - [anon_sym_dict] = ACTIONS(2473), - [anon_sym_keyset] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_trait] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2475), - [sym_final_modifier] = ACTIONS(2473), - [sym_xhp_modifier] = ACTIONS(2473), - [sym_xhp_identifier] = ACTIONS(2473), - [sym_xhp_class_identifier] = ACTIONS(2475), + [1211] = { + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2429), + [sym_variable] = ACTIONS(2431), + [sym_pipe_variable] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_newtype] = ACTIONS(2429), + [anon_sym_shape] = ACTIONS(2429), + [anon_sym_tuple] = ACTIONS(2429), + [anon_sym_clone] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_include] = ACTIONS(2429), + [anon_sym_include_once] = ACTIONS(2429), + [anon_sym_require] = ACTIONS(2429), + [anon_sym_require_once] = ACTIONS(2429), + [anon_sym_BSLASH] = ACTIONS(2431), + [anon_sym_self] = ACTIONS(2429), + [anon_sym_parent] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_echo] = ACTIONS(2429), + [anon_sym_unset] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_concurrent] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_elseif] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_foreach] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [sym_float] = ACTIONS(2431), + [sym_integer] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_True] = ACTIONS(2429), + [anon_sym_TRUE] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_False] = ACTIONS(2429), + [anon_sym_FALSE] = ACTIONS(2429), + [anon_sym_null] = ACTIONS(2429), + [anon_sym_Null] = ACTIONS(2429), + [anon_sym_NULL] = ACTIONS(2429), + [sym_string] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_array] = ACTIONS(2429), + [anon_sym_varray] = ACTIONS(2429), + [anon_sym_darray] = ACTIONS(2429), + [anon_sym_vec] = ACTIONS(2429), + [anon_sym_dict] = ACTIONS(2429), + [anon_sym_keyset] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_abstract] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2431), + [sym_final_modifier] = ACTIONS(2429), + [sym_xhp_modifier] = ACTIONS(2429), + [sym_xhp_identifier] = ACTIONS(2429), + [sym_xhp_class_identifier] = ACTIONS(2431), [sym_comment] = ACTIONS(3), }, - [1269] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2313), - [sym_variable] = ACTIONS(2315), - [sym_pipe_variable] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_newtype] = ACTIONS(2313), - [anon_sym_shape] = ACTIONS(2313), - [anon_sym_tuple] = ACTIONS(2313), - [anon_sym_clone] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_print] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_LT_LT_LT] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_throw] = ACTIONS(2313), - [anon_sym_echo] = ACTIONS(2313), - [anon_sym_unset] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_concurrent] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_function] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_elseif] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_switch] = ACTIONS(2313), - [anon_sym_foreach] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_using] = ACTIONS(2313), - [sym_float] = ACTIONS(2315), - [sym_integer] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_True] = ACTIONS(2313), - [anon_sym_TRUE] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_False] = ACTIONS(2313), - [anon_sym_FALSE] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [anon_sym_Null] = ACTIONS(2313), - [anon_sym_NULL] = ACTIONS(2313), - [sym_string] = ACTIONS(2315), - [anon_sym_AT] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_array] = ACTIONS(2313), - [anon_sym_varray] = ACTIONS(2313), - [anon_sym_darray] = ACTIONS(2313), - [anon_sym_vec] = ACTIONS(2313), - [anon_sym_dict] = ACTIONS(2313), - [anon_sym_keyset] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_interface] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_abstract] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(2315), - [sym_final_modifier] = ACTIONS(2313), - [sym_xhp_modifier] = ACTIONS(2313), - [sym_xhp_identifier] = ACTIONS(2313), - [sym_xhp_class_identifier] = ACTIONS(2315), + [1212] = { + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2433), + [sym_variable] = ACTIONS(2435), + [sym_pipe_variable] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_newtype] = ACTIONS(2433), + [anon_sym_shape] = ACTIONS(2433), + [anon_sym_tuple] = ACTIONS(2433), + [anon_sym_clone] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_print] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_include] = ACTIONS(2433), + [anon_sym_include_once] = ACTIONS(2433), + [anon_sym_require] = ACTIONS(2433), + [anon_sym_require_once] = ACTIONS(2433), + [anon_sym_BSLASH] = ACTIONS(2435), + [anon_sym_self] = ACTIONS(2433), + [anon_sym_parent] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_LT_LT_LT] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_echo] = ACTIONS(2433), + [anon_sym_unset] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_concurrent] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_elseif] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_foreach] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [sym_float] = ACTIONS(2435), + [sym_integer] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_True] = ACTIONS(2433), + [anon_sym_TRUE] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_False] = ACTIONS(2433), + [anon_sym_FALSE] = ACTIONS(2433), + [anon_sym_null] = ACTIONS(2433), + [anon_sym_Null] = ACTIONS(2433), + [anon_sym_NULL] = ACTIONS(2433), + [sym_string] = ACTIONS(2435), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_array] = ACTIONS(2433), + [anon_sym_varray] = ACTIONS(2433), + [anon_sym_darray] = ACTIONS(2433), + [anon_sym_vec] = ACTIONS(2433), + [anon_sym_dict] = ACTIONS(2433), + [anon_sym_keyset] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_abstract] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2435), + [sym_final_modifier] = ACTIONS(2433), + [sym_xhp_modifier] = ACTIONS(2433), + [sym_xhp_identifier] = ACTIONS(2433), + [sym_xhp_class_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(3), }, - [1270] = { - [sym_identifier] = ACTIONS(2481), - [sym_variable] = ACTIONS(2483), - [sym_pipe_variable] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_newtype] = ACTIONS(2481), - [anon_sym_shape] = ACTIONS(2481), - [anon_sym_tuple] = ACTIONS(2481), - [anon_sym_clone] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2481), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_LT_LT_LT] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_throw] = ACTIONS(2481), - [anon_sym_echo] = ACTIONS(2481), - [anon_sym_unset] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_concurrent] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_foreach] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_using] = ACTIONS(2481), - [sym_float] = ACTIONS(2483), - [sym_integer] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2481), - [anon_sym_True] = ACTIONS(2481), - [anon_sym_TRUE] = ACTIONS(2481), - [anon_sym_false] = ACTIONS(2481), - [anon_sym_False] = ACTIONS(2481), - [anon_sym_FALSE] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2481), - [anon_sym_Null] = ACTIONS(2481), - [anon_sym_NULL] = ACTIONS(2481), - [sym_string] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_array] = ACTIONS(2481), - [anon_sym_varray] = ACTIONS(2481), - [anon_sym_darray] = ACTIONS(2481), - [anon_sym_vec] = ACTIONS(2481), - [anon_sym_dict] = ACTIONS(2481), - [anon_sym_keyset] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_trait] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_class] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), - [anon_sym_abstract] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2483), - [sym_final_modifier] = ACTIONS(2481), - [sym_xhp_modifier] = ACTIONS(2481), - [sym_xhp_identifier] = ACTIONS(2481), - [sym_xhp_class_identifier] = ACTIONS(2483), + [1213] = { + [sym_identifier] = ACTIONS(2409), + [sym_variable] = ACTIONS(2411), + [sym_pipe_variable] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_newtype] = ACTIONS(2409), + [anon_sym_shape] = ACTIONS(2409), + [anon_sym_tuple] = ACTIONS(2409), + [anon_sym_clone] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_include] = ACTIONS(2409), + [anon_sym_include_once] = ACTIONS(2409), + [anon_sym_require] = ACTIONS(2409), + [anon_sym_require_once] = ACTIONS(2409), + [anon_sym_BSLASH] = ACTIONS(2411), + [anon_sym_self] = ACTIONS(2409), + [anon_sym_parent] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_LT_LT] = ACTIONS(2409), + [anon_sym_LT_LT_LT] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_throw] = ACTIONS(2409), + [anon_sym_echo] = ACTIONS(2409), + [anon_sym_unset] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_concurrent] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_switch] = ACTIONS(2409), + [anon_sym_case] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_foreach] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_using] = ACTIONS(2409), + [sym_float] = ACTIONS(2411), + [sym_integer] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_True] = ACTIONS(2409), + [anon_sym_TRUE] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_False] = ACTIONS(2409), + [anon_sym_FALSE] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2409), + [anon_sym_Null] = ACTIONS(2409), + [anon_sym_NULL] = ACTIONS(2409), + [sym_string] = ACTIONS(2411), + [anon_sym_AT] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2411), + [anon_sym_array] = ACTIONS(2409), + [anon_sym_varray] = ACTIONS(2409), + [anon_sym_darray] = ACTIONS(2409), + [anon_sym_vec] = ACTIONS(2409), + [anon_sym_dict] = ACTIONS(2409), + [anon_sym_keyset] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_list] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_PLUS_PLUS] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_interface] = ACTIONS(2409), + [anon_sym_class] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_abstract] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(2411), + [sym_final_modifier] = ACTIONS(2409), + [sym_xhp_modifier] = ACTIONS(2409), + [sym_xhp_identifier] = ACTIONS(2409), + [sym_xhp_class_identifier] = ACTIONS(2411), [sym_comment] = ACTIONS(3), }, - [1271] = { - [ts_builtin_sym_end] = ACTIONS(2303), - [sym_identifier] = ACTIONS(2301), - [sym_variable] = ACTIONS(2303), - [sym_pipe_variable] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_newtype] = ACTIONS(2301), - [anon_sym_shape] = ACTIONS(2301), - [anon_sym_tuple] = ACTIONS(2301), - [anon_sym_clone] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_print] = ACTIONS(2301), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_LT_LT] = ACTIONS(2301), - [anon_sym_LT_LT_LT] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_throw] = ACTIONS(2301), - [anon_sym_echo] = ACTIONS(2301), - [anon_sym_unset] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_concurrent] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_function] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_elseif] = ACTIONS(2301), - [anon_sym_else] = ACTIONS(2301), - [anon_sym_switch] = ACTIONS(2301), - [anon_sym_foreach] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_using] = ACTIONS(2301), - [sym_float] = ACTIONS(2303), - [sym_integer] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_True] = ACTIONS(2301), - [anon_sym_TRUE] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_False] = ACTIONS(2301), - [anon_sym_FALSE] = ACTIONS(2301), - [anon_sym_null] = ACTIONS(2301), - [anon_sym_Null] = ACTIONS(2301), - [anon_sym_NULL] = ACTIONS(2301), - [sym_string] = ACTIONS(2303), - [anon_sym_AT] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_array] = ACTIONS(2301), - [anon_sym_varray] = ACTIONS(2301), - [anon_sym_darray] = ACTIONS(2301), - [anon_sym_vec] = ACTIONS(2301), - [anon_sym_dict] = ACTIONS(2301), - [anon_sym_keyset] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_interface] = ACTIONS(2301), - [anon_sym_class] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_abstract] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [sym_final_modifier] = ACTIONS(2301), - [sym_xhp_modifier] = ACTIONS(2301), - [sym_xhp_identifier] = ACTIONS(2301), - [sym_xhp_class_identifier] = ACTIONS(2303), + [1214] = { + [sym_identifier] = ACTIONS(2213), + [sym_variable] = ACTIONS(2215), + [sym_pipe_variable] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_newtype] = ACTIONS(2213), + [anon_sym_shape] = ACTIONS(2213), + [anon_sym_tuple] = ACTIONS(2213), + [anon_sym_clone] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_print] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_include] = ACTIONS(2213), + [anon_sym_include_once] = ACTIONS(2213), + [anon_sym_require] = ACTIONS(2213), + [anon_sym_require_once] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2215), + [anon_sym_self] = ACTIONS(2213), + [anon_sym_parent] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_LT_LT_LT] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_echo] = ACTIONS(2213), + [anon_sym_unset] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_concurrent] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_foreach] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [sym_float] = ACTIONS(2215), + [sym_integer] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_True] = ACTIONS(2213), + [anon_sym_TRUE] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_False] = ACTIONS(2213), + [anon_sym_FALSE] = ACTIONS(2213), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_Null] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2213), + [sym_string] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_array] = ACTIONS(2213), + [anon_sym_varray] = ACTIONS(2213), + [anon_sym_darray] = ACTIONS(2213), + [anon_sym_vec] = ACTIONS(2213), + [anon_sym_dict] = ACTIONS(2213), + [anon_sym_keyset] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_list] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2215), + [sym_final_modifier] = ACTIONS(2213), + [sym_xhp_modifier] = ACTIONS(2213), + [sym_xhp_identifier] = ACTIONS(2213), + [sym_xhp_class_identifier] = ACTIONS(2215), [sym_comment] = ACTIONS(3), }, - [1272] = { - [sym_identifier] = ACTIONS(2485), - [sym_variable] = ACTIONS(2487), - [sym_pipe_variable] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2485), - [anon_sym_newtype] = ACTIONS(2485), - [anon_sym_shape] = ACTIONS(2485), - [anon_sym_tuple] = ACTIONS(2485), - [anon_sym_clone] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2485), - [anon_sym_namespace] = ACTIONS(2485), - [anon_sym_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_LT_LT_LT] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_echo] = ACTIONS(2485), - [anon_sym_unset] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_concurrent] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_elseif] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_switch] = ACTIONS(2485), - [anon_sym_foreach] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_using] = ACTIONS(2485), - [sym_float] = ACTIONS(2487), - [sym_integer] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_True] = ACTIONS(2485), - [anon_sym_TRUE] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [anon_sym_False] = ACTIONS(2485), - [anon_sym_FALSE] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2485), - [anon_sym_Null] = ACTIONS(2485), - [anon_sym_NULL] = ACTIONS(2485), - [sym_string] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_array] = ACTIONS(2485), - [anon_sym_varray] = ACTIONS(2485), - [anon_sym_darray] = ACTIONS(2485), - [anon_sym_vec] = ACTIONS(2485), - [anon_sym_dict] = ACTIONS(2485), - [anon_sym_keyset] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2485), - [anon_sym_async] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2485), - [anon_sym_trait] = ACTIONS(2485), - [anon_sym_interface] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2485), - [anon_sym_enum] = ACTIONS(2485), - [anon_sym_abstract] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2487), - [sym_final_modifier] = ACTIONS(2485), - [sym_xhp_modifier] = ACTIONS(2485), - [sym_xhp_identifier] = ACTIONS(2485), - [sym_xhp_class_identifier] = ACTIONS(2487), + [1215] = { + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2437), + [sym_variable] = ACTIONS(2439), + [sym_pipe_variable] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_newtype] = ACTIONS(2437), + [anon_sym_shape] = ACTIONS(2437), + [anon_sym_tuple] = ACTIONS(2437), + [anon_sym_clone] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_print] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_include] = ACTIONS(2437), + [anon_sym_include_once] = ACTIONS(2437), + [anon_sym_require] = ACTIONS(2437), + [anon_sym_require_once] = ACTIONS(2437), + [anon_sym_BSLASH] = ACTIONS(2439), + [anon_sym_self] = ACTIONS(2437), + [anon_sym_parent] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_LT_LT] = ACTIONS(2437), + [anon_sym_LT_LT_LT] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_echo] = ACTIONS(2437), + [anon_sym_unset] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_concurrent] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_foreach] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [sym_float] = ACTIONS(2439), + [sym_integer] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_True] = ACTIONS(2437), + [anon_sym_TRUE] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_False] = ACTIONS(2437), + [anon_sym_FALSE] = ACTIONS(2437), + [anon_sym_null] = ACTIONS(2437), + [anon_sym_Null] = ACTIONS(2437), + [anon_sym_NULL] = ACTIONS(2437), + [sym_string] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_array] = ACTIONS(2437), + [anon_sym_varray] = ACTIONS(2437), + [anon_sym_darray] = ACTIONS(2437), + [anon_sym_vec] = ACTIONS(2437), + [anon_sym_dict] = ACTIONS(2437), + [anon_sym_keyset] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_interface] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_abstract] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [sym_final_modifier] = ACTIONS(2437), + [sym_xhp_modifier] = ACTIONS(2437), + [sym_xhp_identifier] = ACTIONS(2437), + [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, - [1273] = { - [sym_identifier] = ACTIONS(2489), - [sym_variable] = ACTIONS(2491), - [sym_pipe_variable] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_newtype] = ACTIONS(2489), - [anon_sym_shape] = ACTIONS(2489), - [anon_sym_tuple] = ACTIONS(2489), - [anon_sym_clone] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_print] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), - [anon_sym_LT_LT_LT] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_echo] = ACTIONS(2489), - [anon_sym_unset] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_concurrent] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_elseif] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_foreach] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [sym_float] = ACTIONS(2491), - [sym_integer] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_True] = ACTIONS(2489), - [anon_sym_TRUE] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_False] = ACTIONS(2489), - [anon_sym_FALSE] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [anon_sym_Null] = ACTIONS(2489), - [anon_sym_NULL] = ACTIONS(2489), - [sym_string] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_array] = ACTIONS(2489), - [anon_sym_varray] = ACTIONS(2489), - [anon_sym_darray] = ACTIONS(2489), - [anon_sym_vec] = ACTIONS(2489), - [anon_sym_dict] = ACTIONS(2489), - [anon_sym_keyset] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2491), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_trait] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2491), - [sym_final_modifier] = ACTIONS(2489), - [sym_xhp_modifier] = ACTIONS(2489), - [sym_xhp_identifier] = ACTIONS(2489), - [sym_xhp_class_identifier] = ACTIONS(2491), + [1216] = { + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2441), + [sym_variable] = ACTIONS(2443), + [sym_pipe_variable] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_newtype] = ACTIONS(2441), + [anon_sym_shape] = ACTIONS(2441), + [anon_sym_tuple] = ACTIONS(2441), + [anon_sym_clone] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_include] = ACTIONS(2441), + [anon_sym_include_once] = ACTIONS(2441), + [anon_sym_require] = ACTIONS(2441), + [anon_sym_require_once] = ACTIONS(2441), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_self] = ACTIONS(2441), + [anon_sym_parent] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_LT] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_echo] = ACTIONS(2441), + [anon_sym_unset] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_concurrent] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_elseif] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_foreach] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [sym_float] = ACTIONS(2443), + [sym_integer] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_True] = ACTIONS(2441), + [anon_sym_TRUE] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_False] = ACTIONS(2441), + [anon_sym_FALSE] = ACTIONS(2441), + [anon_sym_null] = ACTIONS(2441), + [anon_sym_Null] = ACTIONS(2441), + [anon_sym_NULL] = ACTIONS(2441), + [sym_string] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_array] = ACTIONS(2441), + [anon_sym_varray] = ACTIONS(2441), + [anon_sym_darray] = ACTIONS(2441), + [anon_sym_vec] = ACTIONS(2441), + [anon_sym_dict] = ACTIONS(2441), + [anon_sym_keyset] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_abstract] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2443), + [sym_final_modifier] = ACTIONS(2441), + [sym_xhp_modifier] = ACTIONS(2441), + [sym_xhp_identifier] = ACTIONS(2441), + [sym_xhp_class_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(3), }, - [1274] = { - [sym_identifier] = ACTIONS(2493), - [sym_variable] = ACTIONS(2495), - [sym_pipe_variable] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2493), - [anon_sym_newtype] = ACTIONS(2493), - [anon_sym_shape] = ACTIONS(2493), - [anon_sym_tuple] = ACTIONS(2493), - [anon_sym_clone] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_print] = ACTIONS(2493), - [anon_sym_namespace] = ACTIONS(2493), - [anon_sym_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = ACTIONS(2493), - [anon_sym_LT_LT] = ACTIONS(2493), - [anon_sym_LT_LT_LT] = ACTIONS(2495), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_throw] = ACTIONS(2493), - [anon_sym_echo] = ACTIONS(2493), - [anon_sym_unset] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_concurrent] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_function] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_elseif] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_switch] = ACTIONS(2493), - [anon_sym_foreach] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_using] = ACTIONS(2493), - [sym_float] = ACTIONS(2495), - [sym_integer] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_True] = ACTIONS(2493), - [anon_sym_TRUE] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_False] = ACTIONS(2493), - [anon_sym_FALSE] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [anon_sym_Null] = ACTIONS(2493), - [anon_sym_NULL] = ACTIONS(2493), - [sym_string] = ACTIONS(2495), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_array] = ACTIONS(2493), - [anon_sym_varray] = ACTIONS(2493), - [anon_sym_darray] = ACTIONS(2493), - [anon_sym_vec] = ACTIONS(2493), - [anon_sym_dict] = ACTIONS(2493), - [anon_sym_keyset] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2493), - [anon_sym_async] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2493), - [anon_sym_interface] = ACTIONS(2493), - [anon_sym_class] = ACTIONS(2493), - [anon_sym_enum] = ACTIONS(2493), - [anon_sym_abstract] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2495), - [sym_final_modifier] = ACTIONS(2493), - [sym_xhp_modifier] = ACTIONS(2493), - [sym_xhp_identifier] = ACTIONS(2493), - [sym_xhp_class_identifier] = ACTIONS(2495), + [1217] = { + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2453), + [sym_variable] = ACTIONS(2455), + [sym_pipe_variable] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_newtype] = ACTIONS(2453), + [anon_sym_shape] = ACTIONS(2453), + [anon_sym_tuple] = ACTIONS(2453), + [anon_sym_clone] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_include] = ACTIONS(2453), + [anon_sym_include_once] = ACTIONS(2453), + [anon_sym_require] = ACTIONS(2453), + [anon_sym_require_once] = ACTIONS(2453), + [anon_sym_BSLASH] = ACTIONS(2455), + [anon_sym_self] = ACTIONS(2453), + [anon_sym_parent] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_LT_LT_LT] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_throw] = ACTIONS(2453), + [anon_sym_echo] = ACTIONS(2453), + [anon_sym_unset] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_concurrent] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_elseif] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_foreach] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_using] = ACTIONS(2453), + [sym_float] = ACTIONS(2455), + [sym_integer] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_True] = ACTIONS(2453), + [anon_sym_TRUE] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_False] = ACTIONS(2453), + [anon_sym_FALSE] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [anon_sym_Null] = ACTIONS(2453), + [anon_sym_NULL] = ACTIONS(2453), + [sym_string] = ACTIONS(2455), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_array] = ACTIONS(2453), + [anon_sym_varray] = ACTIONS(2453), + [anon_sym_darray] = ACTIONS(2453), + [anon_sym_vec] = ACTIONS(2453), + [anon_sym_dict] = ACTIONS(2453), + [anon_sym_keyset] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_abstract] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2455), + [sym_final_modifier] = ACTIONS(2453), + [sym_xhp_modifier] = ACTIONS(2453), + [sym_xhp_identifier] = ACTIONS(2453), + [sym_xhp_class_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(3), + }, + [1218] = { + [ts_builtin_sym_end] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2357), + [sym_variable] = ACTIONS(2359), + [sym_pipe_variable] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_newtype] = ACTIONS(2357), + [anon_sym_shape] = ACTIONS(2357), + [anon_sym_tuple] = ACTIONS(2357), + [anon_sym_clone] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_print] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_include] = ACTIONS(2357), + [anon_sym_include_once] = ACTIONS(2357), + [anon_sym_require] = ACTIONS(2357), + [anon_sym_require_once] = ACTIONS(2357), + [anon_sym_BSLASH] = ACTIONS(2359), + [anon_sym_self] = ACTIONS(2357), + [anon_sym_parent] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_LT_LT] = ACTIONS(2357), + [anon_sym_LT_LT_LT] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_throw] = ACTIONS(2357), + [anon_sym_echo] = ACTIONS(2357), + [anon_sym_unset] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_concurrent] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_function] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_elseif] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2357), + [anon_sym_switch] = ACTIONS(2357), + [anon_sym_foreach] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [sym_float] = ACTIONS(2359), + [sym_integer] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_True] = ACTIONS(2357), + [anon_sym_TRUE] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_False] = ACTIONS(2357), + [anon_sym_FALSE] = ACTIONS(2357), + [anon_sym_null] = ACTIONS(2357), + [anon_sym_Null] = ACTIONS(2357), + [anon_sym_NULL] = ACTIONS(2357), + [sym_string] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_array] = ACTIONS(2357), + [anon_sym_varray] = ACTIONS(2357), + [anon_sym_darray] = ACTIONS(2357), + [anon_sym_vec] = ACTIONS(2357), + [anon_sym_dict] = ACTIONS(2357), + [anon_sym_keyset] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_list] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(2359), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_interface] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_abstract] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2359), + [sym_final_modifier] = ACTIONS(2357), + [sym_xhp_modifier] = ACTIONS(2357), + [sym_xhp_identifier] = ACTIONS(2357), + [sym_xhp_class_identifier] = ACTIONS(2359), [sym_comment] = ACTIONS(3), }, - [1275] = { - [sym_identifier] = ACTIONS(2213), - [sym_variable] = ACTIONS(2215), - [sym_pipe_variable] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_newtype] = ACTIONS(2213), - [anon_sym_shape] = ACTIONS(2213), - [anon_sym_tuple] = ACTIONS(2213), - [anon_sym_clone] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_print] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_LT_LT_LT] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_echo] = ACTIONS(2213), - [anon_sym_unset] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_concurrent] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_elseif] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_foreach] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [sym_float] = ACTIONS(2215), - [sym_integer] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_True] = ACTIONS(2213), - [anon_sym_TRUE] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_False] = ACTIONS(2213), - [anon_sym_FALSE] = ACTIONS(2213), - [anon_sym_null] = ACTIONS(2213), - [anon_sym_Null] = ACTIONS(2213), - [anon_sym_NULL] = ACTIONS(2213), - [sym_string] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_array] = ACTIONS(2213), - [anon_sym_varray] = ACTIONS(2213), - [anon_sym_darray] = ACTIONS(2213), - [anon_sym_vec] = ACTIONS(2213), - [anon_sym_dict] = ACTIONS(2213), - [anon_sym_keyset] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2215), - [sym_final_modifier] = ACTIONS(2213), - [sym_xhp_modifier] = ACTIONS(2213), - [sym_xhp_identifier] = ACTIONS(2213), - [sym_xhp_class_identifier] = ACTIONS(2215), + [1219] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1276] = { - [sym_identifier] = ACTIONS(2509), - [sym_variable] = ACTIONS(2511), - [sym_pipe_variable] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_newtype] = ACTIONS(2509), - [anon_sym_shape] = ACTIONS(2509), - [anon_sym_tuple] = ACTIONS(2509), - [anon_sym_clone] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_LT_LT_LT] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_echo] = ACTIONS(2509), - [anon_sym_unset] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_concurrent] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_elseif] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_foreach] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [sym_float] = ACTIONS(2511), - [sym_integer] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2509), - [anon_sym_True] = ACTIONS(2509), - [anon_sym_TRUE] = ACTIONS(2509), - [anon_sym_false] = ACTIONS(2509), - [anon_sym_False] = ACTIONS(2509), - [anon_sym_FALSE] = ACTIONS(2509), - [anon_sym_null] = ACTIONS(2509), - [anon_sym_Null] = ACTIONS(2509), - [anon_sym_NULL] = ACTIONS(2509), - [sym_string] = ACTIONS(2511), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_array] = ACTIONS(2509), - [anon_sym_varray] = ACTIONS(2509), - [anon_sym_darray] = ACTIONS(2509), - [anon_sym_vec] = ACTIONS(2509), - [anon_sym_dict] = ACTIONS(2509), - [anon_sym_keyset] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_trait] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2511), - [sym_final_modifier] = ACTIONS(2509), - [sym_xhp_modifier] = ACTIONS(2509), - [sym_xhp_identifier] = ACTIONS(2509), - [sym_xhp_class_identifier] = ACTIONS(2511), + [1220] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1277] = { - [sym_identifier] = ACTIONS(2521), - [sym_variable] = ACTIONS(2523), - [sym_pipe_variable] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_newtype] = ACTIONS(2521), - [anon_sym_shape] = ACTIONS(2521), - [anon_sym_tuple] = ACTIONS(2521), - [anon_sym_clone] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_print] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_LT_LT_LT] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_echo] = ACTIONS(2521), - [anon_sym_unset] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_concurrent] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_elseif] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_foreach] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [sym_float] = ACTIONS(2523), - [sym_integer] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_True] = ACTIONS(2521), - [anon_sym_TRUE] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_False] = ACTIONS(2521), - [anon_sym_FALSE] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [anon_sym_Null] = ACTIONS(2521), - [anon_sym_NULL] = ACTIONS(2521), - [sym_string] = ACTIONS(2523), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_array] = ACTIONS(2521), - [anon_sym_varray] = ACTIONS(2521), - [anon_sym_darray] = ACTIONS(2521), - [anon_sym_vec] = ACTIONS(2521), - [anon_sym_dict] = ACTIONS(2521), - [anon_sym_keyset] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_trait] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2523), - [sym_final_modifier] = ACTIONS(2521), - [sym_xhp_modifier] = ACTIONS(2521), - [sym_xhp_identifier] = ACTIONS(2521), - [sym_xhp_class_identifier] = ACTIONS(2523), + [1221] = { + [sym_identifier] = ACTIONS(2405), + [sym_variable] = ACTIONS(2407), + [sym_pipe_variable] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_newtype] = ACTIONS(2405), + [anon_sym_shape] = ACTIONS(2405), + [anon_sym_tuple] = ACTIONS(2405), + [anon_sym_clone] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_print] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_include] = ACTIONS(2405), + [anon_sym_include_once] = ACTIONS(2405), + [anon_sym_require] = ACTIONS(2405), + [anon_sym_require_once] = ACTIONS(2405), + [anon_sym_BSLASH] = ACTIONS(2407), + [anon_sym_self] = ACTIONS(2405), + [anon_sym_parent] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_LT_LT] = ACTIONS(2405), + [anon_sym_LT_LT_LT] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_echo] = ACTIONS(2405), + [anon_sym_unset] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_concurrent] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_foreach] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [sym_float] = ACTIONS(2407), + [sym_integer] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_True] = ACTIONS(2405), + [anon_sym_TRUE] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_False] = ACTIONS(2405), + [anon_sym_FALSE] = ACTIONS(2405), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_Null] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2405), + [sym_string] = ACTIONS(2407), + [anon_sym_AT] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_array] = ACTIONS(2405), + [anon_sym_varray] = ACTIONS(2405), + [anon_sym_darray] = ACTIONS(2405), + [anon_sym_vec] = ACTIONS(2405), + [anon_sym_dict] = ACTIONS(2405), + [anon_sym_keyset] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_abstract] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2407), + [sym_final_modifier] = ACTIONS(2405), + [sym_xhp_modifier] = ACTIONS(2405), + [sym_xhp_identifier] = ACTIONS(2405), + [sym_xhp_class_identifier] = ACTIONS(2407), [sym_comment] = ACTIONS(3), }, - [1278] = { - [sym_identifier] = ACTIONS(2525), - [sym_variable] = ACTIONS(2527), - [sym_pipe_variable] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_newtype] = ACTIONS(2525), - [anon_sym_shape] = ACTIONS(2525), - [anon_sym_tuple] = ACTIONS(2525), - [anon_sym_clone] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_LT_LT_LT] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_echo] = ACTIONS(2525), - [anon_sym_unset] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_concurrent] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_elseif] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_foreach] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [sym_float] = ACTIONS(2527), - [sym_integer] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_True] = ACTIONS(2525), - [anon_sym_TRUE] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_False] = ACTIONS(2525), - [anon_sym_FALSE] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2525), - [anon_sym_Null] = ACTIONS(2525), - [anon_sym_NULL] = ACTIONS(2525), - [sym_string] = ACTIONS(2527), - [anon_sym_AT] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_array] = ACTIONS(2525), - [anon_sym_varray] = ACTIONS(2525), - [anon_sym_darray] = ACTIONS(2525), - [anon_sym_vec] = ACTIONS(2525), - [anon_sym_dict] = ACTIONS(2525), - [anon_sym_keyset] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_trait] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2527), - [sym_final_modifier] = ACTIONS(2525), - [sym_xhp_modifier] = ACTIONS(2525), - [sym_xhp_identifier] = ACTIONS(2525), - [sym_xhp_class_identifier] = ACTIONS(2527), + [1222] = { + [sym_identifier] = ACTIONS(2217), + [sym_variable] = ACTIONS(2219), + [sym_pipe_variable] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_newtype] = ACTIONS(2217), + [anon_sym_shape] = ACTIONS(2217), + [anon_sym_tuple] = ACTIONS(2217), + [anon_sym_clone] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2217), + [anon_sym_include] = ACTIONS(2217), + [anon_sym_include_once] = ACTIONS(2217), + [anon_sym_require] = ACTIONS(2217), + [anon_sym_require_once] = ACTIONS(2217), + [anon_sym_BSLASH] = ACTIONS(2219), + [anon_sym_self] = ACTIONS(2217), + [anon_sym_parent] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_LT_LT_LT] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_throw] = ACTIONS(2217), + [anon_sym_echo] = ACTIONS(2217), + [anon_sym_unset] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_concurrent] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_function] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_switch] = ACTIONS(2217), + [anon_sym_case] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_foreach] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_using] = ACTIONS(2217), + [sym_float] = ACTIONS(2219), + [sym_integer] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_True] = ACTIONS(2217), + [anon_sym_TRUE] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_False] = ACTIONS(2217), + [anon_sym_FALSE] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [anon_sym_Null] = ACTIONS(2217), + [anon_sym_NULL] = ACTIONS(2217), + [sym_string] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_array] = ACTIONS(2217), + [anon_sym_varray] = ACTIONS(2217), + [anon_sym_darray] = ACTIONS(2217), + [anon_sym_vec] = ACTIONS(2217), + [anon_sym_dict] = ACTIONS(2217), + [anon_sym_keyset] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_list] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_class] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_abstract] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2219), + [sym_final_modifier] = ACTIONS(2217), + [sym_xhp_modifier] = ACTIONS(2217), + [sym_xhp_identifier] = ACTIONS(2217), + [sym_xhp_class_identifier] = ACTIONS(2219), [sym_comment] = ACTIONS(3), }, - [1279] = { - [sym_identifier] = ACTIONS(2541), - [sym_variable] = ACTIONS(2543), - [sym_pipe_variable] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_newtype] = ACTIONS(2541), - [anon_sym_shape] = ACTIONS(2541), - [anon_sym_tuple] = ACTIONS(2541), - [anon_sym_clone] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), - [anon_sym_LT_LT_LT] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_echo] = ACTIONS(2541), - [anon_sym_unset] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_concurrent] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2541), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_foreach] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [sym_float] = ACTIONS(2543), - [sym_integer] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_True] = ACTIONS(2541), - [anon_sym_TRUE] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_False] = ACTIONS(2541), - [anon_sym_FALSE] = ACTIONS(2541), - [anon_sym_null] = ACTIONS(2541), - [anon_sym_Null] = ACTIONS(2541), - [anon_sym_NULL] = ACTIONS(2541), - [sym_string] = ACTIONS(2543), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_array] = ACTIONS(2541), - [anon_sym_varray] = ACTIONS(2541), - [anon_sym_darray] = ACTIONS(2541), - [anon_sym_vec] = ACTIONS(2541), - [anon_sym_dict] = ACTIONS(2541), - [anon_sym_keyset] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2543), - [sym_final_modifier] = ACTIONS(2541), - [sym_xhp_modifier] = ACTIONS(2541), - [sym_xhp_identifier] = ACTIONS(2541), - [sym_xhp_class_identifier] = ACTIONS(2543), + [1223] = { + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2461), + [sym_variable] = ACTIONS(2463), + [sym_pipe_variable] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_newtype] = ACTIONS(2461), + [anon_sym_shape] = ACTIONS(2461), + [anon_sym_tuple] = ACTIONS(2461), + [anon_sym_clone] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_include] = ACTIONS(2461), + [anon_sym_include_once] = ACTIONS(2461), + [anon_sym_require] = ACTIONS(2461), + [anon_sym_require_once] = ACTIONS(2461), + [anon_sym_BSLASH] = ACTIONS(2463), + [anon_sym_self] = ACTIONS(2461), + [anon_sym_parent] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_LT_LT_LT] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_echo] = ACTIONS(2461), + [anon_sym_unset] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_concurrent] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_function] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_elseif] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_foreach] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_using] = ACTIONS(2461), + [sym_float] = ACTIONS(2463), + [sym_integer] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_True] = ACTIONS(2461), + [anon_sym_TRUE] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_False] = ACTIONS(2461), + [anon_sym_FALSE] = ACTIONS(2461), + [anon_sym_null] = ACTIONS(2461), + [anon_sym_Null] = ACTIONS(2461), + [anon_sym_NULL] = ACTIONS(2461), + [sym_string] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_array] = ACTIONS(2461), + [anon_sym_varray] = ACTIONS(2461), + [anon_sym_darray] = ACTIONS(2461), + [anon_sym_vec] = ACTIONS(2461), + [anon_sym_dict] = ACTIONS(2461), + [anon_sym_keyset] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_list] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_interface] = ACTIONS(2461), + [anon_sym_class] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_abstract] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2463), + [sym_final_modifier] = ACTIONS(2461), + [sym_xhp_modifier] = ACTIONS(2461), + [sym_xhp_identifier] = ACTIONS(2461), + [sym_xhp_class_identifier] = ACTIONS(2463), [sym_comment] = ACTIONS(3), }, - [1280] = { - [sym_identifier] = ACTIONS(2545), - [sym_variable] = ACTIONS(2547), - [sym_pipe_variable] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_newtype] = ACTIONS(2545), - [anon_sym_shape] = ACTIONS(2545), - [anon_sym_tuple] = ACTIONS(2545), - [anon_sym_clone] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_print] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), - [anon_sym_LT_LT_LT] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_echo] = ACTIONS(2545), - [anon_sym_unset] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_concurrent] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_elseif] = ACTIONS(2545), - [anon_sym_else] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_foreach] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [sym_float] = ACTIONS(2547), - [sym_integer] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_True] = ACTIONS(2545), - [anon_sym_TRUE] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_False] = ACTIONS(2545), - [anon_sym_FALSE] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_Null] = ACTIONS(2545), - [anon_sym_NULL] = ACTIONS(2545), - [sym_string] = ACTIONS(2547), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_array] = ACTIONS(2545), - [anon_sym_varray] = ACTIONS(2545), - [anon_sym_darray] = ACTIONS(2545), - [anon_sym_vec] = ACTIONS(2545), - [anon_sym_dict] = ACTIONS(2545), - [anon_sym_keyset] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2547), - [sym_final_modifier] = ACTIONS(2545), - [sym_xhp_modifier] = ACTIONS(2545), - [sym_xhp_identifier] = ACTIONS(2545), - [sym_xhp_class_identifier] = ACTIONS(2547), + [1224] = { + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2469), + [sym_variable] = ACTIONS(2471), + [sym_pipe_variable] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_newtype] = ACTIONS(2469), + [anon_sym_shape] = ACTIONS(2469), + [anon_sym_tuple] = ACTIONS(2469), + [anon_sym_clone] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_include_once] = ACTIONS(2469), + [anon_sym_require] = ACTIONS(2469), + [anon_sym_require_once] = ACTIONS(2469), + [anon_sym_BSLASH] = ACTIONS(2471), + [anon_sym_self] = ACTIONS(2469), + [anon_sym_parent] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_LT_LT_LT] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_echo] = ACTIONS(2469), + [anon_sym_unset] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_concurrent] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_function] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_elseif] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_foreach] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [sym_integer] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_True] = ACTIONS(2469), + [anon_sym_TRUE] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_False] = ACTIONS(2469), + [anon_sym_FALSE] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [anon_sym_Null] = ACTIONS(2469), + [anon_sym_NULL] = ACTIONS(2469), + [sym_string] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_array] = ACTIONS(2469), + [anon_sym_varray] = ACTIONS(2469), + [anon_sym_darray] = ACTIONS(2469), + [anon_sym_vec] = ACTIONS(2469), + [anon_sym_dict] = ACTIONS(2469), + [anon_sym_keyset] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_abstract] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2471), + [sym_final_modifier] = ACTIONS(2469), + [sym_xhp_modifier] = ACTIONS(2469), + [sym_xhp_identifier] = ACTIONS(2469), + [sym_xhp_class_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(3), }, - [1281] = { - [sym_identifier] = ACTIONS(2553), - [sym_variable] = ACTIONS(2555), - [sym_pipe_variable] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2553), - [anon_sym_newtype] = ACTIONS(2553), - [anon_sym_shape] = ACTIONS(2553), - [anon_sym_tuple] = ACTIONS(2553), - [anon_sym_clone] = ACTIONS(2553), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_namespace] = ACTIONS(2553), - [anon_sym_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_LT_LT] = ACTIONS(2553), - [anon_sym_LT_LT_LT] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_throw] = ACTIONS(2553), - [anon_sym_echo] = ACTIONS(2553), - [anon_sym_unset] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_concurrent] = ACTIONS(2553), - [anon_sym_use] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_elseif] = ACTIONS(2553), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_foreach] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(2553), - [sym_float] = ACTIONS(2555), - [sym_integer] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_True] = ACTIONS(2553), - [anon_sym_TRUE] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_False] = ACTIONS(2553), - [anon_sym_FALSE] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_Null] = ACTIONS(2553), - [anon_sym_NULL] = ACTIONS(2553), - [sym_string] = ACTIONS(2555), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_array] = ACTIONS(2553), - [anon_sym_varray] = ACTIONS(2553), - [anon_sym_darray] = ACTIONS(2553), - [anon_sym_vec] = ACTIONS(2553), - [anon_sym_dict] = ACTIONS(2553), - [anon_sym_keyset] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_trait] = ACTIONS(2553), - [anon_sym_interface] = ACTIONS(2553), - [anon_sym_class] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2555), - [sym_final_modifier] = ACTIONS(2553), - [sym_xhp_modifier] = ACTIONS(2553), - [sym_xhp_identifier] = ACTIONS(2553), - [sym_xhp_class_identifier] = ACTIONS(2555), + [1225] = { + [sym_identifier] = ACTIONS(2221), + [sym_variable] = ACTIONS(2223), + [sym_pipe_variable] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_newtype] = ACTIONS(2221), + [anon_sym_shape] = ACTIONS(2221), + [anon_sym_tuple] = ACTIONS(2221), + [anon_sym_clone] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_include] = ACTIONS(2221), + [anon_sym_include_once] = ACTIONS(2221), + [anon_sym_require] = ACTIONS(2221), + [anon_sym_require_once] = ACTIONS(2221), + [anon_sym_BSLASH] = ACTIONS(2223), + [anon_sym_self] = ACTIONS(2221), + [anon_sym_parent] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_LT_LT_LT] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_echo] = ACTIONS(2221), + [anon_sym_unset] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_concurrent] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_foreach] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [sym_float] = ACTIONS(2223), + [sym_integer] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_True] = ACTIONS(2221), + [anon_sym_TRUE] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_False] = ACTIONS(2221), + [anon_sym_FALSE] = ACTIONS(2221), + [anon_sym_null] = ACTIONS(2221), + [anon_sym_Null] = ACTIONS(2221), + [anon_sym_NULL] = ACTIONS(2221), + [sym_string] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_array] = ACTIONS(2221), + [anon_sym_varray] = ACTIONS(2221), + [anon_sym_darray] = ACTIONS(2221), + [anon_sym_vec] = ACTIONS(2221), + [anon_sym_dict] = ACTIONS(2221), + [anon_sym_keyset] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_list] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2223), + [sym_final_modifier] = ACTIONS(2221), + [sym_xhp_modifier] = ACTIONS(2221), + [sym_xhp_identifier] = ACTIONS(2221), + [sym_xhp_class_identifier] = ACTIONS(2223), [sym_comment] = ACTIONS(3), }, - [1282] = { - [sym_identifier] = ACTIONS(2557), - [sym_variable] = ACTIONS(2559), - [sym_pipe_variable] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_newtype] = ACTIONS(2557), - [anon_sym_shape] = ACTIONS(2557), - [anon_sym_tuple] = ACTIONS(2557), - [anon_sym_clone] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_print] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_LT_LT] = ACTIONS(2557), - [anon_sym_LT_LT_LT] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_echo] = ACTIONS(2557), - [anon_sym_unset] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_concurrent] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_elseif] = ACTIONS(2557), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_foreach] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [sym_float] = ACTIONS(2559), - [sym_integer] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_True] = ACTIONS(2557), - [anon_sym_TRUE] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_False] = ACTIONS(2557), - [anon_sym_FALSE] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2557), - [anon_sym_Null] = ACTIONS(2557), - [anon_sym_NULL] = ACTIONS(2557), - [sym_string] = ACTIONS(2559), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_array] = ACTIONS(2557), - [anon_sym_varray] = ACTIONS(2557), - [anon_sym_darray] = ACTIONS(2557), - [anon_sym_vec] = ACTIONS(2557), - [anon_sym_dict] = ACTIONS(2557), - [anon_sym_keyset] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_trait] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2559), - [sym_final_modifier] = ACTIONS(2557), - [sym_xhp_modifier] = ACTIONS(2557), - [sym_xhp_identifier] = ACTIONS(2557), - [sym_xhp_class_identifier] = ACTIONS(2559), + [1226] = { + [sym_identifier] = ACTIONS(2401), + [sym_variable] = ACTIONS(2403), + [sym_pipe_variable] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_newtype] = ACTIONS(2401), + [anon_sym_shape] = ACTIONS(2401), + [anon_sym_tuple] = ACTIONS(2401), + [anon_sym_clone] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_print] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_include] = ACTIONS(2401), + [anon_sym_include_once] = ACTIONS(2401), + [anon_sym_require] = ACTIONS(2401), + [anon_sym_require_once] = ACTIONS(2401), + [anon_sym_BSLASH] = ACTIONS(2403), + [anon_sym_self] = ACTIONS(2401), + [anon_sym_parent] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LT_LT_LT] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_echo] = ACTIONS(2401), + [anon_sym_unset] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_concurrent] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_case] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_foreach] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_using] = ACTIONS(2401), + [sym_float] = ACTIONS(2403), + [sym_integer] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_True] = ACTIONS(2401), + [anon_sym_TRUE] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_False] = ACTIONS(2401), + [anon_sym_FALSE] = ACTIONS(2401), + [anon_sym_null] = ACTIONS(2401), + [anon_sym_Null] = ACTIONS(2401), + [anon_sym_NULL] = ACTIONS(2401), + [sym_string] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_array] = ACTIONS(2401), + [anon_sym_varray] = ACTIONS(2401), + [anon_sym_darray] = ACTIONS(2401), + [anon_sym_vec] = ACTIONS(2401), + [anon_sym_dict] = ACTIONS(2401), + [anon_sym_keyset] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2403), + [sym_final_modifier] = ACTIONS(2401), + [sym_xhp_modifier] = ACTIONS(2401), + [sym_xhp_identifier] = ACTIONS(2401), + [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, - [1283] = { - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2209), - [sym_variable] = ACTIONS(2211), - [sym_pipe_variable] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_newtype] = ACTIONS(2209), - [anon_sym_shape] = ACTIONS(2209), - [anon_sym_tuple] = ACTIONS(2209), - [anon_sym_clone] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_print] = ACTIONS(2209), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_LT_LT_LT] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_throw] = ACTIONS(2209), - [anon_sym_echo] = ACTIONS(2209), - [anon_sym_unset] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_concurrent] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_elseif] = ACTIONS(2209), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_foreach] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_using] = ACTIONS(2209), - [sym_float] = ACTIONS(2211), - [sym_integer] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_True] = ACTIONS(2209), - [anon_sym_TRUE] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_False] = ACTIONS(2209), - [anon_sym_FALSE] = ACTIONS(2209), - [anon_sym_null] = ACTIONS(2209), - [anon_sym_Null] = ACTIONS(2209), - [anon_sym_NULL] = ACTIONS(2209), - [sym_string] = ACTIONS(2211), - [anon_sym_AT] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_array] = ACTIONS(2209), - [anon_sym_varray] = ACTIONS(2209), - [anon_sym_darray] = ACTIONS(2209), - [anon_sym_vec] = ACTIONS(2209), - [anon_sym_dict] = ACTIONS(2209), - [anon_sym_keyset] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_class] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_abstract] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2211), - [sym_final_modifier] = ACTIONS(2209), - [sym_xhp_modifier] = ACTIONS(2209), - [sym_xhp_identifier] = ACTIONS(2209), - [sym_xhp_class_identifier] = ACTIONS(2211), + [1227] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1284] = { - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2293), - [sym_variable] = ACTIONS(2295), - [sym_pipe_variable] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_newtype] = ACTIONS(2293), - [anon_sym_shape] = ACTIONS(2293), - [anon_sym_tuple] = ACTIONS(2293), - [anon_sym_clone] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_print] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_LT_LT_LT] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_echo] = ACTIONS(2293), - [anon_sym_unset] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_concurrent] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_function] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_elseif] = ACTIONS(2293), - [anon_sym_else] = ACTIONS(2293), - [anon_sym_switch] = ACTIONS(2293), - [anon_sym_foreach] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_using] = ACTIONS(2293), - [sym_float] = ACTIONS(2295), - [sym_integer] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_True] = ACTIONS(2293), - [anon_sym_TRUE] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_False] = ACTIONS(2293), - [anon_sym_FALSE] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [anon_sym_Null] = ACTIONS(2293), - [anon_sym_NULL] = ACTIONS(2293), - [sym_string] = ACTIONS(2295), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_array] = ACTIONS(2293), - [anon_sym_varray] = ACTIONS(2293), - [anon_sym_darray] = ACTIONS(2293), - [anon_sym_vec] = ACTIONS(2293), - [anon_sym_dict] = ACTIONS(2293), - [anon_sym_keyset] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_trait] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_abstract] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2295), - [sym_final_modifier] = ACTIONS(2293), - [sym_xhp_modifier] = ACTIONS(2293), - [sym_xhp_identifier] = ACTIONS(2293), - [sym_xhp_class_identifier] = ACTIONS(2295), + [1228] = { + [ts_builtin_sym_end] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2473), + [sym_variable] = ACTIONS(2475), + [sym_pipe_variable] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_newtype] = ACTIONS(2473), + [anon_sym_shape] = ACTIONS(2473), + [anon_sym_tuple] = ACTIONS(2473), + [anon_sym_clone] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_include] = ACTIONS(2473), + [anon_sym_include_once] = ACTIONS(2473), + [anon_sym_require] = ACTIONS(2473), + [anon_sym_require_once] = ACTIONS(2473), + [anon_sym_BSLASH] = ACTIONS(2475), + [anon_sym_self] = ACTIONS(2473), + [anon_sym_parent] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_LT_LT_LT] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_throw] = ACTIONS(2473), + [anon_sym_echo] = ACTIONS(2473), + [anon_sym_unset] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_concurrent] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_switch] = ACTIONS(2473), + [anon_sym_foreach] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_using] = ACTIONS(2473), + [sym_float] = ACTIONS(2475), + [sym_integer] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_True] = ACTIONS(2473), + [anon_sym_TRUE] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_False] = ACTIONS(2473), + [anon_sym_FALSE] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2473), + [anon_sym_Null] = ACTIONS(2473), + [anon_sym_NULL] = ACTIONS(2473), + [sym_string] = ACTIONS(2475), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_array] = ACTIONS(2473), + [anon_sym_varray] = ACTIONS(2473), + [anon_sym_darray] = ACTIONS(2473), + [anon_sym_vec] = ACTIONS(2473), + [anon_sym_dict] = ACTIONS(2473), + [anon_sym_keyset] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_interface] = ACTIONS(2473), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_abstract] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2475), + [sym_final_modifier] = ACTIONS(2473), + [sym_xhp_modifier] = ACTIONS(2473), + [sym_xhp_identifier] = ACTIONS(2473), + [sym_xhp_class_identifier] = ACTIONS(2475), [sym_comment] = ACTIONS(3), }, - [1285] = { - [sym_identifier] = ACTIONS(2569), - [sym_variable] = ACTIONS(2571), - [sym_pipe_variable] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_newtype] = ACTIONS(2569), - [anon_sym_shape] = ACTIONS(2569), - [anon_sym_tuple] = ACTIONS(2569), - [anon_sym_clone] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_print] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_include] = ACTIONS(2569), - [anon_sym_include_once] = ACTIONS(2569), - [anon_sym_require] = ACTIONS(2569), - [anon_sym_require_once] = ACTIONS(2569), - [anon_sym_BSLASH] = ACTIONS(2571), - [anon_sym_self] = ACTIONS(2569), - [anon_sym_parent] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2569), - [anon_sym_LT_LT_LT] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_echo] = ACTIONS(2569), - [anon_sym_unset] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_concurrent] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_elseif] = ACTIONS(2569), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_foreach] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [sym_float] = ACTIONS(2571), - [sym_integer] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_True] = ACTIONS(2569), - [anon_sym_TRUE] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [anon_sym_False] = ACTIONS(2569), - [anon_sym_FALSE] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2569), - [anon_sym_Null] = ACTIONS(2569), - [anon_sym_NULL] = ACTIONS(2569), - [sym_string] = ACTIONS(2571), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_array] = ACTIONS(2569), - [anon_sym_varray] = ACTIONS(2569), - [anon_sym_darray] = ACTIONS(2569), - [anon_sym_vec] = ACTIONS(2569), - [anon_sym_dict] = ACTIONS(2569), - [anon_sym_keyset] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_trait] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2571), - [sym_final_modifier] = ACTIONS(2569), - [sym_xhp_modifier] = ACTIONS(2569), - [sym_xhp_identifier] = ACTIONS(2569), - [sym_xhp_class_identifier] = ACTIONS(2571), + [1229] = { + [sym_identifier] = ACTIONS(2453), + [sym_variable] = ACTIONS(2455), + [sym_pipe_variable] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_newtype] = ACTIONS(2453), + [anon_sym_shape] = ACTIONS(2453), + [anon_sym_tuple] = ACTIONS(2453), + [anon_sym_clone] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_include] = ACTIONS(2453), + [anon_sym_include_once] = ACTIONS(2453), + [anon_sym_require] = ACTIONS(2453), + [anon_sym_require_once] = ACTIONS(2453), + [anon_sym_BSLASH] = ACTIONS(2455), + [anon_sym_self] = ACTIONS(2453), + [anon_sym_parent] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_LT_LT_LT] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_throw] = ACTIONS(2453), + [anon_sym_echo] = ACTIONS(2453), + [anon_sym_unset] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_concurrent] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_elseif] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_foreach] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_using] = ACTIONS(2453), + [sym_float] = ACTIONS(2455), + [sym_integer] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_True] = ACTIONS(2453), + [anon_sym_TRUE] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_False] = ACTIONS(2453), + [anon_sym_FALSE] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [anon_sym_Null] = ACTIONS(2453), + [anon_sym_NULL] = ACTIONS(2453), + [sym_string] = ACTIONS(2455), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_array] = ACTIONS(2453), + [anon_sym_varray] = ACTIONS(2453), + [anon_sym_darray] = ACTIONS(2453), + [anon_sym_vec] = ACTIONS(2453), + [anon_sym_dict] = ACTIONS(2453), + [anon_sym_keyset] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_abstract] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2455), + [sym_final_modifier] = ACTIONS(2453), + [sym_xhp_modifier] = ACTIONS(2453), + [sym_xhp_identifier] = ACTIONS(2453), + [sym_xhp_class_identifier] = ACTIONS(2455), [sym_comment] = ACTIONS(3), }, - [1286] = { - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2289), - [sym_variable] = ACTIONS(2291), - [sym_pipe_variable] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_newtype] = ACTIONS(2289), - [anon_sym_shape] = ACTIONS(2289), - [anon_sym_tuple] = ACTIONS(2289), - [anon_sym_clone] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_print] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2289), - [anon_sym_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_LT_LT_LT] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2289), - [anon_sym_echo] = ACTIONS(2289), - [anon_sym_unset] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_concurrent] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_elseif] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_foreach] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_using] = ACTIONS(2289), - [sym_float] = ACTIONS(2291), - [sym_integer] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_True] = ACTIONS(2289), - [anon_sym_TRUE] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_False] = ACTIONS(2289), - [anon_sym_FALSE] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [anon_sym_Null] = ACTIONS(2289), - [anon_sym_NULL] = ACTIONS(2289), - [sym_string] = ACTIONS(2291), - [anon_sym_AT] = ACTIONS(2291), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_array] = ACTIONS(2289), - [anon_sym_varray] = ACTIONS(2289), - [anon_sym_darray] = ACTIONS(2289), - [anon_sym_vec] = ACTIONS(2289), - [anon_sym_dict] = ACTIONS(2289), - [anon_sym_keyset] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_abstract] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2291), - [sym_final_modifier] = ACTIONS(2289), - [sym_xhp_modifier] = ACTIONS(2289), - [sym_xhp_identifier] = ACTIONS(2289), - [sym_xhp_class_identifier] = ACTIONS(2291), + [1230] = { + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2477), + [sym_variable] = ACTIONS(2479), + [sym_pipe_variable] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_newtype] = ACTIONS(2477), + [anon_sym_shape] = ACTIONS(2477), + [anon_sym_tuple] = ACTIONS(2477), + [anon_sym_clone] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_include] = ACTIONS(2477), + [anon_sym_include_once] = ACTIONS(2477), + [anon_sym_require] = ACTIONS(2477), + [anon_sym_require_once] = ACTIONS(2477), + [anon_sym_BSLASH] = ACTIONS(2479), + [anon_sym_self] = ACTIONS(2477), + [anon_sym_parent] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT_LT_LT] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_throw] = ACTIONS(2477), + [anon_sym_echo] = ACTIONS(2477), + [anon_sym_unset] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_concurrent] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_foreach] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_using] = ACTIONS(2477), + [sym_float] = ACTIONS(2479), + [sym_integer] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_True] = ACTIONS(2477), + [anon_sym_TRUE] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_False] = ACTIONS(2477), + [anon_sym_FALSE] = ACTIONS(2477), + [anon_sym_null] = ACTIONS(2477), + [anon_sym_Null] = ACTIONS(2477), + [anon_sym_NULL] = ACTIONS(2477), + [sym_string] = ACTIONS(2479), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_array] = ACTIONS(2477), + [anon_sym_varray] = ACTIONS(2477), + [anon_sym_darray] = ACTIONS(2477), + [anon_sym_vec] = ACTIONS(2477), + [anon_sym_dict] = ACTIONS(2477), + [anon_sym_keyset] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_interface] = ACTIONS(2477), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_abstract] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2479), + [sym_final_modifier] = ACTIONS(2477), + [sym_xhp_modifier] = ACTIONS(2477), + [sym_xhp_identifier] = ACTIONS(2477), + [sym_xhp_class_identifier] = ACTIONS(2479), [sym_comment] = ACTIONS(3), }, - [1287] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2285), - [sym_variable] = ACTIONS(2287), - [sym_pipe_variable] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_newtype] = ACTIONS(2285), - [anon_sym_shape] = ACTIONS(2285), - [anon_sym_tuple] = ACTIONS(2285), - [anon_sym_clone] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_print] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_LT_LT_LT] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_throw] = ACTIONS(2285), - [anon_sym_echo] = ACTIONS(2285), - [anon_sym_unset] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_concurrent] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_function] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_elseif] = ACTIONS(2285), - [anon_sym_else] = ACTIONS(2285), - [anon_sym_switch] = ACTIONS(2285), - [anon_sym_foreach] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_using] = ACTIONS(2285), - [sym_float] = ACTIONS(2287), - [sym_integer] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_True] = ACTIONS(2285), - [anon_sym_TRUE] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_False] = ACTIONS(2285), - [anon_sym_FALSE] = ACTIONS(2285), - [anon_sym_null] = ACTIONS(2285), - [anon_sym_Null] = ACTIONS(2285), - [anon_sym_NULL] = ACTIONS(2285), - [sym_string] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_array] = ACTIONS(2285), - [anon_sym_varray] = ACTIONS(2285), - [anon_sym_darray] = ACTIONS(2285), - [anon_sym_vec] = ACTIONS(2285), - [anon_sym_dict] = ACTIONS(2285), - [anon_sym_keyset] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_abstract] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2287), - [sym_final_modifier] = ACTIONS(2285), - [sym_xhp_modifier] = ACTIONS(2285), - [sym_xhp_identifier] = ACTIONS(2285), - [sym_xhp_class_identifier] = ACTIONS(2287), + [1231] = { + [ts_builtin_sym_end] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2481), + [sym_variable] = ACTIONS(2483), + [sym_pipe_variable] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_newtype] = ACTIONS(2481), + [anon_sym_shape] = ACTIONS(2481), + [anon_sym_tuple] = ACTIONS(2481), + [anon_sym_clone] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_print] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_include] = ACTIONS(2481), + [anon_sym_include_once] = ACTIONS(2481), + [anon_sym_require] = ACTIONS(2481), + [anon_sym_require_once] = ACTIONS(2481), + [anon_sym_BSLASH] = ACTIONS(2483), + [anon_sym_self] = ACTIONS(2481), + [anon_sym_parent] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_LT_LT] = ACTIONS(2481), + [anon_sym_LT_LT_LT] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_echo] = ACTIONS(2481), + [anon_sym_unset] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_concurrent] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_foreach] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [sym_float] = ACTIONS(2483), + [sym_integer] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_True] = ACTIONS(2481), + [anon_sym_TRUE] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_False] = ACTIONS(2481), + [anon_sym_FALSE] = ACTIONS(2481), + [anon_sym_null] = ACTIONS(2481), + [anon_sym_Null] = ACTIONS(2481), + [anon_sym_NULL] = ACTIONS(2481), + [sym_string] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(2483), + [anon_sym_TILDE] = ACTIONS(2483), + [anon_sym_array] = ACTIONS(2481), + [anon_sym_varray] = ACTIONS(2481), + [anon_sym_darray] = ACTIONS(2481), + [anon_sym_vec] = ACTIONS(2481), + [anon_sym_dict] = ACTIONS(2481), + [anon_sym_keyset] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_list] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_PLUS_PLUS] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2483), + [sym_final_modifier] = ACTIONS(2481), + [sym_xhp_modifier] = ACTIONS(2481), + [sym_xhp_identifier] = ACTIONS(2481), + [sym_xhp_class_identifier] = ACTIONS(2483), [sym_comment] = ACTIONS(3), }, - [1288] = { - [sym_identifier] = ACTIONS(2573), - [sym_variable] = ACTIONS(2575), - [sym_pipe_variable] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_newtype] = ACTIONS(2573), - [anon_sym_shape] = ACTIONS(2573), - [anon_sym_tuple] = ACTIONS(2573), - [anon_sym_clone] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_print] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_include] = ACTIONS(2573), - [anon_sym_include_once] = ACTIONS(2573), - [anon_sym_require] = ACTIONS(2573), - [anon_sym_require_once] = ACTIONS(2573), - [anon_sym_BSLASH] = ACTIONS(2575), - [anon_sym_self] = ACTIONS(2573), - [anon_sym_parent] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_LT_LT_LT] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_echo] = ACTIONS(2573), - [anon_sym_unset] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_concurrent] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_elseif] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_foreach] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [sym_float] = ACTIONS(2575), - [sym_integer] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2573), - [anon_sym_True] = ACTIONS(2573), - [anon_sym_TRUE] = ACTIONS(2573), - [anon_sym_false] = ACTIONS(2573), - [anon_sym_False] = ACTIONS(2573), - [anon_sym_FALSE] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2573), - [anon_sym_Null] = ACTIONS(2573), - [anon_sym_NULL] = ACTIONS(2573), - [sym_string] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_array] = ACTIONS(2573), - [anon_sym_varray] = ACTIONS(2573), - [anon_sym_darray] = ACTIONS(2573), - [anon_sym_vec] = ACTIONS(2573), - [anon_sym_dict] = ACTIONS(2573), - [anon_sym_keyset] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_list] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_trait] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2575), - [sym_final_modifier] = ACTIONS(2573), - [sym_xhp_modifier] = ACTIONS(2573), - [sym_xhp_identifier] = ACTIONS(2573), - [sym_xhp_class_identifier] = ACTIONS(2575), + [1232] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2485), + [sym_variable] = ACTIONS(2487), + [sym_pipe_variable] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_newtype] = ACTIONS(2485), + [anon_sym_shape] = ACTIONS(2485), + [anon_sym_tuple] = ACTIONS(2485), + [anon_sym_clone] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_include] = ACTIONS(2485), + [anon_sym_include_once] = ACTIONS(2485), + [anon_sym_require] = ACTIONS(2485), + [anon_sym_require_once] = ACTIONS(2485), + [anon_sym_BSLASH] = ACTIONS(2487), + [anon_sym_self] = ACTIONS(2485), + [anon_sym_parent] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2485), + [anon_sym_LT_LT_LT] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_echo] = ACTIONS(2485), + [anon_sym_unset] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_concurrent] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_function] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_elseif] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_foreach] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [sym_float] = ACTIONS(2487), + [sym_integer] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_True] = ACTIONS(2485), + [anon_sym_TRUE] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_False] = ACTIONS(2485), + [anon_sym_FALSE] = ACTIONS(2485), + [anon_sym_null] = ACTIONS(2485), + [anon_sym_Null] = ACTIONS(2485), + [anon_sym_NULL] = ACTIONS(2485), + [sym_string] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_array] = ACTIONS(2485), + [anon_sym_varray] = ACTIONS(2485), + [anon_sym_darray] = ACTIONS(2485), + [anon_sym_vec] = ACTIONS(2485), + [anon_sym_dict] = ACTIONS(2485), + [anon_sym_keyset] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_interface] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_abstract] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2487), + [sym_final_modifier] = ACTIONS(2485), + [sym_xhp_modifier] = ACTIONS(2485), + [sym_xhp_identifier] = ACTIONS(2485), + [sym_xhp_class_identifier] = ACTIONS(2487), [sym_comment] = ACTIONS(3), }, - [1289] = { + [1233] = { + [ts_builtin_sym_end] = ACTIONS(2499), [sym_identifier] = ACTIONS(2497), [sym_variable] = ACTIONS(2499), [sym_pipe_variable] = ACTIONS(2499), @@ -156207,7 +144854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2497), [anon_sym_LT_LT] = ACTIONS(2497), [anon_sym_LT_LT_LT] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), [anon_sym_LBRACE] = ACTIONS(2499), [anon_sym_SEMI] = ACTIONS(2499), [anon_sym_return] = ACTIONS(2497), @@ -156222,9 +144868,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2497), [anon_sym_const] = ACTIONS(2497), [anon_sym_if] = ACTIONS(2497), + [anon_sym_elseif] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), [anon_sym_switch] = ACTIONS(2497), - [anon_sym_case] = ACTIONS(2497), - [anon_sym_default] = ACTIONS(2497), [anon_sym_foreach] = ACTIONS(2497), [anon_sym_while] = ACTIONS(2497), [anon_sym_do] = ACTIONS(2497), @@ -156273,711 +144919,1152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [1290] = { - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2281), - [sym_variable] = ACTIONS(2283), - [sym_pipe_variable] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_newtype] = ACTIONS(2281), - [anon_sym_shape] = ACTIONS(2281), - [anon_sym_tuple] = ACTIONS(2281), - [anon_sym_clone] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_print] = ACTIONS(2281), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_LT_LT_LT] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_throw] = ACTIONS(2281), - [anon_sym_echo] = ACTIONS(2281), - [anon_sym_unset] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_concurrent] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_elseif] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_foreach] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_using] = ACTIONS(2281), - [sym_float] = ACTIONS(2283), - [sym_integer] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_True] = ACTIONS(2281), - [anon_sym_TRUE] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_False] = ACTIONS(2281), - [anon_sym_FALSE] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [anon_sym_Null] = ACTIONS(2281), - [anon_sym_NULL] = ACTIONS(2281), - [sym_string] = ACTIONS(2283), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_array] = ACTIONS(2281), - [anon_sym_varray] = ACTIONS(2281), - [anon_sym_darray] = ACTIONS(2281), - [anon_sym_vec] = ACTIONS(2281), - [anon_sym_dict] = ACTIONS(2281), - [anon_sym_keyset] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_abstract] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2283), - [sym_final_modifier] = ACTIONS(2281), - [sym_xhp_modifier] = ACTIONS(2281), - [sym_xhp_identifier] = ACTIONS(2281), - [sym_xhp_class_identifier] = ACTIONS(2283), + [1234] = { + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2501), + [sym_variable] = ACTIONS(2503), + [sym_pipe_variable] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_newtype] = ACTIONS(2501), + [anon_sym_shape] = ACTIONS(2501), + [anon_sym_tuple] = ACTIONS(2501), + [anon_sym_clone] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_print] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_include] = ACTIONS(2501), + [anon_sym_include_once] = ACTIONS(2501), + [anon_sym_require] = ACTIONS(2501), + [anon_sym_require_once] = ACTIONS(2501), + [anon_sym_BSLASH] = ACTIONS(2503), + [anon_sym_self] = ACTIONS(2501), + [anon_sym_parent] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_LT_LT_LT] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_echo] = ACTIONS(2501), + [anon_sym_unset] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_concurrent] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_elseif] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_foreach] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_using] = ACTIONS(2501), + [sym_float] = ACTIONS(2503), + [sym_integer] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_True] = ACTIONS(2501), + [anon_sym_TRUE] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_False] = ACTIONS(2501), + [anon_sym_FALSE] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), + [anon_sym_Null] = ACTIONS(2501), + [anon_sym_NULL] = ACTIONS(2501), + [sym_string] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_array] = ACTIONS(2501), + [anon_sym_varray] = ACTIONS(2501), + [anon_sym_darray] = ACTIONS(2501), + [anon_sym_vec] = ACTIONS(2501), + [anon_sym_dict] = ACTIONS(2501), + [anon_sym_keyset] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2503), + [sym_final_modifier] = ACTIONS(2501), + [sym_xhp_modifier] = ACTIONS(2501), + [sym_xhp_identifier] = ACTIONS(2501), + [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [1291] = { - [sym_identifier] = ACTIONS(2577), - [sym_variable] = ACTIONS(2579), - [sym_pipe_variable] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_newtype] = ACTIONS(2577), - [anon_sym_shape] = ACTIONS(2577), - [anon_sym_tuple] = ACTIONS(2577), - [anon_sym_clone] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_include] = ACTIONS(2577), - [anon_sym_include_once] = ACTIONS(2577), - [anon_sym_require] = ACTIONS(2577), - [anon_sym_require_once] = ACTIONS(2577), - [anon_sym_BSLASH] = ACTIONS(2579), - [anon_sym_self] = ACTIONS(2577), - [anon_sym_parent] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_LT_LT_LT] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_echo] = ACTIONS(2577), - [anon_sym_unset] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_concurrent] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_elseif] = ACTIONS(2577), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_foreach] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [sym_float] = ACTIONS(2579), - [sym_integer] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_True] = ACTIONS(2577), - [anon_sym_TRUE] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_False] = ACTIONS(2577), - [anon_sym_FALSE] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2577), - [anon_sym_Null] = ACTIONS(2577), - [anon_sym_NULL] = ACTIONS(2577), - [sym_string] = ACTIONS(2579), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_array] = ACTIONS(2577), - [anon_sym_varray] = ACTIONS(2577), - [anon_sym_darray] = ACTIONS(2577), - [anon_sym_vec] = ACTIONS(2577), - [anon_sym_dict] = ACTIONS(2577), - [anon_sym_keyset] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_list] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_trait] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2579), - [sym_final_modifier] = ACTIONS(2577), - [sym_xhp_modifier] = ACTIONS(2577), - [sym_xhp_identifier] = ACTIONS(2577), - [sym_xhp_class_identifier] = ACTIONS(2579), + [1235] = { + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2505), + [sym_variable] = ACTIONS(2507), + [sym_pipe_variable] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_newtype] = ACTIONS(2505), + [anon_sym_shape] = ACTIONS(2505), + [anon_sym_tuple] = ACTIONS(2505), + [anon_sym_clone] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_namespace] = ACTIONS(2505), + [anon_sym_include] = ACTIONS(2505), + [anon_sym_include_once] = ACTIONS(2505), + [anon_sym_require] = ACTIONS(2505), + [anon_sym_require_once] = ACTIONS(2505), + [anon_sym_BSLASH] = ACTIONS(2507), + [anon_sym_self] = ACTIONS(2505), + [anon_sym_parent] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_LT_LT_LT] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_throw] = ACTIONS(2505), + [anon_sym_echo] = ACTIONS(2505), + [anon_sym_unset] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_concurrent] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_function] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_elseif] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_switch] = ACTIONS(2505), + [anon_sym_foreach] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(2505), + [sym_float] = ACTIONS(2507), + [sym_integer] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_True] = ACTIONS(2505), + [anon_sym_TRUE] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_False] = ACTIONS(2505), + [anon_sym_FALSE] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [anon_sym_Null] = ACTIONS(2505), + [anon_sym_NULL] = ACTIONS(2505), + [sym_string] = ACTIONS(2507), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_array] = ACTIONS(2505), + [anon_sym_varray] = ACTIONS(2505), + [anon_sym_darray] = ACTIONS(2505), + [anon_sym_vec] = ACTIONS(2505), + [anon_sym_dict] = ACTIONS(2505), + [anon_sym_keyset] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_class] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_abstract] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2507), + [sym_final_modifier] = ACTIONS(2505), + [sym_xhp_modifier] = ACTIONS(2505), + [sym_xhp_identifier] = ACTIONS(2505), + [sym_xhp_class_identifier] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + }, + [1236] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1237] = { + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_elseif] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + }, + [1238] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1239] = { + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2509), + [sym_variable] = ACTIONS(2511), + [sym_pipe_variable] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_newtype] = ACTIONS(2509), + [anon_sym_shape] = ACTIONS(2509), + [anon_sym_tuple] = ACTIONS(2509), + [anon_sym_clone] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_print] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_include] = ACTIONS(2509), + [anon_sym_include_once] = ACTIONS(2509), + [anon_sym_require] = ACTIONS(2509), + [anon_sym_require_once] = ACTIONS(2509), + [anon_sym_BSLASH] = ACTIONS(2511), + [anon_sym_self] = ACTIONS(2509), + [anon_sym_parent] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_LT_LT] = ACTIONS(2509), + [anon_sym_LT_LT_LT] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_echo] = ACTIONS(2509), + [anon_sym_unset] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_concurrent] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_elseif] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_foreach] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [sym_float] = ACTIONS(2511), + [sym_integer] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_True] = ACTIONS(2509), + [anon_sym_TRUE] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_False] = ACTIONS(2509), + [anon_sym_FALSE] = ACTIONS(2509), + [anon_sym_null] = ACTIONS(2509), + [anon_sym_Null] = ACTIONS(2509), + [anon_sym_NULL] = ACTIONS(2509), + [sym_string] = ACTIONS(2511), + [anon_sym_AT] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_array] = ACTIONS(2509), + [anon_sym_varray] = ACTIONS(2509), + [anon_sym_darray] = ACTIONS(2509), + [anon_sym_vec] = ACTIONS(2509), + [anon_sym_dict] = ACTIONS(2509), + [anon_sym_keyset] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_list] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2511), + [sym_final_modifier] = ACTIONS(2509), + [sym_xhp_modifier] = ACTIONS(2509), + [sym_xhp_identifier] = ACTIONS(2509), + [sym_xhp_class_identifier] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + }, + [1240] = { + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2513), + [sym_variable] = ACTIONS(2515), + [sym_pipe_variable] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_newtype] = ACTIONS(2513), + [anon_sym_shape] = ACTIONS(2513), + [anon_sym_tuple] = ACTIONS(2513), + [anon_sym_clone] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_include] = ACTIONS(2513), + [anon_sym_include_once] = ACTIONS(2513), + [anon_sym_require] = ACTIONS(2513), + [anon_sym_require_once] = ACTIONS(2513), + [anon_sym_BSLASH] = ACTIONS(2515), + [anon_sym_self] = ACTIONS(2513), + [anon_sym_parent] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_LT_LT_LT] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_echo] = ACTIONS(2513), + [anon_sym_unset] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_concurrent] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_elseif] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_foreach] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [sym_float] = ACTIONS(2515), + [sym_integer] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_True] = ACTIONS(2513), + [anon_sym_TRUE] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_False] = ACTIONS(2513), + [anon_sym_FALSE] = ACTIONS(2513), + [anon_sym_null] = ACTIONS(2513), + [anon_sym_Null] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2513), + [sym_string] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_array] = ACTIONS(2513), + [anon_sym_varray] = ACTIONS(2513), + [anon_sym_darray] = ACTIONS(2513), + [anon_sym_vec] = ACTIONS(2513), + [anon_sym_dict] = ACTIONS(2513), + [anon_sym_keyset] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2515), + [sym_final_modifier] = ACTIONS(2513), + [sym_xhp_modifier] = ACTIONS(2513), + [sym_xhp_identifier] = ACTIONS(2513), + [sym_xhp_class_identifier] = ACTIONS(2515), [sym_comment] = ACTIONS(3), }, - [1292] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1241] = { + [sym_identifier] = ACTIONS(2225), + [sym_variable] = ACTIONS(2227), + [sym_pipe_variable] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_newtype] = ACTIONS(2225), + [anon_sym_shape] = ACTIONS(2225), + [anon_sym_tuple] = ACTIONS(2225), + [anon_sym_clone] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_print] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_include] = ACTIONS(2225), + [anon_sym_include_once] = ACTIONS(2225), + [anon_sym_require] = ACTIONS(2225), + [anon_sym_require_once] = ACTIONS(2225), + [anon_sym_BSLASH] = ACTIONS(2227), + [anon_sym_self] = ACTIONS(2225), + [anon_sym_parent] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_LT_LT_LT] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_echo] = ACTIONS(2225), + [anon_sym_unset] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_concurrent] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_foreach] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [sym_float] = ACTIONS(2227), + [sym_integer] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_True] = ACTIONS(2225), + [anon_sym_TRUE] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_False] = ACTIONS(2225), + [anon_sym_FALSE] = ACTIONS(2225), + [anon_sym_null] = ACTIONS(2225), + [anon_sym_Null] = ACTIONS(2225), + [anon_sym_NULL] = ACTIONS(2225), + [sym_string] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_array] = ACTIONS(2225), + [anon_sym_varray] = ACTIONS(2225), + [anon_sym_darray] = ACTIONS(2225), + [anon_sym_vec] = ACTIONS(2225), + [anon_sym_dict] = ACTIONS(2225), + [anon_sym_keyset] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_list] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2227), + [sym_final_modifier] = ACTIONS(2225), + [sym_xhp_modifier] = ACTIONS(2225), + [sym_xhp_identifier] = ACTIONS(2225), + [sym_xhp_class_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(3), }, - [1293] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1242] = { + [sym_identifier] = ACTIONS(2393), + [sym_variable] = ACTIONS(2395), + [sym_pipe_variable] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_newtype] = ACTIONS(2393), + [anon_sym_shape] = ACTIONS(2393), + [anon_sym_tuple] = ACTIONS(2393), + [anon_sym_clone] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_print] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_include] = ACTIONS(2393), + [anon_sym_include_once] = ACTIONS(2393), + [anon_sym_require] = ACTIONS(2393), + [anon_sym_require_once] = ACTIONS(2393), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_self] = ACTIONS(2393), + [anon_sym_parent] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(2393), + [anon_sym_LT_LT_LT] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_throw] = ACTIONS(2393), + [anon_sym_echo] = ACTIONS(2393), + [anon_sym_unset] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_concurrent] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_case] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_foreach] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_using] = ACTIONS(2393), + [sym_float] = ACTIONS(2395), + [sym_integer] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_True] = ACTIONS(2393), + [anon_sym_TRUE] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_False] = ACTIONS(2393), + [anon_sym_FALSE] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2393), + [anon_sym_Null] = ACTIONS(2393), + [anon_sym_NULL] = ACTIONS(2393), + [sym_string] = ACTIONS(2395), + [anon_sym_AT] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_array] = ACTIONS(2393), + [anon_sym_varray] = ACTIONS(2393), + [anon_sym_darray] = ACTIONS(2393), + [anon_sym_vec] = ACTIONS(2393), + [anon_sym_dict] = ACTIONS(2393), + [anon_sym_keyset] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_interface] = ACTIONS(2393), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_abstract] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2395), + [sym_final_modifier] = ACTIONS(2393), + [sym_xhp_modifier] = ACTIONS(2393), + [sym_xhp_identifier] = ACTIONS(2393), + [sym_xhp_class_identifier] = ACTIONS(2395), [sym_comment] = ACTIONS(3), }, - [1294] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1243] = { + [ts_builtin_sym_end] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2517), + [sym_variable] = ACTIONS(2519), + [sym_pipe_variable] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_newtype] = ACTIONS(2517), + [anon_sym_shape] = ACTIONS(2517), + [anon_sym_tuple] = ACTIONS(2517), + [anon_sym_clone] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_include_once] = ACTIONS(2517), + [anon_sym_require] = ACTIONS(2517), + [anon_sym_require_once] = ACTIONS(2517), + [anon_sym_BSLASH] = ACTIONS(2519), + [anon_sym_self] = ACTIONS(2517), + [anon_sym_parent] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_LT_LT] = ACTIONS(2517), + [anon_sym_LT_LT_LT] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_echo] = ACTIONS(2517), + [anon_sym_unset] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_concurrent] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_elseif] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_foreach] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [sym_float] = ACTIONS(2519), + [sym_integer] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_True] = ACTIONS(2517), + [anon_sym_TRUE] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_False] = ACTIONS(2517), + [anon_sym_FALSE] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_Null] = ACTIONS(2517), + [anon_sym_NULL] = ACTIONS(2517), + [sym_string] = ACTIONS(2519), + [anon_sym_AT] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_array] = ACTIONS(2517), + [anon_sym_varray] = ACTIONS(2517), + [anon_sym_darray] = ACTIONS(2517), + [anon_sym_vec] = ACTIONS(2517), + [anon_sym_dict] = ACTIONS(2517), + [anon_sym_keyset] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2519), + [sym_final_modifier] = ACTIONS(2517), + [sym_xhp_modifier] = ACTIONS(2517), + [sym_xhp_identifier] = ACTIONS(2517), + [sym_xhp_class_identifier] = ACTIONS(2519), [sym_comment] = ACTIONS(3), }, - [1295] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2277), - [sym_variable] = ACTIONS(2279), - [sym_pipe_variable] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_newtype] = ACTIONS(2277), - [anon_sym_shape] = ACTIONS(2277), - [anon_sym_tuple] = ACTIONS(2277), - [anon_sym_clone] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_print] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_LT_LT] = ACTIONS(2277), - [anon_sym_LT_LT_LT] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_throw] = ACTIONS(2277), - [anon_sym_echo] = ACTIONS(2277), - [anon_sym_unset] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_concurrent] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_function] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_elseif] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_foreach] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_using] = ACTIONS(2277), - [sym_float] = ACTIONS(2279), - [sym_integer] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_True] = ACTIONS(2277), - [anon_sym_TRUE] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_False] = ACTIONS(2277), - [anon_sym_FALSE] = ACTIONS(2277), - [anon_sym_null] = ACTIONS(2277), - [anon_sym_Null] = ACTIONS(2277), - [anon_sym_NULL] = ACTIONS(2277), - [sym_string] = ACTIONS(2279), - [anon_sym_AT] = ACTIONS(2279), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_array] = ACTIONS(2277), - [anon_sym_varray] = ACTIONS(2277), - [anon_sym_darray] = ACTIONS(2277), - [anon_sym_vec] = ACTIONS(2277), - [anon_sym_dict] = ACTIONS(2277), - [anon_sym_keyset] = ACTIONS(2277), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_interface] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_abstract] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(2279), - [sym_final_modifier] = ACTIONS(2277), - [sym_xhp_modifier] = ACTIONS(2277), - [sym_xhp_identifier] = ACTIONS(2277), - [sym_xhp_class_identifier] = ACTIONS(2279), + [1244] = { + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2521), + [sym_variable] = ACTIONS(2523), + [sym_pipe_variable] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_newtype] = ACTIONS(2521), + [anon_sym_shape] = ACTIONS(2521), + [anon_sym_tuple] = ACTIONS(2521), + [anon_sym_clone] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_include] = ACTIONS(2521), + [anon_sym_include_once] = ACTIONS(2521), + [anon_sym_require] = ACTIONS(2521), + [anon_sym_require_once] = ACTIONS(2521), + [anon_sym_BSLASH] = ACTIONS(2523), + [anon_sym_self] = ACTIONS(2521), + [anon_sym_parent] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_LT_LT] = ACTIONS(2521), + [anon_sym_LT_LT_LT] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_echo] = ACTIONS(2521), + [anon_sym_unset] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_concurrent] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_function] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_elseif] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_foreach] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [sym_float] = ACTIONS(2523), + [sym_integer] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_True] = ACTIONS(2521), + [anon_sym_TRUE] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_False] = ACTIONS(2521), + [anon_sym_FALSE] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [anon_sym_Null] = ACTIONS(2521), + [anon_sym_NULL] = ACTIONS(2521), + [sym_string] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_array] = ACTIONS(2521), + [anon_sym_varray] = ACTIONS(2521), + [anon_sym_darray] = ACTIONS(2521), + [anon_sym_vec] = ACTIONS(2521), + [anon_sym_dict] = ACTIONS(2521), + [anon_sym_keyset] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_await] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_interface] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_abstract] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2523), + [sym_final_modifier] = ACTIONS(2521), + [sym_xhp_modifier] = ACTIONS(2521), + [sym_xhp_identifier] = ACTIONS(2521), + [sym_xhp_class_identifier] = ACTIONS(2523), [sym_comment] = ACTIONS(3), }, - [1296] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1245] = { + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2525), + [sym_variable] = ACTIONS(2527), + [sym_pipe_variable] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_newtype] = ACTIONS(2525), + [anon_sym_shape] = ACTIONS(2525), + [anon_sym_tuple] = ACTIONS(2525), + [anon_sym_clone] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_include] = ACTIONS(2525), + [anon_sym_include_once] = ACTIONS(2525), + [anon_sym_require] = ACTIONS(2525), + [anon_sym_require_once] = ACTIONS(2525), + [anon_sym_BSLASH] = ACTIONS(2527), + [anon_sym_self] = ACTIONS(2525), + [anon_sym_parent] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_LT_LT_LT] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_echo] = ACTIONS(2525), + [anon_sym_unset] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_concurrent] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_function] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_elseif] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_foreach] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [sym_float] = ACTIONS(2527), + [sym_integer] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_True] = ACTIONS(2525), + [anon_sym_TRUE] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_False] = ACTIONS(2525), + [anon_sym_FALSE] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2525), + [anon_sym_Null] = ACTIONS(2525), + [anon_sym_NULL] = ACTIONS(2525), + [sym_string] = ACTIONS(2527), + [anon_sym_AT] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_array] = ACTIONS(2525), + [anon_sym_varray] = ACTIONS(2525), + [anon_sym_darray] = ACTIONS(2525), + [anon_sym_vec] = ACTIONS(2525), + [anon_sym_dict] = ACTIONS(2525), + [anon_sym_keyset] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_await] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_interface] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2527), + [sym_final_modifier] = ACTIONS(2525), + [sym_xhp_modifier] = ACTIONS(2525), + [sym_xhp_identifier] = ACTIONS(2525), + [sym_xhp_class_identifier] = ACTIONS(2527), [sym_comment] = ACTIONS(3), }, - [1297] = { - [sym_identifier] = ACTIONS(2221), - [sym_variable] = ACTIONS(2223), - [sym_pipe_variable] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_newtype] = ACTIONS(2221), - [anon_sym_shape] = ACTIONS(2221), - [anon_sym_tuple] = ACTIONS(2221), - [anon_sym_clone] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_print] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_LT_LT_LT] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_echo] = ACTIONS(2221), - [anon_sym_unset] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_concurrent] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_foreach] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [sym_float] = ACTIONS(2223), - [sym_integer] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_True] = ACTIONS(2221), - [anon_sym_TRUE] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_False] = ACTIONS(2221), - [anon_sym_FALSE] = ACTIONS(2221), - [anon_sym_null] = ACTIONS(2221), - [anon_sym_Null] = ACTIONS(2221), - [anon_sym_NULL] = ACTIONS(2221), - [sym_string] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_array] = ACTIONS(2221), - [anon_sym_varray] = ACTIONS(2221), - [anon_sym_darray] = ACTIONS(2221), - [anon_sym_vec] = ACTIONS(2221), - [anon_sym_dict] = ACTIONS(2221), - [anon_sym_keyset] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2223), - [sym_final_modifier] = ACTIONS(2221), - [sym_xhp_modifier] = ACTIONS(2221), - [sym_xhp_identifier] = ACTIONS(2221), - [sym_xhp_class_identifier] = ACTIONS(2223), + [1246] = { + [sym_identifier] = ACTIONS(2389), + [sym_variable] = ACTIONS(2391), + [sym_pipe_variable] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_newtype] = ACTIONS(2389), + [anon_sym_shape] = ACTIONS(2389), + [anon_sym_tuple] = ACTIONS(2389), + [anon_sym_clone] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_print] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_include] = ACTIONS(2389), + [anon_sym_include_once] = ACTIONS(2389), + [anon_sym_require] = ACTIONS(2389), + [anon_sym_require_once] = ACTIONS(2389), + [anon_sym_BSLASH] = ACTIONS(2391), + [anon_sym_self] = ACTIONS(2389), + [anon_sym_parent] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(2389), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_echo] = ACTIONS(2389), + [anon_sym_unset] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_concurrent] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_case] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_foreach] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [sym_float] = ACTIONS(2391), + [sym_integer] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_True] = ACTIONS(2389), + [anon_sym_TRUE] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_False] = ACTIONS(2389), + [anon_sym_FALSE] = ACTIONS(2389), + [anon_sym_null] = ACTIONS(2389), + [anon_sym_Null] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [sym_string] = ACTIONS(2391), + [anon_sym_AT] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_array] = ACTIONS(2389), + [anon_sym_varray] = ACTIONS(2389), + [anon_sym_darray] = ACTIONS(2389), + [anon_sym_vec] = ACTIONS(2389), + [anon_sym_dict] = ACTIONS(2389), + [anon_sym_keyset] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_interface] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_abstract] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2391), + [sym_final_modifier] = ACTIONS(2389), + [sym_xhp_modifier] = ACTIONS(2389), + [sym_xhp_identifier] = ACTIONS(2389), + [sym_xhp_class_identifier] = ACTIONS(2391), [sym_comment] = ACTIONS(3), }, - [1298] = { + [1247] = { + [ts_builtin_sym_end] = ACTIONS(2531), [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -156999,7 +146086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2529), [anon_sym_LT_LT] = ACTIONS(2529), [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), [anon_sym_LBRACE] = ACTIONS(2531), [anon_sym_SEMI] = ACTIONS(2531), [anon_sym_return] = ACTIONS(2529), @@ -157065,2648 +146151,2823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [1299] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1248] = { + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2533), + [sym_variable] = ACTIONS(2535), + [sym_pipe_variable] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_newtype] = ACTIONS(2533), + [anon_sym_shape] = ACTIONS(2533), + [anon_sym_tuple] = ACTIONS(2533), + [anon_sym_clone] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_include_once] = ACTIONS(2533), + [anon_sym_require] = ACTIONS(2533), + [anon_sym_require_once] = ACTIONS(2533), + [anon_sym_BSLASH] = ACTIONS(2535), + [anon_sym_self] = ACTIONS(2533), + [anon_sym_parent] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_LT_LT] = ACTIONS(2533), + [anon_sym_LT_LT_LT] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_echo] = ACTIONS(2533), + [anon_sym_unset] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_concurrent] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_elseif] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_foreach] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [sym_float] = ACTIONS(2535), + [sym_integer] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_True] = ACTIONS(2533), + [anon_sym_TRUE] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_False] = ACTIONS(2533), + [anon_sym_FALSE] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [anon_sym_Null] = ACTIONS(2533), + [anon_sym_NULL] = ACTIONS(2533), + [sym_string] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_array] = ACTIONS(2533), + [anon_sym_varray] = ACTIONS(2533), + [anon_sym_darray] = ACTIONS(2533), + [anon_sym_vec] = ACTIONS(2533), + [anon_sym_dict] = ACTIONS(2533), + [anon_sym_keyset] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_list] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_interface] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_abstract] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2535), + [sym_final_modifier] = ACTIONS(2533), + [sym_xhp_modifier] = ACTIONS(2533), + [sym_xhp_identifier] = ACTIONS(2533), + [sym_xhp_class_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(3), }, - [1300] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1249] = { + [sym_identifier] = ACTIONS(2229), + [sym_variable] = ACTIONS(2231), + [sym_pipe_variable] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_newtype] = ACTIONS(2229), + [anon_sym_shape] = ACTIONS(2229), + [anon_sym_tuple] = ACTIONS(2229), + [anon_sym_clone] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_print] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_include] = ACTIONS(2229), + [anon_sym_include_once] = ACTIONS(2229), + [anon_sym_require] = ACTIONS(2229), + [anon_sym_require_once] = ACTIONS(2229), + [anon_sym_BSLASH] = ACTIONS(2231), + [anon_sym_self] = ACTIONS(2229), + [anon_sym_parent] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_LT_LT_LT] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_echo] = ACTIONS(2229), + [anon_sym_unset] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_concurrent] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_case] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_foreach] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [sym_float] = ACTIONS(2231), + [sym_integer] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_True] = ACTIONS(2229), + [anon_sym_TRUE] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_False] = ACTIONS(2229), + [anon_sym_FALSE] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_Null] = ACTIONS(2229), + [anon_sym_NULL] = ACTIONS(2229), + [sym_string] = ACTIONS(2231), + [anon_sym_AT] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2231), + [anon_sym_array] = ACTIONS(2229), + [anon_sym_varray] = ACTIONS(2229), + [anon_sym_darray] = ACTIONS(2229), + [anon_sym_vec] = ACTIONS(2229), + [anon_sym_dict] = ACTIONS(2229), + [anon_sym_keyset] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_list] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_PLUS_PLUS] = ACTIONS(2231), + [anon_sym_DASH_DASH] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2231), + [sym_final_modifier] = ACTIONS(2229), + [sym_xhp_modifier] = ACTIONS(2229), + [sym_xhp_identifier] = ACTIONS(2229), + [sym_xhp_class_identifier] = ACTIONS(2231), [sym_comment] = ACTIONS(3), }, - [1301] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2273), - [sym_variable] = ACTIONS(2275), - [sym_pipe_variable] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_newtype] = ACTIONS(2273), - [anon_sym_shape] = ACTIONS(2273), - [anon_sym_tuple] = ACTIONS(2273), - [anon_sym_clone] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_print] = ACTIONS(2273), - [anon_sym_namespace] = ACTIONS(2273), - [anon_sym_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_LT_LT_LT] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_throw] = ACTIONS(2273), - [anon_sym_echo] = ACTIONS(2273), - [anon_sym_unset] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_concurrent] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_function] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_elseif] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_foreach] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_using] = ACTIONS(2273), - [sym_float] = ACTIONS(2275), - [sym_integer] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_True] = ACTIONS(2273), - [anon_sym_TRUE] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_False] = ACTIONS(2273), - [anon_sym_FALSE] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [anon_sym_Null] = ACTIONS(2273), - [anon_sym_NULL] = ACTIONS(2273), - [sym_string] = ACTIONS(2275), - [anon_sym_AT] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_array] = ACTIONS(2273), - [anon_sym_varray] = ACTIONS(2273), - [anon_sym_darray] = ACTIONS(2273), - [anon_sym_vec] = ACTIONS(2273), - [anon_sym_dict] = ACTIONS(2273), - [anon_sym_keyset] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_class] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_abstract] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2275), - [sym_final_modifier] = ACTIONS(2273), - [sym_xhp_modifier] = ACTIONS(2273), - [sym_xhp_identifier] = ACTIONS(2273), - [sym_xhp_class_identifier] = ACTIONS(2275), + [1250] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1302] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1251] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2537), + [sym_variable] = ACTIONS(2539), + [sym_pipe_variable] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_newtype] = ACTIONS(2537), + [anon_sym_shape] = ACTIONS(2537), + [anon_sym_tuple] = ACTIONS(2537), + [anon_sym_clone] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_print] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_include] = ACTIONS(2537), + [anon_sym_include_once] = ACTIONS(2537), + [anon_sym_require] = ACTIONS(2537), + [anon_sym_require_once] = ACTIONS(2537), + [anon_sym_BSLASH] = ACTIONS(2539), + [anon_sym_self] = ACTIONS(2537), + [anon_sym_parent] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_LT_LT] = ACTIONS(2537), + [anon_sym_LT_LT_LT] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_echo] = ACTIONS(2537), + [anon_sym_unset] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_concurrent] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_function] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_elseif] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_foreach] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [sym_float] = ACTIONS(2539), + [sym_integer] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_True] = ACTIONS(2537), + [anon_sym_TRUE] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_False] = ACTIONS(2537), + [anon_sym_FALSE] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2537), + [anon_sym_Null] = ACTIONS(2537), + [anon_sym_NULL] = ACTIONS(2537), + [sym_string] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_array] = ACTIONS(2537), + [anon_sym_varray] = ACTIONS(2537), + [anon_sym_darray] = ACTIONS(2537), + [anon_sym_vec] = ACTIONS(2537), + [anon_sym_dict] = ACTIONS(2537), + [anon_sym_keyset] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_list] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_interface] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_abstract] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2539), + [sym_final_modifier] = ACTIONS(2537), + [sym_xhp_modifier] = ACTIONS(2537), + [sym_xhp_identifier] = ACTIONS(2537), + [sym_xhp_class_identifier] = ACTIONS(2539), [sym_comment] = ACTIONS(3), }, - [1303] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1252] = { + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2545), + [sym_variable] = ACTIONS(2547), + [sym_pipe_variable] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_newtype] = ACTIONS(2545), + [anon_sym_shape] = ACTIONS(2545), + [anon_sym_tuple] = ACTIONS(2545), + [anon_sym_clone] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_include] = ACTIONS(2545), + [anon_sym_include_once] = ACTIONS(2545), + [anon_sym_require] = ACTIONS(2545), + [anon_sym_require_once] = ACTIONS(2545), + [anon_sym_BSLASH] = ACTIONS(2547), + [anon_sym_self] = ACTIONS(2545), + [anon_sym_parent] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(2545), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_echo] = ACTIONS(2545), + [anon_sym_unset] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_concurrent] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_elseif] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_foreach] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [sym_float] = ACTIONS(2547), + [sym_integer] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_True] = ACTIONS(2545), + [anon_sym_TRUE] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_False] = ACTIONS(2545), + [anon_sym_FALSE] = ACTIONS(2545), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_Null] = ACTIONS(2545), + [anon_sym_NULL] = ACTIONS(2545), + [sym_string] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_array] = ACTIONS(2545), + [anon_sym_varray] = ACTIONS(2545), + [anon_sym_darray] = ACTIONS(2545), + [anon_sym_vec] = ACTIONS(2545), + [anon_sym_dict] = ACTIONS(2545), + [anon_sym_keyset] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_list] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_interface] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_abstract] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2547), + [sym_final_modifier] = ACTIONS(2545), + [sym_xhp_modifier] = ACTIONS(2545), + [sym_xhp_identifier] = ACTIONS(2545), + [sym_xhp_class_identifier] = ACTIONS(2547), [sym_comment] = ACTIONS(3), }, - [1304] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_case] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), + [1253] = { + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2549), + [sym_variable] = ACTIONS(2551), + [sym_pipe_variable] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_newtype] = ACTIONS(2549), + [anon_sym_shape] = ACTIONS(2549), + [anon_sym_tuple] = ACTIONS(2549), + [anon_sym_clone] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_include] = ACTIONS(2549), + [anon_sym_include_once] = ACTIONS(2549), + [anon_sym_require] = ACTIONS(2549), + [anon_sym_require_once] = ACTIONS(2549), + [anon_sym_BSLASH] = ACTIONS(2551), + [anon_sym_self] = ACTIONS(2549), + [anon_sym_parent] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2549), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_echo] = ACTIONS(2549), + [anon_sym_unset] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_concurrent] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_function] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_elseif] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_foreach] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [sym_float] = ACTIONS(2551), + [sym_integer] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_True] = ACTIONS(2549), + [anon_sym_TRUE] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_False] = ACTIONS(2549), + [anon_sym_FALSE] = ACTIONS(2549), + [anon_sym_null] = ACTIONS(2549), + [anon_sym_Null] = ACTIONS(2549), + [anon_sym_NULL] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_array] = ACTIONS(2549), + [anon_sym_varray] = ACTIONS(2549), + [anon_sym_darray] = ACTIONS(2549), + [anon_sym_vec] = ACTIONS(2549), + [anon_sym_dict] = ACTIONS(2549), + [anon_sym_keyset] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_list] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_interface] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_abstract] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2551), + [sym_final_modifier] = ACTIONS(2549), + [sym_xhp_modifier] = ACTIONS(2549), + [sym_xhp_identifier] = ACTIONS(2549), + [sym_xhp_class_identifier] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + }, + [1254] = { + [ts_builtin_sym_end] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2089), + [sym_variable] = ACTIONS(2091), + [sym_pipe_variable] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_newtype] = ACTIONS(2089), + [anon_sym_shape] = ACTIONS(2089), + [anon_sym_tuple] = ACTIONS(2089), + [anon_sym_clone] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_print] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_include] = ACTIONS(2089), + [anon_sym_include_once] = ACTIONS(2089), + [anon_sym_require] = ACTIONS(2089), + [anon_sym_require_once] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2091), + [anon_sym_self] = ACTIONS(2089), + [anon_sym_parent] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_LT_LT_LT] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_echo] = ACTIONS(2089), + [anon_sym_unset] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_concurrent] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_elseif] = ACTIONS(2089), + [anon_sym_else] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_foreach] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [sym_float] = ACTIONS(2091), + [sym_integer] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_True] = ACTIONS(2089), + [anon_sym_TRUE] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_False] = ACTIONS(2089), + [anon_sym_FALSE] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [anon_sym_Null] = ACTIONS(2089), + [anon_sym_NULL] = ACTIONS(2089), + [sym_string] = ACTIONS(2091), + [anon_sym_AT] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2091), + [anon_sym_array] = ACTIONS(2089), + [anon_sym_varray] = ACTIONS(2089), + [anon_sym_darray] = ACTIONS(2089), + [anon_sym_vec] = ACTIONS(2089), + [anon_sym_dict] = ACTIONS(2089), + [anon_sym_keyset] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_list] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2091), + [sym_final_modifier] = ACTIONS(2089), + [sym_xhp_modifier] = ACTIONS(2089), + [sym_xhp_identifier] = ACTIONS(2089), + [sym_xhp_class_identifier] = ACTIONS(2091), [sym_comment] = ACTIONS(3), }, - [1305] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1255] = { + [ts_builtin_sym_end] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2553), + [sym_variable] = ACTIONS(2555), + [sym_pipe_variable] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_newtype] = ACTIONS(2553), + [anon_sym_shape] = ACTIONS(2553), + [anon_sym_tuple] = ACTIONS(2553), + [anon_sym_clone] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_include] = ACTIONS(2553), + [anon_sym_include_once] = ACTIONS(2553), + [anon_sym_require] = ACTIONS(2553), + [anon_sym_require_once] = ACTIONS(2553), + [anon_sym_BSLASH] = ACTIONS(2555), + [anon_sym_self] = ACTIONS(2553), + [anon_sym_parent] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_LT_LT] = ACTIONS(2553), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_echo] = ACTIONS(2553), + [anon_sym_unset] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_concurrent] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_function] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_elseif] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_foreach] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [sym_float] = ACTIONS(2555), + [sym_integer] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_True] = ACTIONS(2553), + [anon_sym_TRUE] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_False] = ACTIONS(2553), + [anon_sym_FALSE] = ACTIONS(2553), + [anon_sym_null] = ACTIONS(2553), + [anon_sym_Null] = ACTIONS(2553), + [anon_sym_NULL] = ACTIONS(2553), + [sym_string] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_array] = ACTIONS(2553), + [anon_sym_varray] = ACTIONS(2553), + [anon_sym_darray] = ACTIONS(2553), + [anon_sym_vec] = ACTIONS(2553), + [anon_sym_dict] = ACTIONS(2553), + [anon_sym_keyset] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_list] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_await] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_interface] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(2555), + [sym_final_modifier] = ACTIONS(2553), + [sym_xhp_modifier] = ACTIONS(2553), + [sym_xhp_identifier] = ACTIONS(2553), + [sym_xhp_class_identifier] = ACTIONS(2555), [sym_comment] = ACTIONS(3), }, - [1306] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2265), - [sym_variable] = ACTIONS(2267), - [sym_pipe_variable] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_newtype] = ACTIONS(2265), - [anon_sym_shape] = ACTIONS(2265), - [anon_sym_tuple] = ACTIONS(2265), - [anon_sym_clone] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_print] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_LT] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_echo] = ACTIONS(2265), - [anon_sym_unset] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_concurrent] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_elseif] = ACTIONS(2265), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_using] = ACTIONS(2265), - [sym_float] = ACTIONS(2267), - [sym_integer] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_True] = ACTIONS(2265), - [anon_sym_TRUE] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_False] = ACTIONS(2265), - [anon_sym_FALSE] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_Null] = ACTIONS(2265), - [anon_sym_NULL] = ACTIONS(2265), - [sym_string] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_array] = ACTIONS(2265), - [anon_sym_varray] = ACTIONS(2265), - [anon_sym_darray] = ACTIONS(2265), - [anon_sym_vec] = ACTIONS(2265), - [anon_sym_dict] = ACTIONS(2265), - [anon_sym_keyset] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2267), - [sym_final_modifier] = ACTIONS(2265), - [sym_xhp_modifier] = ACTIONS(2265), - [sym_xhp_identifier] = ACTIONS(2265), - [sym_xhp_class_identifier] = ACTIONS(2267), + [1256] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1307] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2261), - [sym_variable] = ACTIONS(2263), - [sym_pipe_variable] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_newtype] = ACTIONS(2261), - [anon_sym_shape] = ACTIONS(2261), - [anon_sym_tuple] = ACTIONS(2261), - [anon_sym_clone] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_print] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_LT_LT_LT] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_throw] = ACTIONS(2261), - [anon_sym_echo] = ACTIONS(2261), - [anon_sym_unset] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_concurrent] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_function] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_elseif] = ACTIONS(2261), - [anon_sym_else] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(2261), - [anon_sym_foreach] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_do] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_using] = ACTIONS(2261), - [sym_float] = ACTIONS(2263), - [sym_integer] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_True] = ACTIONS(2261), - [anon_sym_TRUE] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_False] = ACTIONS(2261), - [anon_sym_FALSE] = ACTIONS(2261), - [anon_sym_null] = ACTIONS(2261), - [anon_sym_Null] = ACTIONS(2261), - [anon_sym_NULL] = ACTIONS(2261), - [sym_string] = ACTIONS(2263), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_array] = ACTIONS(2261), - [anon_sym_varray] = ACTIONS(2261), - [anon_sym_darray] = ACTIONS(2261), - [anon_sym_vec] = ACTIONS(2261), - [anon_sym_dict] = ACTIONS(2261), - [anon_sym_keyset] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_abstract] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2263), - [sym_final_modifier] = ACTIONS(2261), - [sym_xhp_modifier] = ACTIONS(2261), - [sym_xhp_identifier] = ACTIONS(2261), - [sym_xhp_class_identifier] = ACTIONS(2263), + [1257] = { + [ts_builtin_sym_end] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2557), + [sym_variable] = ACTIONS(2559), + [sym_pipe_variable] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_newtype] = ACTIONS(2557), + [anon_sym_shape] = ACTIONS(2557), + [anon_sym_tuple] = ACTIONS(2557), + [anon_sym_clone] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_print] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_include] = ACTIONS(2557), + [anon_sym_include_once] = ACTIONS(2557), + [anon_sym_require] = ACTIONS(2557), + [anon_sym_require_once] = ACTIONS(2557), + [anon_sym_BSLASH] = ACTIONS(2559), + [anon_sym_self] = ACTIONS(2557), + [anon_sym_parent] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2557), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_echo] = ACTIONS(2557), + [anon_sym_unset] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_concurrent] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_function] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_elseif] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_foreach] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [sym_float] = ACTIONS(2559), + [sym_integer] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_True] = ACTIONS(2557), + [anon_sym_TRUE] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_False] = ACTIONS(2557), + [anon_sym_FALSE] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2557), + [anon_sym_Null] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2557), + [sym_string] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_array] = ACTIONS(2557), + [anon_sym_varray] = ACTIONS(2557), + [anon_sym_darray] = ACTIONS(2557), + [anon_sym_vec] = ACTIONS(2557), + [anon_sym_dict] = ACTIONS(2557), + [anon_sym_keyset] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_await] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_interface] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_abstract] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(2559), + [sym_final_modifier] = ACTIONS(2557), + [sym_xhp_modifier] = ACTIONS(2557), + [sym_xhp_identifier] = ACTIONS(2557), + [sym_xhp_class_identifier] = ACTIONS(2559), [sym_comment] = ACTIONS(3), }, - [1308] = { - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2257), - [sym_variable] = ACTIONS(2259), - [sym_pipe_variable] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_newtype] = ACTIONS(2257), - [anon_sym_shape] = ACTIONS(2257), - [anon_sym_tuple] = ACTIONS(2257), - [anon_sym_clone] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_print] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_LT_LT_LT] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_echo] = ACTIONS(2257), - [anon_sym_unset] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_concurrent] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_elseif] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_foreach] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [sym_float] = ACTIONS(2259), - [sym_integer] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_True] = ACTIONS(2257), - [anon_sym_TRUE] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_False] = ACTIONS(2257), - [anon_sym_FALSE] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2257), - [anon_sym_Null] = ACTIONS(2257), - [anon_sym_NULL] = ACTIONS(2257), - [sym_string] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_array] = ACTIONS(2257), - [anon_sym_varray] = ACTIONS(2257), - [anon_sym_darray] = ACTIONS(2257), - [anon_sym_vec] = ACTIONS(2257), - [anon_sym_dict] = ACTIONS(2257), - [anon_sym_keyset] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2259), - [sym_final_modifier] = ACTIONS(2257), - [sym_xhp_modifier] = ACTIONS(2257), - [sym_xhp_identifier] = ACTIONS(2257), - [sym_xhp_class_identifier] = ACTIONS(2259), + [1258] = { + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_elseif] = ACTIONS(2053), + [anon_sym_else] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [1309] = { - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2249), - [sym_variable] = ACTIONS(2251), - [sym_pipe_variable] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_newtype] = ACTIONS(2249), - [anon_sym_shape] = ACTIONS(2249), - [anon_sym_tuple] = ACTIONS(2249), - [anon_sym_clone] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_print] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_LT_LT_LT] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_echo] = ACTIONS(2249), - [anon_sym_unset] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_concurrent] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_elseif] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_foreach] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [sym_float] = ACTIONS(2251), - [sym_integer] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_True] = ACTIONS(2249), - [anon_sym_TRUE] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [anon_sym_False] = ACTIONS(2249), - [anon_sym_FALSE] = ACTIONS(2249), - [anon_sym_null] = ACTIONS(2249), - [anon_sym_Null] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2249), - [sym_string] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_array] = ACTIONS(2249), - [anon_sym_varray] = ACTIONS(2249), - [anon_sym_darray] = ACTIONS(2249), - [anon_sym_vec] = ACTIONS(2249), - [anon_sym_dict] = ACTIONS(2249), - [anon_sym_keyset] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2251), - [sym_final_modifier] = ACTIONS(2249), - [sym_xhp_modifier] = ACTIONS(2249), - [sym_xhp_identifier] = ACTIONS(2249), - [sym_xhp_class_identifier] = ACTIONS(2251), + [1259] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1310] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1260] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1311] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1261] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_elseif] = ACTIONS(2093), + [anon_sym_else] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1312] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1262] = { + [sym_identifier] = ACTIONS(2333), + [sym_variable] = ACTIONS(2335), + [sym_pipe_variable] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_newtype] = ACTIONS(2333), + [anon_sym_shape] = ACTIONS(2333), + [anon_sym_tuple] = ACTIONS(2333), + [anon_sym_clone] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_print] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_include] = ACTIONS(2333), + [anon_sym_include_once] = ACTIONS(2333), + [anon_sym_require] = ACTIONS(2333), + [anon_sym_require_once] = ACTIONS(2333), + [anon_sym_BSLASH] = ACTIONS(2335), + [anon_sym_self] = ACTIONS(2333), + [anon_sym_parent] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_LT_LT] = ACTIONS(2333), + [anon_sym_LT_LT_LT] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_echo] = ACTIONS(2333), + [anon_sym_unset] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_concurrent] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_elseif] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_foreach] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [sym_float] = ACTIONS(2335), + [sym_integer] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_True] = ACTIONS(2333), + [anon_sym_TRUE] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_False] = ACTIONS(2333), + [anon_sym_FALSE] = ACTIONS(2333), + [anon_sym_null] = ACTIONS(2333), + [anon_sym_Null] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [sym_string] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_array] = ACTIONS(2333), + [anon_sym_varray] = ACTIONS(2333), + [anon_sym_darray] = ACTIONS(2333), + [anon_sym_vec] = ACTIONS(2333), + [anon_sym_dict] = ACTIONS(2333), + [anon_sym_keyset] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_list] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2335), + [sym_final_modifier] = ACTIONS(2333), + [sym_xhp_modifier] = ACTIONS(2333), + [sym_xhp_identifier] = ACTIONS(2333), + [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, - [1313] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1263] = { + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2561), + [sym_variable] = ACTIONS(2563), + [sym_pipe_variable] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_newtype] = ACTIONS(2561), + [anon_sym_shape] = ACTIONS(2561), + [anon_sym_tuple] = ACTIONS(2561), + [anon_sym_clone] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_print] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_include] = ACTIONS(2561), + [anon_sym_include_once] = ACTIONS(2561), + [anon_sym_require] = ACTIONS(2561), + [anon_sym_require_once] = ACTIONS(2561), + [anon_sym_BSLASH] = ACTIONS(2563), + [anon_sym_self] = ACTIONS(2561), + [anon_sym_parent] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_LT_LT] = ACTIONS(2561), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_echo] = ACTIONS(2561), + [anon_sym_unset] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_concurrent] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_function] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_elseif] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_foreach] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [sym_float] = ACTIONS(2563), + [sym_integer] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_True] = ACTIONS(2561), + [anon_sym_TRUE] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_False] = ACTIONS(2561), + [anon_sym_FALSE] = ACTIONS(2561), + [anon_sym_null] = ACTIONS(2561), + [anon_sym_Null] = ACTIONS(2561), + [anon_sym_NULL] = ACTIONS(2561), + [sym_string] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_array] = ACTIONS(2561), + [anon_sym_varray] = ACTIONS(2561), + [anon_sym_darray] = ACTIONS(2561), + [anon_sym_vec] = ACTIONS(2561), + [anon_sym_dict] = ACTIONS(2561), + [anon_sym_keyset] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_list] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_interface] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_abstract] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(2563), + [sym_final_modifier] = ACTIONS(2561), + [sym_xhp_modifier] = ACTIONS(2561), + [sym_xhp_identifier] = ACTIONS(2561), + [sym_xhp_class_identifier] = ACTIONS(2563), [sym_comment] = ACTIONS(3), }, - [1314] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1264] = { + [sym_identifier] = ACTIONS(2233), + [sym_variable] = ACTIONS(2235), + [sym_pipe_variable] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_newtype] = ACTIONS(2233), + [anon_sym_shape] = ACTIONS(2233), + [anon_sym_tuple] = ACTIONS(2233), + [anon_sym_clone] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_include] = ACTIONS(2233), + [anon_sym_include_once] = ACTIONS(2233), + [anon_sym_require] = ACTIONS(2233), + [anon_sym_require_once] = ACTIONS(2233), + [anon_sym_BSLASH] = ACTIONS(2235), + [anon_sym_self] = ACTIONS(2233), + [anon_sym_parent] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_LT_LT_LT] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_echo] = ACTIONS(2233), + [anon_sym_unset] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_concurrent] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_foreach] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [sym_float] = ACTIONS(2235), + [sym_integer] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_True] = ACTIONS(2233), + [anon_sym_TRUE] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_False] = ACTIONS(2233), + [anon_sym_FALSE] = ACTIONS(2233), + [anon_sym_null] = ACTIONS(2233), + [anon_sym_Null] = ACTIONS(2233), + [anon_sym_NULL] = ACTIONS(2233), + [sym_string] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_array] = ACTIONS(2233), + [anon_sym_varray] = ACTIONS(2233), + [anon_sym_darray] = ACTIONS(2233), + [anon_sym_vec] = ACTIONS(2233), + [anon_sym_dict] = ACTIONS(2233), + [anon_sym_keyset] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_list] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2235), + [sym_final_modifier] = ACTIONS(2233), + [sym_xhp_modifier] = ACTIONS(2233), + [sym_xhp_identifier] = ACTIONS(2233), + [sym_xhp_class_identifier] = ACTIONS(2235), [sym_comment] = ACTIONS(3), }, - [1315] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1265] = { + [sym_identifier] = ACTIONS(2341), + [sym_variable] = ACTIONS(2343), + [sym_pipe_variable] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_newtype] = ACTIONS(2341), + [anon_sym_shape] = ACTIONS(2341), + [anon_sym_tuple] = ACTIONS(2341), + [anon_sym_clone] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_print] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_include] = ACTIONS(2341), + [anon_sym_include_once] = ACTIONS(2341), + [anon_sym_require] = ACTIONS(2341), + [anon_sym_require_once] = ACTIONS(2341), + [anon_sym_BSLASH] = ACTIONS(2343), + [anon_sym_self] = ACTIONS(2341), + [anon_sym_parent] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_LT_LT_LT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_echo] = ACTIONS(2341), + [anon_sym_unset] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_concurrent] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_function] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_elseif] = ACTIONS(2341), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_foreach] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [sym_float] = ACTIONS(2343), + [sym_integer] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_True] = ACTIONS(2341), + [anon_sym_TRUE] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_False] = ACTIONS(2341), + [anon_sym_FALSE] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [anon_sym_Null] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [sym_string] = ACTIONS(2343), + [anon_sym_AT] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_array] = ACTIONS(2341), + [anon_sym_varray] = ACTIONS(2341), + [anon_sym_darray] = ACTIONS(2341), + [anon_sym_vec] = ACTIONS(2341), + [anon_sym_dict] = ACTIONS(2341), + [anon_sym_keyset] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_abstract] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2343), + [sym_final_modifier] = ACTIONS(2341), + [sym_xhp_modifier] = ACTIONS(2341), + [sym_xhp_identifier] = ACTIONS(2341), + [sym_xhp_class_identifier] = ACTIONS(2343), + [sym_comment] = ACTIONS(3), + }, + [1266] = { + [sym_identifier] = ACTIONS(2385), + [sym_variable] = ACTIONS(2387), + [sym_pipe_variable] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_newtype] = ACTIONS(2385), + [anon_sym_shape] = ACTIONS(2385), + [anon_sym_tuple] = ACTIONS(2385), + [anon_sym_clone] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_print] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_include] = ACTIONS(2385), + [anon_sym_include_once] = ACTIONS(2385), + [anon_sym_require] = ACTIONS(2385), + [anon_sym_require_once] = ACTIONS(2385), + [anon_sym_BSLASH] = ACTIONS(2387), + [anon_sym_self] = ACTIONS(2385), + [anon_sym_parent] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_LT_LT] = ACTIONS(2385), + [anon_sym_LT_LT_LT] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_echo] = ACTIONS(2385), + [anon_sym_unset] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_concurrent] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_function] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_case] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_foreach] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [sym_float] = ACTIONS(2387), + [sym_integer] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_True] = ACTIONS(2385), + [anon_sym_TRUE] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_False] = ACTIONS(2385), + [anon_sym_FALSE] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2385), + [anon_sym_Null] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [sym_string] = ACTIONS(2387), + [anon_sym_AT] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_array] = ACTIONS(2385), + [anon_sym_varray] = ACTIONS(2385), + [anon_sym_darray] = ACTIONS(2385), + [anon_sym_vec] = ACTIONS(2385), + [anon_sym_dict] = ACTIONS(2385), + [anon_sym_keyset] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_list] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_interface] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_abstract] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2387), + [sym_final_modifier] = ACTIONS(2385), + [sym_xhp_modifier] = ACTIONS(2385), + [sym_xhp_identifier] = ACTIONS(2385), + [sym_xhp_class_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(3), }, - [1316] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1267] = { + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2569), + [sym_variable] = ACTIONS(2571), + [sym_pipe_variable] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_newtype] = ACTIONS(2569), + [anon_sym_shape] = ACTIONS(2569), + [anon_sym_tuple] = ACTIONS(2569), + [anon_sym_clone] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_include_once] = ACTIONS(2569), + [anon_sym_require] = ACTIONS(2569), + [anon_sym_require_once] = ACTIONS(2569), + [anon_sym_BSLASH] = ACTIONS(2571), + [anon_sym_self] = ACTIONS(2569), + [anon_sym_parent] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_throw] = ACTIONS(2569), + [anon_sym_echo] = ACTIONS(2569), + [anon_sym_unset] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_concurrent] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_function] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_elseif] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2569), + [anon_sym_switch] = ACTIONS(2569), + [anon_sym_foreach] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_using] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [sym_integer] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_True] = ACTIONS(2569), + [anon_sym_TRUE] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_False] = ACTIONS(2569), + [anon_sym_FALSE] = ACTIONS(2569), + [anon_sym_null] = ACTIONS(2569), + [anon_sym_Null] = ACTIONS(2569), + [anon_sym_NULL] = ACTIONS(2569), + [sym_string] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_array] = ACTIONS(2569), + [anon_sym_varray] = ACTIONS(2569), + [anon_sym_darray] = ACTIONS(2569), + [anon_sym_vec] = ACTIONS(2569), + [anon_sym_dict] = ACTIONS(2569), + [anon_sym_keyset] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_interface] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_abstract] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(2571), + [sym_final_modifier] = ACTIONS(2569), + [sym_xhp_modifier] = ACTIONS(2569), + [sym_xhp_identifier] = ACTIONS(2569), + [sym_xhp_class_identifier] = ACTIONS(2571), [sym_comment] = ACTIONS(3), }, - [1317] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1268] = { + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2573), + [sym_variable] = ACTIONS(2575), + [sym_pipe_variable] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_newtype] = ACTIONS(2573), + [anon_sym_shape] = ACTIONS(2573), + [anon_sym_tuple] = ACTIONS(2573), + [anon_sym_clone] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_include_once] = ACTIONS(2573), + [anon_sym_require] = ACTIONS(2573), + [anon_sym_require_once] = ACTIONS(2573), + [anon_sym_BSLASH] = ACTIONS(2575), + [anon_sym_self] = ACTIONS(2573), + [anon_sym_parent] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_LT_LT] = ACTIONS(2573), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_echo] = ACTIONS(2573), + [anon_sym_unset] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_concurrent] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_elseif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_foreach] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [sym_float] = ACTIONS(2575), + [sym_integer] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_True] = ACTIONS(2573), + [anon_sym_TRUE] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_False] = ACTIONS(2573), + [anon_sym_FALSE] = ACTIONS(2573), + [anon_sym_null] = ACTIONS(2573), + [anon_sym_Null] = ACTIONS(2573), + [anon_sym_NULL] = ACTIONS(2573), + [sym_string] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_array] = ACTIONS(2573), + [anon_sym_varray] = ACTIONS(2573), + [anon_sym_darray] = ACTIONS(2573), + [anon_sym_vec] = ACTIONS(2573), + [anon_sym_dict] = ACTIONS(2573), + [anon_sym_keyset] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_list] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_interface] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_abstract] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(2575), + [sym_final_modifier] = ACTIONS(2573), + [sym_xhp_modifier] = ACTIONS(2573), + [sym_xhp_identifier] = ACTIONS(2573), + [sym_xhp_class_identifier] = ACTIONS(2575), [sym_comment] = ACTIONS(3), }, - [1318] = { - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2245), - [sym_variable] = ACTIONS(2247), - [sym_pipe_variable] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_newtype] = ACTIONS(2245), - [anon_sym_shape] = ACTIONS(2245), - [anon_sym_tuple] = ACTIONS(2245), - [anon_sym_clone] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_print] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_LT_LT_LT] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_echo] = ACTIONS(2245), - [anon_sym_unset] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_concurrent] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_elseif] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_foreach] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [sym_float] = ACTIONS(2247), - [sym_integer] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_True] = ACTIONS(2245), - [anon_sym_TRUE] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_False] = ACTIONS(2245), - [anon_sym_FALSE] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_Null] = ACTIONS(2245), - [anon_sym_NULL] = ACTIONS(2245), - [sym_string] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_array] = ACTIONS(2245), - [anon_sym_varray] = ACTIONS(2245), - [anon_sym_darray] = ACTIONS(2245), - [anon_sym_vec] = ACTIONS(2245), - [anon_sym_dict] = ACTIONS(2245), - [anon_sym_keyset] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2247), - [sym_final_modifier] = ACTIONS(2245), - [sym_xhp_modifier] = ACTIONS(2245), - [sym_xhp_identifier] = ACTIONS(2245), - [sym_xhp_class_identifier] = ACTIONS(2247), + [1269] = { + [sym_identifier] = ACTIONS(2577), + [sym_variable] = ACTIONS(2579), + [sym_pipe_variable] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_newtype] = ACTIONS(2577), + [anon_sym_shape] = ACTIONS(2577), + [anon_sym_tuple] = ACTIONS(2577), + [anon_sym_clone] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_include_once] = ACTIONS(2577), + [anon_sym_require] = ACTIONS(2577), + [anon_sym_require_once] = ACTIONS(2577), + [anon_sym_BSLASH] = ACTIONS(2579), + [anon_sym_self] = ACTIONS(2577), + [anon_sym_parent] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_echo] = ACTIONS(2577), + [anon_sym_unset] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_concurrent] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_foreach] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [sym_integer] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_True] = ACTIONS(2577), + [anon_sym_TRUE] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_False] = ACTIONS(2577), + [anon_sym_FALSE] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2577), + [anon_sym_Null] = ACTIONS(2577), + [anon_sym_NULL] = ACTIONS(2577), + [sym_string] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_array] = ACTIONS(2577), + [anon_sym_varray] = ACTIONS(2577), + [anon_sym_darray] = ACTIONS(2577), + [anon_sym_vec] = ACTIONS(2577), + [anon_sym_dict] = ACTIONS(2577), + [anon_sym_keyset] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_list] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2579), + [sym_final_modifier] = ACTIONS(2577), + [sym_xhp_modifier] = ACTIONS(2577), + [sym_xhp_identifier] = ACTIONS(2577), + [sym_xhp_class_identifier] = ACTIONS(2579), [sym_comment] = ACTIONS(3), }, - [1319] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1270] = { + [sym_identifier] = ACTIONS(2377), + [sym_variable] = ACTIONS(2379), + [sym_pipe_variable] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_newtype] = ACTIONS(2377), + [anon_sym_shape] = ACTIONS(2377), + [anon_sym_tuple] = ACTIONS(2377), + [anon_sym_clone] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_print] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_include] = ACTIONS(2377), + [anon_sym_include_once] = ACTIONS(2377), + [anon_sym_require] = ACTIONS(2377), + [anon_sym_require_once] = ACTIONS(2377), + [anon_sym_BSLASH] = ACTIONS(2379), + [anon_sym_self] = ACTIONS(2377), + [anon_sym_parent] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_LT_LT_LT] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_echo] = ACTIONS(2377), + [anon_sym_unset] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_concurrent] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_function] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_foreach] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [sym_float] = ACTIONS(2379), + [sym_integer] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_True] = ACTIONS(2377), + [anon_sym_TRUE] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_False] = ACTIONS(2377), + [anon_sym_FALSE] = ACTIONS(2377), + [anon_sym_null] = ACTIONS(2377), + [anon_sym_Null] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [sym_string] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_array] = ACTIONS(2377), + [anon_sym_varray] = ACTIONS(2377), + [anon_sym_darray] = ACTIONS(2377), + [anon_sym_vec] = ACTIONS(2377), + [anon_sym_dict] = ACTIONS(2377), + [anon_sym_keyset] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_list] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_abstract] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2379), + [sym_final_modifier] = ACTIONS(2377), + [sym_xhp_modifier] = ACTIONS(2377), + [sym_xhp_identifier] = ACTIONS(2377), + [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, - [1320] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1271] = { + [sym_identifier] = ACTIONS(2313), + [sym_variable] = ACTIONS(2315), + [sym_pipe_variable] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_newtype] = ACTIONS(2313), + [anon_sym_shape] = ACTIONS(2313), + [anon_sym_tuple] = ACTIONS(2313), + [anon_sym_clone] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_print] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_include] = ACTIONS(2313), + [anon_sym_include_once] = ACTIONS(2313), + [anon_sym_require] = ACTIONS(2313), + [anon_sym_require_once] = ACTIONS(2313), + [anon_sym_BSLASH] = ACTIONS(2315), + [anon_sym_self] = ACTIONS(2313), + [anon_sym_parent] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_LT_LT] = ACTIONS(2313), + [anon_sym_LT_LT_LT] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_echo] = ACTIONS(2313), + [anon_sym_unset] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_concurrent] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_elseif] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [sym_float] = ACTIONS(2315), + [sym_integer] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_True] = ACTIONS(2313), + [anon_sym_TRUE] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_False] = ACTIONS(2313), + [anon_sym_FALSE] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [anon_sym_Null] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [sym_string] = ACTIONS(2315), + [anon_sym_AT] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_array] = ACTIONS(2313), + [anon_sym_varray] = ACTIONS(2313), + [anon_sym_darray] = ACTIONS(2313), + [anon_sym_vec] = ACTIONS(2313), + [anon_sym_dict] = ACTIONS(2313), + [anon_sym_keyset] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2315), + [sym_final_modifier] = ACTIONS(2313), + [sym_xhp_modifier] = ACTIONS(2313), + [sym_xhp_identifier] = ACTIONS(2313), + [sym_xhp_class_identifier] = ACTIONS(2315), [sym_comment] = ACTIONS(3), }, - [1321] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1272] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1322] = { - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2241), - [sym_variable] = ACTIONS(2243), - [sym_pipe_variable] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_newtype] = ACTIONS(2241), - [anon_sym_shape] = ACTIONS(2241), - [anon_sym_tuple] = ACTIONS(2241), - [anon_sym_clone] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_print] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_include] = ACTIONS(2241), - [anon_sym_include_once] = ACTIONS(2241), - [anon_sym_require] = ACTIONS(2241), - [anon_sym_require_once] = ACTIONS(2241), - [anon_sym_BSLASH] = ACTIONS(2243), - [anon_sym_self] = ACTIONS(2241), - [anon_sym_parent] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_LT_LT_LT] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_echo] = ACTIONS(2241), - [anon_sym_unset] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_concurrent] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_elseif] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_foreach] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [sym_float] = ACTIONS(2243), - [sym_integer] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_True] = ACTIONS(2241), - [anon_sym_TRUE] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [anon_sym_False] = ACTIONS(2241), - [anon_sym_FALSE] = ACTIONS(2241), - [anon_sym_null] = ACTIONS(2241), - [anon_sym_Null] = ACTIONS(2241), - [anon_sym_NULL] = ACTIONS(2241), - [sym_string] = ACTIONS(2243), - [anon_sym_AT] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_array] = ACTIONS(2241), - [anon_sym_varray] = ACTIONS(2241), - [anon_sym_darray] = ACTIONS(2241), - [anon_sym_vec] = ACTIONS(2241), - [anon_sym_dict] = ACTIONS(2241), - [anon_sym_keyset] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2243), - [sym_final_modifier] = ACTIONS(2241), - [sym_xhp_modifier] = ACTIONS(2241), - [sym_xhp_identifier] = ACTIONS(2241), - [sym_xhp_class_identifier] = ACTIONS(2243), + [1273] = { + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2577), + [sym_variable] = ACTIONS(2579), + [sym_pipe_variable] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_newtype] = ACTIONS(2577), + [anon_sym_shape] = ACTIONS(2577), + [anon_sym_tuple] = ACTIONS(2577), + [anon_sym_clone] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_include_once] = ACTIONS(2577), + [anon_sym_require] = ACTIONS(2577), + [anon_sym_require_once] = ACTIONS(2577), + [anon_sym_BSLASH] = ACTIONS(2579), + [anon_sym_self] = ACTIONS(2577), + [anon_sym_parent] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_echo] = ACTIONS(2577), + [anon_sym_unset] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_concurrent] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_elseif] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_foreach] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [sym_integer] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_True] = ACTIONS(2577), + [anon_sym_TRUE] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_False] = ACTIONS(2577), + [anon_sym_FALSE] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2577), + [anon_sym_Null] = ACTIONS(2577), + [anon_sym_NULL] = ACTIONS(2577), + [sym_string] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_array] = ACTIONS(2577), + [anon_sym_varray] = ACTIONS(2577), + [anon_sym_darray] = ACTIONS(2577), + [anon_sym_vec] = ACTIONS(2577), + [anon_sym_dict] = ACTIONS(2577), + [anon_sym_keyset] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_list] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2579), + [sym_final_modifier] = ACTIONS(2577), + [sym_xhp_modifier] = ACTIONS(2577), + [sym_xhp_identifier] = ACTIONS(2577), + [sym_xhp_class_identifier] = ACTIONS(2579), [sym_comment] = ACTIONS(3), }, - [1323] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1274] = { + [sym_identifier] = ACTIONS(2293), + [sym_variable] = ACTIONS(2295), + [sym_pipe_variable] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_newtype] = ACTIONS(2293), + [anon_sym_shape] = ACTIONS(2293), + [anon_sym_tuple] = ACTIONS(2293), + [anon_sym_clone] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_include] = ACTIONS(2293), + [anon_sym_include_once] = ACTIONS(2293), + [anon_sym_require] = ACTIONS(2293), + [anon_sym_require_once] = ACTIONS(2293), + [anon_sym_BSLASH] = ACTIONS(2295), + [anon_sym_self] = ACTIONS(2293), + [anon_sym_parent] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_LT_LT] = ACTIONS(2293), + [anon_sym_LT_LT_LT] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_echo] = ACTIONS(2293), + [anon_sym_unset] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_concurrent] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_elseif] = ACTIONS(2293), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_foreach] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_using] = ACTIONS(2293), + [sym_float] = ACTIONS(2295), + [sym_integer] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_True] = ACTIONS(2293), + [anon_sym_TRUE] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_False] = ACTIONS(2293), + [anon_sym_FALSE] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [anon_sym_Null] = ACTIONS(2293), + [anon_sym_NULL] = ACTIONS(2293), + [sym_string] = ACTIONS(2295), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_array] = ACTIONS(2293), + [anon_sym_varray] = ACTIONS(2293), + [anon_sym_darray] = ACTIONS(2293), + [anon_sym_vec] = ACTIONS(2293), + [anon_sym_dict] = ACTIONS(2293), + [anon_sym_keyset] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2295), + [sym_final_modifier] = ACTIONS(2293), + [sym_xhp_modifier] = ACTIONS(2293), + [sym_xhp_identifier] = ACTIONS(2293), + [sym_xhp_class_identifier] = ACTIONS(2295), [sym_comment] = ACTIONS(3), }, - [1324] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1275] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2581), + [sym_variable] = ACTIONS(2583), + [sym_pipe_variable] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_newtype] = ACTIONS(2581), + [anon_sym_shape] = ACTIONS(2581), + [anon_sym_tuple] = ACTIONS(2581), + [anon_sym_clone] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_include] = ACTIONS(2581), + [anon_sym_include_once] = ACTIONS(2581), + [anon_sym_require] = ACTIONS(2581), + [anon_sym_require_once] = ACTIONS(2581), + [anon_sym_BSLASH] = ACTIONS(2583), + [anon_sym_self] = ACTIONS(2581), + [anon_sym_parent] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_echo] = ACTIONS(2581), + [anon_sym_unset] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_concurrent] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_elseif] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_foreach] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [sym_float] = ACTIONS(2583), + [sym_integer] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_True] = ACTIONS(2581), + [anon_sym_TRUE] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_False] = ACTIONS(2581), + [anon_sym_FALSE] = ACTIONS(2581), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_Null] = ACTIONS(2581), + [anon_sym_NULL] = ACTIONS(2581), + [sym_string] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_array] = ACTIONS(2581), + [anon_sym_varray] = ACTIONS(2581), + [anon_sym_darray] = ACTIONS(2581), + [anon_sym_vec] = ACTIONS(2581), + [anon_sym_dict] = ACTIONS(2581), + [anon_sym_keyset] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_list] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(2583), + [sym_final_modifier] = ACTIONS(2581), + [sym_xhp_modifier] = ACTIONS(2581), + [sym_xhp_identifier] = ACTIONS(2581), + [sym_xhp_class_identifier] = ACTIONS(2583), [sym_comment] = ACTIONS(3), }, - [1325] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1276] = { + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2585), + [sym_variable] = ACTIONS(2587), + [sym_pipe_variable] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_newtype] = ACTIONS(2585), + [anon_sym_shape] = ACTIONS(2585), + [anon_sym_tuple] = ACTIONS(2585), + [anon_sym_clone] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_include] = ACTIONS(2585), + [anon_sym_include_once] = ACTIONS(2585), + [anon_sym_require] = ACTIONS(2585), + [anon_sym_require_once] = ACTIONS(2585), + [anon_sym_BSLASH] = ACTIONS(2587), + [anon_sym_self] = ACTIONS(2585), + [anon_sym_parent] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_LT_LT_LT] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_echo] = ACTIONS(2585), + [anon_sym_unset] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_concurrent] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_elseif] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_foreach] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_using] = ACTIONS(2585), + [sym_float] = ACTIONS(2587), + [sym_integer] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_True] = ACTIONS(2585), + [anon_sym_TRUE] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_False] = ACTIONS(2585), + [anon_sym_FALSE] = ACTIONS(2585), + [anon_sym_null] = ACTIONS(2585), + [anon_sym_Null] = ACTIONS(2585), + [anon_sym_NULL] = ACTIONS(2585), + [sym_string] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_array] = ACTIONS(2585), + [anon_sym_varray] = ACTIONS(2585), + [anon_sym_darray] = ACTIONS(2585), + [anon_sym_vec] = ACTIONS(2585), + [anon_sym_dict] = ACTIONS(2585), + [anon_sym_keyset] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_list] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_abstract] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2587), + [sym_final_modifier] = ACTIONS(2585), + [sym_xhp_modifier] = ACTIONS(2585), + [sym_xhp_identifier] = ACTIONS(2585), + [sym_xhp_class_identifier] = ACTIONS(2587), [sym_comment] = ACTIONS(3), }, - [1326] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1277] = { + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_identifier] = ACTIONS(2589), + [sym_variable] = ACTIONS(2591), + [sym_pipe_variable] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_newtype] = ACTIONS(2589), + [anon_sym_shape] = ACTIONS(2589), + [anon_sym_tuple] = ACTIONS(2589), + [anon_sym_clone] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_print] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_include] = ACTIONS(2589), + [anon_sym_include_once] = ACTIONS(2589), + [anon_sym_require] = ACTIONS(2589), + [anon_sym_require_once] = ACTIONS(2589), + [anon_sym_BSLASH] = ACTIONS(2591), + [anon_sym_self] = ACTIONS(2589), + [anon_sym_parent] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_echo] = ACTIONS(2589), + [anon_sym_unset] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_concurrent] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_function] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_elseif] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_foreach] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [sym_float] = ACTIONS(2591), + [sym_integer] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_True] = ACTIONS(2589), + [anon_sym_TRUE] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_False] = ACTIONS(2589), + [anon_sym_FALSE] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2589), + [anon_sym_Null] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [sym_string] = ACTIONS(2591), + [anon_sym_AT] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_array] = ACTIONS(2589), + [anon_sym_varray] = ACTIONS(2589), + [anon_sym_darray] = ACTIONS(2589), + [anon_sym_vec] = ACTIONS(2589), + [anon_sym_dict] = ACTIONS(2589), + [anon_sym_keyset] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_list] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_await] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_interface] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_abstract] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2591), + [sym_final_modifier] = ACTIONS(2589), + [sym_xhp_modifier] = ACTIONS(2589), + [sym_xhp_identifier] = ACTIONS(2589), + [sym_xhp_class_identifier] = ACTIONS(2591), [sym_comment] = ACTIONS(3), }, - [1327] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1278] = { + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2593), + [sym_variable] = ACTIONS(2595), + [sym_pipe_variable] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_newtype] = ACTIONS(2593), + [anon_sym_shape] = ACTIONS(2593), + [anon_sym_tuple] = ACTIONS(2593), + [anon_sym_clone] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_include] = ACTIONS(2593), + [anon_sym_include_once] = ACTIONS(2593), + [anon_sym_require] = ACTIONS(2593), + [anon_sym_require_once] = ACTIONS(2593), + [anon_sym_BSLASH] = ACTIONS(2595), + [anon_sym_self] = ACTIONS(2593), + [anon_sym_parent] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_LT_LT] = ACTIONS(2593), + [anon_sym_LT_LT_LT] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_echo] = ACTIONS(2593), + [anon_sym_unset] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_concurrent] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_function] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_elseif] = ACTIONS(2593), + [anon_sym_else] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_foreach] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [sym_float] = ACTIONS(2595), + [sym_integer] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_True] = ACTIONS(2593), + [anon_sym_TRUE] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_False] = ACTIONS(2593), + [anon_sym_FALSE] = ACTIONS(2593), + [anon_sym_null] = ACTIONS(2593), + [anon_sym_Null] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [sym_string] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_array] = ACTIONS(2593), + [anon_sym_varray] = ACTIONS(2593), + [anon_sym_darray] = ACTIONS(2593), + [anon_sym_vec] = ACTIONS(2593), + [anon_sym_dict] = ACTIONS(2593), + [anon_sym_keyset] = ACTIONS(2593), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_list] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_await] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_interface] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(2595), + [sym_final_modifier] = ACTIONS(2593), + [sym_xhp_modifier] = ACTIONS(2593), + [sym_xhp_identifier] = ACTIONS(2593), + [sym_xhp_class_identifier] = ACTIONS(2595), [sym_comment] = ACTIONS(3), }, - [1328] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1279] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1329] = { - [ts_builtin_sym_end] = ACTIONS(2239), + [1280] = { [sym_identifier] = ACTIONS(2237), [sym_variable] = ACTIONS(2239), [sym_pipe_variable] = ACTIONS(2239), @@ -159728,6 +148989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2237), [anon_sym_LT_LT] = ACTIONS(2237), [anon_sym_LT_LT_LT] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), [anon_sym_LBRACE] = ACTIONS(2239), [anon_sym_SEMI] = ACTIONS(2239), [anon_sym_return] = ACTIONS(2237), @@ -159742,9 +149004,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2237), [anon_sym_const] = ACTIONS(2237), [anon_sym_if] = ACTIONS(2237), - [anon_sym_elseif] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), [anon_sym_switch] = ACTIONS(2237), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), [anon_sym_foreach] = ACTIONS(2237), [anon_sym_while] = ACTIONS(2237), [anon_sym_do] = ACTIONS(2237), @@ -159760,1096 +149022,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(2237), [anon_sym_FALSE] = ACTIONS(2237), [anon_sym_null] = ACTIONS(2237), - [anon_sym_Null] = ACTIONS(2237), - [anon_sym_NULL] = ACTIONS(2237), - [sym_string] = ACTIONS(2239), - [anon_sym_AT] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_array] = ACTIONS(2237), - [anon_sym_varray] = ACTIONS(2237), - [anon_sym_darray] = ACTIONS(2237), - [anon_sym_vec] = ACTIONS(2237), - [anon_sym_dict] = ACTIONS(2237), - [anon_sym_keyset] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2239), - [sym_final_modifier] = ACTIONS(2237), - [sym_xhp_modifier] = ACTIONS(2237), - [sym_xhp_identifier] = ACTIONS(2237), - [sym_xhp_class_identifier] = ACTIONS(2239), - [sym_comment] = ACTIONS(3), - }, - [1330] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1331] = { - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2233), - [sym_variable] = ACTIONS(2235), - [sym_pipe_variable] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_newtype] = ACTIONS(2233), - [anon_sym_shape] = ACTIONS(2233), - [anon_sym_tuple] = ACTIONS(2233), - [anon_sym_clone] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_print] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_LT_LT_LT] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_echo] = ACTIONS(2233), - [anon_sym_unset] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_concurrent] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_elseif] = ACTIONS(2233), - [anon_sym_else] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_foreach] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [sym_float] = ACTIONS(2235), - [sym_integer] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_True] = ACTIONS(2233), - [anon_sym_TRUE] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_False] = ACTIONS(2233), - [anon_sym_FALSE] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_Null] = ACTIONS(2233), - [anon_sym_NULL] = ACTIONS(2233), - [sym_string] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_array] = ACTIONS(2233), - [anon_sym_varray] = ACTIONS(2233), - [anon_sym_darray] = ACTIONS(2233), - [anon_sym_vec] = ACTIONS(2233), - [anon_sym_dict] = ACTIONS(2233), - [anon_sym_keyset] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2235), - [sym_final_modifier] = ACTIONS(2233), - [sym_xhp_modifier] = ACTIONS(2233), - [sym_xhp_identifier] = ACTIONS(2233), - [sym_xhp_class_identifier] = ACTIONS(2235), - [sym_comment] = ACTIONS(3), - }, - [1332] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2229), - [sym_variable] = ACTIONS(2231), - [sym_pipe_variable] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_newtype] = ACTIONS(2229), - [anon_sym_shape] = ACTIONS(2229), - [anon_sym_tuple] = ACTIONS(2229), - [anon_sym_clone] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_print] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_LT_LT_LT] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_echo] = ACTIONS(2229), - [anon_sym_unset] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_concurrent] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_elseif] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_foreach] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [sym_float] = ACTIONS(2231), - [sym_integer] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_True] = ACTIONS(2229), - [anon_sym_TRUE] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_False] = ACTIONS(2229), - [anon_sym_FALSE] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_Null] = ACTIONS(2229), - [anon_sym_NULL] = ACTIONS(2229), - [sym_string] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_array] = ACTIONS(2229), - [anon_sym_varray] = ACTIONS(2229), - [anon_sym_darray] = ACTIONS(2229), - [anon_sym_vec] = ACTIONS(2229), - [anon_sym_dict] = ACTIONS(2229), - [anon_sym_keyset] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2231), - [sym_final_modifier] = ACTIONS(2229), - [sym_xhp_modifier] = ACTIONS(2229), - [sym_xhp_identifier] = ACTIONS(2229), - [sym_xhp_class_identifier] = ACTIONS(2231), - [sym_comment] = ACTIONS(3), - }, - [1333] = { - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2225), - [sym_variable] = ACTIONS(2227), - [sym_pipe_variable] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_newtype] = ACTIONS(2225), - [anon_sym_shape] = ACTIONS(2225), - [anon_sym_tuple] = ACTIONS(2225), - [anon_sym_clone] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_print] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_LT_LT_LT] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_echo] = ACTIONS(2225), - [anon_sym_unset] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_concurrent] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_elseif] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_foreach] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [sym_float] = ACTIONS(2227), - [sym_integer] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_True] = ACTIONS(2225), - [anon_sym_TRUE] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [anon_sym_False] = ACTIONS(2225), - [anon_sym_FALSE] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2225), - [anon_sym_Null] = ACTIONS(2225), - [anon_sym_NULL] = ACTIONS(2225), - [sym_string] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_array] = ACTIONS(2225), - [anon_sym_varray] = ACTIONS(2225), - [anon_sym_darray] = ACTIONS(2225), - [anon_sym_vec] = ACTIONS(2225), - [anon_sym_dict] = ACTIONS(2225), - [anon_sym_keyset] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2227), - [sym_final_modifier] = ACTIONS(2225), - [sym_xhp_modifier] = ACTIONS(2225), - [sym_xhp_identifier] = ACTIONS(2225), - [sym_xhp_class_identifier] = ACTIONS(2227), - [sym_comment] = ACTIONS(3), - }, - [1334] = { - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [sym_variable] = ACTIONS(2223), - [sym_pipe_variable] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_newtype] = ACTIONS(2221), - [anon_sym_shape] = ACTIONS(2221), - [anon_sym_tuple] = ACTIONS(2221), - [anon_sym_clone] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_print] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_LT_LT_LT] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_echo] = ACTIONS(2221), - [anon_sym_unset] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_concurrent] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_elseif] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_foreach] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [sym_float] = ACTIONS(2223), - [sym_integer] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_True] = ACTIONS(2221), - [anon_sym_TRUE] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_False] = ACTIONS(2221), - [anon_sym_FALSE] = ACTIONS(2221), - [anon_sym_null] = ACTIONS(2221), - [anon_sym_Null] = ACTIONS(2221), - [anon_sym_NULL] = ACTIONS(2221), - [sym_string] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_array] = ACTIONS(2221), - [anon_sym_varray] = ACTIONS(2221), - [anon_sym_darray] = ACTIONS(2221), - [anon_sym_vec] = ACTIONS(2221), - [anon_sym_dict] = ACTIONS(2221), - [anon_sym_keyset] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2223), - [sym_final_modifier] = ACTIONS(2221), - [sym_xhp_modifier] = ACTIONS(2221), - [sym_xhp_identifier] = ACTIONS(2221), - [sym_xhp_class_identifier] = ACTIONS(2223), - [sym_comment] = ACTIONS(3), - }, - [1335] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1336] = { - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2497), - [sym_variable] = ACTIONS(2499), - [sym_pipe_variable] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_newtype] = ACTIONS(2497), - [anon_sym_shape] = ACTIONS(2497), - [anon_sym_tuple] = ACTIONS(2497), - [anon_sym_clone] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_print] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_LT_LT_LT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_echo] = ACTIONS(2497), - [anon_sym_unset] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_concurrent] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_elseif] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_foreach] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_using] = ACTIONS(2497), - [sym_float] = ACTIONS(2499), - [sym_integer] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_True] = ACTIONS(2497), - [anon_sym_TRUE] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_False] = ACTIONS(2497), - [anon_sym_FALSE] = ACTIONS(2497), - [anon_sym_null] = ACTIONS(2497), - [anon_sym_Null] = ACTIONS(2497), - [anon_sym_NULL] = ACTIONS(2497), - [sym_string] = ACTIONS(2499), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_array] = ACTIONS(2497), - [anon_sym_varray] = ACTIONS(2497), - [anon_sym_darray] = ACTIONS(2497), - [anon_sym_vec] = ACTIONS(2497), - [anon_sym_dict] = ACTIONS(2497), - [anon_sym_keyset] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_trait] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2499), - [sym_final_modifier] = ACTIONS(2497), - [sym_xhp_modifier] = ACTIONS(2497), - [sym_xhp_identifier] = ACTIONS(2497), - [sym_xhp_class_identifier] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - }, - [1337] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_elseif] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1338] = { - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2201), - [sym_variable] = ACTIONS(2203), - [sym_pipe_variable] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_newtype] = ACTIONS(2201), - [anon_sym_shape] = ACTIONS(2201), - [anon_sym_tuple] = ACTIONS(2201), - [anon_sym_clone] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_print] = ACTIONS(2201), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_LT_LT_LT] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_throw] = ACTIONS(2201), - [anon_sym_echo] = ACTIONS(2201), - [anon_sym_unset] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_concurrent] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_function] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_elseif] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_switch] = ACTIONS(2201), - [anon_sym_foreach] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_using] = ACTIONS(2201), - [sym_float] = ACTIONS(2203), - [sym_integer] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_True] = ACTIONS(2201), - [anon_sym_TRUE] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_False] = ACTIONS(2201), - [anon_sym_FALSE] = ACTIONS(2201), - [anon_sym_null] = ACTIONS(2201), - [anon_sym_Null] = ACTIONS(2201), - [anon_sym_NULL] = ACTIONS(2201), - [sym_string] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_array] = ACTIONS(2201), - [anon_sym_varray] = ACTIONS(2201), - [anon_sym_darray] = ACTIONS(2201), - [anon_sym_vec] = ACTIONS(2201), - [anon_sym_dict] = ACTIONS(2201), - [anon_sym_keyset] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_class] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2203), - [sym_final_modifier] = ACTIONS(2201), - [sym_xhp_modifier] = ACTIONS(2201), - [sym_xhp_identifier] = ACTIONS(2201), - [sym_xhp_class_identifier] = ACTIONS(2203), + [anon_sym_Null] = ACTIONS(2237), + [anon_sym_NULL] = ACTIONS(2237), + [sym_string] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_array] = ACTIONS(2237), + [anon_sym_varray] = ACTIONS(2237), + [anon_sym_darray] = ACTIONS(2237), + [anon_sym_vec] = ACTIONS(2237), + [anon_sym_dict] = ACTIONS(2237), + [anon_sym_keyset] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_list] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2239), + [sym_final_modifier] = ACTIONS(2237), + [sym_xhp_modifier] = ACTIONS(2237), + [sym_xhp_identifier] = ACTIONS(2237), + [sym_xhp_class_identifier] = ACTIONS(2239), [sym_comment] = ACTIONS(3), }, - [1339] = { - [sym_identifier] = ACTIONS(2461), - [sym_variable] = ACTIONS(2463), - [sym_pipe_variable] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_newtype] = ACTIONS(2461), - [anon_sym_shape] = ACTIONS(2461), - [anon_sym_tuple] = ACTIONS(2461), - [anon_sym_clone] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_LT_LT_LT] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_echo] = ACTIONS(2461), - [anon_sym_unset] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_concurrent] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_elseif] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_foreach] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [sym_float] = ACTIONS(2463), - [sym_integer] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_True] = ACTIONS(2461), - [anon_sym_TRUE] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_False] = ACTIONS(2461), - [anon_sym_FALSE] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2461), - [anon_sym_Null] = ACTIONS(2461), - [anon_sym_NULL] = ACTIONS(2461), - [sym_string] = ACTIONS(2463), - [anon_sym_AT] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_array] = ACTIONS(2461), - [anon_sym_varray] = ACTIONS(2461), - [anon_sym_darray] = ACTIONS(2461), - [anon_sym_vec] = ACTIONS(2461), - [anon_sym_dict] = ACTIONS(2461), - [anon_sym_keyset] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_trait] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(2463), - [sym_final_modifier] = ACTIONS(2461), - [sym_xhp_modifier] = ACTIONS(2461), - [sym_xhp_identifier] = ACTIONS(2461), - [sym_xhp_class_identifier] = ACTIONS(2463), + [1281] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2597), + [sym_variable] = ACTIONS(2599), + [sym_pipe_variable] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_newtype] = ACTIONS(2597), + [anon_sym_shape] = ACTIONS(2597), + [anon_sym_tuple] = ACTIONS(2597), + [anon_sym_clone] = ACTIONS(2597), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_print] = ACTIONS(2597), + [anon_sym_namespace] = ACTIONS(2597), + [anon_sym_include] = ACTIONS(2597), + [anon_sym_include_once] = ACTIONS(2597), + [anon_sym_require] = ACTIONS(2597), + [anon_sym_require_once] = ACTIONS(2597), + [anon_sym_BSLASH] = ACTIONS(2599), + [anon_sym_self] = ACTIONS(2597), + [anon_sym_parent] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_LT_LT] = ACTIONS(2597), + [anon_sym_LT_LT_LT] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_throw] = ACTIONS(2597), + [anon_sym_echo] = ACTIONS(2597), + [anon_sym_unset] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_concurrent] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_elseif] = ACTIONS(2597), + [anon_sym_else] = ACTIONS(2597), + [anon_sym_switch] = ACTIONS(2597), + [anon_sym_foreach] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_using] = ACTIONS(2597), + [sym_float] = ACTIONS(2599), + [sym_integer] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_True] = ACTIONS(2597), + [anon_sym_TRUE] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_False] = ACTIONS(2597), + [anon_sym_FALSE] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2597), + [anon_sym_Null] = ACTIONS(2597), + [anon_sym_NULL] = ACTIONS(2597), + [sym_string] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_array] = ACTIONS(2597), + [anon_sym_varray] = ACTIONS(2597), + [anon_sym_darray] = ACTIONS(2597), + [anon_sym_vec] = ACTIONS(2597), + [anon_sym_dict] = ACTIONS(2597), + [anon_sym_keyset] = ACTIONS(2597), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_list] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_interface] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_abstract] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(2599), + [sym_final_modifier] = ACTIONS(2597), + [sym_xhp_modifier] = ACTIONS(2597), + [sym_xhp_identifier] = ACTIONS(2597), + [sym_xhp_class_identifier] = ACTIONS(2599), [sym_comment] = ACTIONS(3), }, - [1340] = { - [sym_identifier] = ACTIONS(2457), - [sym_variable] = ACTIONS(2459), - [sym_pipe_variable] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_newtype] = ACTIONS(2457), - [anon_sym_shape] = ACTIONS(2457), - [anon_sym_tuple] = ACTIONS(2457), - [anon_sym_clone] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_print] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), - [anon_sym_LT_LT_LT] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_echo] = ACTIONS(2457), - [anon_sym_unset] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_concurrent] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_elseif] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_foreach] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_integer] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_True] = ACTIONS(2457), - [anon_sym_TRUE] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [anon_sym_False] = ACTIONS(2457), - [anon_sym_FALSE] = ACTIONS(2457), - [anon_sym_null] = ACTIONS(2457), - [anon_sym_Null] = ACTIONS(2457), - [anon_sym_NULL] = ACTIONS(2457), - [sym_string] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_array] = ACTIONS(2457), - [anon_sym_varray] = ACTIONS(2457), - [anon_sym_darray] = ACTIONS(2457), - [anon_sym_vec] = ACTIONS(2457), - [anon_sym_dict] = ACTIONS(2457), - [anon_sym_keyset] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_trait] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2459), - [sym_final_modifier] = ACTIONS(2457), - [sym_xhp_modifier] = ACTIONS(2457), - [sym_xhp_identifier] = ACTIONS(2457), - [sym_xhp_class_identifier] = ACTIONS(2459), + [1282] = { + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2601), + [sym_variable] = ACTIONS(2603), + [sym_pipe_variable] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_newtype] = ACTIONS(2601), + [anon_sym_shape] = ACTIONS(2601), + [anon_sym_tuple] = ACTIONS(2601), + [anon_sym_clone] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_namespace] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_include_once] = ACTIONS(2601), + [anon_sym_require] = ACTIONS(2601), + [anon_sym_require_once] = ACTIONS(2601), + [anon_sym_BSLASH] = ACTIONS(2603), + [anon_sym_self] = ACTIONS(2601), + [anon_sym_parent] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_LT_LT] = ACTIONS(2601), + [anon_sym_LT_LT_LT] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_throw] = ACTIONS(2601), + [anon_sym_echo] = ACTIONS(2601), + [anon_sym_unset] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_concurrent] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_function] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_elseif] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_switch] = ACTIONS(2601), + [anon_sym_foreach] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_using] = ACTIONS(2601), + [sym_float] = ACTIONS(2603), + [sym_integer] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_True] = ACTIONS(2601), + [anon_sym_TRUE] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_False] = ACTIONS(2601), + [anon_sym_FALSE] = ACTIONS(2601), + [anon_sym_null] = ACTIONS(2601), + [anon_sym_Null] = ACTIONS(2601), + [anon_sym_NULL] = ACTIONS(2601), + [sym_string] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2603), + [anon_sym_array] = ACTIONS(2601), + [anon_sym_varray] = ACTIONS(2601), + [anon_sym_darray] = ACTIONS(2601), + [anon_sym_vec] = ACTIONS(2601), + [anon_sym_dict] = ACTIONS(2601), + [anon_sym_keyset] = ACTIONS(2601), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_list] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_interface] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_abstract] = ACTIONS(2601), + [anon_sym_POUND] = ACTIONS(2603), + [sym_final_modifier] = ACTIONS(2601), + [sym_xhp_modifier] = ACTIONS(2601), + [sym_xhp_identifier] = ACTIONS(2601), + [sym_xhp_class_identifier] = ACTIONS(2603), [sym_comment] = ACTIONS(3), }, - [1341] = { - [sym_identifier] = ACTIONS(2245), - [sym_variable] = ACTIONS(2247), - [sym_pipe_variable] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_newtype] = ACTIONS(2245), - [anon_sym_shape] = ACTIONS(2245), - [anon_sym_tuple] = ACTIONS(2245), - [anon_sym_clone] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_print] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_LT_LT_LT] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_echo] = ACTIONS(2245), - [anon_sym_unset] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_concurrent] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_case] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_foreach] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [sym_float] = ACTIONS(2247), - [sym_integer] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_True] = ACTIONS(2245), - [anon_sym_TRUE] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_False] = ACTIONS(2245), - [anon_sym_FALSE] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_Null] = ACTIONS(2245), - [anon_sym_NULL] = ACTIONS(2245), - [sym_string] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_array] = ACTIONS(2245), - [anon_sym_varray] = ACTIONS(2245), - [anon_sym_darray] = ACTIONS(2245), - [anon_sym_vec] = ACTIONS(2245), - [anon_sym_dict] = ACTIONS(2245), - [anon_sym_keyset] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2247), - [sym_final_modifier] = ACTIONS(2245), - [sym_xhp_modifier] = ACTIONS(2245), - [sym_xhp_identifier] = ACTIONS(2245), - [sym_xhp_class_identifier] = ACTIONS(2247), + [1283] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1342] = { + [1284] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1285] = { [sym_identifier] = ACTIONS(2373), [sym_variable] = ACTIONS(2375), [sym_pipe_variable] = ACTIONS(2375), @@ -160937,4055 +149495,4231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2375), [sym_comment] = ACTIONS(3), }, - [1343] = { - [sym_identifier] = ACTIONS(2365), - [sym_variable] = ACTIONS(2367), - [sym_pipe_variable] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_newtype] = ACTIONS(2365), - [anon_sym_shape] = ACTIONS(2365), - [anon_sym_tuple] = ACTIONS(2365), - [anon_sym_clone] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_print] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2365), - [anon_sym_LT_LT_LT] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_throw] = ACTIONS(2365), - [anon_sym_echo] = ACTIONS(2365), - [anon_sym_unset] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_concurrent] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_elseif] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_foreach] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_using] = ACTIONS(2365), - [sym_float] = ACTIONS(2367), - [sym_integer] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_True] = ACTIONS(2365), - [anon_sym_TRUE] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_False] = ACTIONS(2365), - [anon_sym_FALSE] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_Null] = ACTIONS(2365), - [anon_sym_NULL] = ACTIONS(2365), - [sym_string] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_array] = ACTIONS(2365), - [anon_sym_varray] = ACTIONS(2365), - [anon_sym_darray] = ACTIONS(2365), - [anon_sym_vec] = ACTIONS(2365), - [anon_sym_dict] = ACTIONS(2365), - [anon_sym_keyset] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2367), - [sym_final_modifier] = ACTIONS(2365), - [sym_xhp_modifier] = ACTIONS(2365), - [sym_xhp_identifier] = ACTIONS(2365), - [sym_xhp_class_identifier] = ACTIONS(2367), + [1286] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1344] = { - [sym_identifier] = ACTIONS(2361), - [sym_variable] = ACTIONS(2363), - [sym_pipe_variable] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_newtype] = ACTIONS(2361), - [anon_sym_shape] = ACTIONS(2361), - [anon_sym_tuple] = ACTIONS(2361), - [anon_sym_clone] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_print] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_echo] = ACTIONS(2361), - [anon_sym_unset] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_concurrent] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_elseif] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_foreach] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [sym_float] = ACTIONS(2363), - [sym_integer] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_True] = ACTIONS(2361), - [anon_sym_TRUE] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_False] = ACTIONS(2361), - [anon_sym_FALSE] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [anon_sym_Null] = ACTIONS(2361), - [anon_sym_NULL] = ACTIONS(2361), - [sym_string] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_array] = ACTIONS(2361), - [anon_sym_varray] = ACTIONS(2361), - [anon_sym_darray] = ACTIONS(2361), - [anon_sym_vec] = ACTIONS(2361), - [anon_sym_dict] = ACTIONS(2361), - [anon_sym_keyset] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_interface] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2363), - [sym_final_modifier] = ACTIONS(2361), - [sym_xhp_modifier] = ACTIONS(2361), - [sym_xhp_identifier] = ACTIONS(2361), - [sym_xhp_class_identifier] = ACTIONS(2363), + [1287] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1288] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1345] = { - [ts_builtin_sym_end] = ACTIONS(2423), - [sym_identifier] = ACTIONS(2421), - [sym_variable] = ACTIONS(2423), - [sym_pipe_variable] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_newtype] = ACTIONS(2421), - [anon_sym_shape] = ACTIONS(2421), - [anon_sym_tuple] = ACTIONS(2421), - [anon_sym_clone] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LT_LT_LT] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_echo] = ACTIONS(2421), - [anon_sym_unset] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_concurrent] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_elseif] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_foreach] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [sym_float] = ACTIONS(2423), - [sym_integer] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_True] = ACTIONS(2421), - [anon_sym_TRUE] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [anon_sym_False] = ACTIONS(2421), - [anon_sym_FALSE] = ACTIONS(2421), - [anon_sym_null] = ACTIONS(2421), - [anon_sym_Null] = ACTIONS(2421), - [anon_sym_NULL] = ACTIONS(2421), - [sym_string] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_array] = ACTIONS(2421), - [anon_sym_varray] = ACTIONS(2421), - [anon_sym_darray] = ACTIONS(2421), - [anon_sym_vec] = ACTIONS(2421), - [anon_sym_dict] = ACTIONS(2421), - [anon_sym_keyset] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_interface] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_abstract] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2423), - [sym_final_modifier] = ACTIONS(2421), - [sym_xhp_modifier] = ACTIONS(2421), - [sym_xhp_identifier] = ACTIONS(2421), - [sym_xhp_class_identifier] = ACTIONS(2423), + [1289] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1346] = { - [sym_identifier] = ACTIONS(2305), - [sym_variable] = ACTIONS(2307), - [sym_pipe_variable] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_newtype] = ACTIONS(2305), - [anon_sym_shape] = ACTIONS(2305), - [anon_sym_tuple] = ACTIONS(2305), - [anon_sym_clone] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_print] = ACTIONS(2305), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_LT_LT_LT] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_throw] = ACTIONS(2305), - [anon_sym_echo] = ACTIONS(2305), - [anon_sym_unset] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_concurrent] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_elseif] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_switch] = ACTIONS(2305), - [anon_sym_foreach] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_using] = ACTIONS(2305), - [sym_float] = ACTIONS(2307), - [sym_integer] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_True] = ACTIONS(2305), - [anon_sym_TRUE] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_False] = ACTIONS(2305), - [anon_sym_FALSE] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [anon_sym_Null] = ACTIONS(2305), - [anon_sym_NULL] = ACTIONS(2305), - [sym_string] = ACTIONS(2307), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_array] = ACTIONS(2305), - [anon_sym_varray] = ACTIONS(2305), - [anon_sym_darray] = ACTIONS(2305), - [anon_sym_vec] = ACTIONS(2305), - [anon_sym_dict] = ACTIONS(2305), - [anon_sym_keyset] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_abstract] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2307), - [sym_final_modifier] = ACTIONS(2305), - [sym_xhp_modifier] = ACTIONS(2305), - [sym_xhp_identifier] = ACTIONS(2305), - [sym_xhp_class_identifier] = ACTIONS(2307), + [1290] = { + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2605), + [sym_variable] = ACTIONS(2607), + [sym_pipe_variable] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_newtype] = ACTIONS(2605), + [anon_sym_shape] = ACTIONS(2605), + [anon_sym_tuple] = ACTIONS(2605), + [anon_sym_clone] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_include] = ACTIONS(2605), + [anon_sym_include_once] = ACTIONS(2605), + [anon_sym_require] = ACTIONS(2605), + [anon_sym_require_once] = ACTIONS(2605), + [anon_sym_BSLASH] = ACTIONS(2607), + [anon_sym_self] = ACTIONS(2605), + [anon_sym_parent] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_LT_LT] = ACTIONS(2605), + [anon_sym_LT_LT_LT] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_echo] = ACTIONS(2605), + [anon_sym_unset] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_concurrent] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_elseif] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_foreach] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [sym_float] = ACTIONS(2607), + [sym_integer] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_True] = ACTIONS(2605), + [anon_sym_TRUE] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_False] = ACTIONS(2605), + [anon_sym_FALSE] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2605), + [anon_sym_Null] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [sym_string] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_array] = ACTIONS(2605), + [anon_sym_varray] = ACTIONS(2605), + [anon_sym_darray] = ACTIONS(2605), + [anon_sym_vec] = ACTIONS(2605), + [anon_sym_dict] = ACTIONS(2605), + [anon_sym_keyset] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_list] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_await] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_interface] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_abstract] = ACTIONS(2605), + [anon_sym_POUND] = ACTIONS(2607), + [sym_final_modifier] = ACTIONS(2605), + [sym_xhp_modifier] = ACTIONS(2605), + [sym_xhp_identifier] = ACTIONS(2605), + [sym_xhp_class_identifier] = ACTIONS(2607), [sym_comment] = ACTIONS(3), }, - [1347] = { - [sym_identifier] = ACTIONS(2173), - [sym_variable] = ACTIONS(2175), - [sym_pipe_variable] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_newtype] = ACTIONS(2173), - [anon_sym_shape] = ACTIONS(2173), - [anon_sym_tuple] = ACTIONS(2173), - [anon_sym_clone] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_print] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_LT_LT_LT] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_echo] = ACTIONS(2173), - [anon_sym_unset] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_concurrent] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_elseif] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_foreach] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [sym_float] = ACTIONS(2175), - [sym_integer] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_True] = ACTIONS(2173), - [anon_sym_TRUE] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [anon_sym_False] = ACTIONS(2173), - [anon_sym_FALSE] = ACTIONS(2173), - [anon_sym_null] = ACTIONS(2173), - [anon_sym_Null] = ACTIONS(2173), - [anon_sym_NULL] = ACTIONS(2173), - [sym_string] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_array] = ACTIONS(2173), - [anon_sym_varray] = ACTIONS(2173), - [anon_sym_darray] = ACTIONS(2173), - [anon_sym_vec] = ACTIONS(2173), - [anon_sym_dict] = ACTIONS(2173), - [anon_sym_keyset] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_abstract] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2175), - [sym_final_modifier] = ACTIONS(2173), - [sym_xhp_modifier] = ACTIONS(2173), - [sym_xhp_identifier] = ACTIONS(2173), - [sym_xhp_class_identifier] = ACTIONS(2175), + [1291] = { + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2609), + [sym_variable] = ACTIONS(2611), + [sym_pipe_variable] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_newtype] = ACTIONS(2609), + [anon_sym_shape] = ACTIONS(2609), + [anon_sym_tuple] = ACTIONS(2609), + [anon_sym_clone] = ACTIONS(2609), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_print] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_include] = ACTIONS(2609), + [anon_sym_include_once] = ACTIONS(2609), + [anon_sym_require] = ACTIONS(2609), + [anon_sym_require_once] = ACTIONS(2609), + [anon_sym_BSLASH] = ACTIONS(2611), + [anon_sym_self] = ACTIONS(2609), + [anon_sym_parent] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_throw] = ACTIONS(2609), + [anon_sym_echo] = ACTIONS(2609), + [anon_sym_unset] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_concurrent] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_function] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_elseif] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2609), + [anon_sym_foreach] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_using] = ACTIONS(2609), + [sym_float] = ACTIONS(2611), + [sym_integer] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_True] = ACTIONS(2609), + [anon_sym_TRUE] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_False] = ACTIONS(2609), + [anon_sym_FALSE] = ACTIONS(2609), + [anon_sym_null] = ACTIONS(2609), + [anon_sym_Null] = ACTIONS(2609), + [anon_sym_NULL] = ACTIONS(2609), + [sym_string] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_array] = ACTIONS(2609), + [anon_sym_varray] = ACTIONS(2609), + [anon_sym_darray] = ACTIONS(2609), + [anon_sym_vec] = ACTIONS(2609), + [anon_sym_dict] = ACTIONS(2609), + [anon_sym_keyset] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_list] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_await] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_interface] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2609), + [anon_sym_POUND] = ACTIONS(2611), + [sym_final_modifier] = ACTIONS(2609), + [sym_xhp_modifier] = ACTIONS(2609), + [sym_xhp_identifier] = ACTIONS(2609), + [sym_xhp_class_identifier] = ACTIONS(2611), [sym_comment] = ACTIONS(3), }, - [1348] = { - [sym_identifier] = ACTIONS(2157), - [sym_variable] = ACTIONS(2159), - [sym_pipe_variable] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_newtype] = ACTIONS(2157), - [anon_sym_shape] = ACTIONS(2157), - [anon_sym_tuple] = ACTIONS(2157), - [anon_sym_clone] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_print] = ACTIONS(2157), - [anon_sym_namespace] = ACTIONS(2157), - [anon_sym_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_LT_LT_LT] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_throw] = ACTIONS(2157), - [anon_sym_echo] = ACTIONS(2157), - [anon_sym_unset] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_concurrent] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_function] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_elseif] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_switch] = ACTIONS(2157), - [anon_sym_foreach] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(2157), - [sym_float] = ACTIONS(2159), - [sym_integer] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_True] = ACTIONS(2157), - [anon_sym_TRUE] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [anon_sym_False] = ACTIONS(2157), - [anon_sym_FALSE] = ACTIONS(2157), - [anon_sym_null] = ACTIONS(2157), - [anon_sym_Null] = ACTIONS(2157), - [anon_sym_NULL] = ACTIONS(2157), - [sym_string] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_array] = ACTIONS(2157), - [anon_sym_varray] = ACTIONS(2157), - [anon_sym_darray] = ACTIONS(2157), - [anon_sym_vec] = ACTIONS(2157), - [anon_sym_dict] = ACTIONS(2157), - [anon_sym_keyset] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_interface] = ACTIONS(2157), - [anon_sym_class] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_abstract] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(2159), - [sym_final_modifier] = ACTIONS(2157), - [sym_xhp_modifier] = ACTIONS(2157), - [sym_xhp_identifier] = ACTIONS(2157), - [sym_xhp_class_identifier] = ACTIONS(2159), + [1292] = { + [ts_builtin_sym_end] = ACTIONS(2615), + [sym_identifier] = ACTIONS(2613), + [sym_variable] = ACTIONS(2615), + [sym_pipe_variable] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_newtype] = ACTIONS(2613), + [anon_sym_shape] = ACTIONS(2613), + [anon_sym_tuple] = ACTIONS(2613), + [anon_sym_clone] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2613), + [anon_sym_print] = ACTIONS(2613), + [anon_sym_namespace] = ACTIONS(2613), + [anon_sym_include] = ACTIONS(2613), + [anon_sym_include_once] = ACTIONS(2613), + [anon_sym_require] = ACTIONS(2613), + [anon_sym_require_once] = ACTIONS(2613), + [anon_sym_BSLASH] = ACTIONS(2615), + [anon_sym_self] = ACTIONS(2613), + [anon_sym_parent] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_throw] = ACTIONS(2613), + [anon_sym_echo] = ACTIONS(2613), + [anon_sym_unset] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_concurrent] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_function] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_elseif] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2613), + [anon_sym_switch] = ACTIONS(2613), + [anon_sym_foreach] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [anon_sym_using] = ACTIONS(2613), + [sym_float] = ACTIONS(2615), + [sym_integer] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_True] = ACTIONS(2613), + [anon_sym_TRUE] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_False] = ACTIONS(2613), + [anon_sym_FALSE] = ACTIONS(2613), + [anon_sym_null] = ACTIONS(2613), + [anon_sym_Null] = ACTIONS(2613), + [anon_sym_NULL] = ACTIONS(2613), + [sym_string] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_array] = ACTIONS(2613), + [anon_sym_varray] = ACTIONS(2613), + [anon_sym_darray] = ACTIONS(2613), + [anon_sym_vec] = ACTIONS(2613), + [anon_sym_dict] = ACTIONS(2613), + [anon_sym_keyset] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_list] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_await] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_interface] = ACTIONS(2613), + [anon_sym_class] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_abstract] = ACTIONS(2613), + [anon_sym_POUND] = ACTIONS(2615), + [sym_final_modifier] = ACTIONS(2613), + [sym_xhp_modifier] = ACTIONS(2613), + [sym_xhp_identifier] = ACTIONS(2613), + [sym_xhp_class_identifier] = ACTIONS(2615), [sym_comment] = ACTIONS(3), }, - [1349] = { - [sym_identifier] = ACTIONS(2145), - [sym_variable] = ACTIONS(2147), - [sym_pipe_variable] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_newtype] = ACTIONS(2145), - [anon_sym_shape] = ACTIONS(2145), - [anon_sym_tuple] = ACTIONS(2145), - [anon_sym_clone] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_print] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_LT_LT_LT] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_echo] = ACTIONS(2145), - [anon_sym_unset] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_concurrent] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_elseif] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_foreach] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [sym_float] = ACTIONS(2147), - [sym_integer] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_True] = ACTIONS(2145), - [anon_sym_TRUE] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_False] = ACTIONS(2145), - [anon_sym_FALSE] = ACTIONS(2145), - [anon_sym_null] = ACTIONS(2145), - [anon_sym_Null] = ACTIONS(2145), - [anon_sym_NULL] = ACTIONS(2145), - [sym_string] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_array] = ACTIONS(2145), - [anon_sym_varray] = ACTIONS(2145), - [anon_sym_darray] = ACTIONS(2145), - [anon_sym_vec] = ACTIONS(2145), - [anon_sym_dict] = ACTIONS(2145), - [anon_sym_keyset] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2147), - [sym_final_modifier] = ACTIONS(2145), - [sym_xhp_modifier] = ACTIONS(2145), - [sym_xhp_identifier] = ACTIONS(2145), - [sym_xhp_class_identifier] = ACTIONS(2147), + [1293] = { + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2541), + [sym_variable] = ACTIONS(2543), + [sym_pipe_variable] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_newtype] = ACTIONS(2541), + [anon_sym_shape] = ACTIONS(2541), + [anon_sym_tuple] = ACTIONS(2541), + [anon_sym_clone] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_include] = ACTIONS(2541), + [anon_sym_include_once] = ACTIONS(2541), + [anon_sym_require] = ACTIONS(2541), + [anon_sym_require_once] = ACTIONS(2541), + [anon_sym_BSLASH] = ACTIONS(2543), + [anon_sym_self] = ACTIONS(2541), + [anon_sym_parent] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_LT_LT] = ACTIONS(2541), + [anon_sym_LT_LT_LT] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_echo] = ACTIONS(2541), + [anon_sym_unset] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_concurrent] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_foreach] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [sym_float] = ACTIONS(2543), + [sym_integer] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_True] = ACTIONS(2541), + [anon_sym_TRUE] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_False] = ACTIONS(2541), + [anon_sym_FALSE] = ACTIONS(2541), + [anon_sym_null] = ACTIONS(2541), + [anon_sym_Null] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [sym_string] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_array] = ACTIONS(2541), + [anon_sym_varray] = ACTIONS(2541), + [anon_sym_darray] = ACTIONS(2541), + [anon_sym_vec] = ACTIONS(2541), + [anon_sym_dict] = ACTIONS(2541), + [anon_sym_keyset] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_list] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2543), + [sym_final_modifier] = ACTIONS(2541), + [sym_xhp_modifier] = ACTIONS(2541), + [sym_xhp_identifier] = ACTIONS(2541), + [sym_xhp_class_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(3), }, - [1350] = { - [sym_identifier] = ACTIONS(2329), - [sym_variable] = ACTIONS(2331), - [sym_pipe_variable] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_newtype] = ACTIONS(2329), - [anon_sym_shape] = ACTIONS(2329), - [anon_sym_tuple] = ACTIONS(2329), - [anon_sym_clone] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_print] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_LT_LT] = ACTIONS(2329), - [anon_sym_LT_LT_LT] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_echo] = ACTIONS(2329), - [anon_sym_unset] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_concurrent] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_elseif] = ACTIONS(2329), - [anon_sym_else] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_foreach] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [sym_float] = ACTIONS(2331), - [sym_integer] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_True] = ACTIONS(2329), - [anon_sym_TRUE] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [anon_sym_False] = ACTIONS(2329), - [anon_sym_FALSE] = ACTIONS(2329), - [anon_sym_null] = ACTIONS(2329), - [anon_sym_Null] = ACTIONS(2329), - [anon_sym_NULL] = ACTIONS(2329), - [sym_string] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_array] = ACTIONS(2329), - [anon_sym_varray] = ACTIONS(2329), - [anon_sym_darray] = ACTIONS(2329), - [anon_sym_vec] = ACTIONS(2329), - [anon_sym_dict] = ACTIONS(2329), - [anon_sym_keyset] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_trait] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(2331), - [sym_final_modifier] = ACTIONS(2329), - [sym_xhp_modifier] = ACTIONS(2329), - [sym_xhp_identifier] = ACTIONS(2329), - [sym_xhp_class_identifier] = ACTIONS(2331), + [1294] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1351] = { - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_identifier] = ACTIONS(2413), - [sym_variable] = ACTIONS(2415), - [sym_pipe_variable] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_newtype] = ACTIONS(2413), - [anon_sym_shape] = ACTIONS(2413), - [anon_sym_tuple] = ACTIONS(2413), - [anon_sym_clone] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_print] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_LT_LT] = ACTIONS(2413), - [anon_sym_LT_LT_LT] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_echo] = ACTIONS(2413), - [anon_sym_unset] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_concurrent] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_elseif] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_foreach] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [sym_float] = ACTIONS(2415), - [sym_integer] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_True] = ACTIONS(2413), - [anon_sym_TRUE] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [anon_sym_False] = ACTIONS(2413), - [anon_sym_FALSE] = ACTIONS(2413), - [anon_sym_null] = ACTIONS(2413), - [anon_sym_Null] = ACTIONS(2413), - [anon_sym_NULL] = ACTIONS(2413), - [sym_string] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_array] = ACTIONS(2413), - [anon_sym_varray] = ACTIONS(2413), - [anon_sym_darray] = ACTIONS(2413), - [anon_sym_vec] = ACTIONS(2413), - [anon_sym_dict] = ACTIONS(2413), - [anon_sym_keyset] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_await] = ACTIONS(2413), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2413), - [anon_sym_trait] = ACTIONS(2413), - [anon_sym_interface] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_abstract] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2415), - [sym_final_modifier] = ACTIONS(2413), - [sym_xhp_modifier] = ACTIONS(2413), - [sym_xhp_identifier] = ACTIONS(2413), - [sym_xhp_class_identifier] = ACTIONS(2415), + [1295] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1352] = { - [sym_identifier] = ACTIONS(2605), - [sym_variable] = ACTIONS(2607), - [sym_pipe_variable] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_newtype] = ACTIONS(2605), - [anon_sym_shape] = ACTIONS(2605), - [anon_sym_tuple] = ACTIONS(2605), - [anon_sym_clone] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_print] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_include] = ACTIONS(2605), - [anon_sym_include_once] = ACTIONS(2605), - [anon_sym_require] = ACTIONS(2605), - [anon_sym_require_once] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2607), - [anon_sym_self] = ACTIONS(2605), - [anon_sym_parent] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_LT_LT] = ACTIONS(2605), - [anon_sym_LT_LT_LT] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_echo] = ACTIONS(2605), - [anon_sym_unset] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_concurrent] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_elseif] = ACTIONS(2605), - [anon_sym_else] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_foreach] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [sym_float] = ACTIONS(2607), - [sym_integer] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_True] = ACTIONS(2605), - [anon_sym_TRUE] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [anon_sym_False] = ACTIONS(2605), - [anon_sym_FALSE] = ACTIONS(2605), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_Null] = ACTIONS(2605), - [anon_sym_NULL] = ACTIONS(2605), - [sym_string] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_array] = ACTIONS(2605), - [anon_sym_varray] = ACTIONS(2605), - [anon_sym_darray] = ACTIONS(2605), - [anon_sym_vec] = ACTIONS(2605), - [anon_sym_dict] = ACTIONS(2605), - [anon_sym_keyset] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_list] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2605), - [anon_sym_async] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_trait] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2607), - [sym_final_modifier] = ACTIONS(2605), - [sym_xhp_modifier] = ACTIONS(2605), - [sym_xhp_identifier] = ACTIONS(2605), - [sym_xhp_class_identifier] = ACTIONS(2607), + [1296] = { + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2493), + [sym_variable] = ACTIONS(2495), + [sym_pipe_variable] = ACTIONS(2495), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_newtype] = ACTIONS(2493), + [anon_sym_shape] = ACTIONS(2493), + [anon_sym_tuple] = ACTIONS(2493), + [anon_sym_clone] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_include] = ACTIONS(2493), + [anon_sym_include_once] = ACTIONS(2493), + [anon_sym_require] = ACTIONS(2493), + [anon_sym_require_once] = ACTIONS(2493), + [anon_sym_BSLASH] = ACTIONS(2495), + [anon_sym_self] = ACTIONS(2493), + [anon_sym_parent] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_LT_LT] = ACTIONS(2493), + [anon_sym_LT_LT_LT] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_echo] = ACTIONS(2493), + [anon_sym_unset] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_concurrent] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_function] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_elseif] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_foreach] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [sym_float] = ACTIONS(2495), + [sym_integer] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_True] = ACTIONS(2493), + [anon_sym_TRUE] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_False] = ACTIONS(2493), + [anon_sym_FALSE] = ACTIONS(2493), + [anon_sym_null] = ACTIONS(2493), + [anon_sym_Null] = ACTIONS(2493), + [anon_sym_NULL] = ACTIONS(2493), + [sym_string] = ACTIONS(2495), + [anon_sym_AT] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_array] = ACTIONS(2493), + [anon_sym_varray] = ACTIONS(2493), + [anon_sym_darray] = ACTIONS(2493), + [anon_sym_vec] = ACTIONS(2493), + [anon_sym_dict] = ACTIONS(2493), + [anon_sym_keyset] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_interface] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_abstract] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2495), + [sym_final_modifier] = ACTIONS(2493), + [sym_xhp_modifier] = ACTIONS(2493), + [sym_xhp_identifier] = ACTIONS(2493), + [sym_xhp_class_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(3), }, - [1353] = { - [ts_builtin_sym_end] = ACTIONS(2439), - [sym_identifier] = ACTIONS(2437), - [sym_variable] = ACTIONS(2439), - [sym_pipe_variable] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_newtype] = ACTIONS(2437), - [anon_sym_shape] = ACTIONS(2437), - [anon_sym_tuple] = ACTIONS(2437), - [anon_sym_clone] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_print] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), - [anon_sym_LT_LT_LT] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_echo] = ACTIONS(2437), - [anon_sym_unset] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_concurrent] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_foreach] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [sym_float] = ACTIONS(2439), - [sym_integer] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_True] = ACTIONS(2437), - [anon_sym_TRUE] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_False] = ACTIONS(2437), - [anon_sym_FALSE] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_Null] = ACTIONS(2437), - [anon_sym_NULL] = ACTIONS(2437), - [sym_string] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_array] = ACTIONS(2437), - [anon_sym_varray] = ACTIONS(2437), - [anon_sym_darray] = ACTIONS(2437), - [anon_sym_vec] = ACTIONS(2437), - [anon_sym_dict] = ACTIONS(2437), - [anon_sym_keyset] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_abstract] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2439), - [sym_final_modifier] = ACTIONS(2437), - [sym_xhp_modifier] = ACTIONS(2437), - [sym_xhp_identifier] = ACTIONS(2437), - [sym_xhp_class_identifier] = ACTIONS(2439), + [1297] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1354] = { - [sym_identifier] = ACTIONS(2537), - [sym_variable] = ACTIONS(2539), - [sym_pipe_variable] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2537), - [anon_sym_newtype] = ACTIONS(2537), - [anon_sym_shape] = ACTIONS(2537), - [anon_sym_tuple] = ACTIONS(2537), - [anon_sym_clone] = ACTIONS(2537), - [anon_sym_new] = ACTIONS(2537), - [anon_sym_print] = ACTIONS(2537), - [anon_sym_namespace] = ACTIONS(2537), - [anon_sym_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2537), - [anon_sym_LT_LT] = ACTIONS(2537), - [anon_sym_LT_LT_LT] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_throw] = ACTIONS(2537), - [anon_sym_echo] = ACTIONS(2537), - [anon_sym_unset] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_concurrent] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_function] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_elseif] = ACTIONS(2537), - [anon_sym_else] = ACTIONS(2537), - [anon_sym_switch] = ACTIONS(2537), - [anon_sym_foreach] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_do] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [anon_sym_using] = ACTIONS(2537), - [sym_float] = ACTIONS(2539), - [sym_integer] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_True] = ACTIONS(2537), - [anon_sym_TRUE] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_False] = ACTIONS(2537), - [anon_sym_FALSE] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2537), - [anon_sym_Null] = ACTIONS(2537), - [anon_sym_NULL] = ACTIONS(2537), - [sym_string] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_TILDE] = ACTIONS(2539), - [anon_sym_array] = ACTIONS(2537), - [anon_sym_varray] = ACTIONS(2537), - [anon_sym_darray] = ACTIONS(2537), - [anon_sym_vec] = ACTIONS(2537), - [anon_sym_dict] = ACTIONS(2537), - [anon_sym_keyset] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_await] = ACTIONS(2537), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_trait] = ACTIONS(2537), - [anon_sym_interface] = ACTIONS(2537), - [anon_sym_class] = ACTIONS(2537), - [anon_sym_enum] = ACTIONS(2537), - [anon_sym_abstract] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2539), - [sym_final_modifier] = ACTIONS(2537), - [sym_xhp_modifier] = ACTIONS(2537), - [sym_xhp_identifier] = ACTIONS(2537), - [sym_xhp_class_identifier] = ACTIONS(2539), + [1298] = { + [sym_identifier] = ACTIONS(2241), + [sym_variable] = ACTIONS(2243), + [sym_pipe_variable] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_newtype] = ACTIONS(2241), + [anon_sym_shape] = ACTIONS(2241), + [anon_sym_tuple] = ACTIONS(2241), + [anon_sym_clone] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_print] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_include] = ACTIONS(2241), + [anon_sym_include_once] = ACTIONS(2241), + [anon_sym_require] = ACTIONS(2241), + [anon_sym_require_once] = ACTIONS(2241), + [anon_sym_BSLASH] = ACTIONS(2243), + [anon_sym_self] = ACTIONS(2241), + [anon_sym_parent] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_LT_LT] = ACTIONS(2241), + [anon_sym_LT_LT_LT] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_echo] = ACTIONS(2241), + [anon_sym_unset] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_concurrent] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_case] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_foreach] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [sym_float] = ACTIONS(2243), + [sym_integer] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_True] = ACTIONS(2241), + [anon_sym_TRUE] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_False] = ACTIONS(2241), + [anon_sym_FALSE] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [anon_sym_Null] = ACTIONS(2241), + [anon_sym_NULL] = ACTIONS(2241), + [sym_string] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_array] = ACTIONS(2241), + [anon_sym_varray] = ACTIONS(2241), + [anon_sym_darray] = ACTIONS(2241), + [anon_sym_vec] = ACTIONS(2241), + [anon_sym_dict] = ACTIONS(2241), + [anon_sym_keyset] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_list] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2243), + [sym_final_modifier] = ACTIONS(2241), + [sym_xhp_modifier] = ACTIONS(2241), + [sym_xhp_identifier] = ACTIONS(2241), + [sym_xhp_class_identifier] = ACTIONS(2243), [sym_comment] = ACTIONS(3), }, - [1355] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2205), - [sym_variable] = ACTIONS(2207), - [sym_pipe_variable] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_newtype] = ACTIONS(2205), - [anon_sym_shape] = ACTIONS(2205), - [anon_sym_tuple] = ACTIONS(2205), - [anon_sym_clone] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_print] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_LT_LT_LT] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_echo] = ACTIONS(2205), - [anon_sym_unset] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_concurrent] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_elseif] = ACTIONS(2205), - [anon_sym_else] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_foreach] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [sym_float] = ACTIONS(2207), - [sym_integer] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_True] = ACTIONS(2205), - [anon_sym_TRUE] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_False] = ACTIONS(2205), - [anon_sym_FALSE] = ACTIONS(2205), - [anon_sym_null] = ACTIONS(2205), - [anon_sym_Null] = ACTIONS(2205), - [anon_sym_NULL] = ACTIONS(2205), - [sym_string] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_array] = ACTIONS(2205), - [anon_sym_varray] = ACTIONS(2205), - [anon_sym_darray] = ACTIONS(2205), - [anon_sym_vec] = ACTIONS(2205), - [anon_sym_dict] = ACTIONS(2205), - [anon_sym_keyset] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2207), - [sym_final_modifier] = ACTIONS(2205), - [sym_xhp_modifier] = ACTIONS(2205), - [sym_xhp_identifier] = ACTIONS(2205), - [sym_xhp_class_identifier] = ACTIONS(2207), + [1299] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1356] = { - [sym_identifier] = ACTIONS(2501), - [sym_variable] = ACTIONS(2503), - [sym_pipe_variable] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_newtype] = ACTIONS(2501), - [anon_sym_shape] = ACTIONS(2501), - [anon_sym_tuple] = ACTIONS(2501), - [anon_sym_clone] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_print] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_LT_LT_LT] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_echo] = ACTIONS(2501), - [anon_sym_unset] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_concurrent] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_elseif] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_foreach] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [sym_float] = ACTIONS(2503), - [sym_integer] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_True] = ACTIONS(2501), - [anon_sym_TRUE] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_False] = ACTIONS(2501), - [anon_sym_FALSE] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [anon_sym_Null] = ACTIONS(2501), - [anon_sym_NULL] = ACTIONS(2501), - [sym_string] = ACTIONS(2503), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_array] = ACTIONS(2501), - [anon_sym_varray] = ACTIONS(2501), - [anon_sym_darray] = ACTIONS(2501), - [anon_sym_vec] = ACTIONS(2501), - [anon_sym_dict] = ACTIONS(2501), - [anon_sym_keyset] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_trait] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2503), - [sym_final_modifier] = ACTIONS(2501), - [sym_xhp_modifier] = ACTIONS(2501), - [sym_xhp_identifier] = ACTIONS(2501), - [sym_xhp_class_identifier] = ACTIONS(2503), + [1300] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1357] = { - [sym_identifier] = ACTIONS(2449), - [sym_variable] = ACTIONS(2451), - [sym_pipe_variable] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_newtype] = ACTIONS(2449), - [anon_sym_shape] = ACTIONS(2449), - [anon_sym_tuple] = ACTIONS(2449), - [anon_sym_clone] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_print] = ACTIONS(2449), - [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_LT_LT_LT] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_echo] = ACTIONS(2449), - [anon_sym_unset] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_concurrent] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_switch] = ACTIONS(2449), - [anon_sym_foreach] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_using] = ACTIONS(2449), - [sym_float] = ACTIONS(2451), - [sym_integer] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_True] = ACTIONS(2449), - [anon_sym_TRUE] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_False] = ACTIONS(2449), - [anon_sym_FALSE] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [anon_sym_Null] = ACTIONS(2449), - [anon_sym_NULL] = ACTIONS(2449), - [sym_string] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_array] = ACTIONS(2449), - [anon_sym_varray] = ACTIONS(2449), - [anon_sym_darray] = ACTIONS(2449), - [anon_sym_vec] = ACTIONS(2449), - [anon_sym_dict] = ACTIONS(2449), - [anon_sym_keyset] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_class] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_abstract] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2451), - [sym_final_modifier] = ACTIONS(2449), - [sym_xhp_modifier] = ACTIONS(2449), - [sym_xhp_identifier] = ACTIONS(2449), - [sym_xhp_class_identifier] = ACTIONS(2451), + [1301] = { + [sym_identifier] = ACTIONS(2381), + [sym_variable] = ACTIONS(2383), + [sym_pipe_variable] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_newtype] = ACTIONS(2381), + [anon_sym_shape] = ACTIONS(2381), + [anon_sym_tuple] = ACTIONS(2381), + [anon_sym_clone] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_include] = ACTIONS(2381), + [anon_sym_include_once] = ACTIONS(2381), + [anon_sym_require] = ACTIONS(2381), + [anon_sym_require_once] = ACTIONS(2381), + [anon_sym_BSLASH] = ACTIONS(2383), + [anon_sym_self] = ACTIONS(2381), + [anon_sym_parent] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_LT_LT_LT] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_echo] = ACTIONS(2381), + [anon_sym_unset] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_concurrent] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_case] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_foreach] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [sym_float] = ACTIONS(2383), + [sym_integer] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_True] = ACTIONS(2381), + [anon_sym_TRUE] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_False] = ACTIONS(2381), + [anon_sym_FALSE] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [anon_sym_Null] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [sym_string] = ACTIONS(2383), + [anon_sym_AT] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_array] = ACTIONS(2381), + [anon_sym_varray] = ACTIONS(2381), + [anon_sym_darray] = ACTIONS(2381), + [anon_sym_vec] = ACTIONS(2381), + [anon_sym_dict] = ACTIONS(2381), + [anon_sym_keyset] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_list] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2383), + [sym_final_modifier] = ACTIONS(2381), + [sym_xhp_modifier] = ACTIONS(2381), + [sym_xhp_identifier] = ACTIONS(2381), + [sym_xhp_class_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(3), }, - [1358] = { - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2377), - [sym_variable] = ACTIONS(2379), - [sym_pipe_variable] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_newtype] = ACTIONS(2377), - [anon_sym_shape] = ACTIONS(2377), - [anon_sym_tuple] = ACTIONS(2377), - [anon_sym_clone] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_print] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_LT_LT_LT] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_echo] = ACTIONS(2377), - [anon_sym_unset] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_concurrent] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_elseif] = ACTIONS(2377), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_foreach] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_using] = ACTIONS(2377), - [sym_float] = ACTIONS(2379), - [sym_integer] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_True] = ACTIONS(2377), - [anon_sym_TRUE] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [anon_sym_False] = ACTIONS(2377), - [anon_sym_FALSE] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(2377), - [anon_sym_Null] = ACTIONS(2377), - [anon_sym_NULL] = ACTIONS(2377), - [sym_string] = ACTIONS(2379), - [anon_sym_AT] = ACTIONS(2379), - [anon_sym_TILDE] = ACTIONS(2379), - [anon_sym_array] = ACTIONS(2377), - [anon_sym_varray] = ACTIONS(2377), - [anon_sym_darray] = ACTIONS(2377), - [anon_sym_vec] = ACTIONS(2377), - [anon_sym_dict] = ACTIONS(2377), - [anon_sym_keyset] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(2379), - [sym_final_modifier] = ACTIONS(2377), - [sym_xhp_modifier] = ACTIONS(2377), - [sym_xhp_identifier] = ACTIONS(2377), - [sym_xhp_class_identifier] = ACTIONS(2379), + [1302] = { + [sym_identifier] = ACTIONS(2245), + [sym_variable] = ACTIONS(2247), + [sym_pipe_variable] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_newtype] = ACTIONS(2245), + [anon_sym_shape] = ACTIONS(2245), + [anon_sym_tuple] = ACTIONS(2245), + [anon_sym_clone] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_print] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_include] = ACTIONS(2245), + [anon_sym_include_once] = ACTIONS(2245), + [anon_sym_require] = ACTIONS(2245), + [anon_sym_require_once] = ACTIONS(2245), + [anon_sym_BSLASH] = ACTIONS(2247), + [anon_sym_self] = ACTIONS(2245), + [anon_sym_parent] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_LT_LT_LT] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_echo] = ACTIONS(2245), + [anon_sym_unset] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_concurrent] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_case] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_foreach] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [sym_float] = ACTIONS(2247), + [sym_integer] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_True] = ACTIONS(2245), + [anon_sym_TRUE] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_False] = ACTIONS(2245), + [anon_sym_FALSE] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [anon_sym_Null] = ACTIONS(2245), + [anon_sym_NULL] = ACTIONS(2245), + [sym_string] = ACTIONS(2247), + [anon_sym_AT] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2247), + [anon_sym_array] = ACTIONS(2245), + [anon_sym_varray] = ACTIONS(2245), + [anon_sym_darray] = ACTIONS(2245), + [anon_sym_vec] = ACTIONS(2245), + [anon_sym_dict] = ACTIONS(2245), + [anon_sym_keyset] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_list] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(2247), + [anon_sym_DASH_DASH] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2247), + [sym_final_modifier] = ACTIONS(2245), + [sym_xhp_modifier] = ACTIONS(2245), + [sym_xhp_identifier] = ACTIONS(2245), + [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [1359] = { - [ts_builtin_sym_end] = ACTIONS(2123), - [sym_identifier] = ACTIONS(2121), - [sym_variable] = ACTIONS(2123), - [sym_pipe_variable] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_newtype] = ACTIONS(2121), - [anon_sym_shape] = ACTIONS(2121), - [anon_sym_tuple] = ACTIONS(2121), - [anon_sym_clone] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_print] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_LT_LT_LT] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_echo] = ACTIONS(2121), - [anon_sym_unset] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_concurrent] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_elseif] = ACTIONS(2121), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_foreach] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_using] = ACTIONS(2121), - [sym_float] = ACTIONS(2123), - [sym_integer] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_True] = ACTIONS(2121), - [anon_sym_TRUE] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_False] = ACTIONS(2121), - [anon_sym_FALSE] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2121), - [anon_sym_Null] = ACTIONS(2121), - [anon_sym_NULL] = ACTIONS(2121), - [sym_string] = ACTIONS(2123), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_array] = ACTIONS(2121), - [anon_sym_varray] = ACTIONS(2121), - [anon_sym_darray] = ACTIONS(2121), - [anon_sym_vec] = ACTIONS(2121), - [anon_sym_dict] = ACTIONS(2121), - [anon_sym_keyset] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_trait] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2123), - [sym_final_modifier] = ACTIONS(2121), - [sym_xhp_modifier] = ACTIONS(2121), - [sym_xhp_identifier] = ACTIONS(2121), - [sym_xhp_class_identifier] = ACTIONS(2123), + [1303] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1360] = { - [sym_identifier] = ACTIONS(2309), - [sym_variable] = ACTIONS(2311), - [sym_pipe_variable] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_newtype] = ACTIONS(2309), - [anon_sym_shape] = ACTIONS(2309), - [anon_sym_tuple] = ACTIONS(2309), - [anon_sym_clone] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_print] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_LT_LT_LT] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_throw] = ACTIONS(2309), - [anon_sym_echo] = ACTIONS(2309), - [anon_sym_unset] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_concurrent] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_elseif] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_switch] = ACTIONS(2309), - [anon_sym_foreach] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_using] = ACTIONS(2309), - [sym_float] = ACTIONS(2311), - [sym_integer] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_True] = ACTIONS(2309), - [anon_sym_TRUE] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_False] = ACTIONS(2309), - [anon_sym_FALSE] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [anon_sym_Null] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2309), - [sym_string] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_array] = ACTIONS(2309), - [anon_sym_varray] = ACTIONS(2309), - [anon_sym_darray] = ACTIONS(2309), - [anon_sym_vec] = ACTIONS(2309), - [anon_sym_dict] = ACTIONS(2309), - [anon_sym_keyset] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_abstract] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2311), - [sym_final_modifier] = ACTIONS(2309), - [sym_xhp_modifier] = ACTIONS(2309), - [sym_xhp_identifier] = ACTIONS(2309), - [sym_xhp_class_identifier] = ACTIONS(2311), + [1304] = { + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2489), + [sym_variable] = ACTIONS(2491), + [sym_pipe_variable] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_newtype] = ACTIONS(2489), + [anon_sym_shape] = ACTIONS(2489), + [anon_sym_tuple] = ACTIONS(2489), + [anon_sym_clone] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_print] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_include] = ACTIONS(2489), + [anon_sym_include_once] = ACTIONS(2489), + [anon_sym_require] = ACTIONS(2489), + [anon_sym_require_once] = ACTIONS(2489), + [anon_sym_BSLASH] = ACTIONS(2491), + [anon_sym_self] = ACTIONS(2489), + [anon_sym_parent] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_LT_LT_LT] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_echo] = ACTIONS(2489), + [anon_sym_unset] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_concurrent] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_elseif] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_foreach] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [sym_float] = ACTIONS(2491), + [sym_integer] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_True] = ACTIONS(2489), + [anon_sym_TRUE] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_False] = ACTIONS(2489), + [anon_sym_FALSE] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [anon_sym_Null] = ACTIONS(2489), + [anon_sym_NULL] = ACTIONS(2489), + [sym_string] = ACTIONS(2491), + [anon_sym_AT] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_array] = ACTIONS(2489), + [anon_sym_varray] = ACTIONS(2489), + [anon_sym_darray] = ACTIONS(2489), + [anon_sym_vec] = ACTIONS(2489), + [anon_sym_dict] = ACTIONS(2489), + [anon_sym_keyset] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2491), + [sym_final_modifier] = ACTIONS(2489), + [sym_xhp_modifier] = ACTIONS(2489), + [sym_xhp_identifier] = ACTIONS(2489), + [sym_xhp_class_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(3), }, - [1361] = { - [sym_identifier] = ACTIONS(2269), - [sym_variable] = ACTIONS(2271), - [sym_pipe_variable] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_newtype] = ACTIONS(2269), - [anon_sym_shape] = ACTIONS(2269), - [anon_sym_tuple] = ACTIONS(2269), - [anon_sym_clone] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_print] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_LT_LT_LT] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_echo] = ACTIONS(2269), - [anon_sym_unset] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_concurrent] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_elseif] = ACTIONS(2269), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_switch] = ACTIONS(2269), - [anon_sym_foreach] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_using] = ACTIONS(2269), - [sym_float] = ACTIONS(2271), - [sym_integer] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_True] = ACTIONS(2269), - [anon_sym_TRUE] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_False] = ACTIONS(2269), - [anon_sym_FALSE] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [anon_sym_Null] = ACTIONS(2269), - [anon_sym_NULL] = ACTIONS(2269), - [sym_string] = ACTIONS(2271), - [anon_sym_AT] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_array] = ACTIONS(2269), - [anon_sym_varray] = ACTIONS(2269), - [anon_sym_darray] = ACTIONS(2269), - [anon_sym_vec] = ACTIONS(2269), - [anon_sym_dict] = ACTIONS(2269), - [anon_sym_keyset] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2271), - [sym_final_modifier] = ACTIONS(2269), - [sym_xhp_modifier] = ACTIONS(2269), - [sym_xhp_identifier] = ACTIONS(2269), - [sym_xhp_class_identifier] = ACTIONS(2271), + [1305] = { + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2465), + [sym_variable] = ACTIONS(2467), + [sym_pipe_variable] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_newtype] = ACTIONS(2465), + [anon_sym_shape] = ACTIONS(2465), + [anon_sym_tuple] = ACTIONS(2465), + [anon_sym_clone] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_include_once] = ACTIONS(2465), + [anon_sym_require] = ACTIONS(2465), + [anon_sym_require_once] = ACTIONS(2465), + [anon_sym_BSLASH] = ACTIONS(2467), + [anon_sym_self] = ACTIONS(2465), + [anon_sym_parent] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_LT_LT_LT] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_echo] = ACTIONS(2465), + [anon_sym_unset] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_concurrent] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_function] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_foreach] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [sym_float] = ACTIONS(2467), + [sym_integer] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_True] = ACTIONS(2465), + [anon_sym_TRUE] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_False] = ACTIONS(2465), + [anon_sym_FALSE] = ACTIONS(2465), + [anon_sym_null] = ACTIONS(2465), + [anon_sym_Null] = ACTIONS(2465), + [anon_sym_NULL] = ACTIONS(2465), + [sym_string] = ACTIONS(2467), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_array] = ACTIONS(2465), + [anon_sym_varray] = ACTIONS(2465), + [anon_sym_darray] = ACTIONS(2465), + [anon_sym_vec] = ACTIONS(2465), + [anon_sym_dict] = ACTIONS(2465), + [anon_sym_keyset] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_abstract] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2467), + [sym_final_modifier] = ACTIONS(2465), + [sym_xhp_modifier] = ACTIONS(2465), + [sym_xhp_identifier] = ACTIONS(2465), + [sym_xhp_class_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(3), }, - [1362] = { - [sym_identifier] = ACTIONS(2253), - [sym_variable] = ACTIONS(2255), - [sym_pipe_variable] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_newtype] = ACTIONS(2253), - [anon_sym_shape] = ACTIONS(2253), - [anon_sym_tuple] = ACTIONS(2253), - [anon_sym_clone] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_print] = ACTIONS(2253), - [anon_sym_namespace] = ACTIONS(2253), - [anon_sym_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_LT_LT_LT] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_throw] = ACTIONS(2253), - [anon_sym_echo] = ACTIONS(2253), - [anon_sym_unset] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_concurrent] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_function] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_elseif] = ACTIONS(2253), - [anon_sym_else] = ACTIONS(2253), - [anon_sym_switch] = ACTIONS(2253), - [anon_sym_foreach] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_using] = ACTIONS(2253), - [sym_float] = ACTIONS(2255), - [sym_integer] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_True] = ACTIONS(2253), - [anon_sym_TRUE] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_False] = ACTIONS(2253), - [anon_sym_FALSE] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [anon_sym_Null] = ACTIONS(2253), - [anon_sym_NULL] = ACTIONS(2253), - [sym_string] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_array] = ACTIONS(2253), - [anon_sym_varray] = ACTIONS(2253), - [anon_sym_darray] = ACTIONS(2253), - [anon_sym_vec] = ACTIONS(2253), - [anon_sym_dict] = ACTIONS(2253), - [anon_sym_keyset] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_abstract] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2255), - [sym_final_modifier] = ACTIONS(2253), - [sym_xhp_modifier] = ACTIONS(2253), - [sym_xhp_identifier] = ACTIONS(2253), - [sym_xhp_class_identifier] = ACTIONS(2255), + [1306] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1363] = { - [sym_identifier] = ACTIONS(2217), - [sym_variable] = ACTIONS(2219), - [sym_pipe_variable] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_newtype] = ACTIONS(2217), - [anon_sym_shape] = ACTIONS(2217), - [anon_sym_tuple] = ACTIONS(2217), - [anon_sym_clone] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_print] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_LT_LT_LT] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_echo] = ACTIONS(2217), - [anon_sym_unset] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_concurrent] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_elseif] = ACTIONS(2217), - [anon_sym_else] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_foreach] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_using] = ACTIONS(2217), - [sym_float] = ACTIONS(2219), - [sym_integer] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_True] = ACTIONS(2217), - [anon_sym_TRUE] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_False] = ACTIONS(2217), - [anon_sym_FALSE] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_Null] = ACTIONS(2217), - [anon_sym_NULL] = ACTIONS(2217), - [sym_string] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_array] = ACTIONS(2217), - [anon_sym_varray] = ACTIONS(2217), - [anon_sym_darray] = ACTIONS(2217), - [anon_sym_vec] = ACTIONS(2217), - [anon_sym_dict] = ACTIONS(2217), - [anon_sym_keyset] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_class] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2219), - [sym_final_modifier] = ACTIONS(2217), - [sym_xhp_modifier] = ACTIONS(2217), - [sym_xhp_identifier] = ACTIONS(2217), - [sym_xhp_class_identifier] = ACTIONS(2219), + [1307] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1364] = { - [sym_identifier] = ACTIONS(2241), - [sym_variable] = ACTIONS(2243), - [sym_pipe_variable] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_newtype] = ACTIONS(2241), - [anon_sym_shape] = ACTIONS(2241), - [anon_sym_tuple] = ACTIONS(2241), - [anon_sym_clone] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_print] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_include] = ACTIONS(2241), - [anon_sym_include_once] = ACTIONS(2241), - [anon_sym_require] = ACTIONS(2241), - [anon_sym_require_once] = ACTIONS(2241), - [anon_sym_BSLASH] = ACTIONS(2243), - [anon_sym_self] = ACTIONS(2241), - [anon_sym_parent] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_LT_LT_LT] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_echo] = ACTIONS(2241), - [anon_sym_unset] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_concurrent] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_case] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_foreach] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [sym_float] = ACTIONS(2243), - [sym_integer] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_True] = ACTIONS(2241), - [anon_sym_TRUE] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [anon_sym_False] = ACTIONS(2241), - [anon_sym_FALSE] = ACTIONS(2241), - [anon_sym_null] = ACTIONS(2241), - [anon_sym_Null] = ACTIONS(2241), - [anon_sym_NULL] = ACTIONS(2241), - [sym_string] = ACTIONS(2243), - [anon_sym_AT] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_array] = ACTIONS(2241), - [anon_sym_varray] = ACTIONS(2241), - [anon_sym_darray] = ACTIONS(2241), - [anon_sym_vec] = ACTIONS(2241), - [anon_sym_dict] = ACTIONS(2241), - [anon_sym_keyset] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2243), - [sym_final_modifier] = ACTIONS(2241), - [sym_xhp_modifier] = ACTIONS(2241), - [sym_xhp_identifier] = ACTIONS(2241), - [sym_xhp_class_identifier] = ACTIONS(2243), + [1308] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1365] = { - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2153), - [sym_variable] = ACTIONS(2155), - [sym_pipe_variable] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_newtype] = ACTIONS(2153), - [anon_sym_shape] = ACTIONS(2153), - [anon_sym_tuple] = ACTIONS(2153), - [anon_sym_clone] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_print] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_LT_LT_LT] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_throw] = ACTIONS(2153), - [anon_sym_echo] = ACTIONS(2153), - [anon_sym_unset] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_concurrent] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_function] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_elseif] = ACTIONS(2153), - [anon_sym_else] = ACTIONS(2153), - [anon_sym_switch] = ACTIONS(2153), - [anon_sym_foreach] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_using] = ACTIONS(2153), - [sym_float] = ACTIONS(2155), - [sym_integer] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_True] = ACTIONS(2153), - [anon_sym_TRUE] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_False] = ACTIONS(2153), - [anon_sym_FALSE] = ACTIONS(2153), - [anon_sym_null] = ACTIONS(2153), - [anon_sym_Null] = ACTIONS(2153), - [anon_sym_NULL] = ACTIONS(2153), - [sym_string] = ACTIONS(2155), - [anon_sym_AT] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_array] = ACTIONS(2153), - [anon_sym_varray] = ACTIONS(2153), - [anon_sym_darray] = ACTIONS(2153), - [anon_sym_vec] = ACTIONS(2153), - [anon_sym_dict] = ACTIONS(2153), - [anon_sym_keyset] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_class] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_abstract] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2155), - [sym_final_modifier] = ACTIONS(2153), - [sym_xhp_modifier] = ACTIONS(2153), - [sym_xhp_identifier] = ACTIONS(2153), - [sym_xhp_class_identifier] = ACTIONS(2155), + [1309] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1366] = { - [sym_identifier] = ACTIONS(2613), - [sym_variable] = ACTIONS(2615), - [sym_pipe_variable] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2613), - [anon_sym_newtype] = ACTIONS(2613), - [anon_sym_shape] = ACTIONS(2613), - [anon_sym_tuple] = ACTIONS(2613), - [anon_sym_clone] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_print] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_include] = ACTIONS(2613), - [anon_sym_include_once] = ACTIONS(2613), - [anon_sym_require] = ACTIONS(2613), - [anon_sym_require_once] = ACTIONS(2613), - [anon_sym_BSLASH] = ACTIONS(2615), - [anon_sym_self] = ACTIONS(2613), - [anon_sym_parent] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_echo] = ACTIONS(2613), - [anon_sym_unset] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_concurrent] = ACTIONS(2613), - [anon_sym_use] = ACTIONS(2613), - [anon_sym_function] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_elseif] = ACTIONS(2613), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_foreach] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [sym_float] = ACTIONS(2615), - [sym_integer] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_True] = ACTIONS(2613), - [anon_sym_TRUE] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_False] = ACTIONS(2613), - [anon_sym_FALSE] = ACTIONS(2613), - [anon_sym_null] = ACTIONS(2613), - [anon_sym_Null] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [sym_string] = ACTIONS(2615), - [anon_sym_AT] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_array] = ACTIONS(2613), - [anon_sym_varray] = ACTIONS(2613), - [anon_sym_darray] = ACTIONS(2613), - [anon_sym_vec] = ACTIONS(2613), - [anon_sym_dict] = ACTIONS(2613), - [anon_sym_keyset] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_list] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_await] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_trait] = ACTIONS(2613), - [anon_sym_interface] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_abstract] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2615), - [sym_final_modifier] = ACTIONS(2613), - [sym_xhp_modifier] = ACTIONS(2613), - [sym_xhp_identifier] = ACTIONS(2613), - [sym_xhp_class_identifier] = ACTIONS(2615), + [1310] = { + [ts_builtin_sym_end] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2457), + [sym_variable] = ACTIONS(2459), + [sym_pipe_variable] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_newtype] = ACTIONS(2457), + [anon_sym_shape] = ACTIONS(2457), + [anon_sym_tuple] = ACTIONS(2457), + [anon_sym_clone] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_print] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_include] = ACTIONS(2457), + [anon_sym_include_once] = ACTIONS(2457), + [anon_sym_require] = ACTIONS(2457), + [anon_sym_require_once] = ACTIONS(2457), + [anon_sym_BSLASH] = ACTIONS(2459), + [anon_sym_self] = ACTIONS(2457), + [anon_sym_parent] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_LT_LT_LT] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_echo] = ACTIONS(2457), + [anon_sym_unset] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_concurrent] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_elseif] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_foreach] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_integer] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_True] = ACTIONS(2457), + [anon_sym_TRUE] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_False] = ACTIONS(2457), + [anon_sym_FALSE] = ACTIONS(2457), + [anon_sym_null] = ACTIONS(2457), + [anon_sym_Null] = ACTIONS(2457), + [anon_sym_NULL] = ACTIONS(2457), + [sym_string] = ACTIONS(2459), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_array] = ACTIONS(2457), + [anon_sym_varray] = ACTIONS(2457), + [anon_sym_darray] = ACTIONS(2457), + [anon_sym_vec] = ACTIONS(2457), + [anon_sym_dict] = ACTIONS(2457), + [anon_sym_keyset] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2459), + [sym_final_modifier] = ACTIONS(2457), + [sym_xhp_modifier] = ACTIONS(2457), + [sym_xhp_identifier] = ACTIONS(2457), + [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, - [1367] = { - [sym_identifier] = ACTIONS(2581), - [sym_variable] = ACTIONS(2583), - [sym_pipe_variable] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_newtype] = ACTIONS(2581), - [anon_sym_shape] = ACTIONS(2581), - [anon_sym_tuple] = ACTIONS(2581), - [anon_sym_clone] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_include] = ACTIONS(2581), - [anon_sym_include_once] = ACTIONS(2581), - [anon_sym_require] = ACTIONS(2581), - [anon_sym_require_once] = ACTIONS(2581), - [anon_sym_BSLASH] = ACTIONS(2583), - [anon_sym_self] = ACTIONS(2581), - [anon_sym_parent] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LT_LT_LT] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_echo] = ACTIONS(2581), - [anon_sym_unset] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_concurrent] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_elseif] = ACTIONS(2581), - [anon_sym_else] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_foreach] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [sym_float] = ACTIONS(2583), - [sym_integer] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_True] = ACTIONS(2581), - [anon_sym_TRUE] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [anon_sym_False] = ACTIONS(2581), - [anon_sym_FALSE] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_Null] = ACTIONS(2581), - [anon_sym_NULL] = ACTIONS(2581), - [sym_string] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_array] = ACTIONS(2581), - [anon_sym_varray] = ACTIONS(2581), - [anon_sym_darray] = ACTIONS(2581), - [anon_sym_vec] = ACTIONS(2581), - [anon_sym_dict] = ACTIONS(2581), - [anon_sym_keyset] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_list] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_trait] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2583), - [sym_final_modifier] = ACTIONS(2581), - [sym_xhp_modifier] = ACTIONS(2581), - [sym_xhp_identifier] = ACTIONS(2581), - [sym_xhp_class_identifier] = ACTIONS(2583), + [1311] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1368] = { - [sym_identifier] = ACTIONS(2141), - [sym_variable] = ACTIONS(2143), - [sym_pipe_variable] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_newtype] = ACTIONS(2141), - [anon_sym_shape] = ACTIONS(2141), - [anon_sym_tuple] = ACTIONS(2141), - [anon_sym_clone] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_print] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_LT_LT_LT] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_echo] = ACTIONS(2141), - [anon_sym_unset] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_concurrent] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_function] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_elseif] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_switch] = ACTIONS(2141), - [anon_sym_foreach] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_using] = ACTIONS(2141), - [sym_float] = ACTIONS(2143), - [sym_integer] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_True] = ACTIONS(2141), - [anon_sym_TRUE] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_False] = ACTIONS(2141), - [anon_sym_FALSE] = ACTIONS(2141), - [anon_sym_null] = ACTIONS(2141), - [anon_sym_Null] = ACTIONS(2141), - [anon_sym_NULL] = ACTIONS(2141), - [sym_string] = ACTIONS(2143), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_array] = ACTIONS(2141), - [anon_sym_varray] = ACTIONS(2141), - [anon_sym_darray] = ACTIONS(2141), - [anon_sym_vec] = ACTIONS(2141), - [anon_sym_dict] = ACTIONS(2141), - [anon_sym_keyset] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2141), - [anon_sym_class] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_abstract] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(2143), - [sym_final_modifier] = ACTIONS(2141), - [sym_xhp_modifier] = ACTIONS(2141), - [sym_xhp_identifier] = ACTIONS(2141), - [sym_xhp_class_identifier] = ACTIONS(2143), + [1312] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1369] = { - [sym_identifier] = ACTIONS(2593), - [sym_variable] = ACTIONS(2595), - [sym_pipe_variable] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_newtype] = ACTIONS(2593), - [anon_sym_shape] = ACTIONS(2593), - [anon_sym_tuple] = ACTIONS(2593), - [anon_sym_clone] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_print] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_include] = ACTIONS(2593), - [anon_sym_include_once] = ACTIONS(2593), - [anon_sym_require] = ACTIONS(2593), - [anon_sym_require_once] = ACTIONS(2593), - [anon_sym_BSLASH] = ACTIONS(2595), - [anon_sym_self] = ACTIONS(2593), - [anon_sym_parent] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_LT_LT] = ACTIONS(2593), - [anon_sym_LT_LT_LT] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_echo] = ACTIONS(2593), - [anon_sym_unset] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_concurrent] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_elseif] = ACTIONS(2593), - [anon_sym_else] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_foreach] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [sym_float] = ACTIONS(2595), - [sym_integer] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_True] = ACTIONS(2593), - [anon_sym_TRUE] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_False] = ACTIONS(2593), - [anon_sym_FALSE] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2593), - [anon_sym_Null] = ACTIONS(2593), - [anon_sym_NULL] = ACTIONS(2593), - [sym_string] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_array] = ACTIONS(2593), - [anon_sym_varray] = ACTIONS(2593), - [anon_sym_darray] = ACTIONS(2593), - [anon_sym_vec] = ACTIONS(2593), - [anon_sym_dict] = ACTIONS(2593), - [anon_sym_keyset] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_list] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_trait] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2595), - [sym_final_modifier] = ACTIONS(2593), - [sym_xhp_modifier] = ACTIONS(2593), - [sym_xhp_identifier] = ACTIONS(2593), - [sym_xhp_class_identifier] = ACTIONS(2595), + [1313] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1370] = { - [ts_builtin_sym_end] = ACTIONS(2055), - [sym_identifier] = ACTIONS(2053), - [sym_variable] = ACTIONS(2055), - [sym_pipe_variable] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_newtype] = ACTIONS(2053), - [anon_sym_shape] = ACTIONS(2053), - [anon_sym_tuple] = ACTIONS(2053), - [anon_sym_clone] = ACTIONS(2053), - [anon_sym_new] = ACTIONS(2053), - [anon_sym_print] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2053), - [anon_sym_include] = ACTIONS(2053), - [anon_sym_include_once] = ACTIONS(2053), - [anon_sym_require] = ACTIONS(2053), - [anon_sym_require_once] = ACTIONS(2053), - [anon_sym_BSLASH] = ACTIONS(2055), - [anon_sym_self] = ACTIONS(2053), - [anon_sym_parent] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2053), - [anon_sym_LT_LT_LT] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_throw] = ACTIONS(2053), - [anon_sym_echo] = ACTIONS(2053), - [anon_sym_unset] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_concurrent] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_function] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_switch] = ACTIONS(2053), - [anon_sym_foreach] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_do] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_finally] = ACTIONS(2053), - [anon_sym_using] = ACTIONS(2053), - [sym_float] = ACTIONS(2055), - [sym_integer] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_True] = ACTIONS(2053), - [anon_sym_TRUE] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_False] = ACTIONS(2053), - [anon_sym_FALSE] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [anon_sym_Null] = ACTIONS(2053), - [anon_sym_NULL] = ACTIONS(2053), - [sym_string] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_array] = ACTIONS(2053), - [anon_sym_varray] = ACTIONS(2053), - [anon_sym_darray] = ACTIONS(2053), - [anon_sym_vec] = ACTIONS(2053), - [anon_sym_dict] = ACTIONS(2053), - [anon_sym_keyset] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_PLUS] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_list] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_interface] = ACTIONS(2053), - [anon_sym_class] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_abstract] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2055), - [sym_final_modifier] = ACTIONS(2053), - [sym_xhp_modifier] = ACTIONS(2053), - [sym_xhp_identifier] = ACTIONS(2053), - [sym_xhp_class_identifier] = ACTIONS(2055), + [1314] = { + [sym_identifier] = ACTIONS(2225), + [sym_variable] = ACTIONS(2227), + [sym_pipe_variable] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_newtype] = ACTIONS(2225), + [anon_sym_shape] = ACTIONS(2225), + [anon_sym_tuple] = ACTIONS(2225), + [anon_sym_clone] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_print] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_include] = ACTIONS(2225), + [anon_sym_include_once] = ACTIONS(2225), + [anon_sym_require] = ACTIONS(2225), + [anon_sym_require_once] = ACTIONS(2225), + [anon_sym_BSLASH] = ACTIONS(2227), + [anon_sym_self] = ACTIONS(2225), + [anon_sym_parent] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_LT_LT_LT] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_echo] = ACTIONS(2225), + [anon_sym_unset] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_concurrent] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_elseif] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_foreach] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [sym_float] = ACTIONS(2227), + [sym_integer] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_True] = ACTIONS(2225), + [anon_sym_TRUE] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_False] = ACTIONS(2225), + [anon_sym_FALSE] = ACTIONS(2225), + [anon_sym_null] = ACTIONS(2225), + [anon_sym_Null] = ACTIONS(2225), + [anon_sym_NULL] = ACTIONS(2225), + [sym_string] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_array] = ACTIONS(2225), + [anon_sym_varray] = ACTIONS(2225), + [anon_sym_darray] = ACTIONS(2225), + [anon_sym_vec] = ACTIONS(2225), + [anon_sym_dict] = ACTIONS(2225), + [anon_sym_keyset] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_list] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2227), + [sym_final_modifier] = ACTIONS(2225), + [sym_xhp_modifier] = ACTIONS(2225), + [sym_xhp_identifier] = ACTIONS(2225), + [sym_xhp_class_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(3), }, - [1371] = { - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2181), - [sym_variable] = ACTIONS(2183), - [sym_pipe_variable] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_newtype] = ACTIONS(2181), - [anon_sym_shape] = ACTIONS(2181), - [anon_sym_tuple] = ACTIONS(2181), - [anon_sym_clone] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_print] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_LT_LT_LT] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_echo] = ACTIONS(2181), - [anon_sym_unset] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_concurrent] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_elseif] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_foreach] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [sym_float] = ACTIONS(2183), - [sym_integer] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_True] = ACTIONS(2181), - [anon_sym_TRUE] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [anon_sym_False] = ACTIONS(2181), - [anon_sym_FALSE] = ACTIONS(2181), - [anon_sym_null] = ACTIONS(2181), - [anon_sym_Null] = ACTIONS(2181), - [anon_sym_NULL] = ACTIONS(2181), - [sym_string] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_array] = ACTIONS(2181), - [anon_sym_varray] = ACTIONS(2181), - [anon_sym_darray] = ACTIONS(2181), - [anon_sym_vec] = ACTIONS(2181), - [anon_sym_dict] = ACTIONS(2181), - [anon_sym_keyset] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2183), - [sym_final_modifier] = ACTIONS(2181), - [sym_xhp_modifier] = ACTIONS(2181), - [sym_xhp_identifier] = ACTIONS(2181), - [sym_xhp_class_identifier] = ACTIONS(2183), + [1315] = { + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2449), + [sym_variable] = ACTIONS(2451), + [sym_pipe_variable] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_newtype] = ACTIONS(2449), + [anon_sym_shape] = ACTIONS(2449), + [anon_sym_tuple] = ACTIONS(2449), + [anon_sym_clone] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_print] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_include] = ACTIONS(2449), + [anon_sym_include_once] = ACTIONS(2449), + [anon_sym_require] = ACTIONS(2449), + [anon_sym_require_once] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2451), + [anon_sym_self] = ACTIONS(2449), + [anon_sym_parent] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_LT_LT_LT] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_echo] = ACTIONS(2449), + [anon_sym_unset] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_concurrent] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_foreach] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [sym_float] = ACTIONS(2451), + [sym_integer] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_True] = ACTIONS(2449), + [anon_sym_TRUE] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_False] = ACTIONS(2449), + [anon_sym_FALSE] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [anon_sym_Null] = ACTIONS(2449), + [anon_sym_NULL] = ACTIONS(2449), + [sym_string] = ACTIONS(2451), + [anon_sym_AT] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_array] = ACTIONS(2449), + [anon_sym_varray] = ACTIONS(2449), + [anon_sym_darray] = ACTIONS(2449), + [anon_sym_vec] = ACTIONS(2449), + [anon_sym_dict] = ACTIONS(2449), + [anon_sym_keyset] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_await] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_abstract] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2451), + [sym_final_modifier] = ACTIONS(2449), + [sym_xhp_modifier] = ACTIONS(2449), + [sym_xhp_identifier] = ACTIONS(2449), + [sym_xhp_class_identifier] = ACTIONS(2451), [sym_comment] = ACTIONS(3), }, - [1372] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [sym_variable] = ACTIONS(2195), - [sym_pipe_variable] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_newtype] = ACTIONS(2193), - [anon_sym_shape] = ACTIONS(2193), - [anon_sym_tuple] = ACTIONS(2193), - [anon_sym_clone] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_print] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_LT_LT_LT] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_echo] = ACTIONS(2193), - [anon_sym_unset] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_concurrent] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_elseif] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_foreach] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [sym_float] = ACTIONS(2195), - [sym_integer] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_True] = ACTIONS(2193), - [anon_sym_TRUE] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_False] = ACTIONS(2193), - [anon_sym_FALSE] = ACTIONS(2193), - [anon_sym_null] = ACTIONS(2193), - [anon_sym_Null] = ACTIONS(2193), - [anon_sym_NULL] = ACTIONS(2193), - [sym_string] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_array] = ACTIONS(2193), - [anon_sym_varray] = ACTIONS(2193), - [anon_sym_darray] = ACTIONS(2193), - [anon_sym_vec] = ACTIONS(2193), - [anon_sym_dict] = ACTIONS(2193), - [anon_sym_keyset] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2195), - [sym_final_modifier] = ACTIONS(2193), - [sym_xhp_modifier] = ACTIONS(2193), - [sym_xhp_identifier] = ACTIONS(2193), - [sym_xhp_class_identifier] = ACTIONS(2195), + [1316] = { + [sym_identifier] = ACTIONS(2101), + [sym_variable] = ACTIONS(2103), + [sym_pipe_variable] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_newtype] = ACTIONS(2101), + [anon_sym_shape] = ACTIONS(2101), + [anon_sym_tuple] = ACTIONS(2101), + [anon_sym_clone] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2101), + [anon_sym_namespace] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_include_once] = ACTIONS(2101), + [anon_sym_require] = ACTIONS(2101), + [anon_sym_require_once] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2103), + [anon_sym_self] = ACTIONS(2101), + [anon_sym_parent] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_LT_LT_LT] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(2101), + [anon_sym_echo] = ACTIONS(2101), + [anon_sym_unset] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_concurrent] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_function] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_elseif] = ACTIONS(2101), + [anon_sym_else] = ACTIONS(2101), + [anon_sym_switch] = ACTIONS(2101), + [anon_sym_foreach] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_using] = ACTIONS(2101), + [sym_float] = ACTIONS(2103), + [sym_integer] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_True] = ACTIONS(2101), + [anon_sym_TRUE] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_False] = ACTIONS(2101), + [anon_sym_FALSE] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [anon_sym_Null] = ACTIONS(2101), + [anon_sym_NULL] = ACTIONS(2101), + [sym_string] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_array] = ACTIONS(2101), + [anon_sym_varray] = ACTIONS(2101), + [anon_sym_darray] = ACTIONS(2101), + [anon_sym_vec] = ACTIONS(2101), + [anon_sym_dict] = ACTIONS(2101), + [anon_sym_keyset] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_list] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_interface] = ACTIONS(2101), + [anon_sym_class] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_abstract] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2103), + [sym_final_modifier] = ACTIONS(2101), + [sym_xhp_modifier] = ACTIONS(2101), + [sym_xhp_identifier] = ACTIONS(2101), + [sym_xhp_class_identifier] = ACTIONS(2103), [sym_comment] = ACTIONS(3), }, - [1373] = { - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2197), - [sym_variable] = ACTIONS(2199), - [sym_pipe_variable] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_newtype] = ACTIONS(2197), - [anon_sym_shape] = ACTIONS(2197), - [anon_sym_tuple] = ACTIONS(2197), - [anon_sym_clone] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_print] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_LT_LT_LT] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_echo] = ACTIONS(2197), - [anon_sym_unset] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_concurrent] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_elseif] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_foreach] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [sym_float] = ACTIONS(2199), - [sym_integer] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_True] = ACTIONS(2197), - [anon_sym_TRUE] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_False] = ACTIONS(2197), - [anon_sym_FALSE] = ACTIONS(2197), - [anon_sym_null] = ACTIONS(2197), - [anon_sym_Null] = ACTIONS(2197), - [anon_sym_NULL] = ACTIONS(2197), - [sym_string] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_array] = ACTIONS(2197), - [anon_sym_varray] = ACTIONS(2197), - [anon_sym_darray] = ACTIONS(2197), - [anon_sym_vec] = ACTIONS(2197), - [anon_sym_dict] = ACTIONS(2197), - [anon_sym_keyset] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2199), - [sym_final_modifier] = ACTIONS(2197), - [sym_xhp_modifier] = ACTIONS(2197), - [sym_xhp_identifier] = ACTIONS(2197), - [sym_xhp_class_identifier] = ACTIONS(2199), + [1317] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1374] = { - [sym_identifier] = ACTIONS(2585), - [sym_variable] = ACTIONS(2587), - [sym_pipe_variable] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_newtype] = ACTIONS(2585), - [anon_sym_shape] = ACTIONS(2585), - [anon_sym_tuple] = ACTIONS(2585), - [anon_sym_clone] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_include] = ACTIONS(2585), - [anon_sym_include_once] = ACTIONS(2585), - [anon_sym_require] = ACTIONS(2585), - [anon_sym_require_once] = ACTIONS(2585), - [anon_sym_BSLASH] = ACTIONS(2587), - [anon_sym_self] = ACTIONS(2585), - [anon_sym_parent] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_LT_LT_LT] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_echo] = ACTIONS(2585), - [anon_sym_unset] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_concurrent] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_elseif] = ACTIONS(2585), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_foreach] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [sym_float] = ACTIONS(2587), - [sym_integer] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2585), - [anon_sym_True] = ACTIONS(2585), - [anon_sym_TRUE] = ACTIONS(2585), - [anon_sym_false] = ACTIONS(2585), - [anon_sym_False] = ACTIONS(2585), - [anon_sym_FALSE] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2585), - [anon_sym_Null] = ACTIONS(2585), - [anon_sym_NULL] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_array] = ACTIONS(2585), - [anon_sym_varray] = ACTIONS(2585), - [anon_sym_darray] = ACTIONS(2585), - [anon_sym_vec] = ACTIONS(2585), - [anon_sym_dict] = ACTIONS(2585), - [anon_sym_keyset] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_list] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2587), - [sym_final_modifier] = ACTIONS(2585), - [sym_xhp_modifier] = ACTIONS(2585), - [sym_xhp_identifier] = ACTIONS(2585), - [sym_xhp_class_identifier] = ACTIONS(2587), + [1318] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1375] = { - [sym_identifier] = ACTIONS(2133), - [sym_variable] = ACTIONS(2135), - [sym_pipe_variable] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_newtype] = ACTIONS(2133), - [anon_sym_shape] = ACTIONS(2133), - [anon_sym_tuple] = ACTIONS(2133), - [anon_sym_clone] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_print] = ACTIONS(2133), - [anon_sym_namespace] = ACTIONS(2133), - [anon_sym_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_LT_LT_LT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_throw] = ACTIONS(2133), - [anon_sym_echo] = ACTIONS(2133), - [anon_sym_unset] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_concurrent] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_elseif] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_foreach] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(2133), - [sym_float] = ACTIONS(2135), - [sym_integer] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_True] = ACTIONS(2133), - [anon_sym_TRUE] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_False] = ACTIONS(2133), - [anon_sym_FALSE] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [anon_sym_Null] = ACTIONS(2133), - [anon_sym_NULL] = ACTIONS(2133), - [sym_string] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_array] = ACTIONS(2133), - [anon_sym_varray] = ACTIONS(2133), - [anon_sym_darray] = ACTIONS(2133), - [anon_sym_vec] = ACTIONS(2133), - [anon_sym_dict] = ACTIONS(2133), - [anon_sym_keyset] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_trait] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_class] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_abstract] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2135), - [sym_final_modifier] = ACTIONS(2133), - [sym_xhp_modifier] = ACTIONS(2133), - [sym_xhp_identifier] = ACTIONS(2133), - [sym_xhp_class_identifier] = ACTIONS(2135), + [1319] = { + [sym_identifier] = ACTIONS(2249), + [sym_variable] = ACTIONS(2251), + [sym_pipe_variable] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_newtype] = ACTIONS(2249), + [anon_sym_shape] = ACTIONS(2249), + [anon_sym_tuple] = ACTIONS(2249), + [anon_sym_clone] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_include] = ACTIONS(2249), + [anon_sym_include_once] = ACTIONS(2249), + [anon_sym_require] = ACTIONS(2249), + [anon_sym_require_once] = ACTIONS(2249), + [anon_sym_BSLASH] = ACTIONS(2251), + [anon_sym_self] = ACTIONS(2249), + [anon_sym_parent] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_LT_LT_LT] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_echo] = ACTIONS(2249), + [anon_sym_unset] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_concurrent] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_case] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_foreach] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [sym_float] = ACTIONS(2251), + [sym_integer] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_True] = ACTIONS(2249), + [anon_sym_TRUE] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_False] = ACTIONS(2249), + [anon_sym_FALSE] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_Null] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [sym_string] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_array] = ACTIONS(2249), + [anon_sym_varray] = ACTIONS(2249), + [anon_sym_darray] = ACTIONS(2249), + [anon_sym_vec] = ACTIONS(2249), + [anon_sym_dict] = ACTIONS(2249), + [anon_sym_keyset] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_list] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2251), + [sym_final_modifier] = ACTIONS(2249), + [sym_xhp_modifier] = ACTIONS(2249), + [sym_xhp_identifier] = ACTIONS(2249), + [sym_xhp_class_identifier] = ACTIONS(2251), [sym_comment] = ACTIONS(3), }, - [1376] = { - [sym_identifier] = ACTIONS(2149), - [sym_variable] = ACTIONS(2151), - [sym_pipe_variable] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_newtype] = ACTIONS(2149), - [anon_sym_shape] = ACTIONS(2149), - [anon_sym_tuple] = ACTIONS(2149), - [anon_sym_clone] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_print] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_LT_LT_LT] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_echo] = ACTIONS(2149), - [anon_sym_unset] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_concurrent] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_elseif] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_foreach] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [sym_float] = ACTIONS(2151), - [sym_integer] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_True] = ACTIONS(2149), - [anon_sym_TRUE] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_False] = ACTIONS(2149), - [anon_sym_FALSE] = ACTIONS(2149), - [anon_sym_null] = ACTIONS(2149), - [anon_sym_Null] = ACTIONS(2149), - [anon_sym_NULL] = ACTIONS(2149), - [sym_string] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_array] = ACTIONS(2149), - [anon_sym_varray] = ACTIONS(2149), - [anon_sym_darray] = ACTIONS(2149), - [anon_sym_vec] = ACTIONS(2149), - [anon_sym_dict] = ACTIONS(2149), - [anon_sym_keyset] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2151), - [sym_final_modifier] = ACTIONS(2149), - [sym_xhp_modifier] = ACTIONS(2149), - [sym_xhp_identifier] = ACTIONS(2149), - [sym_xhp_class_identifier] = ACTIONS(2151), + [1320] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1377] = { - [sym_identifier] = ACTIONS(2161), - [sym_variable] = ACTIONS(2163), - [sym_pipe_variable] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_newtype] = ACTIONS(2161), - [anon_sym_shape] = ACTIONS(2161), - [anon_sym_tuple] = ACTIONS(2161), - [anon_sym_clone] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2161), - [anon_sym_print] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2161), - [anon_sym_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_LT_LT_LT] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_echo] = ACTIONS(2161), - [anon_sym_unset] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_concurrent] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_function] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_elseif] = ACTIONS(2161), - [anon_sym_else] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [anon_sym_foreach] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_using] = ACTIONS(2161), - [sym_float] = ACTIONS(2163), - [sym_integer] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_True] = ACTIONS(2161), - [anon_sym_TRUE] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_False] = ACTIONS(2161), - [anon_sym_FALSE] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2161), - [anon_sym_Null] = ACTIONS(2161), - [anon_sym_NULL] = ACTIONS(2161), - [sym_string] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_array] = ACTIONS(2161), - [anon_sym_varray] = ACTIONS(2161), - [anon_sym_darray] = ACTIONS(2161), - [anon_sym_vec] = ACTIONS(2161), - [anon_sym_dict] = ACTIONS(2161), - [anon_sym_keyset] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2161), - [anon_sym_class] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_abstract] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2163), - [sym_final_modifier] = ACTIONS(2161), - [sym_xhp_modifier] = ACTIONS(2161), - [sym_xhp_identifier] = ACTIONS(2161), - [sym_xhp_class_identifier] = ACTIONS(2163), + [1321] = { + [sym_identifier] = ACTIONS(2253), + [sym_variable] = ACTIONS(2255), + [sym_pipe_variable] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_newtype] = ACTIONS(2253), + [anon_sym_shape] = ACTIONS(2253), + [anon_sym_tuple] = ACTIONS(2253), + [anon_sym_clone] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_print] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_include] = ACTIONS(2253), + [anon_sym_include_once] = ACTIONS(2253), + [anon_sym_require] = ACTIONS(2253), + [anon_sym_require_once] = ACTIONS(2253), + [anon_sym_BSLASH] = ACTIONS(2255), + [anon_sym_self] = ACTIONS(2253), + [anon_sym_parent] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2253), + [anon_sym_LT_LT_LT] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_echo] = ACTIONS(2253), + [anon_sym_unset] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_concurrent] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_case] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_foreach] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [sym_float] = ACTIONS(2255), + [sym_integer] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_True] = ACTIONS(2253), + [anon_sym_TRUE] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_False] = ACTIONS(2253), + [anon_sym_FALSE] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [anon_sym_Null] = ACTIONS(2253), + [anon_sym_NULL] = ACTIONS(2253), + [sym_string] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_array] = ACTIONS(2253), + [anon_sym_varray] = ACTIONS(2253), + [anon_sym_darray] = ACTIONS(2253), + [anon_sym_vec] = ACTIONS(2253), + [anon_sym_dict] = ACTIONS(2253), + [anon_sym_keyset] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_list] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2255), + [sym_final_modifier] = ACTIONS(2253), + [sym_xhp_modifier] = ACTIONS(2253), + [sym_xhp_identifier] = ACTIONS(2253), + [sym_xhp_class_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(3), }, - [1378] = { - [sym_identifier] = ACTIONS(2165), - [sym_variable] = ACTIONS(2167), - [sym_pipe_variable] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_newtype] = ACTIONS(2165), - [anon_sym_shape] = ACTIONS(2165), - [anon_sym_tuple] = ACTIONS(2165), - [anon_sym_clone] = ACTIONS(2165), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_print] = ACTIONS(2165), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_LT_LT_LT] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_throw] = ACTIONS(2165), - [anon_sym_echo] = ACTIONS(2165), - [anon_sym_unset] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_concurrent] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_function] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_elseif] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [anon_sym_foreach] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_using] = ACTIONS(2165), - [sym_float] = ACTIONS(2167), - [sym_integer] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_True] = ACTIONS(2165), - [anon_sym_TRUE] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_False] = ACTIONS(2165), - [anon_sym_FALSE] = ACTIONS(2165), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_Null] = ACTIONS(2165), - [anon_sym_NULL] = ACTIONS(2165), - [sym_string] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_array] = ACTIONS(2165), - [anon_sym_varray] = ACTIONS(2165), - [anon_sym_darray] = ACTIONS(2165), - [anon_sym_vec] = ACTIONS(2165), - [anon_sym_dict] = ACTIONS(2165), - [anon_sym_keyset] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2167), - [sym_final_modifier] = ACTIONS(2165), - [sym_xhp_modifier] = ACTIONS(2165), - [sym_xhp_identifier] = ACTIONS(2165), - [sym_xhp_class_identifier] = ACTIONS(2167), + [1322] = { + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2445), + [sym_variable] = ACTIONS(2447), + [sym_pipe_variable] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_newtype] = ACTIONS(2445), + [anon_sym_shape] = ACTIONS(2445), + [anon_sym_tuple] = ACTIONS(2445), + [anon_sym_clone] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_include] = ACTIONS(2445), + [anon_sym_include_once] = ACTIONS(2445), + [anon_sym_require] = ACTIONS(2445), + [anon_sym_require_once] = ACTIONS(2445), + [anon_sym_BSLASH] = ACTIONS(2447), + [anon_sym_self] = ACTIONS(2445), + [anon_sym_parent] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_LT_LT_LT] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_echo] = ACTIONS(2445), + [anon_sym_unset] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_concurrent] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_elseif] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_foreach] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [sym_float] = ACTIONS(2447), + [sym_integer] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_True] = ACTIONS(2445), + [anon_sym_TRUE] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_False] = ACTIONS(2445), + [anon_sym_FALSE] = ACTIONS(2445), + [anon_sym_null] = ACTIONS(2445), + [anon_sym_Null] = ACTIONS(2445), + [anon_sym_NULL] = ACTIONS(2445), + [sym_string] = ACTIONS(2447), + [anon_sym_AT] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_array] = ACTIONS(2445), + [anon_sym_varray] = ACTIONS(2445), + [anon_sym_darray] = ACTIONS(2445), + [anon_sym_vec] = ACTIONS(2445), + [anon_sym_dict] = ACTIONS(2445), + [anon_sym_keyset] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_list] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_abstract] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2447), + [sym_final_modifier] = ACTIONS(2445), + [sym_xhp_modifier] = ACTIONS(2445), + [sym_xhp_identifier] = ACTIONS(2445), + [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, - [1379] = { - [sym_identifier] = ACTIONS(2565), - [sym_variable] = ACTIONS(2567), - [sym_pipe_variable] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_newtype] = ACTIONS(2565), - [anon_sym_shape] = ACTIONS(2565), - [anon_sym_tuple] = ACTIONS(2565), - [anon_sym_clone] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_print] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_include] = ACTIONS(2565), - [anon_sym_include_once] = ACTIONS(2565), - [anon_sym_require] = ACTIONS(2565), - [anon_sym_require_once] = ACTIONS(2565), - [anon_sym_BSLASH] = ACTIONS(2567), - [anon_sym_self] = ACTIONS(2565), - [anon_sym_parent] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_LT_LT] = ACTIONS(2565), - [anon_sym_LT_LT_LT] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_echo] = ACTIONS(2565), - [anon_sym_unset] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_concurrent] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_elseif] = ACTIONS(2565), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_foreach] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [sym_float] = ACTIONS(2567), - [sym_integer] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_True] = ACTIONS(2565), - [anon_sym_TRUE] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [anon_sym_False] = ACTIONS(2565), - [anon_sym_FALSE] = ACTIONS(2565), - [anon_sym_null] = ACTIONS(2565), - [anon_sym_Null] = ACTIONS(2565), - [anon_sym_NULL] = ACTIONS(2565), - [sym_string] = ACTIONS(2567), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_array] = ACTIONS(2565), - [anon_sym_varray] = ACTIONS(2565), - [anon_sym_darray] = ACTIONS(2565), - [anon_sym_vec] = ACTIONS(2565), - [anon_sym_dict] = ACTIONS(2565), - [anon_sym_keyset] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2567), - [sym_final_modifier] = ACTIONS(2565), - [sym_xhp_modifier] = ACTIONS(2565), - [sym_xhp_identifier] = ACTIONS(2565), - [sym_xhp_class_identifier] = ACTIONS(2567), + [1323] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1380] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_elseif] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), + [1324] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1381] = { - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2057), - [sym_variable] = ACTIONS(2059), - [sym_pipe_variable] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_newtype] = ACTIONS(2057), - [anon_sym_shape] = ACTIONS(2057), - [anon_sym_tuple] = ACTIONS(2057), - [anon_sym_clone] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_print] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_LT_LT_LT] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_echo] = ACTIONS(2057), - [anon_sym_unset] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_concurrent] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_elseif] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_foreach] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [sym_float] = ACTIONS(2059), - [sym_integer] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_True] = ACTIONS(2057), - [anon_sym_TRUE] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_False] = ACTIONS(2057), - [anon_sym_FALSE] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [anon_sym_Null] = ACTIONS(2057), - [anon_sym_NULL] = ACTIONS(2057), - [sym_string] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_array] = ACTIONS(2057), - [anon_sym_varray] = ACTIONS(2057), - [anon_sym_darray] = ACTIONS(2057), - [anon_sym_vec] = ACTIONS(2057), - [anon_sym_dict] = ACTIONS(2057), - [anon_sym_keyset] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2059), - [sym_final_modifier] = ACTIONS(2057), - [sym_xhp_modifier] = ACTIONS(2057), - [sym_xhp_identifier] = ACTIONS(2057), - [sym_xhp_class_identifier] = ACTIONS(2059), + [1325] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1382] = { - [sym_identifier] = ACTIONS(2609), - [sym_variable] = ACTIONS(2611), - [sym_pipe_variable] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_newtype] = ACTIONS(2609), - [anon_sym_shape] = ACTIONS(2609), - [anon_sym_tuple] = ACTIONS(2609), - [anon_sym_clone] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_print] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_include] = ACTIONS(2609), - [anon_sym_include_once] = ACTIONS(2609), - [anon_sym_require] = ACTIONS(2609), - [anon_sym_require_once] = ACTIONS(2609), - [anon_sym_BSLASH] = ACTIONS(2611), - [anon_sym_self] = ACTIONS(2609), - [anon_sym_parent] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2609), - [anon_sym_LT_LT_LT] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_echo] = ACTIONS(2609), - [anon_sym_unset] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_concurrent] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_elseif] = ACTIONS(2609), - [anon_sym_else] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_foreach] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [sym_float] = ACTIONS(2611), - [sym_integer] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_True] = ACTIONS(2609), - [anon_sym_TRUE] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_False] = ACTIONS(2609), - [anon_sym_FALSE] = ACTIONS(2609), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_Null] = ACTIONS(2609), - [anon_sym_NULL] = ACTIONS(2609), - [sym_string] = ACTIONS(2611), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_array] = ACTIONS(2609), - [anon_sym_varray] = ACTIONS(2609), - [anon_sym_darray] = ACTIONS(2609), - [anon_sym_vec] = ACTIONS(2609), - [anon_sym_dict] = ACTIONS(2609), - [anon_sym_keyset] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_list] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_trait] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2611), - [sym_final_modifier] = ACTIONS(2609), - [sym_xhp_modifier] = ACTIONS(2609), - [sym_xhp_identifier] = ACTIONS(2609), - [sym_xhp_class_identifier] = ACTIONS(2611), + [1326] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1383] = { - [sym_identifier] = ACTIONS(2601), - [sym_variable] = ACTIONS(2603), - [sym_pipe_variable] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_newtype] = ACTIONS(2601), - [anon_sym_shape] = ACTIONS(2601), - [anon_sym_tuple] = ACTIONS(2601), - [anon_sym_clone] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_print] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_include] = ACTIONS(2601), - [anon_sym_include_once] = ACTIONS(2601), - [anon_sym_require] = ACTIONS(2601), - [anon_sym_require_once] = ACTIONS(2601), - [anon_sym_BSLASH] = ACTIONS(2603), - [anon_sym_self] = ACTIONS(2601), - [anon_sym_parent] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_LT_LT] = ACTIONS(2601), - [anon_sym_LT_LT_LT] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_echo] = ACTIONS(2601), - [anon_sym_unset] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_concurrent] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_elseif] = ACTIONS(2601), - [anon_sym_else] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_foreach] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [sym_float] = ACTIONS(2603), - [sym_integer] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_True] = ACTIONS(2601), - [anon_sym_TRUE] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [anon_sym_False] = ACTIONS(2601), - [anon_sym_FALSE] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_Null] = ACTIONS(2601), - [anon_sym_NULL] = ACTIONS(2601), - [sym_string] = ACTIONS(2603), - [anon_sym_AT] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_array] = ACTIONS(2601), - [anon_sym_varray] = ACTIONS(2601), - [anon_sym_darray] = ACTIONS(2601), - [anon_sym_vec] = ACTIONS(2601), - [anon_sym_dict] = ACTIONS(2601), - [anon_sym_keyset] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_list] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_trait] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2603), - [sym_final_modifier] = ACTIONS(2601), - [sym_xhp_modifier] = ACTIONS(2601), - [sym_xhp_identifier] = ACTIONS(2601), - [sym_xhp_class_identifier] = ACTIONS(2603), + [1327] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1384] = { - [sym_identifier] = ACTIONS(2225), - [sym_variable] = ACTIONS(2227), - [sym_pipe_variable] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_newtype] = ACTIONS(2225), - [anon_sym_shape] = ACTIONS(2225), - [anon_sym_tuple] = ACTIONS(2225), - [anon_sym_clone] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_print] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_LT_LT_LT] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_echo] = ACTIONS(2225), - [anon_sym_unset] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_concurrent] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_case] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_foreach] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [sym_float] = ACTIONS(2227), - [sym_integer] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_True] = ACTIONS(2225), - [anon_sym_TRUE] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [anon_sym_False] = ACTIONS(2225), - [anon_sym_FALSE] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2225), - [anon_sym_Null] = ACTIONS(2225), - [anon_sym_NULL] = ACTIONS(2225), - [sym_string] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_array] = ACTIONS(2225), - [anon_sym_varray] = ACTIONS(2225), - [anon_sym_darray] = ACTIONS(2225), - [anon_sym_vec] = ACTIONS(2225), - [anon_sym_dict] = ACTIONS(2225), - [anon_sym_keyset] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2227), - [sym_final_modifier] = ACTIONS(2225), - [sym_xhp_modifier] = ACTIONS(2225), - [sym_xhp_identifier] = ACTIONS(2225), - [sym_xhp_class_identifier] = ACTIONS(2227), + [1328] = { + [sym_identifier] = ACTIONS(2109), + [sym_variable] = ACTIONS(2111), + [sym_pipe_variable] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_newtype] = ACTIONS(2109), + [anon_sym_shape] = ACTIONS(2109), + [anon_sym_tuple] = ACTIONS(2109), + [anon_sym_clone] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_include] = ACTIONS(2109), + [anon_sym_include_once] = ACTIONS(2109), + [anon_sym_require] = ACTIONS(2109), + [anon_sym_require_once] = ACTIONS(2109), + [anon_sym_BSLASH] = ACTIONS(2111), + [anon_sym_self] = ACTIONS(2109), + [anon_sym_parent] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_LT_LT_LT] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_echo] = ACTIONS(2109), + [anon_sym_unset] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_concurrent] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_elseif] = ACTIONS(2109), + [anon_sym_else] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_foreach] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [sym_float] = ACTIONS(2111), + [sym_integer] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_True] = ACTIONS(2109), + [anon_sym_TRUE] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_False] = ACTIONS(2109), + [anon_sym_FALSE] = ACTIONS(2109), + [anon_sym_null] = ACTIONS(2109), + [anon_sym_Null] = ACTIONS(2109), + [anon_sym_NULL] = ACTIONS(2109), + [sym_string] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_array] = ACTIONS(2109), + [anon_sym_varray] = ACTIONS(2109), + [anon_sym_darray] = ACTIONS(2109), + [anon_sym_vec] = ACTIONS(2109), + [anon_sym_dict] = ACTIONS(2109), + [anon_sym_keyset] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_list] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2111), + [sym_final_modifier] = ACTIONS(2109), + [sym_xhp_modifier] = ACTIONS(2109), + [sym_xhp_identifier] = ACTIONS(2109), + [sym_xhp_class_identifier] = ACTIONS(2111), [sym_comment] = ACTIONS(3), }, - [1385] = { - [sym_identifier] = ACTIONS(2589), - [sym_variable] = ACTIONS(2591), - [sym_pipe_variable] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2589), - [anon_sym_newtype] = ACTIONS(2589), - [anon_sym_shape] = ACTIONS(2589), - [anon_sym_tuple] = ACTIONS(2589), - [anon_sym_clone] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2589), - [anon_sym_print] = ACTIONS(2589), - [anon_sym_namespace] = ACTIONS(2589), - [anon_sym_include] = ACTIONS(2589), - [anon_sym_include_once] = ACTIONS(2589), - [anon_sym_require] = ACTIONS(2589), - [anon_sym_require_once] = ACTIONS(2589), - [anon_sym_BSLASH] = ACTIONS(2591), - [anon_sym_self] = ACTIONS(2589), - [anon_sym_parent] = ACTIONS(2589), - [anon_sym_static] = ACTIONS(2589), - [anon_sym_LT_LT] = ACTIONS(2589), - [anon_sym_LT_LT_LT] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2589), - [anon_sym_break] = ACTIONS(2589), - [anon_sym_continue] = ACTIONS(2589), - [anon_sym_throw] = ACTIONS(2589), - [anon_sym_echo] = ACTIONS(2589), - [anon_sym_unset] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_concurrent] = ACTIONS(2589), - [anon_sym_use] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2589), - [anon_sym_const] = ACTIONS(2589), - [anon_sym_if] = ACTIONS(2589), - [anon_sym_elseif] = ACTIONS(2589), - [anon_sym_else] = ACTIONS(2589), - [anon_sym_switch] = ACTIONS(2589), - [anon_sym_foreach] = ACTIONS(2589), - [anon_sym_while] = ACTIONS(2589), - [anon_sym_do] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2589), - [anon_sym_using] = ACTIONS(2589), - [sym_float] = ACTIONS(2591), - [sym_integer] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2589), - [anon_sym_True] = ACTIONS(2589), - [anon_sym_TRUE] = ACTIONS(2589), - [anon_sym_false] = ACTIONS(2589), - [anon_sym_False] = ACTIONS(2589), - [anon_sym_FALSE] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2589), - [anon_sym_Null] = ACTIONS(2589), - [anon_sym_NULL] = ACTIONS(2589), - [sym_string] = ACTIONS(2591), - [anon_sym_AT] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2591), - [anon_sym_array] = ACTIONS(2589), - [anon_sym_varray] = ACTIONS(2589), - [anon_sym_darray] = ACTIONS(2589), - [anon_sym_vec] = ACTIONS(2589), - [anon_sym_dict] = ACTIONS(2589), - [anon_sym_keyset] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_list] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2591), - [anon_sym_PLUS_PLUS] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2591), - [anon_sym_await] = ACTIONS(2589), - [anon_sym_async] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2589), - [anon_sym_trait] = ACTIONS(2589), - [anon_sym_interface] = ACTIONS(2589), - [anon_sym_class] = ACTIONS(2589), - [anon_sym_enum] = ACTIONS(2589), - [anon_sym_abstract] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2591), - [sym_final_modifier] = ACTIONS(2589), - [sym_xhp_modifier] = ACTIONS(2589), - [sym_xhp_identifier] = ACTIONS(2589), - [sym_xhp_class_identifier] = ACTIONS(2591), + [1329] = { + [sym_identifier] = ACTIONS(2333), + [sym_variable] = ACTIONS(2335), + [sym_pipe_variable] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_newtype] = ACTIONS(2333), + [anon_sym_shape] = ACTIONS(2333), + [anon_sym_tuple] = ACTIONS(2333), + [anon_sym_clone] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_print] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_include] = ACTIONS(2333), + [anon_sym_include_once] = ACTIONS(2333), + [anon_sym_require] = ACTIONS(2333), + [anon_sym_require_once] = ACTIONS(2333), + [anon_sym_BSLASH] = ACTIONS(2335), + [anon_sym_self] = ACTIONS(2333), + [anon_sym_parent] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_LT_LT] = ACTIONS(2333), + [anon_sym_LT_LT_LT] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_echo] = ACTIONS(2333), + [anon_sym_unset] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_concurrent] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_case] = ACTIONS(2333), + [anon_sym_default] = ACTIONS(2333), + [anon_sym_foreach] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [sym_float] = ACTIONS(2335), + [sym_integer] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_True] = ACTIONS(2333), + [anon_sym_TRUE] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_False] = ACTIONS(2333), + [anon_sym_FALSE] = ACTIONS(2333), + [anon_sym_null] = ACTIONS(2333), + [anon_sym_Null] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [sym_string] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_array] = ACTIONS(2333), + [anon_sym_varray] = ACTIONS(2333), + [anon_sym_darray] = ACTIONS(2333), + [anon_sym_vec] = ACTIONS(2333), + [anon_sym_dict] = ACTIONS(2333), + [anon_sym_keyset] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_list] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2335), + [sym_final_modifier] = ACTIONS(2333), + [sym_xhp_modifier] = ACTIONS(2333), + [sym_xhp_identifier] = ACTIONS(2333), + [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, - [1386] = { - [sym_identifier] = ACTIONS(2393), - [sym_variable] = ACTIONS(2395), - [sym_pipe_variable] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_newtype] = ACTIONS(2393), - [anon_sym_shape] = ACTIONS(2393), - [anon_sym_tuple] = ACTIONS(2393), - [anon_sym_clone] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_print] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_LT_LT_LT] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_echo] = ACTIONS(2393), - [anon_sym_unset] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_concurrent] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_elseif] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_foreach] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [sym_float] = ACTIONS(2395), - [sym_integer] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_True] = ACTIONS(2393), - [anon_sym_TRUE] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_False] = ACTIONS(2393), - [anon_sym_FALSE] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2393), - [anon_sym_Null] = ACTIONS(2393), - [anon_sym_NULL] = ACTIONS(2393), - [sym_string] = ACTIONS(2395), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_array] = ACTIONS(2393), - [anon_sym_varray] = ACTIONS(2393), - [anon_sym_darray] = ACTIONS(2393), - [anon_sym_vec] = ACTIONS(2393), - [anon_sym_dict] = ACTIONS(2393), - [anon_sym_keyset] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2395), - [sym_final_modifier] = ACTIONS(2393), - [sym_xhp_modifier] = ACTIONS(2393), - [sym_xhp_identifier] = ACTIONS(2393), - [sym_xhp_class_identifier] = ACTIONS(2395), + [1330] = { + [sym_identifier] = ACTIONS(2341), + [sym_variable] = ACTIONS(2343), + [sym_pipe_variable] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_newtype] = ACTIONS(2341), + [anon_sym_shape] = ACTIONS(2341), + [anon_sym_tuple] = ACTIONS(2341), + [anon_sym_clone] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_print] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_include] = ACTIONS(2341), + [anon_sym_include_once] = ACTIONS(2341), + [anon_sym_require] = ACTIONS(2341), + [anon_sym_require_once] = ACTIONS(2341), + [anon_sym_BSLASH] = ACTIONS(2343), + [anon_sym_self] = ACTIONS(2341), + [anon_sym_parent] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_LT_LT_LT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_echo] = ACTIONS(2341), + [anon_sym_unset] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_concurrent] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_function] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_case] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_foreach] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [sym_float] = ACTIONS(2343), + [sym_integer] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_True] = ACTIONS(2341), + [anon_sym_TRUE] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_False] = ACTIONS(2341), + [anon_sym_FALSE] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [anon_sym_Null] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [sym_string] = ACTIONS(2343), + [anon_sym_AT] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_array] = ACTIONS(2341), + [anon_sym_varray] = ACTIONS(2341), + [anon_sym_darray] = ACTIONS(2341), + [anon_sym_vec] = ACTIONS(2341), + [anon_sym_dict] = ACTIONS(2341), + [anon_sym_keyset] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_abstract] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2343), + [sym_final_modifier] = ACTIONS(2341), + [sym_xhp_modifier] = ACTIONS(2341), + [sym_xhp_identifier] = ACTIONS(2341), + [sym_xhp_class_identifier] = ACTIONS(2343), [sym_comment] = ACTIONS(3), }, - [1387] = { - [sym_identifier] = ACTIONS(2441), - [sym_variable] = ACTIONS(2443), - [sym_pipe_variable] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_newtype] = ACTIONS(2441), - [anon_sym_shape] = ACTIONS(2441), - [anon_sym_tuple] = ACTIONS(2441), - [anon_sym_clone] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_LT] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2441), - [anon_sym_echo] = ACTIONS(2441), - [anon_sym_unset] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_concurrent] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_elseif] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2441), - [anon_sym_foreach] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_using] = ACTIONS(2441), - [sym_float] = ACTIONS(2443), - [sym_integer] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_True] = ACTIONS(2441), - [anon_sym_TRUE] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [anon_sym_False] = ACTIONS(2441), - [anon_sym_FALSE] = ACTIONS(2441), - [anon_sym_null] = ACTIONS(2441), - [anon_sym_Null] = ACTIONS(2441), - [anon_sym_NULL] = ACTIONS(2441), - [sym_string] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_array] = ACTIONS(2441), - [anon_sym_varray] = ACTIONS(2441), - [anon_sym_darray] = ACTIONS(2441), - [anon_sym_vec] = ACTIONS(2441), - [anon_sym_dict] = ACTIONS(2441), - [anon_sym_keyset] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_interface] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_abstract] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2443), - [sym_final_modifier] = ACTIONS(2441), - [sym_xhp_modifier] = ACTIONS(2441), - [sym_xhp_identifier] = ACTIONS(2441), - [sym_xhp_class_identifier] = ACTIONS(2443), + [1331] = { + [sym_identifier] = ACTIONS(2313), + [sym_variable] = ACTIONS(2315), + [sym_pipe_variable] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_newtype] = ACTIONS(2313), + [anon_sym_shape] = ACTIONS(2313), + [anon_sym_tuple] = ACTIONS(2313), + [anon_sym_clone] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_print] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_include] = ACTIONS(2313), + [anon_sym_include_once] = ACTIONS(2313), + [anon_sym_require] = ACTIONS(2313), + [anon_sym_require_once] = ACTIONS(2313), + [anon_sym_BSLASH] = ACTIONS(2315), + [anon_sym_self] = ACTIONS(2313), + [anon_sym_parent] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_LT_LT] = ACTIONS(2313), + [anon_sym_LT_LT_LT] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_echo] = ACTIONS(2313), + [anon_sym_unset] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_concurrent] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_case] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2313), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [sym_float] = ACTIONS(2315), + [sym_integer] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_True] = ACTIONS(2313), + [anon_sym_TRUE] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_False] = ACTIONS(2313), + [anon_sym_FALSE] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [anon_sym_Null] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [sym_string] = ACTIONS(2315), + [anon_sym_AT] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_array] = ACTIONS(2313), + [anon_sym_varray] = ACTIONS(2313), + [anon_sym_darray] = ACTIONS(2313), + [anon_sym_vec] = ACTIONS(2313), + [anon_sym_dict] = ACTIONS(2313), + [anon_sym_keyset] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2315), + [sym_final_modifier] = ACTIONS(2313), + [sym_xhp_modifier] = ACTIONS(2313), + [sym_xhp_identifier] = ACTIONS(2313), + [sym_xhp_class_identifier] = ACTIONS(2315), [sym_comment] = ACTIONS(3), }, - [1388] = { - [sym_identifier] = ACTIONS(2561), - [sym_variable] = ACTIONS(2563), - [sym_pipe_variable] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_newtype] = ACTIONS(2561), - [anon_sym_shape] = ACTIONS(2561), - [anon_sym_tuple] = ACTIONS(2561), - [anon_sym_clone] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_print] = ACTIONS(2561), - [anon_sym_namespace] = ACTIONS(2561), - [anon_sym_include] = ACTIONS(2561), - [anon_sym_include_once] = ACTIONS(2561), - [anon_sym_require] = ACTIONS(2561), - [anon_sym_require_once] = ACTIONS(2561), - [anon_sym_BSLASH] = ACTIONS(2563), - [anon_sym_self] = ACTIONS(2561), - [anon_sym_parent] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2561), - [anon_sym_LT_LT] = ACTIONS(2561), - [anon_sym_LT_LT_LT] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_echo] = ACTIONS(2561), - [anon_sym_unset] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_concurrent] = ACTIONS(2561), - [anon_sym_use] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_elseif] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_switch] = ACTIONS(2561), - [anon_sym_foreach] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(2561), - [sym_float] = ACTIONS(2563), - [sym_integer] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2561), - [anon_sym_True] = ACTIONS(2561), - [anon_sym_TRUE] = ACTIONS(2561), - [anon_sym_false] = ACTIONS(2561), - [anon_sym_False] = ACTIONS(2561), - [anon_sym_FALSE] = ACTIONS(2561), - [anon_sym_null] = ACTIONS(2561), - [anon_sym_Null] = ACTIONS(2561), - [anon_sym_NULL] = ACTIONS(2561), - [sym_string] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_array] = ACTIONS(2561), - [anon_sym_varray] = ACTIONS(2561), - [anon_sym_darray] = ACTIONS(2561), - [anon_sym_vec] = ACTIONS(2561), - [anon_sym_dict] = ACTIONS(2561), - [anon_sym_keyset] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_list] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_await] = ACTIONS(2561), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_trait] = ACTIONS(2561), - [anon_sym_interface] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2561), - [anon_sym_abstract] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2563), - [sym_final_modifier] = ACTIONS(2561), - [sym_xhp_modifier] = ACTIONS(2561), - [sym_xhp_identifier] = ACTIONS(2561), - [sym_xhp_class_identifier] = ACTIONS(2563), + [1332] = { + [sym_identifier] = ACTIONS(2293), + [sym_variable] = ACTIONS(2295), + [sym_pipe_variable] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_newtype] = ACTIONS(2293), + [anon_sym_shape] = ACTIONS(2293), + [anon_sym_tuple] = ACTIONS(2293), + [anon_sym_clone] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_include] = ACTIONS(2293), + [anon_sym_include_once] = ACTIONS(2293), + [anon_sym_require] = ACTIONS(2293), + [anon_sym_require_once] = ACTIONS(2293), + [anon_sym_BSLASH] = ACTIONS(2295), + [anon_sym_self] = ACTIONS(2293), + [anon_sym_parent] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_LT_LT] = ACTIONS(2293), + [anon_sym_LT_LT_LT] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_echo] = ACTIONS(2293), + [anon_sym_unset] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_concurrent] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_case] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_foreach] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_using] = ACTIONS(2293), + [sym_float] = ACTIONS(2295), + [sym_integer] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_True] = ACTIONS(2293), + [anon_sym_TRUE] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_False] = ACTIONS(2293), + [anon_sym_FALSE] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [anon_sym_Null] = ACTIONS(2293), + [anon_sym_NULL] = ACTIONS(2293), + [sym_string] = ACTIONS(2295), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_array] = ACTIONS(2293), + [anon_sym_varray] = ACTIONS(2293), + [anon_sym_darray] = ACTIONS(2293), + [anon_sym_vec] = ACTIONS(2293), + [anon_sym_dict] = ACTIONS(2293), + [anon_sym_keyset] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2295), + [sym_final_modifier] = ACTIONS(2293), + [sym_xhp_modifier] = ACTIONS(2293), + [sym_xhp_identifier] = ACTIONS(2293), + [sym_xhp_class_identifier] = ACTIONS(2295), [sym_comment] = ACTIONS(3), }, - [1389] = { + [1333] = { + [sym_identifier] = ACTIONS(2373), + [sym_variable] = ACTIONS(2375), + [sym_pipe_variable] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_newtype] = ACTIONS(2373), + [anon_sym_shape] = ACTIONS(2373), + [anon_sym_tuple] = ACTIONS(2373), + [anon_sym_clone] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_print] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_include] = ACTIONS(2373), + [anon_sym_include_once] = ACTIONS(2373), + [anon_sym_require] = ACTIONS(2373), + [anon_sym_require_once] = ACTIONS(2373), + [anon_sym_BSLASH] = ACTIONS(2375), + [anon_sym_self] = ACTIONS(2373), + [anon_sym_parent] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_LT_LT_LT] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_echo] = ACTIONS(2373), + [anon_sym_unset] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_concurrent] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_foreach] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [sym_float] = ACTIONS(2375), + [sym_integer] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_True] = ACTIONS(2373), + [anon_sym_TRUE] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_False] = ACTIONS(2373), + [anon_sym_FALSE] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_Null] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [sym_string] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_array] = ACTIONS(2373), + [anon_sym_varray] = ACTIONS(2373), + [anon_sym_darray] = ACTIONS(2373), + [anon_sym_vec] = ACTIONS(2373), + [anon_sym_dict] = ACTIONS(2373), + [anon_sym_keyset] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_list] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_abstract] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2375), + [sym_final_modifier] = ACTIONS(2373), + [sym_xhp_modifier] = ACTIONS(2373), + [sym_xhp_identifier] = ACTIONS(2373), + [sym_xhp_class_identifier] = ACTIONS(2375), + [sym_comment] = ACTIONS(3), + }, + [1334] = { [sym_identifier] = ACTIONS(2097), [sym_variable] = ACTIONS(2099), [sym_pipe_variable] = ACTIONS(2099), @@ -165022,9 +153756,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2097), [anon_sym_const] = ACTIONS(2097), [anon_sym_if] = ACTIONS(2097), - [anon_sym_elseif] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), [anon_sym_foreach] = ACTIONS(2097), [anon_sym_while] = ACTIONS(2097), [anon_sym_do] = ACTIONS(2097), @@ -165073,271 +153807,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2099), [sym_comment] = ACTIONS(3), }, - [1390] = { - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_elseif] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), + [1335] = { + [sym_identifier] = ACTIONS(2113), + [sym_variable] = ACTIONS(2115), + [sym_pipe_variable] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_newtype] = ACTIONS(2113), + [anon_sym_shape] = ACTIONS(2113), + [anon_sym_tuple] = ACTIONS(2113), + [anon_sym_clone] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_print] = ACTIONS(2113), + [anon_sym_namespace] = ACTIONS(2113), + [anon_sym_include] = ACTIONS(2113), + [anon_sym_include_once] = ACTIONS(2113), + [anon_sym_require] = ACTIONS(2113), + [anon_sym_require_once] = ACTIONS(2113), + [anon_sym_BSLASH] = ACTIONS(2115), + [anon_sym_self] = ACTIONS(2113), + [anon_sym_parent] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_LT_LT] = ACTIONS(2113), + [anon_sym_LT_LT_LT] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_throw] = ACTIONS(2113), + [anon_sym_echo] = ACTIONS(2113), + [anon_sym_unset] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_concurrent] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_elseif] = ACTIONS(2113), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_switch] = ACTIONS(2113), + [anon_sym_foreach] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_using] = ACTIONS(2113), + [sym_float] = ACTIONS(2115), + [sym_integer] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_True] = ACTIONS(2113), + [anon_sym_TRUE] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_False] = ACTIONS(2113), + [anon_sym_FALSE] = ACTIONS(2113), + [anon_sym_null] = ACTIONS(2113), + [anon_sym_Null] = ACTIONS(2113), + [anon_sym_NULL] = ACTIONS(2113), + [sym_string] = ACTIONS(2115), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_array] = ACTIONS(2113), + [anon_sym_varray] = ACTIONS(2113), + [anon_sym_darray] = ACTIONS(2113), + [anon_sym_vec] = ACTIONS(2113), + [anon_sym_dict] = ACTIONS(2113), + [anon_sym_keyset] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_interface] = ACTIONS(2113), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_abstract] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2115), + [sym_final_modifier] = ACTIONS(2113), + [sym_xhp_modifier] = ACTIONS(2113), + [sym_xhp_identifier] = ACTIONS(2113), + [sym_xhp_class_identifier] = ACTIONS(2115), [sym_comment] = ACTIONS(3), }, - [1391] = { - [sym_identifier] = ACTIONS(2445), - [sym_variable] = ACTIONS(2447), - [sym_pipe_variable] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_newtype] = ACTIONS(2445), - [anon_sym_shape] = ACTIONS(2445), - [anon_sym_tuple] = ACTIONS(2445), - [anon_sym_clone] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_print] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_LT_LT_LT] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_echo] = ACTIONS(2445), - [anon_sym_unset] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_concurrent] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_elseif] = ACTIONS(2445), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_foreach] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [sym_float] = ACTIONS(2447), - [sym_integer] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_True] = ACTIONS(2445), - [anon_sym_TRUE] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [anon_sym_False] = ACTIONS(2445), - [anon_sym_FALSE] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(2445), - [anon_sym_Null] = ACTIONS(2445), - [anon_sym_NULL] = ACTIONS(2445), - [sym_string] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_array] = ACTIONS(2445), - [anon_sym_varray] = ACTIONS(2445), - [anon_sym_darray] = ACTIONS(2445), - [anon_sym_vec] = ACTIONS(2445), - [anon_sym_dict] = ACTIONS(2445), - [anon_sym_keyset] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_abstract] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2447), - [sym_final_modifier] = ACTIONS(2445), - [sym_xhp_modifier] = ACTIONS(2445), - [sym_xhp_identifier] = ACTIONS(2445), - [sym_xhp_class_identifier] = ACTIONS(2447), + [1336] = { + [sym_identifier] = ACTIONS(2117), + [sym_variable] = ACTIONS(2119), + [sym_pipe_variable] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_newtype] = ACTIONS(2117), + [anon_sym_shape] = ACTIONS(2117), + [anon_sym_tuple] = ACTIONS(2117), + [anon_sym_clone] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_print] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_include] = ACTIONS(2117), + [anon_sym_include_once] = ACTIONS(2117), + [anon_sym_require] = ACTIONS(2117), + [anon_sym_require_once] = ACTIONS(2117), + [anon_sym_BSLASH] = ACTIONS(2119), + [anon_sym_self] = ACTIONS(2117), + [anon_sym_parent] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_LT_LT] = ACTIONS(2117), + [anon_sym_LT_LT_LT] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_echo] = ACTIONS(2117), + [anon_sym_unset] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_concurrent] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_elseif] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_foreach] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_using] = ACTIONS(2117), + [sym_float] = ACTIONS(2119), + [sym_integer] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_True] = ACTIONS(2117), + [anon_sym_TRUE] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_False] = ACTIONS(2117), + [anon_sym_FALSE] = ACTIONS(2117), + [anon_sym_null] = ACTIONS(2117), + [anon_sym_Null] = ACTIONS(2117), + [anon_sym_NULL] = ACTIONS(2117), + [sym_string] = ACTIONS(2119), + [anon_sym_AT] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_array] = ACTIONS(2117), + [anon_sym_varray] = ACTIONS(2117), + [anon_sym_darray] = ACTIONS(2117), + [anon_sym_vec] = ACTIONS(2117), + [anon_sym_dict] = ACTIONS(2117), + [anon_sym_keyset] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_list] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2119), + [sym_final_modifier] = ACTIONS(2117), + [sym_xhp_modifier] = ACTIONS(2117), + [sym_xhp_identifier] = ACTIONS(2117), + [sym_xhp_class_identifier] = ACTIONS(2119), [sym_comment] = ACTIONS(3), }, - [1392] = { - [sym_identifier] = ACTIONS(2237), - [sym_variable] = ACTIONS(2239), - [sym_pipe_variable] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_newtype] = ACTIONS(2237), - [anon_sym_shape] = ACTIONS(2237), - [anon_sym_tuple] = ACTIONS(2237), - [anon_sym_clone] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_print] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_LT_LT_LT] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_echo] = ACTIONS(2237), - [anon_sym_unset] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_concurrent] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_foreach] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [sym_float] = ACTIONS(2239), - [sym_integer] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_True] = ACTIONS(2237), - [anon_sym_TRUE] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_False] = ACTIONS(2237), - [anon_sym_FALSE] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [anon_sym_Null] = ACTIONS(2237), - [anon_sym_NULL] = ACTIONS(2237), - [sym_string] = ACTIONS(2239), - [anon_sym_AT] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_array] = ACTIONS(2237), - [anon_sym_varray] = ACTIONS(2237), - [anon_sym_darray] = ACTIONS(2237), - [anon_sym_vec] = ACTIONS(2237), - [anon_sym_dict] = ACTIONS(2237), - [anon_sym_keyset] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2239), - [sym_final_modifier] = ACTIONS(2237), - [sym_xhp_modifier] = ACTIONS(2237), - [sym_xhp_identifier] = ACTIONS(2237), - [sym_xhp_class_identifier] = ACTIONS(2239), + [1337] = { + [sym_identifier] = ACTIONS(2101), + [sym_variable] = ACTIONS(2103), + [sym_pipe_variable] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_newtype] = ACTIONS(2101), + [anon_sym_shape] = ACTIONS(2101), + [anon_sym_tuple] = ACTIONS(2101), + [anon_sym_clone] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2101), + [anon_sym_namespace] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_include_once] = ACTIONS(2101), + [anon_sym_require] = ACTIONS(2101), + [anon_sym_require_once] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2103), + [anon_sym_self] = ACTIONS(2101), + [anon_sym_parent] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_LT_LT_LT] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(2101), + [anon_sym_echo] = ACTIONS(2101), + [anon_sym_unset] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_concurrent] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_function] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_switch] = ACTIONS(2101), + [anon_sym_case] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(2101), + [anon_sym_foreach] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_using] = ACTIONS(2101), + [sym_float] = ACTIONS(2103), + [sym_integer] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_True] = ACTIONS(2101), + [anon_sym_TRUE] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_False] = ACTIONS(2101), + [anon_sym_FALSE] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [anon_sym_Null] = ACTIONS(2101), + [anon_sym_NULL] = ACTIONS(2101), + [sym_string] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_array] = ACTIONS(2101), + [anon_sym_varray] = ACTIONS(2101), + [anon_sym_darray] = ACTIONS(2101), + [anon_sym_vec] = ACTIONS(2101), + [anon_sym_dict] = ACTIONS(2101), + [anon_sym_keyset] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_list] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_interface] = ACTIONS(2101), + [anon_sym_class] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_abstract] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2103), + [sym_final_modifier] = ACTIONS(2101), + [sym_xhp_modifier] = ACTIONS(2101), + [sym_xhp_identifier] = ACTIONS(2101), + [sym_xhp_class_identifier] = ACTIONS(2103), [sym_comment] = ACTIONS(3), }, - [1393] = { + [1338] = { [sym_identifier] = ACTIONS(2105), [sym_variable] = ACTIONS(2107), [sym_pipe_variable] = ACTIONS(2107), @@ -165374,9 +154108,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2105), [anon_sym_const] = ACTIONS(2105), [anon_sym_if] = ACTIONS(2105), - [anon_sym_elseif] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), [anon_sym_switch] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), [anon_sym_foreach] = ACTIONS(2105), [anon_sym_while] = ACTIONS(2105), [anon_sym_do] = ACTIONS(2105), @@ -165425,7 +154159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2107), [sym_comment] = ACTIONS(3), }, - [1394] = { + [1339] = { [sym_identifier] = ACTIONS(2109), [sym_variable] = ACTIONS(2111), [sym_pipe_variable] = ACTIONS(2111), @@ -165462,9 +154196,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2109), [anon_sym_const] = ACTIONS(2109), [anon_sym_if] = ACTIONS(2109), - [anon_sym_elseif] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), [anon_sym_switch] = ACTIONS(2109), + [anon_sym_case] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), [anon_sym_foreach] = ACTIONS(2109), [anon_sym_while] = ACTIONS(2109), [anon_sym_do] = ACTIONS(2109), @@ -165513,7 +154247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2111), [sym_comment] = ACTIONS(3), }, - [1395] = { + [1340] = { [sym_identifier] = ACTIONS(2113), [sym_variable] = ACTIONS(2115), [sym_pipe_variable] = ACTIONS(2115), @@ -165550,9 +154284,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2113), [anon_sym_const] = ACTIONS(2113), [anon_sym_if] = ACTIONS(2113), - [anon_sym_elseif] = ACTIONS(2113), - [anon_sym_else] = ACTIONS(2113), [anon_sym_switch] = ACTIONS(2113), + [anon_sym_case] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), [anon_sym_foreach] = ACTIONS(2113), [anon_sym_while] = ACTIONS(2113), [anon_sym_do] = ACTIONS(2113), @@ -165564,132 +154298,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(2113), [anon_sym_True] = ACTIONS(2113), [anon_sym_TRUE] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_False] = ACTIONS(2113), - [anon_sym_FALSE] = ACTIONS(2113), - [anon_sym_null] = ACTIONS(2113), - [anon_sym_Null] = ACTIONS(2113), - [anon_sym_NULL] = ACTIONS(2113), - [sym_string] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_array] = ACTIONS(2113), - [anon_sym_varray] = ACTIONS(2113), - [anon_sym_darray] = ACTIONS(2113), - [anon_sym_vec] = ACTIONS(2113), - [anon_sym_dict] = ACTIONS(2113), - [anon_sym_keyset] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_interface] = ACTIONS(2113), - [anon_sym_class] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_abstract] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(2115), - [sym_final_modifier] = ACTIONS(2113), - [sym_xhp_modifier] = ACTIONS(2113), - [sym_xhp_identifier] = ACTIONS(2113), - [sym_xhp_class_identifier] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - }, - [1396] = { - [sym_identifier] = ACTIONS(2549), - [sym_variable] = ACTIONS(2551), - [sym_pipe_variable] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_newtype] = ACTIONS(2549), - [anon_sym_shape] = ACTIONS(2549), - [anon_sym_tuple] = ACTIONS(2549), - [anon_sym_clone] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_print] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), - [anon_sym_LT_LT_LT] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_echo] = ACTIONS(2549), - [anon_sym_unset] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_concurrent] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_elseif] = ACTIONS(2549), - [anon_sym_else] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_foreach] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [sym_float] = ACTIONS(2551), - [sym_integer] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_True] = ACTIONS(2549), - [anon_sym_TRUE] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_False] = ACTIONS(2549), - [anon_sym_FALSE] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2549), - [anon_sym_Null] = ACTIONS(2549), - [anon_sym_NULL] = ACTIONS(2549), - [sym_string] = ACTIONS(2551), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_array] = ACTIONS(2549), - [anon_sym_varray] = ACTIONS(2549), - [anon_sym_darray] = ACTIONS(2549), - [anon_sym_vec] = ACTIONS(2549), - [anon_sym_dict] = ACTIONS(2549), - [anon_sym_keyset] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2551), - [sym_final_modifier] = ACTIONS(2549), - [sym_xhp_modifier] = ACTIONS(2549), - [sym_xhp_identifier] = ACTIONS(2549), - [sym_xhp_class_identifier] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_False] = ACTIONS(2113), + [anon_sym_FALSE] = ACTIONS(2113), + [anon_sym_null] = ACTIONS(2113), + [anon_sym_Null] = ACTIONS(2113), + [anon_sym_NULL] = ACTIONS(2113), + [sym_string] = ACTIONS(2115), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_array] = ACTIONS(2113), + [anon_sym_varray] = ACTIONS(2113), + [anon_sym_darray] = ACTIONS(2113), + [anon_sym_vec] = ACTIONS(2113), + [anon_sym_dict] = ACTIONS(2113), + [anon_sym_keyset] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_interface] = ACTIONS(2113), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_abstract] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2115), + [sym_final_modifier] = ACTIONS(2113), + [sym_xhp_modifier] = ACTIONS(2113), + [sym_xhp_identifier] = ACTIONS(2113), + [sym_xhp_class_identifier] = ACTIONS(2115), [sym_comment] = ACTIONS(3), }, - [1397] = { + [1341] = { [sym_identifier] = ACTIONS(2117), [sym_variable] = ACTIONS(2119), [sym_pipe_variable] = ACTIONS(2119), @@ -165726,9 +154372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2117), [anon_sym_const] = ACTIONS(2117), [anon_sym_if] = ACTIONS(2117), - [anon_sym_elseif] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), [anon_sym_switch] = ACTIONS(2117), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), [anon_sym_foreach] = ACTIONS(2117), [anon_sym_while] = ACTIONS(2117), [anon_sym_do] = ACTIONS(2117), @@ -165777,7 +154423,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2119), [sym_comment] = ACTIONS(3), }, - [1398] = { + [1342] = { + [sym_identifier] = ACTIONS(2121), + [sym_variable] = ACTIONS(2123), + [sym_pipe_variable] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_newtype] = ACTIONS(2121), + [anon_sym_shape] = ACTIONS(2121), + [anon_sym_tuple] = ACTIONS(2121), + [anon_sym_clone] = ACTIONS(2121), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_print] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_include] = ACTIONS(2121), + [anon_sym_include_once] = ACTIONS(2121), + [anon_sym_require] = ACTIONS(2121), + [anon_sym_require_once] = ACTIONS(2121), + [anon_sym_BSLASH] = ACTIONS(2123), + [anon_sym_self] = ACTIONS(2121), + [anon_sym_parent] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(2121), + [anon_sym_LT_LT_LT] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_echo] = ACTIONS(2121), + [anon_sym_unset] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_concurrent] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_case] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_foreach] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_using] = ACTIONS(2121), + [sym_float] = ACTIONS(2123), + [sym_integer] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_True] = ACTIONS(2121), + [anon_sym_TRUE] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_False] = ACTIONS(2121), + [anon_sym_FALSE] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_Null] = ACTIONS(2121), + [anon_sym_NULL] = ACTIONS(2121), + [sym_string] = ACTIONS(2123), + [anon_sym_AT] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_array] = ACTIONS(2121), + [anon_sym_varray] = ACTIONS(2121), + [anon_sym_darray] = ACTIONS(2121), + [anon_sym_vec] = ACTIONS(2121), + [anon_sym_dict] = ACTIONS(2121), + [anon_sym_keyset] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_list] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_await] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2123), + [sym_final_modifier] = ACTIONS(2121), + [sym_xhp_modifier] = ACTIONS(2121), + [sym_xhp_identifier] = ACTIONS(2121), + [sym_xhp_class_identifier] = ACTIONS(2123), + [sym_comment] = ACTIONS(3), + }, + [1343] = { + [sym_identifier] = ACTIONS(2125), + [sym_variable] = ACTIONS(2127), + [sym_pipe_variable] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_newtype] = ACTIONS(2125), + [anon_sym_shape] = ACTIONS(2125), + [anon_sym_tuple] = ACTIONS(2125), + [anon_sym_clone] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_print] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_include] = ACTIONS(2125), + [anon_sym_include_once] = ACTIONS(2125), + [anon_sym_require] = ACTIONS(2125), + [anon_sym_require_once] = ACTIONS(2125), + [anon_sym_BSLASH] = ACTIONS(2127), + [anon_sym_self] = ACTIONS(2125), + [anon_sym_parent] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_LT_LT_LT] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_echo] = ACTIONS(2125), + [anon_sym_unset] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_concurrent] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_foreach] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [sym_float] = ACTIONS(2127), + [sym_integer] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_True] = ACTIONS(2125), + [anon_sym_TRUE] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_False] = ACTIONS(2125), + [anon_sym_FALSE] = ACTIONS(2125), + [anon_sym_null] = ACTIONS(2125), + [anon_sym_Null] = ACTIONS(2125), + [anon_sym_NULL] = ACTIONS(2125), + [sym_string] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_array] = ACTIONS(2125), + [anon_sym_varray] = ACTIONS(2125), + [anon_sym_darray] = ACTIONS(2125), + [anon_sym_vec] = ACTIONS(2125), + [anon_sym_dict] = ACTIONS(2125), + [anon_sym_keyset] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_list] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2127), + [sym_final_modifier] = ACTIONS(2125), + [sym_xhp_modifier] = ACTIONS(2125), + [sym_xhp_identifier] = ACTIONS(2125), + [sym_xhp_class_identifier] = ACTIONS(2127), + [sym_comment] = ACTIONS(3), + }, + [1344] = { + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_elseif] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), + [sym_comment] = ACTIONS(3), + }, + [1345] = { + [sym_identifier] = ACTIONS(2129), + [sym_variable] = ACTIONS(2131), + [sym_pipe_variable] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_newtype] = ACTIONS(2129), + [anon_sym_shape] = ACTIONS(2129), + [anon_sym_tuple] = ACTIONS(2129), + [anon_sym_clone] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_print] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_include] = ACTIONS(2129), + [anon_sym_include_once] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2129), + [anon_sym_require_once] = ACTIONS(2129), + [anon_sym_BSLASH] = ACTIONS(2131), + [anon_sym_self] = ACTIONS(2129), + [anon_sym_parent] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2129), + [anon_sym_LT_LT_LT] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_echo] = ACTIONS(2129), + [anon_sym_unset] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_concurrent] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_foreach] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [sym_float] = ACTIONS(2131), + [sym_integer] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_True] = ACTIONS(2129), + [anon_sym_TRUE] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_False] = ACTIONS(2129), + [anon_sym_FALSE] = ACTIONS(2129), + [anon_sym_null] = ACTIONS(2129), + [anon_sym_Null] = ACTIONS(2129), + [anon_sym_NULL] = ACTIONS(2129), + [sym_string] = ACTIONS(2131), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_array] = ACTIONS(2129), + [anon_sym_varray] = ACTIONS(2129), + [anon_sym_darray] = ACTIONS(2129), + [anon_sym_vec] = ACTIONS(2129), + [anon_sym_dict] = ACTIONS(2129), + [anon_sym_keyset] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_list] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2131), + [sym_final_modifier] = ACTIONS(2129), + [sym_xhp_modifier] = ACTIONS(2129), + [sym_xhp_identifier] = ACTIONS(2129), + [sym_xhp_class_identifier] = ACTIONS(2131), + [sym_comment] = ACTIONS(3), + }, + [1346] = { + [sym_identifier] = ACTIONS(2121), + [sym_variable] = ACTIONS(2123), + [sym_pipe_variable] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_newtype] = ACTIONS(2121), + [anon_sym_shape] = ACTIONS(2121), + [anon_sym_tuple] = ACTIONS(2121), + [anon_sym_clone] = ACTIONS(2121), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_print] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_include] = ACTIONS(2121), + [anon_sym_include_once] = ACTIONS(2121), + [anon_sym_require] = ACTIONS(2121), + [anon_sym_require_once] = ACTIONS(2121), + [anon_sym_BSLASH] = ACTIONS(2123), + [anon_sym_self] = ACTIONS(2121), + [anon_sym_parent] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(2121), + [anon_sym_LT_LT_LT] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_echo] = ACTIONS(2121), + [anon_sym_unset] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_concurrent] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_elseif] = ACTIONS(2121), + [anon_sym_else] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_foreach] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_using] = ACTIONS(2121), + [sym_float] = ACTIONS(2123), + [sym_integer] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_True] = ACTIONS(2121), + [anon_sym_TRUE] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_False] = ACTIONS(2121), + [anon_sym_FALSE] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_Null] = ACTIONS(2121), + [anon_sym_NULL] = ACTIONS(2121), + [sym_string] = ACTIONS(2123), + [anon_sym_AT] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_array] = ACTIONS(2121), + [anon_sym_varray] = ACTIONS(2121), + [anon_sym_darray] = ACTIONS(2121), + [anon_sym_vec] = ACTIONS(2121), + [anon_sym_dict] = ACTIONS(2121), + [anon_sym_keyset] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_list] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_await] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2123), + [sym_final_modifier] = ACTIONS(2121), + [sym_xhp_modifier] = ACTIONS(2121), + [sym_xhp_identifier] = ACTIONS(2121), + [sym_xhp_class_identifier] = ACTIONS(2123), + [sym_comment] = ACTIONS(3), + }, + [1347] = { [sym_identifier] = ACTIONS(2125), [sym_variable] = ACTIONS(2127), [sym_pipe_variable] = ACTIONS(2127), @@ -165865,95 +154951,711 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2127), [sym_comment] = ACTIONS(3), }, - [1399] = { - [sym_identifier] = ACTIONS(2533), - [sym_variable] = ACTIONS(2535), - [sym_pipe_variable] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_newtype] = ACTIONS(2533), - [anon_sym_shape] = ACTIONS(2533), - [anon_sym_tuple] = ACTIONS(2533), - [anon_sym_clone] = ACTIONS(2533), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_print] = ACTIONS(2533), - [anon_sym_namespace] = ACTIONS(2533), - [anon_sym_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT_LT_LT] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_echo] = ACTIONS(2533), - [anon_sym_unset] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_concurrent] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_function] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_elseif] = ACTIONS(2533), - [anon_sym_else] = ACTIONS(2533), - [anon_sym_switch] = ACTIONS(2533), - [anon_sym_foreach] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_do] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [anon_sym_using] = ACTIONS(2533), - [sym_float] = ACTIONS(2535), - [sym_integer] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_True] = ACTIONS(2533), - [anon_sym_TRUE] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_False] = ACTIONS(2533), - [anon_sym_FALSE] = ACTIONS(2533), - [anon_sym_null] = ACTIONS(2533), - [anon_sym_Null] = ACTIONS(2533), - [anon_sym_NULL] = ACTIONS(2533), - [sym_string] = ACTIONS(2535), - [anon_sym_AT] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_array] = ACTIONS(2533), - [anon_sym_varray] = ACTIONS(2533), - [anon_sym_darray] = ACTIONS(2533), - [anon_sym_vec] = ACTIONS(2533), - [anon_sym_dict] = ACTIONS(2533), - [anon_sym_keyset] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_PLUS_PLUS] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2535), - [anon_sym_await] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_interface] = ACTIONS(2533), - [anon_sym_class] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_abstract] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2535), - [sym_final_modifier] = ACTIONS(2533), - [sym_xhp_modifier] = ACTIONS(2533), - [sym_xhp_identifier] = ACTIONS(2533), - [sym_xhp_class_identifier] = ACTIONS(2535), + [1348] = { + [sym_identifier] = ACTIONS(2133), + [sym_variable] = ACTIONS(2135), + [sym_pipe_variable] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_newtype] = ACTIONS(2133), + [anon_sym_shape] = ACTIONS(2133), + [anon_sym_tuple] = ACTIONS(2133), + [anon_sym_clone] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_namespace] = ACTIONS(2133), + [anon_sym_include] = ACTIONS(2133), + [anon_sym_include_once] = ACTIONS(2133), + [anon_sym_require] = ACTIONS(2133), + [anon_sym_require_once] = ACTIONS(2133), + [anon_sym_BSLASH] = ACTIONS(2135), + [anon_sym_self] = ACTIONS(2133), + [anon_sym_parent] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_LT_LT_LT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_throw] = ACTIONS(2133), + [anon_sym_echo] = ACTIONS(2133), + [anon_sym_unset] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_concurrent] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_function] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_case] = ACTIONS(2133), + [anon_sym_default] = ACTIONS(2133), + [anon_sym_foreach] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(2133), + [sym_float] = ACTIONS(2135), + [sym_integer] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_True] = ACTIONS(2133), + [anon_sym_TRUE] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_False] = ACTIONS(2133), + [anon_sym_FALSE] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [anon_sym_Null] = ACTIONS(2133), + [anon_sym_NULL] = ACTIONS(2133), + [sym_string] = ACTIONS(2135), + [anon_sym_AT] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_array] = ACTIONS(2133), + [anon_sym_varray] = ACTIONS(2133), + [anon_sym_darray] = ACTIONS(2133), + [anon_sym_vec] = ACTIONS(2133), + [anon_sym_dict] = ACTIONS(2133), + [anon_sym_keyset] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_class] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_abstract] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2135), + [sym_final_modifier] = ACTIONS(2133), + [sym_xhp_modifier] = ACTIONS(2133), + [sym_xhp_identifier] = ACTIONS(2133), + [sym_xhp_class_identifier] = ACTIONS(2135), + [sym_comment] = ACTIONS(3), + }, + [1349] = { + [sym_identifier] = ACTIONS(2137), + [sym_variable] = ACTIONS(2139), + [sym_pipe_variable] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_newtype] = ACTIONS(2137), + [anon_sym_shape] = ACTIONS(2137), + [anon_sym_tuple] = ACTIONS(2137), + [anon_sym_clone] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_include] = ACTIONS(2137), + [anon_sym_include_once] = ACTIONS(2137), + [anon_sym_require] = ACTIONS(2137), + [anon_sym_require_once] = ACTIONS(2137), + [anon_sym_BSLASH] = ACTIONS(2139), + [anon_sym_self] = ACTIONS(2137), + [anon_sym_parent] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2137), + [anon_sym_LT_LT_LT] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_echo] = ACTIONS(2137), + [anon_sym_unset] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_concurrent] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_case] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_foreach] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [sym_float] = ACTIONS(2139), + [sym_integer] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_True] = ACTIONS(2137), + [anon_sym_TRUE] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_False] = ACTIONS(2137), + [anon_sym_FALSE] = ACTIONS(2137), + [anon_sym_null] = ACTIONS(2137), + [anon_sym_Null] = ACTIONS(2137), + [anon_sym_NULL] = ACTIONS(2137), + [sym_string] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_array] = ACTIONS(2137), + [anon_sym_varray] = ACTIONS(2137), + [anon_sym_darray] = ACTIONS(2137), + [anon_sym_vec] = ACTIONS(2137), + [anon_sym_dict] = ACTIONS(2137), + [anon_sym_keyset] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_list] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2139), + [sym_final_modifier] = ACTIONS(2137), + [sym_xhp_modifier] = ACTIONS(2137), + [sym_xhp_identifier] = ACTIONS(2137), + [sym_xhp_class_identifier] = ACTIONS(2139), + [sym_comment] = ACTIONS(3), + }, + [1350] = { + [sym_identifier] = ACTIONS(2141), + [sym_variable] = ACTIONS(2143), + [sym_pipe_variable] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_newtype] = ACTIONS(2141), + [anon_sym_shape] = ACTIONS(2141), + [anon_sym_tuple] = ACTIONS(2141), + [anon_sym_clone] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_print] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_include_once] = ACTIONS(2141), + [anon_sym_require] = ACTIONS(2141), + [anon_sym_require_once] = ACTIONS(2141), + [anon_sym_BSLASH] = ACTIONS(2143), + [anon_sym_self] = ACTIONS(2141), + [anon_sym_parent] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2141), + [anon_sym_echo] = ACTIONS(2141), + [anon_sym_unset] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_concurrent] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_function] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_switch] = ACTIONS(2141), + [anon_sym_case] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_foreach] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_using] = ACTIONS(2141), + [sym_float] = ACTIONS(2143), + [sym_integer] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_True] = ACTIONS(2141), + [anon_sym_TRUE] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_False] = ACTIONS(2141), + [anon_sym_FALSE] = ACTIONS(2141), + [anon_sym_null] = ACTIONS(2141), + [anon_sym_Null] = ACTIONS(2141), + [anon_sym_NULL] = ACTIONS(2141), + [sym_string] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_array] = ACTIONS(2141), + [anon_sym_varray] = ACTIONS(2141), + [anon_sym_darray] = ACTIONS(2141), + [anon_sym_vec] = ACTIONS(2141), + [anon_sym_dict] = ACTIONS(2141), + [anon_sym_keyset] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_list] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2141), + [anon_sym_class] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2143), + [sym_final_modifier] = ACTIONS(2141), + [sym_xhp_modifier] = ACTIONS(2141), + [sym_xhp_identifier] = ACTIONS(2141), + [sym_xhp_class_identifier] = ACTIONS(2143), + [sym_comment] = ACTIONS(3), + }, + [1351] = { + [sym_identifier] = ACTIONS(2145), + [sym_variable] = ACTIONS(2147), + [sym_pipe_variable] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_newtype] = ACTIONS(2145), + [anon_sym_shape] = ACTIONS(2145), + [anon_sym_tuple] = ACTIONS(2145), + [anon_sym_clone] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_print] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_include] = ACTIONS(2145), + [anon_sym_include_once] = ACTIONS(2145), + [anon_sym_require] = ACTIONS(2145), + [anon_sym_require_once] = ACTIONS(2145), + [anon_sym_BSLASH] = ACTIONS(2147), + [anon_sym_self] = ACTIONS(2145), + [anon_sym_parent] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_LT_LT_LT] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_echo] = ACTIONS(2145), + [anon_sym_unset] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_concurrent] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_case] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_foreach] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [sym_float] = ACTIONS(2147), + [sym_integer] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_True] = ACTIONS(2145), + [anon_sym_TRUE] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_False] = ACTIONS(2145), + [anon_sym_FALSE] = ACTIONS(2145), + [anon_sym_null] = ACTIONS(2145), + [anon_sym_Null] = ACTIONS(2145), + [anon_sym_NULL] = ACTIONS(2145), + [sym_string] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_array] = ACTIONS(2145), + [anon_sym_varray] = ACTIONS(2145), + [anon_sym_darray] = ACTIONS(2145), + [anon_sym_vec] = ACTIONS(2145), + [anon_sym_dict] = ACTIONS(2145), + [anon_sym_keyset] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_list] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2147), + [sym_final_modifier] = ACTIONS(2145), + [sym_xhp_modifier] = ACTIONS(2145), + [sym_xhp_identifier] = ACTIONS(2145), + [sym_xhp_class_identifier] = ACTIONS(2147), + [sym_comment] = ACTIONS(3), + }, + [1352] = { + [sym_identifier] = ACTIONS(2149), + [sym_variable] = ACTIONS(2151), + [sym_pipe_variable] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_newtype] = ACTIONS(2149), + [anon_sym_shape] = ACTIONS(2149), + [anon_sym_tuple] = ACTIONS(2149), + [anon_sym_clone] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_print] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_include] = ACTIONS(2149), + [anon_sym_include_once] = ACTIONS(2149), + [anon_sym_require] = ACTIONS(2149), + [anon_sym_require_once] = ACTIONS(2149), + [anon_sym_BSLASH] = ACTIONS(2151), + [anon_sym_self] = ACTIONS(2149), + [anon_sym_parent] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_echo] = ACTIONS(2149), + [anon_sym_unset] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_concurrent] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_foreach] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [sym_float] = ACTIONS(2151), + [sym_integer] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_True] = ACTIONS(2149), + [anon_sym_TRUE] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_False] = ACTIONS(2149), + [anon_sym_FALSE] = ACTIONS(2149), + [anon_sym_null] = ACTIONS(2149), + [anon_sym_Null] = ACTIONS(2149), + [anon_sym_NULL] = ACTIONS(2149), + [sym_string] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_array] = ACTIONS(2149), + [anon_sym_varray] = ACTIONS(2149), + [anon_sym_darray] = ACTIONS(2149), + [anon_sym_vec] = ACTIONS(2149), + [anon_sym_dict] = ACTIONS(2149), + [anon_sym_keyset] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_list] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_abstract] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2151), + [sym_final_modifier] = ACTIONS(2149), + [sym_xhp_modifier] = ACTIONS(2149), + [sym_xhp_identifier] = ACTIONS(2149), + [sym_xhp_class_identifier] = ACTIONS(2151), + [sym_comment] = ACTIONS(3), + }, + [1353] = { + [sym_identifier] = ACTIONS(2153), + [sym_variable] = ACTIONS(2155), + [sym_pipe_variable] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_newtype] = ACTIONS(2153), + [anon_sym_shape] = ACTIONS(2153), + [anon_sym_tuple] = ACTIONS(2153), + [anon_sym_clone] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_print] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2153), + [anon_sym_include] = ACTIONS(2153), + [anon_sym_include_once] = ACTIONS(2153), + [anon_sym_require] = ACTIONS(2153), + [anon_sym_require_once] = ACTIONS(2153), + [anon_sym_BSLASH] = ACTIONS(2155), + [anon_sym_self] = ACTIONS(2153), + [anon_sym_parent] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_LT_LT_LT] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_throw] = ACTIONS(2153), + [anon_sym_echo] = ACTIONS(2153), + [anon_sym_unset] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_concurrent] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_function] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_switch] = ACTIONS(2153), + [anon_sym_case] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_foreach] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_do] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_using] = ACTIONS(2153), + [sym_float] = ACTIONS(2155), + [sym_integer] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_True] = ACTIONS(2153), + [anon_sym_TRUE] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_False] = ACTIONS(2153), + [anon_sym_FALSE] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(2153), + [anon_sym_Null] = ACTIONS(2153), + [anon_sym_NULL] = ACTIONS(2153), + [sym_string] = ACTIONS(2155), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_array] = ACTIONS(2153), + [anon_sym_varray] = ACTIONS(2153), + [anon_sym_darray] = ACTIONS(2153), + [anon_sym_vec] = ACTIONS(2153), + [anon_sym_dict] = ACTIONS(2153), + [anon_sym_keyset] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_list] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2153), + [anon_sym_class] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_abstract] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2155), + [sym_final_modifier] = ACTIONS(2153), + [sym_xhp_modifier] = ACTIONS(2153), + [sym_xhp_identifier] = ACTIONS(2153), + [sym_xhp_class_identifier] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + }, + [1354] = { + [sym_identifier] = ACTIONS(2157), + [sym_variable] = ACTIONS(2159), + [sym_pipe_variable] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_newtype] = ACTIONS(2157), + [anon_sym_shape] = ACTIONS(2157), + [anon_sym_tuple] = ACTIONS(2157), + [anon_sym_clone] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_print] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2157), + [anon_sym_include] = ACTIONS(2157), + [anon_sym_include_once] = ACTIONS(2157), + [anon_sym_require] = ACTIONS(2157), + [anon_sym_require_once] = ACTIONS(2157), + [anon_sym_BSLASH] = ACTIONS(2159), + [anon_sym_self] = ACTIONS(2157), + [anon_sym_parent] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_LT_LT] = ACTIONS(2157), + [anon_sym_LT_LT_LT] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_throw] = ACTIONS(2157), + [anon_sym_echo] = ACTIONS(2157), + [anon_sym_unset] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_concurrent] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_function] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(2157), + [anon_sym_case] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_foreach] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [sym_float] = ACTIONS(2159), + [sym_integer] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_True] = ACTIONS(2157), + [anon_sym_TRUE] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_False] = ACTIONS(2157), + [anon_sym_FALSE] = ACTIONS(2157), + [anon_sym_null] = ACTIONS(2157), + [anon_sym_Null] = ACTIONS(2157), + [anon_sym_NULL] = ACTIONS(2157), + [sym_string] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_array] = ACTIONS(2157), + [anon_sym_varray] = ACTIONS(2157), + [anon_sym_darray] = ACTIONS(2157), + [anon_sym_vec] = ACTIONS(2157), + [anon_sym_dict] = ACTIONS(2157), + [anon_sym_keyset] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_list] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_interface] = ACTIONS(2157), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_abstract] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2159), + [sym_final_modifier] = ACTIONS(2157), + [sym_xhp_modifier] = ACTIONS(2157), + [sym_xhp_identifier] = ACTIONS(2157), + [sym_xhp_class_identifier] = ACTIONS(2159), [sym_comment] = ACTIONS(3), }, - [1400] = { + [1355] = { + [sym_identifier] = ACTIONS(2161), + [sym_variable] = ACTIONS(2163), + [sym_pipe_variable] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_newtype] = ACTIONS(2161), + [anon_sym_shape] = ACTIONS(2161), + [anon_sym_tuple] = ACTIONS(2161), + [anon_sym_clone] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_include] = ACTIONS(2161), + [anon_sym_include_once] = ACTIONS(2161), + [anon_sym_require] = ACTIONS(2161), + [anon_sym_require_once] = ACTIONS(2161), + [anon_sym_BSLASH] = ACTIONS(2163), + [anon_sym_self] = ACTIONS(2161), + [anon_sym_parent] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_LT_LT_LT] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_echo] = ACTIONS(2161), + [anon_sym_unset] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_concurrent] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_case] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_foreach] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [sym_float] = ACTIONS(2163), + [sym_integer] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_True] = ACTIONS(2161), + [anon_sym_TRUE] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_False] = ACTIONS(2161), + [anon_sym_FALSE] = ACTIONS(2161), + [anon_sym_null] = ACTIONS(2161), + [anon_sym_Null] = ACTIONS(2161), + [anon_sym_NULL] = ACTIONS(2161), + [sym_string] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_array] = ACTIONS(2161), + [anon_sym_varray] = ACTIONS(2161), + [anon_sym_darray] = ACTIONS(2161), + [anon_sym_vec] = ACTIONS(2161), + [anon_sym_dict] = ACTIONS(2161), + [anon_sym_keyset] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_list] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2163), + [sym_final_modifier] = ACTIONS(2161), + [sym_xhp_modifier] = ACTIONS(2161), + [sym_xhp_identifier] = ACTIONS(2161), + [sym_xhp_class_identifier] = ACTIONS(2163), + [sym_comment] = ACTIONS(3), + }, + [1356] = { [sym_identifier] = ACTIONS(2129), [sym_variable] = ACTIONS(2131), [sym_pipe_variable] = ACTIONS(2131), @@ -166041,2466 +155743,2999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2131), [sym_comment] = ACTIONS(3), }, - [1401] = { - [sym_identifier] = ACTIONS(2517), - [sym_variable] = ACTIONS(2519), - [sym_pipe_variable] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_newtype] = ACTIONS(2517), - [anon_sym_shape] = ACTIONS(2517), - [anon_sym_tuple] = ACTIONS(2517), - [anon_sym_clone] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), - [anon_sym_LT_LT_LT] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_echo] = ACTIONS(2517), - [anon_sym_unset] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_concurrent] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_elseif] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_foreach] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [sym_float] = ACTIONS(2519), - [sym_integer] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_True] = ACTIONS(2517), - [anon_sym_TRUE] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_False] = ACTIONS(2517), - [anon_sym_FALSE] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [anon_sym_Null] = ACTIONS(2517), - [anon_sym_NULL] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_array] = ACTIONS(2517), - [anon_sym_varray] = ACTIONS(2517), - [anon_sym_darray] = ACTIONS(2517), - [anon_sym_vec] = ACTIONS(2517), - [anon_sym_dict] = ACTIONS(2517), - [anon_sym_keyset] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_trait] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2519), - [sym_final_modifier] = ACTIONS(2517), - [sym_xhp_modifier] = ACTIONS(2517), - [sym_xhp_identifier] = ACTIONS(2517), - [sym_xhp_class_identifier] = ACTIONS(2519), + [1357] = { + [sym_identifier] = ACTIONS(2133), + [sym_variable] = ACTIONS(2135), + [sym_pipe_variable] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_newtype] = ACTIONS(2133), + [anon_sym_shape] = ACTIONS(2133), + [anon_sym_tuple] = ACTIONS(2133), + [anon_sym_clone] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_namespace] = ACTIONS(2133), + [anon_sym_include] = ACTIONS(2133), + [anon_sym_include_once] = ACTIONS(2133), + [anon_sym_require] = ACTIONS(2133), + [anon_sym_require_once] = ACTIONS(2133), + [anon_sym_BSLASH] = ACTIONS(2135), + [anon_sym_self] = ACTIONS(2133), + [anon_sym_parent] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_LT_LT_LT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_throw] = ACTIONS(2133), + [anon_sym_echo] = ACTIONS(2133), + [anon_sym_unset] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_concurrent] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_function] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_elseif] = ACTIONS(2133), + [anon_sym_else] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_foreach] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(2133), + [sym_float] = ACTIONS(2135), + [sym_integer] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_True] = ACTIONS(2133), + [anon_sym_TRUE] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_False] = ACTIONS(2133), + [anon_sym_FALSE] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [anon_sym_Null] = ACTIONS(2133), + [anon_sym_NULL] = ACTIONS(2133), + [sym_string] = ACTIONS(2135), + [anon_sym_AT] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_array] = ACTIONS(2133), + [anon_sym_varray] = ACTIONS(2133), + [anon_sym_darray] = ACTIONS(2133), + [anon_sym_vec] = ACTIONS(2133), + [anon_sym_dict] = ACTIONS(2133), + [anon_sym_keyset] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_class] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_abstract] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2135), + [sym_final_modifier] = ACTIONS(2133), + [sym_xhp_modifier] = ACTIONS(2133), + [sym_xhp_identifier] = ACTIONS(2133), + [sym_xhp_class_identifier] = ACTIONS(2135), [sym_comment] = ACTIONS(3), }, - [1402] = { - [sym_identifier] = ACTIONS(2229), - [sym_variable] = ACTIONS(2231), - [sym_pipe_variable] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_newtype] = ACTIONS(2229), - [anon_sym_shape] = ACTIONS(2229), - [anon_sym_tuple] = ACTIONS(2229), - [anon_sym_clone] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_print] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_LT_LT_LT] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_echo] = ACTIONS(2229), - [anon_sym_unset] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_concurrent] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_case] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_foreach] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [sym_float] = ACTIONS(2231), - [sym_integer] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_True] = ACTIONS(2229), - [anon_sym_TRUE] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_False] = ACTIONS(2229), - [anon_sym_FALSE] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_Null] = ACTIONS(2229), - [anon_sym_NULL] = ACTIONS(2229), - [sym_string] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_array] = ACTIONS(2229), - [anon_sym_varray] = ACTIONS(2229), - [anon_sym_darray] = ACTIONS(2229), - [anon_sym_vec] = ACTIONS(2229), - [anon_sym_dict] = ACTIONS(2229), - [anon_sym_keyset] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2231), - [sym_final_modifier] = ACTIONS(2229), - [sym_xhp_modifier] = ACTIONS(2229), - [sym_xhp_identifier] = ACTIONS(2229), - [sym_xhp_class_identifier] = ACTIONS(2231), + [1358] = { + [sym_identifier] = ACTIONS(2165), + [sym_variable] = ACTIONS(2167), + [sym_pipe_variable] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_newtype] = ACTIONS(2165), + [anon_sym_shape] = ACTIONS(2165), + [anon_sym_tuple] = ACTIONS(2165), + [anon_sym_clone] = ACTIONS(2165), + [anon_sym_new] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_namespace] = ACTIONS(2165), + [anon_sym_include] = ACTIONS(2165), + [anon_sym_include_once] = ACTIONS(2165), + [anon_sym_require] = ACTIONS(2165), + [anon_sym_require_once] = ACTIONS(2165), + [anon_sym_BSLASH] = ACTIONS(2167), + [anon_sym_self] = ACTIONS(2165), + [anon_sym_parent] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(2165), + [anon_sym_LT_LT_LT] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_throw] = ACTIONS(2165), + [anon_sym_echo] = ACTIONS(2165), + [anon_sym_unset] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_concurrent] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_function] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_switch] = ACTIONS(2165), + [anon_sym_case] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_foreach] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_using] = ACTIONS(2165), + [sym_float] = ACTIONS(2167), + [sym_integer] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_True] = ACTIONS(2165), + [anon_sym_TRUE] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_False] = ACTIONS(2165), + [anon_sym_FALSE] = ACTIONS(2165), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_Null] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2165), + [sym_string] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_array] = ACTIONS(2165), + [anon_sym_varray] = ACTIONS(2165), + [anon_sym_darray] = ACTIONS(2165), + [anon_sym_vec] = ACTIONS(2165), + [anon_sym_dict] = ACTIONS(2165), + [anon_sym_keyset] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_list] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_interface] = ACTIONS(2165), + [anon_sym_class] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2167), + [sym_final_modifier] = ACTIONS(2165), + [sym_xhp_modifier] = ACTIONS(2165), + [sym_xhp_identifier] = ACTIONS(2165), + [sym_xhp_class_identifier] = ACTIONS(2167), [sym_comment] = ACTIONS(3), }, - [1403] = { - [sym_identifier] = ACTIONS(2513), - [sym_variable] = ACTIONS(2515), - [sym_pipe_variable] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_newtype] = ACTIONS(2513), - [anon_sym_shape] = ACTIONS(2513), - [anon_sym_tuple] = ACTIONS(2513), - [anon_sym_clone] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_LT_LT_LT] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_echo] = ACTIONS(2513), - [anon_sym_unset] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_concurrent] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_elseif] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_foreach] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [sym_float] = ACTIONS(2515), - [sym_integer] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_True] = ACTIONS(2513), - [anon_sym_TRUE] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [anon_sym_False] = ACTIONS(2513), - [anon_sym_FALSE] = ACTIONS(2513), - [anon_sym_null] = ACTIONS(2513), - [anon_sym_Null] = ACTIONS(2513), - [anon_sym_NULL] = ACTIONS(2513), - [sym_string] = ACTIONS(2515), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_array] = ACTIONS(2513), - [anon_sym_varray] = ACTIONS(2513), - [anon_sym_darray] = ACTIONS(2513), - [anon_sym_vec] = ACTIONS(2513), - [anon_sym_dict] = ACTIONS(2513), - [anon_sym_keyset] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_trait] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2515), - [sym_final_modifier] = ACTIONS(2513), - [sym_xhp_modifier] = ACTIONS(2513), - [sym_xhp_identifier] = ACTIONS(2513), - [sym_xhp_class_identifier] = ACTIONS(2515), + [1359] = { + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_elseif] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [1360] = { + [sym_identifier] = ACTIONS(2169), + [sym_variable] = ACTIONS(2171), + [sym_pipe_variable] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_newtype] = ACTIONS(2169), + [anon_sym_shape] = ACTIONS(2169), + [anon_sym_tuple] = ACTIONS(2169), + [anon_sym_clone] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_print] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2169), + [anon_sym_include] = ACTIONS(2169), + [anon_sym_include_once] = ACTIONS(2169), + [anon_sym_require] = ACTIONS(2169), + [anon_sym_require_once] = ACTIONS(2169), + [anon_sym_BSLASH] = ACTIONS(2171), + [anon_sym_self] = ACTIONS(2169), + [anon_sym_parent] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_LT_LT_LT] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_throw] = ACTIONS(2169), + [anon_sym_echo] = ACTIONS(2169), + [anon_sym_unset] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_concurrent] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_function] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_switch] = ACTIONS(2169), + [anon_sym_case] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2169), + [anon_sym_foreach] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_using] = ACTIONS(2169), + [sym_float] = ACTIONS(2171), + [sym_integer] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_True] = ACTIONS(2169), + [anon_sym_TRUE] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [anon_sym_False] = ACTIONS(2169), + [anon_sym_FALSE] = ACTIONS(2169), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_Null] = ACTIONS(2169), + [anon_sym_NULL] = ACTIONS(2169), + [sym_string] = ACTIONS(2171), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_array] = ACTIONS(2169), + [anon_sym_varray] = ACTIONS(2169), + [anon_sym_darray] = ACTIONS(2169), + [anon_sym_vec] = ACTIONS(2169), + [anon_sym_dict] = ACTIONS(2169), + [anon_sym_keyset] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2169), + [anon_sym_class] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_abstract] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2171), + [sym_final_modifier] = ACTIONS(2169), + [sym_xhp_modifier] = ACTIONS(2169), + [sym_xhp_identifier] = ACTIONS(2169), + [sym_xhp_class_identifier] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + }, + [1361] = { + [sym_identifier] = ACTIONS(2173), + [sym_variable] = ACTIONS(2175), + [sym_pipe_variable] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_newtype] = ACTIONS(2173), + [anon_sym_shape] = ACTIONS(2173), + [anon_sym_tuple] = ACTIONS(2173), + [anon_sym_clone] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_print] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_include] = ACTIONS(2173), + [anon_sym_include_once] = ACTIONS(2173), + [anon_sym_require] = ACTIONS(2173), + [anon_sym_require_once] = ACTIONS(2173), + [anon_sym_BSLASH] = ACTIONS(2175), + [anon_sym_self] = ACTIONS(2173), + [anon_sym_parent] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LT_LT_LT] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_echo] = ACTIONS(2173), + [anon_sym_unset] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_concurrent] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_case] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_foreach] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(2173), + [sym_float] = ACTIONS(2175), + [sym_integer] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_True] = ACTIONS(2173), + [anon_sym_TRUE] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_False] = ACTIONS(2173), + [anon_sym_FALSE] = ACTIONS(2173), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_Null] = ACTIONS(2173), + [anon_sym_NULL] = ACTIONS(2173), + [sym_string] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_array] = ACTIONS(2173), + [anon_sym_varray] = ACTIONS(2173), + [anon_sym_darray] = ACTIONS(2173), + [anon_sym_vec] = ACTIONS(2173), + [anon_sym_dict] = ACTIONS(2173), + [anon_sym_keyset] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_list] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2175), + [sym_final_modifier] = ACTIONS(2173), + [sym_xhp_modifier] = ACTIONS(2173), + [sym_xhp_identifier] = ACTIONS(2173), + [sym_xhp_class_identifier] = ACTIONS(2175), + [sym_comment] = ACTIONS(3), + }, + [1362] = { + [sym_identifier] = ACTIONS(2369), + [sym_variable] = ACTIONS(2371), + [sym_pipe_variable] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_newtype] = ACTIONS(2369), + [anon_sym_shape] = ACTIONS(2369), + [anon_sym_tuple] = ACTIONS(2369), + [anon_sym_clone] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_print] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_include] = ACTIONS(2369), + [anon_sym_include_once] = ACTIONS(2369), + [anon_sym_require] = ACTIONS(2369), + [anon_sym_require_once] = ACTIONS(2369), + [anon_sym_BSLASH] = ACTIONS(2371), + [anon_sym_self] = ACTIONS(2369), + [anon_sym_parent] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_LT_LT] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_echo] = ACTIONS(2369), + [anon_sym_unset] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_concurrent] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_function] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_elseif] = ACTIONS(2369), + [anon_sym_else] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_foreach] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [sym_float] = ACTIONS(2371), + [sym_integer] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_True] = ACTIONS(2369), + [anon_sym_TRUE] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_False] = ACTIONS(2369), + [anon_sym_FALSE] = ACTIONS(2369), + [anon_sym_null] = ACTIONS(2369), + [anon_sym_Null] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [sym_string] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_array] = ACTIONS(2369), + [anon_sym_varray] = ACTIONS(2369), + [anon_sym_darray] = ACTIONS(2369), + [anon_sym_vec] = ACTIONS(2369), + [anon_sym_dict] = ACTIONS(2369), + [anon_sym_keyset] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_list] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_interface] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_abstract] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2371), + [sym_final_modifier] = ACTIONS(2369), + [sym_xhp_modifier] = ACTIONS(2369), + [sym_xhp_identifier] = ACTIONS(2369), + [sym_xhp_class_identifier] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + }, + [1363] = { + [sym_identifier] = ACTIONS(2365), + [sym_variable] = ACTIONS(2367), + [sym_pipe_variable] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_newtype] = ACTIONS(2365), + [anon_sym_shape] = ACTIONS(2365), + [anon_sym_tuple] = ACTIONS(2365), + [anon_sym_clone] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_print] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_include] = ACTIONS(2365), + [anon_sym_include_once] = ACTIONS(2365), + [anon_sym_require] = ACTIONS(2365), + [anon_sym_require_once] = ACTIONS(2365), + [anon_sym_BSLASH] = ACTIONS(2367), + [anon_sym_self] = ACTIONS(2365), + [anon_sym_parent] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_LT_LT] = ACTIONS(2365), + [anon_sym_LT_LT_LT] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_echo] = ACTIONS(2365), + [anon_sym_unset] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_concurrent] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_elseif] = ACTIONS(2365), + [anon_sym_else] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_foreach] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [sym_float] = ACTIONS(2367), + [sym_integer] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_True] = ACTIONS(2365), + [anon_sym_TRUE] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_False] = ACTIONS(2365), + [anon_sym_FALSE] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [anon_sym_Null] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [sym_string] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_array] = ACTIONS(2365), + [anon_sym_varray] = ACTIONS(2365), + [anon_sym_darray] = ACTIONS(2365), + [anon_sym_vec] = ACTIONS(2365), + [anon_sym_dict] = ACTIONS(2365), + [anon_sym_keyset] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_list] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2367), + [sym_final_modifier] = ACTIONS(2365), + [sym_xhp_modifier] = ACTIONS(2365), + [sym_xhp_identifier] = ACTIONS(2365), + [sym_xhp_class_identifier] = ACTIONS(2367), [sym_comment] = ACTIONS(3), }, - [1404] = { - [sym_identifier] = ACTIONS(2057), - [sym_variable] = ACTIONS(2059), - [sym_pipe_variable] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_newtype] = ACTIONS(2057), - [anon_sym_shape] = ACTIONS(2057), - [anon_sym_tuple] = ACTIONS(2057), - [anon_sym_clone] = ACTIONS(2057), - [anon_sym_new] = ACTIONS(2057), - [anon_sym_print] = ACTIONS(2057), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_include] = ACTIONS(2057), - [anon_sym_include_once] = ACTIONS(2057), - [anon_sym_require] = ACTIONS(2057), - [anon_sym_require_once] = ACTIONS(2057), - [anon_sym_BSLASH] = ACTIONS(2059), - [anon_sym_self] = ACTIONS(2057), - [anon_sym_parent] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_LT_LT_LT] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_throw] = ACTIONS(2057), - [anon_sym_echo] = ACTIONS(2057), - [anon_sym_unset] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_concurrent] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_function] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_elseif] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_foreach] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_using] = ACTIONS(2057), - [sym_float] = ACTIONS(2059), - [sym_integer] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_True] = ACTIONS(2057), - [anon_sym_TRUE] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_False] = ACTIONS(2057), - [anon_sym_FALSE] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [anon_sym_Null] = ACTIONS(2057), - [anon_sym_NULL] = ACTIONS(2057), - [sym_string] = ACTIONS(2059), - [anon_sym_AT] = ACTIONS(2059), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_array] = ACTIONS(2057), - [anon_sym_varray] = ACTIONS(2057), - [anon_sym_darray] = ACTIONS(2057), - [anon_sym_vec] = ACTIONS(2057), - [anon_sym_dict] = ACTIONS(2057), - [anon_sym_keyset] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_list] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_interface] = ACTIONS(2057), - [anon_sym_class] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_abstract] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2059), - [sym_final_modifier] = ACTIONS(2057), - [sym_xhp_modifier] = ACTIONS(2057), - [sym_xhp_identifier] = ACTIONS(2057), - [sym_xhp_class_identifier] = ACTIONS(2059), + [1364] = { + [sym_identifier] = ACTIONS(2361), + [sym_variable] = ACTIONS(2363), + [sym_pipe_variable] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_newtype] = ACTIONS(2361), + [anon_sym_shape] = ACTIONS(2361), + [anon_sym_tuple] = ACTIONS(2361), + [anon_sym_clone] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_print] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_include] = ACTIONS(2361), + [anon_sym_include_once] = ACTIONS(2361), + [anon_sym_require] = ACTIONS(2361), + [anon_sym_require_once] = ACTIONS(2361), + [anon_sym_BSLASH] = ACTIONS(2363), + [anon_sym_self] = ACTIONS(2361), + [anon_sym_parent] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_LT_LT] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_echo] = ACTIONS(2361), + [anon_sym_unset] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_concurrent] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_elseif] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_foreach] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [sym_float] = ACTIONS(2363), + [sym_integer] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_True] = ACTIONS(2361), + [anon_sym_TRUE] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_False] = ACTIONS(2361), + [anon_sym_FALSE] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_Null] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [sym_string] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_array] = ACTIONS(2361), + [anon_sym_varray] = ACTIONS(2361), + [anon_sym_darray] = ACTIONS(2361), + [anon_sym_vec] = ACTIONS(2361), + [anon_sym_dict] = ACTIONS(2361), + [anon_sym_keyset] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_list] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_interface] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2363), + [sym_final_modifier] = ACTIONS(2361), + [sym_xhp_modifier] = ACTIONS(2361), + [sym_xhp_identifier] = ACTIONS(2361), + [sym_xhp_class_identifier] = ACTIONS(2363), [sym_comment] = ACTIONS(3), }, - [1405] = { - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_elseif] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), + [1365] = { + [sym_identifier] = ACTIONS(2353), + [sym_variable] = ACTIONS(2355), + [sym_pipe_variable] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_newtype] = ACTIONS(2353), + [anon_sym_shape] = ACTIONS(2353), + [anon_sym_tuple] = ACTIONS(2353), + [anon_sym_clone] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_print] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_include] = ACTIONS(2353), + [anon_sym_include_once] = ACTIONS(2353), + [anon_sym_require] = ACTIONS(2353), + [anon_sym_require_once] = ACTIONS(2353), + [anon_sym_BSLASH] = ACTIONS(2355), + [anon_sym_self] = ACTIONS(2353), + [anon_sym_parent] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_LT_LT] = ACTIONS(2353), + [anon_sym_LT_LT_LT] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_echo] = ACTIONS(2353), + [anon_sym_unset] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_concurrent] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_function] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_elseif] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_foreach] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [sym_float] = ACTIONS(2355), + [sym_integer] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_True] = ACTIONS(2353), + [anon_sym_TRUE] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_False] = ACTIONS(2353), + [anon_sym_FALSE] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_Null] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [sym_string] = ACTIONS(2355), + [anon_sym_AT] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_array] = ACTIONS(2353), + [anon_sym_varray] = ACTIONS(2353), + [anon_sym_darray] = ACTIONS(2353), + [anon_sym_vec] = ACTIONS(2353), + [anon_sym_dict] = ACTIONS(2353), + [anon_sym_keyset] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_list] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_interface] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_abstract] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2355), + [sym_final_modifier] = ACTIONS(2353), + [sym_xhp_modifier] = ACTIONS(2353), + [sym_xhp_identifier] = ACTIONS(2353), + [sym_xhp_class_identifier] = ACTIONS(2355), [sym_comment] = ACTIONS(3), }, - [1406] = { - [sym_identifier] = ACTIONS(2169), - [sym_variable] = ACTIONS(2171), - [sym_pipe_variable] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_newtype] = ACTIONS(2169), - [anon_sym_shape] = ACTIONS(2169), - [anon_sym_tuple] = ACTIONS(2169), - [anon_sym_clone] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2169), - [anon_sym_print] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2169), - [anon_sym_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_LT_LT_LT] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_throw] = ACTIONS(2169), - [anon_sym_echo] = ACTIONS(2169), - [anon_sym_unset] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_concurrent] = ACTIONS(2169), - [anon_sym_use] = ACTIONS(2169), - [anon_sym_function] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_elseif] = ACTIONS(2169), - [anon_sym_else] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [anon_sym_foreach] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2169), - [sym_float] = ACTIONS(2171), - [sym_integer] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_True] = ACTIONS(2169), - [anon_sym_TRUE] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [anon_sym_False] = ACTIONS(2169), - [anon_sym_FALSE] = ACTIONS(2169), - [anon_sym_null] = ACTIONS(2169), - [anon_sym_Null] = ACTIONS(2169), - [anon_sym_NULL] = ACTIONS(2169), - [sym_string] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_array] = ACTIONS(2169), - [anon_sym_varray] = ACTIONS(2169), - [anon_sym_darray] = ACTIONS(2169), - [anon_sym_vec] = ACTIONS(2169), - [anon_sym_dict] = ACTIONS(2169), - [anon_sym_keyset] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_trait] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_abstract] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2171), - [sym_final_modifier] = ACTIONS(2169), - [sym_xhp_modifier] = ACTIONS(2169), - [sym_xhp_identifier] = ACTIONS(2169), - [sym_xhp_class_identifier] = ACTIONS(2171), + [1366] = { + [sym_identifier] = ACTIONS(2349), + [sym_variable] = ACTIONS(2351), + [sym_pipe_variable] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_newtype] = ACTIONS(2349), + [anon_sym_shape] = ACTIONS(2349), + [anon_sym_tuple] = ACTIONS(2349), + [anon_sym_clone] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_print] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_include] = ACTIONS(2349), + [anon_sym_include_once] = ACTIONS(2349), + [anon_sym_require] = ACTIONS(2349), + [anon_sym_require_once] = ACTIONS(2349), + [anon_sym_BSLASH] = ACTIONS(2351), + [anon_sym_self] = ACTIONS(2349), + [anon_sym_parent] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_LT_LT] = ACTIONS(2349), + [anon_sym_LT_LT_LT] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_echo] = ACTIONS(2349), + [anon_sym_unset] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_concurrent] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_elseif] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_foreach] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [sym_float] = ACTIONS(2351), + [sym_integer] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_True] = ACTIONS(2349), + [anon_sym_TRUE] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_False] = ACTIONS(2349), + [anon_sym_FALSE] = ACTIONS(2349), + [anon_sym_null] = ACTIONS(2349), + [anon_sym_Null] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [sym_string] = ACTIONS(2351), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_array] = ACTIONS(2349), + [anon_sym_varray] = ACTIONS(2349), + [anon_sym_darray] = ACTIONS(2349), + [anon_sym_vec] = ACTIONS(2349), + [anon_sym_dict] = ACTIONS(2349), + [anon_sym_keyset] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_list] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_interface] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_abstract] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2351), + [sym_final_modifier] = ACTIONS(2349), + [sym_xhp_modifier] = ACTIONS(2349), + [sym_xhp_identifier] = ACTIONS(2349), + [sym_xhp_class_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(3), }, - [1407] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_finally] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [1367] = { + [sym_identifier] = ACTIONS(2257), + [sym_variable] = ACTIONS(2259), + [sym_pipe_variable] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_newtype] = ACTIONS(2257), + [anon_sym_shape] = ACTIONS(2257), + [anon_sym_tuple] = ACTIONS(2257), + [anon_sym_clone] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_include_once] = ACTIONS(2257), + [anon_sym_require] = ACTIONS(2257), + [anon_sym_require_once] = ACTIONS(2257), + [anon_sym_BSLASH] = ACTIONS(2259), + [anon_sym_self] = ACTIONS(2257), + [anon_sym_parent] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_LT_LT_LT] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_echo] = ACTIONS(2257), + [anon_sym_unset] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_concurrent] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_case] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_foreach] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_using] = ACTIONS(2257), + [sym_float] = ACTIONS(2259), + [sym_integer] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_True] = ACTIONS(2257), + [anon_sym_TRUE] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_False] = ACTIONS(2257), + [anon_sym_FALSE] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_Null] = ACTIONS(2257), + [anon_sym_NULL] = ACTIONS(2257), + [sym_string] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_array] = ACTIONS(2257), + [anon_sym_varray] = ACTIONS(2257), + [anon_sym_darray] = ACTIONS(2257), + [anon_sym_vec] = ACTIONS(2257), + [anon_sym_dict] = ACTIONS(2257), + [anon_sym_keyset] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_list] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_abstract] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2259), + [sym_final_modifier] = ACTIONS(2257), + [sym_xhp_modifier] = ACTIONS(2257), + [sym_xhp_identifier] = ACTIONS(2257), + [sym_xhp_class_identifier] = ACTIONS(2259), [sym_comment] = ACTIONS(3), }, - [1408] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_finally] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), + [1368] = { + [sym_identifier] = ACTIONS(2345), + [sym_variable] = ACTIONS(2347), + [sym_pipe_variable] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_newtype] = ACTIONS(2345), + [anon_sym_shape] = ACTIONS(2345), + [anon_sym_tuple] = ACTIONS(2345), + [anon_sym_clone] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_print] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_include] = ACTIONS(2345), + [anon_sym_include_once] = ACTIONS(2345), + [anon_sym_require] = ACTIONS(2345), + [anon_sym_require_once] = ACTIONS(2345), + [anon_sym_BSLASH] = ACTIONS(2347), + [anon_sym_self] = ACTIONS(2345), + [anon_sym_parent] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_LT_LT_LT] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_echo] = ACTIONS(2345), + [anon_sym_unset] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_concurrent] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_function] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_elseif] = ACTIONS(2345), + [anon_sym_else] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_foreach] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [sym_float] = ACTIONS(2347), + [sym_integer] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_True] = ACTIONS(2345), + [anon_sym_TRUE] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_False] = ACTIONS(2345), + [anon_sym_FALSE] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_Null] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [sym_string] = ACTIONS(2347), + [anon_sym_AT] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_array] = ACTIONS(2345), + [anon_sym_varray] = ACTIONS(2345), + [anon_sym_darray] = ACTIONS(2345), + [anon_sym_vec] = ACTIONS(2345), + [anon_sym_dict] = ACTIONS(2345), + [anon_sym_keyset] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_list] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_abstract] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2347), + [sym_final_modifier] = ACTIONS(2345), + [sym_xhp_modifier] = ACTIONS(2345), + [sym_xhp_identifier] = ACTIONS(2345), + [sym_xhp_class_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(3), }, - [1409] = { - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_finally] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [1369] = { + [sym_identifier] = ACTIONS(2337), + [sym_variable] = ACTIONS(2339), + [sym_pipe_variable] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_newtype] = ACTIONS(2337), + [anon_sym_shape] = ACTIONS(2337), + [anon_sym_tuple] = ACTIONS(2337), + [anon_sym_clone] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_print] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_include] = ACTIONS(2337), + [anon_sym_include_once] = ACTIONS(2337), + [anon_sym_require] = ACTIONS(2337), + [anon_sym_require_once] = ACTIONS(2337), + [anon_sym_BSLASH] = ACTIONS(2339), + [anon_sym_self] = ACTIONS(2337), + [anon_sym_parent] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_LT_LT_LT] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_echo] = ACTIONS(2337), + [anon_sym_unset] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_concurrent] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_function] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_elseif] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_foreach] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [sym_float] = ACTIONS(2339), + [sym_integer] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_True] = ACTIONS(2337), + [anon_sym_TRUE] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_False] = ACTIONS(2337), + [anon_sym_FALSE] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_Null] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [sym_string] = ACTIONS(2339), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_array] = ACTIONS(2337), + [anon_sym_varray] = ACTIONS(2337), + [anon_sym_darray] = ACTIONS(2337), + [anon_sym_vec] = ACTIONS(2337), + [anon_sym_dict] = ACTIONS(2337), + [anon_sym_keyset] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_list] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_abstract] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2339), + [sym_final_modifier] = ACTIONS(2337), + [sym_xhp_modifier] = ACTIONS(2337), + [sym_xhp_identifier] = ACTIONS(2337), + [sym_xhp_class_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(3), }, - [1410] = { - [sym_identifier] = ACTIONS(2177), - [sym_variable] = ACTIONS(2179), - [sym_pipe_variable] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_newtype] = ACTIONS(2177), - [anon_sym_shape] = ACTIONS(2177), - [anon_sym_tuple] = ACTIONS(2177), - [anon_sym_clone] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_print] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_LT_LT_LT] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_throw] = ACTIONS(2177), - [anon_sym_echo] = ACTIONS(2177), - [anon_sym_unset] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_concurrent] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_function] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_elseif] = ACTIONS(2177), - [anon_sym_else] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [anon_sym_foreach] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_using] = ACTIONS(2177), - [sym_float] = ACTIONS(2179), - [sym_integer] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_True] = ACTIONS(2177), - [anon_sym_TRUE] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [anon_sym_False] = ACTIONS(2177), - [anon_sym_FALSE] = ACTIONS(2177), - [anon_sym_null] = ACTIONS(2177), - [anon_sym_Null] = ACTIONS(2177), - [anon_sym_NULL] = ACTIONS(2177), - [sym_string] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_array] = ACTIONS(2177), - [anon_sym_varray] = ACTIONS(2177), - [anon_sym_darray] = ACTIONS(2177), - [anon_sym_vec] = ACTIONS(2177), - [anon_sym_dict] = ACTIONS(2177), - [anon_sym_keyset] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_class] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_abstract] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2179), - [sym_final_modifier] = ACTIONS(2177), - [sym_xhp_modifier] = ACTIONS(2177), - [sym_xhp_identifier] = ACTIONS(2177), - [sym_xhp_class_identifier] = ACTIONS(2179), + [1370] = { + [ts_builtin_sym_end] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2043), + [sym_variable] = ACTIONS(2045), + [sym_pipe_variable] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_newtype] = ACTIONS(2043), + [anon_sym_shape] = ACTIONS(2043), + [anon_sym_tuple] = ACTIONS(2043), + [anon_sym_clone] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_print] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_include] = ACTIONS(2043), + [anon_sym_include_once] = ACTIONS(2043), + [anon_sym_require] = ACTIONS(2043), + [anon_sym_require_once] = ACTIONS(2043), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_self] = ACTIONS(2043), + [anon_sym_parent] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_throw] = ACTIONS(2043), + [anon_sym_echo] = ACTIONS(2043), + [anon_sym_unset] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_concurrent] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_function] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_switch] = ACTIONS(2043), + [anon_sym_foreach] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(2043), + [sym_float] = ACTIONS(2045), + [sym_integer] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_True] = ACTIONS(2043), + [anon_sym_TRUE] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_False] = ACTIONS(2043), + [anon_sym_FALSE] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [anon_sym_Null] = ACTIONS(2043), + [anon_sym_NULL] = ACTIONS(2043), + [sym_string] = ACTIONS(2045), + [anon_sym_AT] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_array] = ACTIONS(2043), + [anon_sym_varray] = ACTIONS(2043), + [anon_sym_darray] = ACTIONS(2043), + [anon_sym_vec] = ACTIONS(2043), + [anon_sym_dict] = ACTIONS(2043), + [anon_sym_keyset] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2045), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_interface] = ACTIONS(2043), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_abstract] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_final_modifier] = ACTIONS(2043), + [sym_xhp_modifier] = ACTIONS(2043), + [sym_xhp_identifier] = ACTIONS(2043), + [sym_xhp_class_identifier] = ACTIONS(2045), [sym_comment] = ACTIONS(3), }, - [1411] = { - [sym_identifier] = ACTIONS(2505), - [sym_variable] = ACTIONS(2507), - [sym_pipe_variable] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_newtype] = ACTIONS(2505), - [anon_sym_shape] = ACTIONS(2505), - [anon_sym_tuple] = ACTIONS(2505), - [anon_sym_clone] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_print] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_LT_LT_LT] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_echo] = ACTIONS(2505), - [anon_sym_unset] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_concurrent] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_elseif] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_foreach] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [sym_float] = ACTIONS(2507), - [sym_integer] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_True] = ACTIONS(2505), - [anon_sym_TRUE] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_False] = ACTIONS(2505), - [anon_sym_FALSE] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [anon_sym_Null] = ACTIONS(2505), - [anon_sym_NULL] = ACTIONS(2505), - [sym_string] = ACTIONS(2507), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_array] = ACTIONS(2505), - [anon_sym_varray] = ACTIONS(2505), - [anon_sym_darray] = ACTIONS(2505), - [anon_sym_vec] = ACTIONS(2505), - [anon_sym_dict] = ACTIONS(2505), - [anon_sym_keyset] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_trait] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2507), - [sym_final_modifier] = ACTIONS(2505), - [sym_xhp_modifier] = ACTIONS(2505), - [sym_xhp_identifier] = ACTIONS(2505), - [sym_xhp_class_identifier] = ACTIONS(2507), + [1371] = { + [sym_identifier] = ACTIONS(2137), + [sym_variable] = ACTIONS(2139), + [sym_pipe_variable] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_newtype] = ACTIONS(2137), + [anon_sym_shape] = ACTIONS(2137), + [anon_sym_tuple] = ACTIONS(2137), + [anon_sym_clone] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_include] = ACTIONS(2137), + [anon_sym_include_once] = ACTIONS(2137), + [anon_sym_require] = ACTIONS(2137), + [anon_sym_require_once] = ACTIONS(2137), + [anon_sym_BSLASH] = ACTIONS(2139), + [anon_sym_self] = ACTIONS(2137), + [anon_sym_parent] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2137), + [anon_sym_LT_LT_LT] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_echo] = ACTIONS(2137), + [anon_sym_unset] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_concurrent] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_elseif] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_foreach] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [sym_float] = ACTIONS(2139), + [sym_integer] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_True] = ACTIONS(2137), + [anon_sym_TRUE] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_False] = ACTIONS(2137), + [anon_sym_FALSE] = ACTIONS(2137), + [anon_sym_null] = ACTIONS(2137), + [anon_sym_Null] = ACTIONS(2137), + [anon_sym_NULL] = ACTIONS(2137), + [sym_string] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_array] = ACTIONS(2137), + [anon_sym_varray] = ACTIONS(2137), + [anon_sym_darray] = ACTIONS(2137), + [anon_sym_vec] = ACTIONS(2137), + [anon_sym_dict] = ACTIONS(2137), + [anon_sym_keyset] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_list] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2139), + [sym_final_modifier] = ACTIONS(2137), + [sym_xhp_modifier] = ACTIONS(2137), + [sym_xhp_identifier] = ACTIONS(2137), + [sym_xhp_class_identifier] = ACTIONS(2139), [sym_comment] = ACTIONS(3), }, - [1412] = { - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_finally] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), + [1372] = { + [sym_identifier] = ACTIONS(2141), + [sym_variable] = ACTIONS(2143), + [sym_pipe_variable] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_newtype] = ACTIONS(2141), + [anon_sym_shape] = ACTIONS(2141), + [anon_sym_tuple] = ACTIONS(2141), + [anon_sym_clone] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_print] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_include_once] = ACTIONS(2141), + [anon_sym_require] = ACTIONS(2141), + [anon_sym_require_once] = ACTIONS(2141), + [anon_sym_BSLASH] = ACTIONS(2143), + [anon_sym_self] = ACTIONS(2141), + [anon_sym_parent] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2141), + [anon_sym_echo] = ACTIONS(2141), + [anon_sym_unset] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_concurrent] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_function] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_elseif] = ACTIONS(2141), + [anon_sym_else] = ACTIONS(2141), + [anon_sym_switch] = ACTIONS(2141), + [anon_sym_foreach] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_using] = ACTIONS(2141), + [sym_float] = ACTIONS(2143), + [sym_integer] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_True] = ACTIONS(2141), + [anon_sym_TRUE] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_False] = ACTIONS(2141), + [anon_sym_FALSE] = ACTIONS(2141), + [anon_sym_null] = ACTIONS(2141), + [anon_sym_Null] = ACTIONS(2141), + [anon_sym_NULL] = ACTIONS(2141), + [sym_string] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_array] = ACTIONS(2141), + [anon_sym_varray] = ACTIONS(2141), + [anon_sym_darray] = ACTIONS(2141), + [anon_sym_vec] = ACTIONS(2141), + [anon_sym_dict] = ACTIONS(2141), + [anon_sym_keyset] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_list] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2141), + [anon_sym_class] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2143), + [sym_final_modifier] = ACTIONS(2141), + [sym_xhp_modifier] = ACTIONS(2141), + [sym_xhp_identifier] = ACTIONS(2141), + [sym_xhp_class_identifier] = ACTIONS(2143), [sym_comment] = ACTIONS(3), }, - [1413] = { - [sym_identifier] = ACTIONS(2185), - [sym_variable] = ACTIONS(2187), - [sym_pipe_variable] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_newtype] = ACTIONS(2185), - [anon_sym_shape] = ACTIONS(2185), - [anon_sym_tuple] = ACTIONS(2185), - [anon_sym_clone] = ACTIONS(2185), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_print] = ACTIONS(2185), - [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_LT_LT_LT] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_throw] = ACTIONS(2185), - [anon_sym_echo] = ACTIONS(2185), - [anon_sym_unset] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_concurrent] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_function] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_elseif] = ACTIONS(2185), - [anon_sym_else] = ACTIONS(2185), - [anon_sym_switch] = ACTIONS(2185), - [anon_sym_foreach] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_do] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_using] = ACTIONS(2185), - [sym_float] = ACTIONS(2187), - [sym_integer] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_True] = ACTIONS(2185), - [anon_sym_TRUE] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [anon_sym_False] = ACTIONS(2185), - [anon_sym_FALSE] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_Null] = ACTIONS(2185), - [anon_sym_NULL] = ACTIONS(2185), - [sym_string] = ACTIONS(2187), - [anon_sym_AT] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [anon_sym_array] = ACTIONS(2185), - [anon_sym_varray] = ACTIONS(2185), - [anon_sym_darray] = ACTIONS(2185), - [anon_sym_vec] = ACTIONS(2185), - [anon_sym_dict] = ACTIONS(2185), - [anon_sym_keyset] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_class] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_abstract] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2187), - [sym_final_modifier] = ACTIONS(2185), - [sym_xhp_modifier] = ACTIONS(2185), - [sym_xhp_identifier] = ACTIONS(2185), - [sym_xhp_class_identifier] = ACTIONS(2187), + [1373] = { + [sym_identifier] = ACTIONS(2145), + [sym_variable] = ACTIONS(2147), + [sym_pipe_variable] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_newtype] = ACTIONS(2145), + [anon_sym_shape] = ACTIONS(2145), + [anon_sym_tuple] = ACTIONS(2145), + [anon_sym_clone] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_print] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_include] = ACTIONS(2145), + [anon_sym_include_once] = ACTIONS(2145), + [anon_sym_require] = ACTIONS(2145), + [anon_sym_require_once] = ACTIONS(2145), + [anon_sym_BSLASH] = ACTIONS(2147), + [anon_sym_self] = ACTIONS(2145), + [anon_sym_parent] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_LT_LT_LT] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_echo] = ACTIONS(2145), + [anon_sym_unset] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_concurrent] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_elseif] = ACTIONS(2145), + [anon_sym_else] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_foreach] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [sym_float] = ACTIONS(2147), + [sym_integer] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_True] = ACTIONS(2145), + [anon_sym_TRUE] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_False] = ACTIONS(2145), + [anon_sym_FALSE] = ACTIONS(2145), + [anon_sym_null] = ACTIONS(2145), + [anon_sym_Null] = ACTIONS(2145), + [anon_sym_NULL] = ACTIONS(2145), + [sym_string] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_array] = ACTIONS(2145), + [anon_sym_varray] = ACTIONS(2145), + [anon_sym_darray] = ACTIONS(2145), + [anon_sym_vec] = ACTIONS(2145), + [anon_sym_dict] = ACTIONS(2145), + [anon_sym_keyset] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_list] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2147), + [sym_final_modifier] = ACTIONS(2145), + [sym_xhp_modifier] = ACTIONS(2145), + [sym_xhp_identifier] = ACTIONS(2145), + [sym_xhp_class_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(3), }, - [1414] = { - [sym_identifier] = ACTIONS(2477), - [sym_variable] = ACTIONS(2479), - [sym_pipe_variable] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_newtype] = ACTIONS(2477), - [anon_sym_shape] = ACTIONS(2477), - [anon_sym_tuple] = ACTIONS(2477), - [anon_sym_clone] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_print] = ACTIONS(2477), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_LT_LT_LT] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2477), - [anon_sym_echo] = ACTIONS(2477), - [anon_sym_unset] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_concurrent] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_switch] = ACTIONS(2477), - [anon_sym_foreach] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_using] = ACTIONS(2477), - [sym_float] = ACTIONS(2479), - [sym_integer] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_True] = ACTIONS(2477), - [anon_sym_TRUE] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [anon_sym_False] = ACTIONS(2477), - [anon_sym_FALSE] = ACTIONS(2477), - [anon_sym_null] = ACTIONS(2477), - [anon_sym_Null] = ACTIONS(2477), - [anon_sym_NULL] = ACTIONS(2477), - [sym_string] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_array] = ACTIONS(2477), - [anon_sym_varray] = ACTIONS(2477), - [anon_sym_darray] = ACTIONS(2477), - [anon_sym_vec] = ACTIONS(2477), - [anon_sym_dict] = ACTIONS(2477), - [anon_sym_keyset] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_trait] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_abstract] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2479), - [sym_final_modifier] = ACTIONS(2477), - [sym_xhp_modifier] = ACTIONS(2477), - [sym_xhp_identifier] = ACTIONS(2477), - [sym_xhp_class_identifier] = ACTIONS(2479), + [1374] = { + [sym_identifier] = ACTIONS(2329), + [sym_variable] = ACTIONS(2331), + [sym_pipe_variable] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_newtype] = ACTIONS(2329), + [anon_sym_shape] = ACTIONS(2329), + [anon_sym_tuple] = ACTIONS(2329), + [anon_sym_clone] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_print] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_include] = ACTIONS(2329), + [anon_sym_include_once] = ACTIONS(2329), + [anon_sym_require] = ACTIONS(2329), + [anon_sym_require_once] = ACTIONS(2329), + [anon_sym_BSLASH] = ACTIONS(2331), + [anon_sym_self] = ACTIONS(2329), + [anon_sym_parent] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_LT_LT_LT] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_echo] = ACTIONS(2329), + [anon_sym_unset] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_concurrent] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_elseif] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_foreach] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [sym_float] = ACTIONS(2331), + [sym_integer] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_True] = ACTIONS(2329), + [anon_sym_TRUE] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_False] = ACTIONS(2329), + [anon_sym_FALSE] = ACTIONS(2329), + [anon_sym_null] = ACTIONS(2329), + [anon_sym_Null] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [sym_string] = ACTIONS(2331), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_array] = ACTIONS(2329), + [anon_sym_varray] = ACTIONS(2329), + [anon_sym_darray] = ACTIONS(2329), + [anon_sym_vec] = ACTIONS(2329), + [anon_sym_dict] = ACTIONS(2329), + [anon_sym_keyset] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_list] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2331), + [sym_final_modifier] = ACTIONS(2329), + [sym_xhp_modifier] = ACTIONS(2329), + [sym_xhp_identifier] = ACTIONS(2329), + [sym_xhp_class_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(3), }, - [1415] = { - [sym_identifier] = ACTIONS(2469), - [sym_variable] = ACTIONS(2471), - [sym_pipe_variable] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_newtype] = ACTIONS(2469), - [anon_sym_shape] = ACTIONS(2469), - [anon_sym_tuple] = ACTIONS(2469), - [anon_sym_clone] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_print] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_echo] = ACTIONS(2469), - [anon_sym_unset] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_concurrent] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_function] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_elseif] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_foreach] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [sym_float] = ACTIONS(2471), - [sym_integer] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_True] = ACTIONS(2469), - [anon_sym_TRUE] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [anon_sym_False] = ACTIONS(2469), - [anon_sym_FALSE] = ACTIONS(2469), - [anon_sym_null] = ACTIONS(2469), - [anon_sym_Null] = ACTIONS(2469), - [anon_sym_NULL] = ACTIONS(2469), - [sym_string] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_array] = ACTIONS(2469), - [anon_sym_varray] = ACTIONS(2469), - [anon_sym_darray] = ACTIONS(2469), - [anon_sym_vec] = ACTIONS(2469), - [anon_sym_dict] = ACTIONS(2469), - [anon_sym_keyset] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_trait] = ACTIONS(2469), - [anon_sym_interface] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_abstract] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2471), - [sym_final_modifier] = ACTIONS(2469), - [sym_xhp_modifier] = ACTIONS(2469), - [sym_xhp_identifier] = ACTIONS(2469), - [sym_xhp_class_identifier] = ACTIONS(2471), + [1375] = { + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2057), + [sym_variable] = ACTIONS(2059), + [sym_pipe_variable] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_newtype] = ACTIONS(2057), + [anon_sym_shape] = ACTIONS(2057), + [anon_sym_tuple] = ACTIONS(2057), + [anon_sym_clone] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_include_once] = ACTIONS(2057), + [anon_sym_require] = ACTIONS(2057), + [anon_sym_require_once] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_self] = ACTIONS(2057), + [anon_sym_parent] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_LT_LT_LT] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_echo] = ACTIONS(2057), + [anon_sym_unset] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_concurrent] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_elseif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_foreach] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [sym_integer] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_True] = ACTIONS(2057), + [anon_sym_TRUE] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_False] = ACTIONS(2057), + [anon_sym_FALSE] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_Null] = ACTIONS(2057), + [anon_sym_NULL] = ACTIONS(2057), + [sym_string] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_array] = ACTIONS(2057), + [anon_sym_varray] = ACTIONS(2057), + [anon_sym_darray] = ACTIONS(2057), + [anon_sym_vec] = ACTIONS(2057), + [anon_sym_dict] = ACTIONS(2057), + [anon_sym_keyset] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_list] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2059), + [sym_final_modifier] = ACTIONS(2057), + [sym_xhp_modifier] = ACTIONS(2057), + [sym_xhp_identifier] = ACTIONS(2057), + [sym_xhp_class_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(3), }, - [1416] = { - [sym_identifier] = ACTIONS(2189), - [sym_variable] = ACTIONS(2191), - [sym_pipe_variable] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_newtype] = ACTIONS(2189), - [anon_sym_shape] = ACTIONS(2189), - [anon_sym_tuple] = ACTIONS(2189), - [anon_sym_clone] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_print] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_LT_LT_LT] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_echo] = ACTIONS(2189), - [anon_sym_unset] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_concurrent] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_elseif] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_foreach] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [sym_float] = ACTIONS(2191), - [sym_integer] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_True] = ACTIONS(2189), - [anon_sym_TRUE] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_False] = ACTIONS(2189), - [anon_sym_FALSE] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_Null] = ACTIONS(2189), - [anon_sym_NULL] = ACTIONS(2189), - [sym_string] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_array] = ACTIONS(2189), - [anon_sym_varray] = ACTIONS(2189), - [anon_sym_darray] = ACTIONS(2189), - [anon_sym_vec] = ACTIONS(2189), - [anon_sym_dict] = ACTIONS(2189), - [anon_sym_keyset] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2191), - [sym_final_modifier] = ACTIONS(2189), - [sym_xhp_modifier] = ACTIONS(2189), - [sym_xhp_identifier] = ACTIONS(2189), - [sym_xhp_class_identifier] = ACTIONS(2191), + [1376] = { + [sym_identifier] = ACTIONS(2149), + [sym_variable] = ACTIONS(2151), + [sym_pipe_variable] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_newtype] = ACTIONS(2149), + [anon_sym_shape] = ACTIONS(2149), + [anon_sym_tuple] = ACTIONS(2149), + [anon_sym_clone] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_print] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_include] = ACTIONS(2149), + [anon_sym_include_once] = ACTIONS(2149), + [anon_sym_require] = ACTIONS(2149), + [anon_sym_require_once] = ACTIONS(2149), + [anon_sym_BSLASH] = ACTIONS(2151), + [anon_sym_self] = ACTIONS(2149), + [anon_sym_parent] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_echo] = ACTIONS(2149), + [anon_sym_unset] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_concurrent] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_elseif] = ACTIONS(2149), + [anon_sym_else] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_foreach] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [sym_float] = ACTIONS(2151), + [sym_integer] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_True] = ACTIONS(2149), + [anon_sym_TRUE] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_False] = ACTIONS(2149), + [anon_sym_FALSE] = ACTIONS(2149), + [anon_sym_null] = ACTIONS(2149), + [anon_sym_Null] = ACTIONS(2149), + [anon_sym_NULL] = ACTIONS(2149), + [sym_string] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_array] = ACTIONS(2149), + [anon_sym_varray] = ACTIONS(2149), + [anon_sym_darray] = ACTIONS(2149), + [anon_sym_vec] = ACTIONS(2149), + [anon_sym_dict] = ACTIONS(2149), + [anon_sym_keyset] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_list] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_abstract] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2151), + [sym_final_modifier] = ACTIONS(2149), + [sym_xhp_modifier] = ACTIONS(2149), + [sym_xhp_identifier] = ACTIONS(2149), + [sym_xhp_class_identifier] = ACTIONS(2151), [sym_comment] = ACTIONS(3), }, - [1417] = { - [sym_identifier] = ACTIONS(2453), - [sym_variable] = ACTIONS(2455), - [sym_pipe_variable] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_newtype] = ACTIONS(2453), - [anon_sym_shape] = ACTIONS(2453), - [anon_sym_tuple] = ACTIONS(2453), - [anon_sym_clone] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_LT_LT_LT] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_echo] = ACTIONS(2453), - [anon_sym_unset] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_concurrent] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_elseif] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_foreach] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [sym_float] = ACTIONS(2455), - [sym_integer] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_True] = ACTIONS(2453), - [anon_sym_TRUE] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_False] = ACTIONS(2453), - [anon_sym_FALSE] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [anon_sym_Null] = ACTIONS(2453), - [anon_sym_NULL] = ACTIONS(2453), - [sym_string] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_array] = ACTIONS(2453), - [anon_sym_varray] = ACTIONS(2453), - [anon_sym_darray] = ACTIONS(2453), - [anon_sym_vec] = ACTIONS(2453), - [anon_sym_dict] = ACTIONS(2453), - [anon_sym_keyset] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_trait] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [anon_sym_abstract] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2455), - [sym_final_modifier] = ACTIONS(2453), - [sym_xhp_modifier] = ACTIONS(2453), - [sym_xhp_identifier] = ACTIONS(2453), - [sym_xhp_class_identifier] = ACTIONS(2455), + [1377] = { + [sym_identifier] = ACTIONS(2153), + [sym_variable] = ACTIONS(2155), + [sym_pipe_variable] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_newtype] = ACTIONS(2153), + [anon_sym_shape] = ACTIONS(2153), + [anon_sym_tuple] = ACTIONS(2153), + [anon_sym_clone] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_print] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2153), + [anon_sym_include] = ACTIONS(2153), + [anon_sym_include_once] = ACTIONS(2153), + [anon_sym_require] = ACTIONS(2153), + [anon_sym_require_once] = ACTIONS(2153), + [anon_sym_BSLASH] = ACTIONS(2155), + [anon_sym_self] = ACTIONS(2153), + [anon_sym_parent] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_LT_LT_LT] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_throw] = ACTIONS(2153), + [anon_sym_echo] = ACTIONS(2153), + [anon_sym_unset] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_concurrent] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_function] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_elseif] = ACTIONS(2153), + [anon_sym_else] = ACTIONS(2153), + [anon_sym_switch] = ACTIONS(2153), + [anon_sym_foreach] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_do] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_using] = ACTIONS(2153), + [sym_float] = ACTIONS(2155), + [sym_integer] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_True] = ACTIONS(2153), + [anon_sym_TRUE] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_False] = ACTIONS(2153), + [anon_sym_FALSE] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(2153), + [anon_sym_Null] = ACTIONS(2153), + [anon_sym_NULL] = ACTIONS(2153), + [sym_string] = ACTIONS(2155), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_array] = ACTIONS(2153), + [anon_sym_varray] = ACTIONS(2153), + [anon_sym_darray] = ACTIONS(2153), + [anon_sym_vec] = ACTIONS(2153), + [anon_sym_dict] = ACTIONS(2153), + [anon_sym_keyset] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_list] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2153), + [anon_sym_class] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_abstract] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2155), + [sym_final_modifier] = ACTIONS(2153), + [sym_xhp_modifier] = ACTIONS(2153), + [sym_xhp_identifier] = ACTIONS(2153), + [sym_xhp_class_identifier] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + }, + [1378] = { + [sym_identifier] = ACTIONS(2157), + [sym_variable] = ACTIONS(2159), + [sym_pipe_variable] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_newtype] = ACTIONS(2157), + [anon_sym_shape] = ACTIONS(2157), + [anon_sym_tuple] = ACTIONS(2157), + [anon_sym_clone] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_print] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2157), + [anon_sym_include] = ACTIONS(2157), + [anon_sym_include_once] = ACTIONS(2157), + [anon_sym_require] = ACTIONS(2157), + [anon_sym_require_once] = ACTIONS(2157), + [anon_sym_BSLASH] = ACTIONS(2159), + [anon_sym_self] = ACTIONS(2157), + [anon_sym_parent] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_LT_LT] = ACTIONS(2157), + [anon_sym_LT_LT_LT] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_throw] = ACTIONS(2157), + [anon_sym_echo] = ACTIONS(2157), + [anon_sym_unset] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_concurrent] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_function] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_elseif] = ACTIONS(2157), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(2157), + [anon_sym_foreach] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [sym_float] = ACTIONS(2159), + [sym_integer] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_True] = ACTIONS(2157), + [anon_sym_TRUE] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_False] = ACTIONS(2157), + [anon_sym_FALSE] = ACTIONS(2157), + [anon_sym_null] = ACTIONS(2157), + [anon_sym_Null] = ACTIONS(2157), + [anon_sym_NULL] = ACTIONS(2157), + [sym_string] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_array] = ACTIONS(2157), + [anon_sym_varray] = ACTIONS(2157), + [anon_sym_darray] = ACTIONS(2157), + [anon_sym_vec] = ACTIONS(2157), + [anon_sym_dict] = ACTIONS(2157), + [anon_sym_keyset] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_list] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_interface] = ACTIONS(2157), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_abstract] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2159), + [sym_final_modifier] = ACTIONS(2157), + [sym_xhp_modifier] = ACTIONS(2157), + [sym_xhp_identifier] = ACTIONS(2157), + [sym_xhp_class_identifier] = ACTIONS(2159), [sym_comment] = ACTIONS(3), }, - [1418] = { - [sym_identifier] = ACTIONS(2353), - [sym_variable] = ACTIONS(2355), - [sym_pipe_variable] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_newtype] = ACTIONS(2353), - [anon_sym_shape] = ACTIONS(2353), - [anon_sym_tuple] = ACTIONS(2353), - [anon_sym_clone] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_print] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_LT_LT_LT] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_echo] = ACTIONS(2353), - [anon_sym_unset] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_concurrent] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_elseif] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_foreach] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_using] = ACTIONS(2353), - [sym_float] = ACTIONS(2355), - [sym_integer] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_True] = ACTIONS(2353), - [anon_sym_TRUE] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_False] = ACTIONS(2353), - [anon_sym_FALSE] = ACTIONS(2353), - [anon_sym_null] = ACTIONS(2353), - [anon_sym_Null] = ACTIONS(2353), - [anon_sym_NULL] = ACTIONS(2353), - [sym_string] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_array] = ACTIONS(2353), - [anon_sym_varray] = ACTIONS(2353), - [anon_sym_darray] = ACTIONS(2353), - [anon_sym_vec] = ACTIONS(2353), - [anon_sym_dict] = ACTIONS(2353), - [anon_sym_keyset] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2355), - [sym_final_modifier] = ACTIONS(2353), - [sym_xhp_modifier] = ACTIONS(2353), - [sym_xhp_identifier] = ACTIONS(2353), - [sym_xhp_class_identifier] = ACTIONS(2355), + [1379] = { + [sym_identifier] = ACTIONS(2161), + [sym_variable] = ACTIONS(2163), + [sym_pipe_variable] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_newtype] = ACTIONS(2161), + [anon_sym_shape] = ACTIONS(2161), + [anon_sym_tuple] = ACTIONS(2161), + [anon_sym_clone] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_include] = ACTIONS(2161), + [anon_sym_include_once] = ACTIONS(2161), + [anon_sym_require] = ACTIONS(2161), + [anon_sym_require_once] = ACTIONS(2161), + [anon_sym_BSLASH] = ACTIONS(2163), + [anon_sym_self] = ACTIONS(2161), + [anon_sym_parent] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_LT_LT_LT] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_echo] = ACTIONS(2161), + [anon_sym_unset] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_concurrent] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_elseif] = ACTIONS(2161), + [anon_sym_else] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_foreach] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [sym_float] = ACTIONS(2163), + [sym_integer] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_True] = ACTIONS(2161), + [anon_sym_TRUE] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_False] = ACTIONS(2161), + [anon_sym_FALSE] = ACTIONS(2161), + [anon_sym_null] = ACTIONS(2161), + [anon_sym_Null] = ACTIONS(2161), + [anon_sym_NULL] = ACTIONS(2161), + [sym_string] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_array] = ACTIONS(2161), + [anon_sym_varray] = ACTIONS(2161), + [anon_sym_darray] = ACTIONS(2161), + [anon_sym_vec] = ACTIONS(2161), + [anon_sym_dict] = ACTIONS(2161), + [anon_sym_keyset] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_list] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2163), + [sym_final_modifier] = ACTIONS(2161), + [sym_xhp_modifier] = ACTIONS(2161), + [sym_xhp_identifier] = ACTIONS(2161), + [sym_xhp_class_identifier] = ACTIONS(2163), [sym_comment] = ACTIONS(3), }, - [1419] = { - [sym_identifier] = ACTIONS(2381), - [sym_variable] = ACTIONS(2383), - [sym_pipe_variable] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_newtype] = ACTIONS(2381), - [anon_sym_shape] = ACTIONS(2381), - [anon_sym_tuple] = ACTIONS(2381), - [anon_sym_clone] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_print] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_LT_LT_LT] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_echo] = ACTIONS(2381), - [anon_sym_unset] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_concurrent] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_function] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_elseif] = ACTIONS(2381), - [anon_sym_else] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_foreach] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [sym_float] = ACTIONS(2383), - [sym_integer] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_True] = ACTIONS(2381), - [anon_sym_TRUE] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_False] = ACTIONS(2381), - [anon_sym_FALSE] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [anon_sym_Null] = ACTIONS(2381), - [anon_sym_NULL] = ACTIONS(2381), - [sym_string] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_array] = ACTIONS(2381), - [anon_sym_varray] = ACTIONS(2381), - [anon_sym_darray] = ACTIONS(2381), - [anon_sym_vec] = ACTIONS(2381), - [anon_sym_dict] = ACTIONS(2381), - [anon_sym_keyset] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_abstract] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(2383), - [sym_final_modifier] = ACTIONS(2381), - [sym_xhp_modifier] = ACTIONS(2381), - [sym_xhp_identifier] = ACTIONS(2381), - [sym_xhp_class_identifier] = ACTIONS(2383), + [1380] = { + [sym_identifier] = ACTIONS(2165), + [sym_variable] = ACTIONS(2167), + [sym_pipe_variable] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_newtype] = ACTIONS(2165), + [anon_sym_shape] = ACTIONS(2165), + [anon_sym_tuple] = ACTIONS(2165), + [anon_sym_clone] = ACTIONS(2165), + [anon_sym_new] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_namespace] = ACTIONS(2165), + [anon_sym_include] = ACTIONS(2165), + [anon_sym_include_once] = ACTIONS(2165), + [anon_sym_require] = ACTIONS(2165), + [anon_sym_require_once] = ACTIONS(2165), + [anon_sym_BSLASH] = ACTIONS(2167), + [anon_sym_self] = ACTIONS(2165), + [anon_sym_parent] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(2165), + [anon_sym_LT_LT_LT] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_throw] = ACTIONS(2165), + [anon_sym_echo] = ACTIONS(2165), + [anon_sym_unset] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_concurrent] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_function] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_elseif] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_switch] = ACTIONS(2165), + [anon_sym_foreach] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_using] = ACTIONS(2165), + [sym_float] = ACTIONS(2167), + [sym_integer] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_True] = ACTIONS(2165), + [anon_sym_TRUE] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_False] = ACTIONS(2165), + [anon_sym_FALSE] = ACTIONS(2165), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_Null] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2165), + [sym_string] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_array] = ACTIONS(2165), + [anon_sym_varray] = ACTIONS(2165), + [anon_sym_darray] = ACTIONS(2165), + [anon_sym_vec] = ACTIONS(2165), + [anon_sym_dict] = ACTIONS(2165), + [anon_sym_keyset] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_list] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_interface] = ACTIONS(2165), + [anon_sym_class] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2167), + [sym_final_modifier] = ACTIONS(2165), + [sym_xhp_modifier] = ACTIONS(2165), + [sym_xhp_identifier] = ACTIONS(2165), + [sym_xhp_class_identifier] = ACTIONS(2167), [sym_comment] = ACTIONS(3), }, - [1420] = { - [sym_identifier] = ACTIONS(2417), - [sym_variable] = ACTIONS(2419), - [sym_pipe_variable] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_newtype] = ACTIONS(2417), - [anon_sym_shape] = ACTIONS(2417), - [anon_sym_tuple] = ACTIONS(2417), - [anon_sym_clone] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_print] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), - [anon_sym_LT_LT_LT] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_echo] = ACTIONS(2417), - [anon_sym_unset] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_concurrent] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_function] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_elseif] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_foreach] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [sym_float] = ACTIONS(2419), - [sym_integer] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_True] = ACTIONS(2417), - [anon_sym_TRUE] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [anon_sym_False] = ACTIONS(2417), - [anon_sym_FALSE] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2417), - [anon_sym_Null] = ACTIONS(2417), - [anon_sym_NULL] = ACTIONS(2417), - [sym_string] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_array] = ACTIONS(2417), - [anon_sym_varray] = ACTIONS(2417), - [anon_sym_darray] = ACTIONS(2417), - [anon_sym_vec] = ACTIONS(2417), - [anon_sym_dict] = ACTIONS(2417), - [anon_sym_keyset] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_trait] = ACTIONS(2417), - [anon_sym_interface] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_abstract] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2419), - [sym_final_modifier] = ACTIONS(2417), - [sym_xhp_modifier] = ACTIONS(2417), - [sym_xhp_identifier] = ACTIONS(2417), - [sym_xhp_class_identifier] = ACTIONS(2419), + [1381] = { + [sym_identifier] = ACTIONS(2169), + [sym_variable] = ACTIONS(2171), + [sym_pipe_variable] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_newtype] = ACTIONS(2169), + [anon_sym_shape] = ACTIONS(2169), + [anon_sym_tuple] = ACTIONS(2169), + [anon_sym_clone] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_print] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2169), + [anon_sym_include] = ACTIONS(2169), + [anon_sym_include_once] = ACTIONS(2169), + [anon_sym_require] = ACTIONS(2169), + [anon_sym_require_once] = ACTIONS(2169), + [anon_sym_BSLASH] = ACTIONS(2171), + [anon_sym_self] = ACTIONS(2169), + [anon_sym_parent] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_LT_LT_LT] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_throw] = ACTIONS(2169), + [anon_sym_echo] = ACTIONS(2169), + [anon_sym_unset] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_concurrent] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_function] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_elseif] = ACTIONS(2169), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_switch] = ACTIONS(2169), + [anon_sym_foreach] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_using] = ACTIONS(2169), + [sym_float] = ACTIONS(2171), + [sym_integer] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_True] = ACTIONS(2169), + [anon_sym_TRUE] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [anon_sym_False] = ACTIONS(2169), + [anon_sym_FALSE] = ACTIONS(2169), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_Null] = ACTIONS(2169), + [anon_sym_NULL] = ACTIONS(2169), + [sym_string] = ACTIONS(2171), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_array] = ACTIONS(2169), + [anon_sym_varray] = ACTIONS(2169), + [anon_sym_darray] = ACTIONS(2169), + [anon_sym_vec] = ACTIONS(2169), + [anon_sym_dict] = ACTIONS(2169), + [anon_sym_keyset] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2169), + [anon_sym_class] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_abstract] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2171), + [sym_final_modifier] = ACTIONS(2169), + [sym_xhp_modifier] = ACTIONS(2169), + [sym_xhp_identifier] = ACTIONS(2169), + [sym_xhp_class_identifier] = ACTIONS(2171), [sym_comment] = ACTIONS(3), }, - [1421] = { - [sym_identifier] = ACTIONS(2101), - [sym_variable] = ACTIONS(2103), - [sym_pipe_variable] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_newtype] = ACTIONS(2101), - [anon_sym_shape] = ACTIONS(2101), - [anon_sym_tuple] = ACTIONS(2101), - [anon_sym_clone] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_print] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_LT_LT_LT] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_echo] = ACTIONS(2101), - [anon_sym_unset] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_concurrent] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_function] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_elseif] = ACTIONS(2101), - [anon_sym_else] = ACTIONS(2101), - [anon_sym_switch] = ACTIONS(2101), - [anon_sym_foreach] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_using] = ACTIONS(2101), - [sym_float] = ACTIONS(2103), - [sym_integer] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_True] = ACTIONS(2101), - [anon_sym_TRUE] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_False] = ACTIONS(2101), - [anon_sym_FALSE] = ACTIONS(2101), - [anon_sym_null] = ACTIONS(2101), - [anon_sym_Null] = ACTIONS(2101), - [anon_sym_NULL] = ACTIONS(2101), - [sym_string] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_array] = ACTIONS(2101), - [anon_sym_varray] = ACTIONS(2101), - [anon_sym_darray] = ACTIONS(2101), - [anon_sym_vec] = ACTIONS(2101), - [anon_sym_dict] = ACTIONS(2101), - [anon_sym_keyset] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2103), - [sym_final_modifier] = ACTIONS(2101), - [sym_xhp_modifier] = ACTIONS(2101), - [sym_xhp_identifier] = ACTIONS(2101), - [sym_xhp_class_identifier] = ACTIONS(2103), + [1382] = { + [sym_identifier] = ACTIONS(2173), + [sym_variable] = ACTIONS(2175), + [sym_pipe_variable] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_newtype] = ACTIONS(2173), + [anon_sym_shape] = ACTIONS(2173), + [anon_sym_tuple] = ACTIONS(2173), + [anon_sym_clone] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_print] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_include] = ACTIONS(2173), + [anon_sym_include_once] = ACTIONS(2173), + [anon_sym_require] = ACTIONS(2173), + [anon_sym_require_once] = ACTIONS(2173), + [anon_sym_BSLASH] = ACTIONS(2175), + [anon_sym_self] = ACTIONS(2173), + [anon_sym_parent] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LT_LT_LT] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_echo] = ACTIONS(2173), + [anon_sym_unset] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_concurrent] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_elseif] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_foreach] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(2173), + [sym_float] = ACTIONS(2175), + [sym_integer] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_True] = ACTIONS(2173), + [anon_sym_TRUE] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_False] = ACTIONS(2173), + [anon_sym_FALSE] = ACTIONS(2173), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_Null] = ACTIONS(2173), + [anon_sym_NULL] = ACTIONS(2173), + [sym_string] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_array] = ACTIONS(2173), + [anon_sym_varray] = ACTIONS(2173), + [anon_sym_darray] = ACTIONS(2173), + [anon_sym_vec] = ACTIONS(2173), + [anon_sym_dict] = ACTIONS(2173), + [anon_sym_keyset] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_list] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2175), + [sym_final_modifier] = ACTIONS(2173), + [sym_xhp_modifier] = ACTIONS(2173), + [sym_xhp_identifier] = ACTIONS(2173), + [sym_xhp_class_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(3), }, - [1422] = { - [sym_identifier] = ACTIONS(2401), - [sym_variable] = ACTIONS(2403), - [sym_pipe_variable] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_newtype] = ACTIONS(2401), - [anon_sym_shape] = ACTIONS(2401), - [anon_sym_tuple] = ACTIONS(2401), - [anon_sym_clone] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_print] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), - [anon_sym_LT_LT_LT] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_echo] = ACTIONS(2401), - [anon_sym_unset] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_concurrent] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_elseif] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_foreach] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [sym_float] = ACTIONS(2403), - [sym_integer] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_True] = ACTIONS(2401), - [anon_sym_TRUE] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [anon_sym_False] = ACTIONS(2401), - [anon_sym_FALSE] = ACTIONS(2401), - [anon_sym_null] = ACTIONS(2401), - [anon_sym_Null] = ACTIONS(2401), - [anon_sym_NULL] = ACTIONS(2401), - [sym_string] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_array] = ACTIONS(2401), - [anon_sym_varray] = ACTIONS(2401), - [anon_sym_darray] = ACTIONS(2401), - [anon_sym_vec] = ACTIONS(2401), - [anon_sym_dict] = ACTIONS(2401), - [anon_sym_keyset] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2403), - [sym_final_modifier] = ACTIONS(2401), - [sym_xhp_modifier] = ACTIONS(2401), - [sym_xhp_identifier] = ACTIONS(2401), - [sym_xhp_class_identifier] = ACTIONS(2403), + [1383] = { + [sym_identifier] = ACTIONS(2325), + [sym_variable] = ACTIONS(2327), + [sym_pipe_variable] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_newtype] = ACTIONS(2325), + [anon_sym_shape] = ACTIONS(2325), + [anon_sym_tuple] = ACTIONS(2325), + [anon_sym_clone] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_print] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_include] = ACTIONS(2325), + [anon_sym_include_once] = ACTIONS(2325), + [anon_sym_require] = ACTIONS(2325), + [anon_sym_require_once] = ACTIONS(2325), + [anon_sym_BSLASH] = ACTIONS(2327), + [anon_sym_self] = ACTIONS(2325), + [anon_sym_parent] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_LT_LT] = ACTIONS(2325), + [anon_sym_LT_LT_LT] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_echo] = ACTIONS(2325), + [anon_sym_unset] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_concurrent] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_function] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_elseif] = ACTIONS(2325), + [anon_sym_else] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_foreach] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [sym_float] = ACTIONS(2327), + [sym_integer] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_True] = ACTIONS(2325), + [anon_sym_TRUE] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_False] = ACTIONS(2325), + [anon_sym_FALSE] = ACTIONS(2325), + [anon_sym_null] = ACTIONS(2325), + [anon_sym_Null] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [sym_string] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_array] = ACTIONS(2325), + [anon_sym_varray] = ACTIONS(2325), + [anon_sym_darray] = ACTIONS(2325), + [anon_sym_vec] = ACTIONS(2325), + [anon_sym_dict] = ACTIONS(2325), + [anon_sym_keyset] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_list] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_interface] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2327), + [sym_final_modifier] = ACTIONS(2325), + [sym_xhp_modifier] = ACTIONS(2325), + [sym_xhp_identifier] = ACTIONS(2325), + [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [1423] = { - [sym_identifier] = ACTIONS(2429), - [sym_variable] = ACTIONS(2431), - [sym_pipe_variable] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_newtype] = ACTIONS(2429), - [anon_sym_shape] = ACTIONS(2429), - [anon_sym_tuple] = ACTIONS(2429), - [anon_sym_clone] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), - [anon_sym_LT_LT_LT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_echo] = ACTIONS(2429), - [anon_sym_unset] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_concurrent] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_elseif] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_foreach] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [sym_float] = ACTIONS(2431), - [sym_integer] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_True] = ACTIONS(2429), - [anon_sym_TRUE] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [anon_sym_False] = ACTIONS(2429), - [anon_sym_FALSE] = ACTIONS(2429), - [anon_sym_null] = ACTIONS(2429), - [anon_sym_Null] = ACTIONS(2429), - [anon_sym_NULL] = ACTIONS(2429), - [sym_string] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_array] = ACTIONS(2429), - [anon_sym_varray] = ACTIONS(2429), - [anon_sym_darray] = ACTIONS(2429), - [anon_sym_vec] = ACTIONS(2429), - [anon_sym_dict] = ACTIONS(2429), - [anon_sym_keyset] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_interface] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_abstract] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2431), - [sym_final_modifier] = ACTIONS(2429), - [sym_xhp_modifier] = ACTIONS(2429), - [sym_xhp_identifier] = ACTIONS(2429), - [sym_xhp_class_identifier] = ACTIONS(2431), + [1384] = { + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_finally] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), + [sym_comment] = ACTIONS(3), + }, + [1385] = { + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_finally] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [1424] = { - [sym_identifier] = ACTIONS(2233), - [sym_variable] = ACTIONS(2235), - [sym_pipe_variable] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_newtype] = ACTIONS(2233), - [anon_sym_shape] = ACTIONS(2233), - [anon_sym_tuple] = ACTIONS(2233), - [anon_sym_clone] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_print] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_LT_LT_LT] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_echo] = ACTIONS(2233), - [anon_sym_unset] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_concurrent] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_case] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_foreach] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [sym_float] = ACTIONS(2235), - [sym_integer] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_True] = ACTIONS(2233), - [anon_sym_TRUE] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_False] = ACTIONS(2233), - [anon_sym_FALSE] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_Null] = ACTIONS(2233), - [anon_sym_NULL] = ACTIONS(2233), - [sym_string] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_array] = ACTIONS(2233), - [anon_sym_varray] = ACTIONS(2233), - [anon_sym_darray] = ACTIONS(2233), - [anon_sym_vec] = ACTIONS(2233), - [anon_sym_dict] = ACTIONS(2233), - [anon_sym_keyset] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2235), - [sym_final_modifier] = ACTIONS(2233), - [sym_xhp_modifier] = ACTIONS(2233), - [sym_xhp_identifier] = ACTIONS(2233), - [sym_xhp_class_identifier] = ACTIONS(2235), + [1386] = { + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_finally] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, - [1425] = { - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_elseif] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [1387] = { + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_finally] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [1426] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1388] = { + [sym_identifier] = ACTIONS(2057), + [sym_variable] = ACTIONS(2059), + [sym_pipe_variable] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_newtype] = ACTIONS(2057), + [anon_sym_shape] = ACTIONS(2057), + [anon_sym_tuple] = ACTIONS(2057), + [anon_sym_clone] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_include_once] = ACTIONS(2057), + [anon_sym_require] = ACTIONS(2057), + [anon_sym_require_once] = ACTIONS(2057), + [anon_sym_BSLASH] = ACTIONS(2059), + [anon_sym_self] = ACTIONS(2057), + [anon_sym_parent] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_LT_LT_LT] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_echo] = ACTIONS(2057), + [anon_sym_unset] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_concurrent] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_elseif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_foreach] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [sym_integer] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_True] = ACTIONS(2057), + [anon_sym_TRUE] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_False] = ACTIONS(2057), + [anon_sym_FALSE] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_Null] = ACTIONS(2057), + [anon_sym_NULL] = ACTIONS(2057), + [sym_string] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_array] = ACTIONS(2057), + [anon_sym_varray] = ACTIONS(2057), + [anon_sym_darray] = ACTIONS(2057), + [anon_sym_vec] = ACTIONS(2057), + [anon_sym_dict] = ACTIONS(2057), + [anon_sym_keyset] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_list] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2059), + [sym_final_modifier] = ACTIONS(2057), + [sym_xhp_modifier] = ACTIONS(2057), + [sym_xhp_identifier] = ACTIONS(2057), + [sym_xhp_class_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(3), }, - [1427] = { - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2309), - [sym_variable] = ACTIONS(2311), - [sym_pipe_variable] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_newtype] = ACTIONS(2309), - [anon_sym_shape] = ACTIONS(2309), - [anon_sym_tuple] = ACTIONS(2309), - [anon_sym_clone] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_print] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_LT_LT_LT] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_throw] = ACTIONS(2309), - [anon_sym_echo] = ACTIONS(2309), - [anon_sym_unset] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_concurrent] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_switch] = ACTIONS(2309), - [anon_sym_foreach] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_using] = ACTIONS(2309), - [sym_float] = ACTIONS(2311), - [sym_integer] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_True] = ACTIONS(2309), - [anon_sym_TRUE] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_False] = ACTIONS(2309), - [anon_sym_FALSE] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [anon_sym_Null] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2309), - [sym_string] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_array] = ACTIONS(2309), - [anon_sym_varray] = ACTIONS(2309), - [anon_sym_darray] = ACTIONS(2309), - [anon_sym_vec] = ACTIONS(2309), - [anon_sym_dict] = ACTIONS(2309), - [anon_sym_keyset] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_abstract] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2311), - [sym_final_modifier] = ACTIONS(2309), - [sym_xhp_modifier] = ACTIONS(2309), - [sym_xhp_identifier] = ACTIONS(2309), - [sym_xhp_class_identifier] = ACTIONS(2311), + [1389] = { + [sym_identifier] = ACTIONS(2321), + [sym_variable] = ACTIONS(2323), + [sym_pipe_variable] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_newtype] = ACTIONS(2321), + [anon_sym_shape] = ACTIONS(2321), + [anon_sym_tuple] = ACTIONS(2321), + [anon_sym_clone] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_include] = ACTIONS(2321), + [anon_sym_include_once] = ACTIONS(2321), + [anon_sym_require] = ACTIONS(2321), + [anon_sym_require_once] = ACTIONS(2321), + [anon_sym_BSLASH] = ACTIONS(2323), + [anon_sym_self] = ACTIONS(2321), + [anon_sym_parent] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_LT_LT_LT] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_echo] = ACTIONS(2321), + [anon_sym_unset] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_concurrent] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_elseif] = ACTIONS(2321), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [sym_float] = ACTIONS(2323), + [sym_integer] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_True] = ACTIONS(2321), + [anon_sym_TRUE] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_False] = ACTIONS(2321), + [anon_sym_FALSE] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [anon_sym_Null] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [sym_string] = ACTIONS(2323), + [anon_sym_AT] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_array] = ACTIONS(2321), + [anon_sym_varray] = ACTIONS(2321), + [anon_sym_darray] = ACTIONS(2321), + [anon_sym_vec] = ACTIONS(2321), + [anon_sym_dict] = ACTIONS(2321), + [anon_sym_keyset] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_list] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [sym_final_modifier] = ACTIONS(2321), + [sym_xhp_modifier] = ACTIONS(2321), + [sym_xhp_identifier] = ACTIONS(2321), + [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [1428] = { - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2209), - [sym_variable] = ACTIONS(2211), - [sym_pipe_variable] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_newtype] = ACTIONS(2209), - [anon_sym_shape] = ACTIONS(2209), - [anon_sym_tuple] = ACTIONS(2209), - [anon_sym_clone] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_print] = ACTIONS(2209), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_include] = ACTIONS(2209), - [anon_sym_include_once] = ACTIONS(2209), - [anon_sym_require] = ACTIONS(2209), - [anon_sym_require_once] = ACTIONS(2209), - [anon_sym_BSLASH] = ACTIONS(2211), - [anon_sym_self] = ACTIONS(2209), - [anon_sym_parent] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_LT_LT_LT] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_throw] = ACTIONS(2209), - [anon_sym_echo] = ACTIONS(2209), - [anon_sym_unset] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_concurrent] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_foreach] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_using] = ACTIONS(2209), - [sym_float] = ACTIONS(2211), - [sym_integer] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_True] = ACTIONS(2209), - [anon_sym_TRUE] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_False] = ACTIONS(2209), - [anon_sym_FALSE] = ACTIONS(2209), - [anon_sym_null] = ACTIONS(2209), - [anon_sym_Null] = ACTIONS(2209), - [anon_sym_NULL] = ACTIONS(2209), - [sym_string] = ACTIONS(2211), - [anon_sym_AT] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_array] = ACTIONS(2209), - [anon_sym_varray] = ACTIONS(2209), - [anon_sym_darray] = ACTIONS(2209), - [anon_sym_vec] = ACTIONS(2209), - [anon_sym_dict] = ACTIONS(2209), - [anon_sym_keyset] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_list] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_class] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_abstract] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2211), - [sym_final_modifier] = ACTIONS(2209), - [sym_xhp_modifier] = ACTIONS(2209), - [sym_xhp_identifier] = ACTIONS(2209), - [sym_xhp_class_identifier] = ACTIONS(2211), + [1390] = { + [sym_identifier] = ACTIONS(2177), + [sym_variable] = ACTIONS(2179), + [sym_pipe_variable] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_newtype] = ACTIONS(2177), + [anon_sym_shape] = ACTIONS(2177), + [anon_sym_tuple] = ACTIONS(2177), + [anon_sym_clone] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2177), + [anon_sym_print] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2177), + [anon_sym_include] = ACTIONS(2177), + [anon_sym_include_once] = ACTIONS(2177), + [anon_sym_require] = ACTIONS(2177), + [anon_sym_require_once] = ACTIONS(2177), + [anon_sym_BSLASH] = ACTIONS(2179), + [anon_sym_self] = ACTIONS(2177), + [anon_sym_parent] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_LT_LT_LT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_throw] = ACTIONS(2177), + [anon_sym_echo] = ACTIONS(2177), + [anon_sym_unset] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_concurrent] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_function] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_elseif] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_switch] = ACTIONS(2177), + [anon_sym_foreach] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_using] = ACTIONS(2177), + [sym_float] = ACTIONS(2179), + [sym_integer] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_True] = ACTIONS(2177), + [anon_sym_TRUE] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_False] = ACTIONS(2177), + [anon_sym_FALSE] = ACTIONS(2177), + [anon_sym_null] = ACTIONS(2177), + [anon_sym_Null] = ACTIONS(2177), + [anon_sym_NULL] = ACTIONS(2177), + [sym_string] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_array] = ACTIONS(2177), + [anon_sym_varray] = ACTIONS(2177), + [anon_sym_darray] = ACTIONS(2177), + [anon_sym_vec] = ACTIONS(2177), + [anon_sym_dict] = ACTIONS(2177), + [anon_sym_keyset] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_list] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_PLUS_PLUS] = ACTIONS(2179), + [anon_sym_DASH_DASH] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2177), + [anon_sym_class] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_abstract] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2179), + [sym_final_modifier] = ACTIONS(2177), + [sym_xhp_modifier] = ACTIONS(2177), + [sym_xhp_identifier] = ACTIONS(2177), + [sym_xhp_class_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(3), }, - [1429] = { - [ts_builtin_sym_end] = ACTIONS(2319), + [1391] = { [sym_identifier] = ACTIONS(2317), [sym_variable] = ACTIONS(2319), [sym_pipe_variable] = ACTIONS(2319), @@ -168522,6 +158757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2317), [anon_sym_LT_LT] = ACTIONS(2317), [anon_sym_LT_LT_LT] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), [anon_sym_LBRACE] = ACTIONS(2319), [anon_sym_SEMI] = ACTIONS(2319), [anon_sym_return] = ACTIONS(2317), @@ -168536,6 +158772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2317), [anon_sym_const] = ACTIONS(2317), [anon_sym_if] = ACTIONS(2317), + [anon_sym_elseif] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), [anon_sym_switch] = ACTIONS(2317), [anon_sym_foreach] = ACTIONS(2317), [anon_sym_while] = ACTIONS(2317), @@ -168585,93 +158823,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2319), [sym_comment] = ACTIONS(3), }, - [1430] = { - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2293), - [sym_variable] = ACTIONS(2295), - [sym_pipe_variable] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_newtype] = ACTIONS(2293), - [anon_sym_shape] = ACTIONS(2293), - [anon_sym_tuple] = ACTIONS(2293), - [anon_sym_clone] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_print] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_LT_LT_LT] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_echo] = ACTIONS(2293), - [anon_sym_unset] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_concurrent] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_function] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_switch] = ACTIONS(2293), - [anon_sym_foreach] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_using] = ACTIONS(2293), - [sym_float] = ACTIONS(2295), - [sym_integer] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_True] = ACTIONS(2293), - [anon_sym_TRUE] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_False] = ACTIONS(2293), - [anon_sym_FALSE] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [anon_sym_Null] = ACTIONS(2293), - [anon_sym_NULL] = ACTIONS(2293), - [sym_string] = ACTIONS(2295), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_array] = ACTIONS(2293), - [anon_sym_varray] = ACTIONS(2293), - [anon_sym_darray] = ACTIONS(2293), - [anon_sym_vec] = ACTIONS(2293), - [anon_sym_dict] = ACTIONS(2293), - [anon_sym_keyset] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_trait] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_abstract] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2295), - [sym_final_modifier] = ACTIONS(2293), - [sym_xhp_modifier] = ACTIONS(2293), - [sym_xhp_identifier] = ACTIONS(2293), - [sym_xhp_class_identifier] = ACTIONS(2295), + [1392] = { + [sym_identifier] = ACTIONS(2309), + [sym_variable] = ACTIONS(2311), + [sym_pipe_variable] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_newtype] = ACTIONS(2309), + [anon_sym_shape] = ACTIONS(2309), + [anon_sym_tuple] = ACTIONS(2309), + [anon_sym_clone] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_print] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_include] = ACTIONS(2309), + [anon_sym_include_once] = ACTIONS(2309), + [anon_sym_require] = ACTIONS(2309), + [anon_sym_require_once] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2311), + [anon_sym_self] = ACTIONS(2309), + [anon_sym_parent] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_LT_LT_LT] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_throw] = ACTIONS(2309), + [anon_sym_echo] = ACTIONS(2309), + [anon_sym_unset] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_concurrent] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_elseif] = ACTIONS(2309), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_foreach] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_using] = ACTIONS(2309), + [sym_float] = ACTIONS(2311), + [sym_integer] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_True] = ACTIONS(2309), + [anon_sym_TRUE] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_False] = ACTIONS(2309), + [anon_sym_FALSE] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [anon_sym_Null] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2309), + [sym_string] = ACTIONS(2311), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_array] = ACTIONS(2309), + [anon_sym_varray] = ACTIONS(2309), + [anon_sym_darray] = ACTIONS(2309), + [anon_sym_vec] = ACTIONS(2309), + [anon_sym_dict] = ACTIONS(2309), + [anon_sym_keyset] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2309), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_abstract] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2311), + [sym_final_modifier] = ACTIONS(2309), + [sym_xhp_modifier] = ACTIONS(2309), + [sym_xhp_identifier] = ACTIONS(2309), + [sym_xhp_class_identifier] = ACTIONS(2311), [sym_comment] = ACTIONS(3), }, - [1431] = { + [1393] = { [sym_identifier] = ACTIONS(2305), [sym_variable] = ACTIONS(2307), [sym_pipe_variable] = ACTIONS(2307), @@ -168708,6 +158948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2305), [anon_sym_const] = ACTIONS(2305), [anon_sym_if] = ACTIONS(2305), + [anon_sym_elseif] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), [anon_sym_switch] = ACTIONS(2305), [anon_sym_foreach] = ACTIONS(2305), [anon_sym_while] = ACTIONS(2305), @@ -168723,128 +158965,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(2305), [anon_sym_False] = ACTIONS(2305), [anon_sym_FALSE] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [anon_sym_Null] = ACTIONS(2305), - [anon_sym_NULL] = ACTIONS(2305), - [sym_string] = ACTIONS(2307), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_array] = ACTIONS(2305), - [anon_sym_varray] = ACTIONS(2305), - [anon_sym_darray] = ACTIONS(2305), - [anon_sym_vec] = ACTIONS(2305), - [anon_sym_dict] = ACTIONS(2305), - [anon_sym_keyset] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_abstract] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2307), - [sym_final_modifier] = ACTIONS(2305), - [sym_xhp_modifier] = ACTIONS(2305), - [sym_xhp_identifier] = ACTIONS(2305), - [sym_xhp_class_identifier] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - }, - [1432] = { - [ts_builtin_sym_end] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2141), - [sym_variable] = ACTIONS(2143), - [sym_pipe_variable] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_newtype] = ACTIONS(2141), - [anon_sym_shape] = ACTIONS(2141), - [anon_sym_tuple] = ACTIONS(2141), - [anon_sym_clone] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_print] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_LT_LT_LT] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_echo] = ACTIONS(2141), - [anon_sym_unset] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_concurrent] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_function] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_switch] = ACTIONS(2141), - [anon_sym_foreach] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_using] = ACTIONS(2141), - [sym_float] = ACTIONS(2143), - [sym_integer] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_True] = ACTIONS(2141), - [anon_sym_TRUE] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_False] = ACTIONS(2141), - [anon_sym_FALSE] = ACTIONS(2141), - [anon_sym_null] = ACTIONS(2141), - [anon_sym_Null] = ACTIONS(2141), - [anon_sym_NULL] = ACTIONS(2141), - [sym_string] = ACTIONS(2143), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_array] = ACTIONS(2141), - [anon_sym_varray] = ACTIONS(2141), - [anon_sym_darray] = ACTIONS(2141), - [anon_sym_vec] = ACTIONS(2141), - [anon_sym_dict] = ACTIONS(2141), - [anon_sym_keyset] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2141), - [anon_sym_class] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_abstract] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(2143), - [sym_final_modifier] = ACTIONS(2141), - [sym_xhp_modifier] = ACTIONS(2141), - [sym_xhp_identifier] = ACTIONS(2141), - [sym_xhp_class_identifier] = ACTIONS(2143), + [anon_sym_null] = ACTIONS(2305), + [anon_sym_Null] = ACTIONS(2305), + [anon_sym_NULL] = ACTIONS(2305), + [sym_string] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_array] = ACTIONS(2305), + [anon_sym_varray] = ACTIONS(2305), + [anon_sym_darray] = ACTIONS(2305), + [anon_sym_vec] = ACTIONS(2305), + [anon_sym_dict] = ACTIONS(2305), + [anon_sym_keyset] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2307), + [sym_final_modifier] = ACTIONS(2305), + [sym_xhp_modifier] = ACTIONS(2305), + [sym_xhp_identifier] = ACTIONS(2305), + [sym_xhp_class_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(3), }, - [1433] = { - [ts_builtin_sym_end] = ACTIONS(2303), + [1394] = { [sym_identifier] = ACTIONS(2301), [sym_variable] = ACTIONS(2303), [sym_pipe_variable] = ACTIONS(2303), @@ -168866,6 +159021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2301), [anon_sym_LT_LT] = ACTIONS(2301), [anon_sym_LT_LT_LT] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), [anon_sym_LBRACE] = ACTIONS(2303), [anon_sym_SEMI] = ACTIONS(2303), [anon_sym_return] = ACTIONS(2301), @@ -168880,6 +159036,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2301), [anon_sym_const] = ACTIONS(2301), [anon_sym_if] = ACTIONS(2301), + [anon_sym_elseif] = ACTIONS(2301), + [anon_sym_else] = ACTIONS(2301), [anon_sym_switch] = ACTIONS(2301), [anon_sym_foreach] = ACTIONS(2301), [anon_sym_while] = ACTIONS(2301), @@ -168929,180 +159087,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(3), }, - [1434] = { - [ts_builtin_sym_end] = ACTIONS(2595), - [sym_identifier] = ACTIONS(2593), - [sym_variable] = ACTIONS(2595), - [sym_pipe_variable] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_newtype] = ACTIONS(2593), - [anon_sym_shape] = ACTIONS(2593), - [anon_sym_tuple] = ACTIONS(2593), - [anon_sym_clone] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_print] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_include] = ACTIONS(2593), - [anon_sym_include_once] = ACTIONS(2593), - [anon_sym_require] = ACTIONS(2593), - [anon_sym_require_once] = ACTIONS(2593), - [anon_sym_BSLASH] = ACTIONS(2595), - [anon_sym_self] = ACTIONS(2593), - [anon_sym_parent] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_LT_LT] = ACTIONS(2593), - [anon_sym_LT_LT_LT] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_echo] = ACTIONS(2593), - [anon_sym_unset] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_concurrent] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_foreach] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [sym_float] = ACTIONS(2595), - [sym_integer] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_True] = ACTIONS(2593), - [anon_sym_TRUE] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_False] = ACTIONS(2593), - [anon_sym_FALSE] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2593), - [anon_sym_Null] = ACTIONS(2593), - [anon_sym_NULL] = ACTIONS(2593), - [sym_string] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_array] = ACTIONS(2593), - [anon_sym_varray] = ACTIONS(2593), - [anon_sym_darray] = ACTIONS(2593), - [anon_sym_vec] = ACTIONS(2593), - [anon_sym_dict] = ACTIONS(2593), - [anon_sym_keyset] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_list] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_trait] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2595), - [sym_final_modifier] = ACTIONS(2593), - [sym_xhp_modifier] = ACTIONS(2593), - [sym_xhp_identifier] = ACTIONS(2593), - [sym_xhp_class_identifier] = ACTIONS(2595), + [1395] = { + [sym_identifier] = ACTIONS(2181), + [sym_variable] = ACTIONS(2183), + [sym_pipe_variable] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_newtype] = ACTIONS(2181), + [anon_sym_shape] = ACTIONS(2181), + [anon_sym_tuple] = ACTIONS(2181), + [anon_sym_clone] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(2181), + [anon_sym_namespace] = ACTIONS(2181), + [anon_sym_include] = ACTIONS(2181), + [anon_sym_include_once] = ACTIONS(2181), + [anon_sym_require] = ACTIONS(2181), + [anon_sym_require_once] = ACTIONS(2181), + [anon_sym_BSLASH] = ACTIONS(2183), + [anon_sym_self] = ACTIONS(2181), + [anon_sym_parent] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_LT_LT_LT] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2181), + [anon_sym_echo] = ACTIONS(2181), + [anon_sym_unset] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_concurrent] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_elseif] = ACTIONS(2181), + [anon_sym_else] = ACTIONS(2181), + [anon_sym_switch] = ACTIONS(2181), + [anon_sym_foreach] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_using] = ACTIONS(2181), + [sym_float] = ACTIONS(2183), + [sym_integer] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_True] = ACTIONS(2181), + [anon_sym_TRUE] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_False] = ACTIONS(2181), + [anon_sym_FALSE] = ACTIONS(2181), + [anon_sym_null] = ACTIONS(2181), + [anon_sym_Null] = ACTIONS(2181), + [anon_sym_NULL] = ACTIONS(2181), + [sym_string] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_array] = ACTIONS(2181), + [anon_sym_varray] = ACTIONS(2181), + [anon_sym_darray] = ACTIONS(2181), + [anon_sym_vec] = ACTIONS(2181), + [anon_sym_dict] = ACTIONS(2181), + [anon_sym_keyset] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_list] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_class] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_abstract] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2183), + [sym_final_modifier] = ACTIONS(2181), + [sym_xhp_modifier] = ACTIONS(2181), + [sym_xhp_identifier] = ACTIONS(2181), + [sym_xhp_class_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(3), }, - [1435] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [sym_identifier] = ACTIONS(2321), - [sym_variable] = ACTIONS(2323), - [sym_pipe_variable] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_newtype] = ACTIONS(2321), - [anon_sym_shape] = ACTIONS(2321), - [anon_sym_tuple] = ACTIONS(2321), - [anon_sym_clone] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_print] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_LT_LT_LT] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_echo] = ACTIONS(2321), - [anon_sym_unset] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_concurrent] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_using] = ACTIONS(2321), - [sym_float] = ACTIONS(2323), - [sym_integer] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_True] = ACTIONS(2321), - [anon_sym_TRUE] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [anon_sym_False] = ACTIONS(2321), - [anon_sym_FALSE] = ACTIONS(2321), - [anon_sym_null] = ACTIONS(2321), - [anon_sym_Null] = ACTIONS(2321), - [anon_sym_NULL] = ACTIONS(2321), - [sym_string] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_array] = ACTIONS(2321), - [anon_sym_varray] = ACTIONS(2321), - [anon_sym_darray] = ACTIONS(2321), - [anon_sym_vec] = ACTIONS(2321), - [anon_sym_dict] = ACTIONS(2321), - [anon_sym_keyset] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(2323), - [sym_final_modifier] = ACTIONS(2321), - [sym_xhp_modifier] = ACTIONS(2321), - [sym_xhp_identifier] = ACTIONS(2321), - [sym_xhp_class_identifier] = ACTIONS(2323), + [1396] = { + [sym_identifier] = ACTIONS(2297), + [sym_variable] = ACTIONS(2299), + [sym_pipe_variable] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_newtype] = ACTIONS(2297), + [anon_sym_shape] = ACTIONS(2297), + [anon_sym_tuple] = ACTIONS(2297), + [anon_sym_clone] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_include] = ACTIONS(2297), + [anon_sym_include_once] = ACTIONS(2297), + [anon_sym_require] = ACTIONS(2297), + [anon_sym_require_once] = ACTIONS(2297), + [anon_sym_BSLASH] = ACTIONS(2299), + [anon_sym_self] = ACTIONS(2297), + [anon_sym_parent] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_echo] = ACTIONS(2297), + [anon_sym_unset] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_concurrent] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_elseif] = ACTIONS(2297), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_foreach] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_using] = ACTIONS(2297), + [sym_float] = ACTIONS(2299), + [sym_integer] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_True] = ACTIONS(2297), + [anon_sym_TRUE] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_False] = ACTIONS(2297), + [anon_sym_FALSE] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [anon_sym_Null] = ACTIONS(2297), + [anon_sym_NULL] = ACTIONS(2297), + [sym_string] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_array] = ACTIONS(2297), + [anon_sym_varray] = ACTIONS(2297), + [anon_sym_darray] = ACTIONS(2297), + [anon_sym_vec] = ACTIONS(2297), + [anon_sym_dict] = ACTIONS(2297), + [anon_sym_keyset] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_list] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2299), + [sym_final_modifier] = ACTIONS(2297), + [sym_xhp_modifier] = ACTIONS(2297), + [sym_xhp_identifier] = ACTIONS(2297), + [sym_xhp_class_identifier] = ACTIONS(2299), [sym_comment] = ACTIONS(3), }, - [1436] = { - [ts_builtin_sym_end] = ACTIONS(2291), + [1397] = { [sym_identifier] = ACTIONS(2289), [sym_variable] = ACTIONS(2291), [sym_pipe_variable] = ACTIONS(2291), @@ -169124,6 +159285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2289), [anon_sym_LT_LT] = ACTIONS(2289), [anon_sym_LT_LT_LT] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), [anon_sym_LBRACE] = ACTIONS(2291), [anon_sym_SEMI] = ACTIONS(2291), [anon_sym_return] = ACTIONS(2289), @@ -169138,6 +159300,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2289), [anon_sym_const] = ACTIONS(2289), [anon_sym_if] = ACTIONS(2289), + [anon_sym_elseif] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), [anon_sym_switch] = ACTIONS(2289), [anon_sym_foreach] = ACTIONS(2289), [anon_sym_while] = ACTIONS(2289), @@ -169187,695 +159351,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2291), [sym_comment] = ACTIONS(3), }, - [1437] = { - [sym_identifier] = ACTIONS(2281), - [sym_variable] = ACTIONS(2283), - [sym_pipe_variable] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_newtype] = ACTIONS(2281), - [anon_sym_shape] = ACTIONS(2281), - [anon_sym_tuple] = ACTIONS(2281), - [anon_sym_clone] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_print] = ACTIONS(2281), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_LT_LT_LT] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_throw] = ACTIONS(2281), - [anon_sym_echo] = ACTIONS(2281), - [anon_sym_unset] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_concurrent] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_foreach] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_using] = ACTIONS(2281), - [sym_float] = ACTIONS(2283), - [sym_integer] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_True] = ACTIONS(2281), - [anon_sym_TRUE] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_False] = ACTIONS(2281), - [anon_sym_FALSE] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [anon_sym_Null] = ACTIONS(2281), - [anon_sym_NULL] = ACTIONS(2281), - [sym_string] = ACTIONS(2283), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_array] = ACTIONS(2281), - [anon_sym_varray] = ACTIONS(2281), - [anon_sym_darray] = ACTIONS(2281), - [anon_sym_vec] = ACTIONS(2281), - [anon_sym_dict] = ACTIONS(2281), - [anon_sym_keyset] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_abstract] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2283), - [sym_final_modifier] = ACTIONS(2281), - [sym_xhp_modifier] = ACTIONS(2281), - [sym_xhp_identifier] = ACTIONS(2281), - [sym_xhp_class_identifier] = ACTIONS(2283), - [sym_comment] = ACTIONS(3), - }, - [1438] = { - [sym_identifier] = ACTIONS(2173), - [sym_variable] = ACTIONS(2175), - [sym_pipe_variable] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_newtype] = ACTIONS(2173), - [anon_sym_shape] = ACTIONS(2173), - [anon_sym_tuple] = ACTIONS(2173), - [anon_sym_clone] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_print] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_LT_LT_LT] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_echo] = ACTIONS(2173), - [anon_sym_unset] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_concurrent] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_foreach] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [sym_float] = ACTIONS(2175), - [sym_integer] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_True] = ACTIONS(2173), - [anon_sym_TRUE] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [anon_sym_False] = ACTIONS(2173), - [anon_sym_FALSE] = ACTIONS(2173), - [anon_sym_null] = ACTIONS(2173), - [anon_sym_Null] = ACTIONS(2173), - [anon_sym_NULL] = ACTIONS(2173), - [sym_string] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_array] = ACTIONS(2173), - [anon_sym_varray] = ACTIONS(2173), - [anon_sym_darray] = ACTIONS(2173), - [anon_sym_vec] = ACTIONS(2173), - [anon_sym_dict] = ACTIONS(2173), - [anon_sym_keyset] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_abstract] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2175), - [sym_final_modifier] = ACTIONS(2173), - [sym_xhp_modifier] = ACTIONS(2173), - [sym_xhp_identifier] = ACTIONS(2173), - [sym_xhp_class_identifier] = ACTIONS(2175), - [sym_comment] = ACTIONS(3), - }, - [1439] = { - [ts_builtin_sym_end] = ACTIONS(2327), - [sym_identifier] = ACTIONS(2325), - [sym_variable] = ACTIONS(2327), - [sym_pipe_variable] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_newtype] = ACTIONS(2325), - [anon_sym_shape] = ACTIONS(2325), - [anon_sym_tuple] = ACTIONS(2325), - [anon_sym_clone] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_print] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_LT_LT_LT] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_echo] = ACTIONS(2325), - [anon_sym_unset] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_concurrent] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_foreach] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_using] = ACTIONS(2325), - [sym_float] = ACTIONS(2327), - [sym_integer] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_True] = ACTIONS(2325), - [anon_sym_TRUE] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_False] = ACTIONS(2325), - [anon_sym_FALSE] = ACTIONS(2325), - [anon_sym_null] = ACTIONS(2325), - [anon_sym_Null] = ACTIONS(2325), - [anon_sym_NULL] = ACTIONS(2325), - [sym_string] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_array] = ACTIONS(2325), - [anon_sym_varray] = ACTIONS(2325), - [anon_sym_darray] = ACTIONS(2325), - [anon_sym_vec] = ACTIONS(2325), - [anon_sym_dict] = ACTIONS(2325), - [anon_sym_keyset] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(2327), - [sym_final_modifier] = ACTIONS(2325), - [sym_xhp_modifier] = ACTIONS(2325), - [sym_xhp_identifier] = ACTIONS(2325), - [sym_xhp_class_identifier] = ACTIONS(2327), + [1398] = { + [sym_identifier] = ACTIONS(2185), + [sym_variable] = ACTIONS(2187), + [sym_pipe_variable] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_newtype] = ACTIONS(2185), + [anon_sym_shape] = ACTIONS(2185), + [anon_sym_tuple] = ACTIONS(2185), + [anon_sym_clone] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_print] = ACTIONS(2185), + [anon_sym_namespace] = ACTIONS(2185), + [anon_sym_include] = ACTIONS(2185), + [anon_sym_include_once] = ACTIONS(2185), + [anon_sym_require] = ACTIONS(2185), + [anon_sym_require_once] = ACTIONS(2185), + [anon_sym_BSLASH] = ACTIONS(2187), + [anon_sym_self] = ACTIONS(2185), + [anon_sym_parent] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_LT_LT_LT] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_throw] = ACTIONS(2185), + [anon_sym_echo] = ACTIONS(2185), + [anon_sym_unset] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_concurrent] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_elseif] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_foreach] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_using] = ACTIONS(2185), + [sym_float] = ACTIONS(2187), + [sym_integer] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_True] = ACTIONS(2185), + [anon_sym_TRUE] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_False] = ACTIONS(2185), + [anon_sym_FALSE] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_Null] = ACTIONS(2185), + [anon_sym_NULL] = ACTIONS(2185), + [sym_string] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_array] = ACTIONS(2185), + [anon_sym_varray] = ACTIONS(2185), + [anon_sym_darray] = ACTIONS(2185), + [anon_sym_vec] = ACTIONS(2185), + [anon_sym_dict] = ACTIONS(2185), + [anon_sym_keyset] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_list] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_class] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_abstract] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2187), + [sym_final_modifier] = ACTIONS(2185), + [sym_xhp_modifier] = ACTIONS(2185), + [sym_xhp_identifier] = ACTIONS(2185), + [sym_xhp_class_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(3), }, - [1440] = { - [sym_identifier] = ACTIONS(2157), - [sym_variable] = ACTIONS(2159), - [sym_pipe_variable] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_newtype] = ACTIONS(2157), - [anon_sym_shape] = ACTIONS(2157), - [anon_sym_tuple] = ACTIONS(2157), - [anon_sym_clone] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_print] = ACTIONS(2157), - [anon_sym_namespace] = ACTIONS(2157), - [anon_sym_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_LT_LT_LT] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_throw] = ACTIONS(2157), - [anon_sym_echo] = ACTIONS(2157), - [anon_sym_unset] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_concurrent] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_function] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_switch] = ACTIONS(2157), - [anon_sym_foreach] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(2157), - [sym_float] = ACTIONS(2159), - [sym_integer] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_True] = ACTIONS(2157), - [anon_sym_TRUE] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [anon_sym_False] = ACTIONS(2157), - [anon_sym_FALSE] = ACTIONS(2157), - [anon_sym_null] = ACTIONS(2157), - [anon_sym_Null] = ACTIONS(2157), - [anon_sym_NULL] = ACTIONS(2157), - [sym_string] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_array] = ACTIONS(2157), - [anon_sym_varray] = ACTIONS(2157), - [anon_sym_darray] = ACTIONS(2157), - [anon_sym_vec] = ACTIONS(2157), - [anon_sym_dict] = ACTIONS(2157), - [anon_sym_keyset] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_interface] = ACTIONS(2157), - [anon_sym_class] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_abstract] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(2159), - [sym_final_modifier] = ACTIONS(2157), - [sym_xhp_modifier] = ACTIONS(2157), - [sym_xhp_identifier] = ACTIONS(2157), - [sym_xhp_class_identifier] = ACTIONS(2159), + [1399] = { + [sym_identifier] = ACTIONS(2285), + [sym_variable] = ACTIONS(2287), + [sym_pipe_variable] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_newtype] = ACTIONS(2285), + [anon_sym_shape] = ACTIONS(2285), + [anon_sym_tuple] = ACTIONS(2285), + [anon_sym_clone] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_print] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_include] = ACTIONS(2285), + [anon_sym_include_once] = ACTIONS(2285), + [anon_sym_require] = ACTIONS(2285), + [anon_sym_require_once] = ACTIONS(2285), + [anon_sym_BSLASH] = ACTIONS(2287), + [anon_sym_self] = ACTIONS(2285), + [anon_sym_parent] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_LT_LT_LT] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_echo] = ACTIONS(2285), + [anon_sym_unset] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_concurrent] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_elseif] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_foreach] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [sym_float] = ACTIONS(2287), + [sym_integer] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_True] = ACTIONS(2285), + [anon_sym_TRUE] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_False] = ACTIONS(2285), + [anon_sym_FALSE] = ACTIONS(2285), + [anon_sym_null] = ACTIONS(2285), + [anon_sym_Null] = ACTIONS(2285), + [anon_sym_NULL] = ACTIONS(2285), + [sym_string] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_array] = ACTIONS(2285), + [anon_sym_varray] = ACTIONS(2285), + [anon_sym_darray] = ACTIONS(2285), + [anon_sym_vec] = ACTIONS(2285), + [anon_sym_dict] = ACTIONS(2285), + [anon_sym_keyset] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_list] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2287), + [sym_final_modifier] = ACTIONS(2285), + [sym_xhp_modifier] = ACTIONS(2285), + [sym_xhp_identifier] = ACTIONS(2285), + [sym_xhp_class_identifier] = ACTIONS(2287), [sym_comment] = ACTIONS(3), }, - [1441] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2297), - [sym_variable] = ACTIONS(2299), - [sym_pipe_variable] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_newtype] = ACTIONS(2297), - [anon_sym_shape] = ACTIONS(2297), - [anon_sym_tuple] = ACTIONS(2297), - [anon_sym_clone] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_print] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_LT_LT_LT] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_echo] = ACTIONS(2297), - [anon_sym_unset] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_concurrent] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_foreach] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [sym_float] = ACTIONS(2299), - [sym_integer] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_True] = ACTIONS(2297), - [anon_sym_TRUE] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_False] = ACTIONS(2297), - [anon_sym_FALSE] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [anon_sym_Null] = ACTIONS(2297), - [anon_sym_NULL] = ACTIONS(2297), - [sym_string] = ACTIONS(2299), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_array] = ACTIONS(2297), - [anon_sym_varray] = ACTIONS(2297), - [anon_sym_darray] = ACTIONS(2297), - [anon_sym_vec] = ACTIONS(2297), - [anon_sym_dict] = ACTIONS(2297), - [anon_sym_keyset] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2299), - [sym_final_modifier] = ACTIONS(2297), - [sym_xhp_modifier] = ACTIONS(2297), - [sym_xhp_identifier] = ACTIONS(2297), - [sym_xhp_class_identifier] = ACTIONS(2299), + [1400] = { + [sym_identifier] = ACTIONS(2189), + [sym_variable] = ACTIONS(2191), + [sym_pipe_variable] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_newtype] = ACTIONS(2189), + [anon_sym_shape] = ACTIONS(2189), + [anon_sym_tuple] = ACTIONS(2189), + [anon_sym_clone] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_include] = ACTIONS(2189), + [anon_sym_include_once] = ACTIONS(2189), + [anon_sym_require] = ACTIONS(2189), + [anon_sym_require_once] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_self] = ACTIONS(2189), + [anon_sym_parent] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT_LT_LT] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_echo] = ACTIONS(2189), + [anon_sym_unset] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_concurrent] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_elseif] = ACTIONS(2189), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_foreach] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [sym_float] = ACTIONS(2191), + [sym_integer] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_True] = ACTIONS(2189), + [anon_sym_TRUE] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_False] = ACTIONS(2189), + [anon_sym_FALSE] = ACTIONS(2189), + [anon_sym_null] = ACTIONS(2189), + [anon_sym_Null] = ACTIONS(2189), + [anon_sym_NULL] = ACTIONS(2189), + [sym_string] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_array] = ACTIONS(2189), + [anon_sym_varray] = ACTIONS(2189), + [anon_sym_darray] = ACTIONS(2189), + [anon_sym_vec] = ACTIONS(2189), + [anon_sym_dict] = ACTIONS(2189), + [anon_sym_keyset] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_list] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2191), + [sym_final_modifier] = ACTIONS(2189), + [sym_xhp_modifier] = ACTIONS(2189), + [sym_xhp_identifier] = ACTIONS(2189), + [sym_xhp_class_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(3), }, - [1442] = { - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2497), - [sym_variable] = ACTIONS(2499), - [sym_pipe_variable] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_newtype] = ACTIONS(2497), - [anon_sym_shape] = ACTIONS(2497), - [anon_sym_tuple] = ACTIONS(2497), - [anon_sym_clone] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_print] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_LT_LT_LT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_echo] = ACTIONS(2497), - [anon_sym_unset] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_concurrent] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_foreach] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_using] = ACTIONS(2497), - [sym_float] = ACTIONS(2499), - [sym_integer] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_True] = ACTIONS(2497), - [anon_sym_TRUE] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_False] = ACTIONS(2497), - [anon_sym_FALSE] = ACTIONS(2497), - [anon_sym_null] = ACTIONS(2497), - [anon_sym_Null] = ACTIONS(2497), - [anon_sym_NULL] = ACTIONS(2497), - [sym_string] = ACTIONS(2499), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_array] = ACTIONS(2497), - [anon_sym_varray] = ACTIONS(2497), - [anon_sym_darray] = ACTIONS(2497), - [anon_sym_vec] = ACTIONS(2497), - [anon_sym_dict] = ACTIONS(2497), - [anon_sym_keyset] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_trait] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2499), - [sym_final_modifier] = ACTIONS(2497), - [sym_xhp_modifier] = ACTIONS(2497), - [sym_xhp_identifier] = ACTIONS(2497), - [sym_xhp_class_identifier] = ACTIONS(2499), + [1401] = { + [sym_identifier] = ACTIONS(2281), + [sym_variable] = ACTIONS(2283), + [sym_pipe_variable] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_newtype] = ACTIONS(2281), + [anon_sym_shape] = ACTIONS(2281), + [anon_sym_tuple] = ACTIONS(2281), + [anon_sym_clone] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_print] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_include] = ACTIONS(2281), + [anon_sym_include_once] = ACTIONS(2281), + [anon_sym_require] = ACTIONS(2281), + [anon_sym_require_once] = ACTIONS(2281), + [anon_sym_BSLASH] = ACTIONS(2283), + [anon_sym_self] = ACTIONS(2281), + [anon_sym_parent] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_LT_LT] = ACTIONS(2281), + [anon_sym_LT_LT_LT] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_echo] = ACTIONS(2281), + [anon_sym_unset] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_concurrent] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_elseif] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_foreach] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [sym_float] = ACTIONS(2283), + [sym_integer] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_True] = ACTIONS(2281), + [anon_sym_TRUE] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_False] = ACTIONS(2281), + [anon_sym_FALSE] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [anon_sym_Null] = ACTIONS(2281), + [anon_sym_NULL] = ACTIONS(2281), + [sym_string] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_array] = ACTIONS(2281), + [anon_sym_varray] = ACTIONS(2281), + [anon_sym_darray] = ACTIONS(2281), + [anon_sym_vec] = ACTIONS(2281), + [anon_sym_dict] = ACTIONS(2281), + [anon_sym_keyset] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2283), + [sym_final_modifier] = ACTIONS(2281), + [sym_xhp_modifier] = ACTIONS(2281), + [sym_xhp_identifier] = ACTIONS(2281), + [sym_xhp_class_identifier] = ACTIONS(2283), [sym_comment] = ACTIONS(3), }, - [1443] = { - [sym_identifier] = ACTIONS(2333), - [sym_variable] = ACTIONS(2335), - [sym_pipe_variable] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_newtype] = ACTIONS(2333), - [anon_sym_shape] = ACTIONS(2333), - [anon_sym_tuple] = ACTIONS(2333), - [anon_sym_clone] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_print] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_LT_LT] = ACTIONS(2333), - [anon_sym_LT_LT_LT] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_echo] = ACTIONS(2333), - [anon_sym_unset] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_concurrent] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_foreach] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_using] = ACTIONS(2333), - [sym_float] = ACTIONS(2335), - [sym_integer] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_True] = ACTIONS(2333), - [anon_sym_TRUE] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [anon_sym_False] = ACTIONS(2333), - [anon_sym_FALSE] = ACTIONS(2333), - [anon_sym_null] = ACTIONS(2333), - [anon_sym_Null] = ACTIONS(2333), - [anon_sym_NULL] = ACTIONS(2333), - [sym_string] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_array] = ACTIONS(2333), - [anon_sym_varray] = ACTIONS(2333), - [anon_sym_darray] = ACTIONS(2333), - [anon_sym_vec] = ACTIONS(2333), - [anon_sym_dict] = ACTIONS(2333), - [anon_sym_keyset] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(2335), - [sym_final_modifier] = ACTIONS(2333), - [sym_xhp_modifier] = ACTIONS(2333), - [sym_xhp_identifier] = ACTIONS(2333), - [sym_xhp_class_identifier] = ACTIONS(2335), + [1402] = { + [sym_identifier] = ACTIONS(2193), + [sym_variable] = ACTIONS(2195), + [sym_pipe_variable] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_newtype] = ACTIONS(2193), + [anon_sym_shape] = ACTIONS(2193), + [anon_sym_tuple] = ACTIONS(2193), + [anon_sym_clone] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_print] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_include] = ACTIONS(2193), + [anon_sym_include_once] = ACTIONS(2193), + [anon_sym_require] = ACTIONS(2193), + [anon_sym_require_once] = ACTIONS(2193), + [anon_sym_BSLASH] = ACTIONS(2195), + [anon_sym_self] = ACTIONS(2193), + [anon_sym_parent] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_LT_LT_LT] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_echo] = ACTIONS(2193), + [anon_sym_unset] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_concurrent] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_elseif] = ACTIONS(2193), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_foreach] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [sym_float] = ACTIONS(2195), + [sym_integer] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_True] = ACTIONS(2193), + [anon_sym_TRUE] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_False] = ACTIONS(2193), + [anon_sym_FALSE] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [anon_sym_Null] = ACTIONS(2193), + [anon_sym_NULL] = ACTIONS(2193), + [sym_string] = ACTIONS(2195), + [anon_sym_AT] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_array] = ACTIONS(2193), + [anon_sym_varray] = ACTIONS(2193), + [anon_sym_darray] = ACTIONS(2193), + [anon_sym_vec] = ACTIONS(2193), + [anon_sym_dict] = ACTIONS(2193), + [anon_sym_keyset] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_list] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2195), + [sym_final_modifier] = ACTIONS(2193), + [sym_xhp_modifier] = ACTIONS(2193), + [sym_xhp_identifier] = ACTIONS(2193), + [sym_xhp_class_identifier] = ACTIONS(2195), [sym_comment] = ACTIONS(3), }, - [1444] = { - [sym_identifier] = ACTIONS(2145), - [sym_variable] = ACTIONS(2147), - [sym_pipe_variable] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_newtype] = ACTIONS(2145), - [anon_sym_shape] = ACTIONS(2145), - [anon_sym_tuple] = ACTIONS(2145), - [anon_sym_clone] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_print] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_LT_LT_LT] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_echo] = ACTIONS(2145), - [anon_sym_unset] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_concurrent] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_foreach] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [sym_float] = ACTIONS(2147), - [sym_integer] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_True] = ACTIONS(2145), - [anon_sym_TRUE] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_False] = ACTIONS(2145), - [anon_sym_FALSE] = ACTIONS(2145), - [anon_sym_null] = ACTIONS(2145), - [anon_sym_Null] = ACTIONS(2145), - [anon_sym_NULL] = ACTIONS(2145), - [sym_string] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_array] = ACTIONS(2145), - [anon_sym_varray] = ACTIONS(2145), - [anon_sym_darray] = ACTIONS(2145), - [anon_sym_vec] = ACTIONS(2145), - [anon_sym_dict] = ACTIONS(2145), - [anon_sym_keyset] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2147), - [sym_final_modifier] = ACTIONS(2145), - [sym_xhp_modifier] = ACTIONS(2145), - [sym_xhp_identifier] = ACTIONS(2145), - [sym_xhp_class_identifier] = ACTIONS(2147), + [1403] = { + [sym_identifier] = ACTIONS(2197), + [sym_variable] = ACTIONS(2199), + [sym_pipe_variable] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_newtype] = ACTIONS(2197), + [anon_sym_shape] = ACTIONS(2197), + [anon_sym_tuple] = ACTIONS(2197), + [anon_sym_clone] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_print] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_include] = ACTIONS(2197), + [anon_sym_include_once] = ACTIONS(2197), + [anon_sym_require] = ACTIONS(2197), + [anon_sym_require_once] = ACTIONS(2197), + [anon_sym_BSLASH] = ACTIONS(2199), + [anon_sym_self] = ACTIONS(2197), + [anon_sym_parent] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_LT_LT_LT] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_echo] = ACTIONS(2197), + [anon_sym_unset] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_concurrent] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_elseif] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_foreach] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [sym_float] = ACTIONS(2199), + [sym_integer] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_True] = ACTIONS(2197), + [anon_sym_TRUE] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_False] = ACTIONS(2197), + [anon_sym_FALSE] = ACTIONS(2197), + [anon_sym_null] = ACTIONS(2197), + [anon_sym_Null] = ACTIONS(2197), + [anon_sym_NULL] = ACTIONS(2197), + [sym_string] = ACTIONS(2199), + [anon_sym_AT] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_array] = ACTIONS(2197), + [anon_sym_varray] = ACTIONS(2197), + [anon_sym_darray] = ACTIONS(2197), + [anon_sym_vec] = ACTIONS(2197), + [anon_sym_dict] = ACTIONS(2197), + [anon_sym_keyset] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_list] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2199), + [sym_final_modifier] = ACTIONS(2197), + [sym_xhp_modifier] = ACTIONS(2197), + [sym_xhp_identifier] = ACTIONS(2197), + [sym_xhp_class_identifier] = ACTIONS(2199), [sym_comment] = ACTIONS(3), }, - [1445] = { + [1404] = { [sym_identifier] = ACTIONS(2277), [sym_variable] = ACTIONS(2279), [sym_pipe_variable] = ACTIONS(2279), @@ -169912,6 +159916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(2277), [anon_sym_const] = ACTIONS(2277), [anon_sym_if] = ACTIONS(2277), + [anon_sym_elseif] = ACTIONS(2277), + [anon_sym_else] = ACTIONS(2277), [anon_sym_switch] = ACTIONS(2277), [anon_sym_foreach] = ACTIONS(2277), [anon_sym_while] = ACTIONS(2277), @@ -169961,2243 +159967,2973 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2279), [sym_comment] = ACTIONS(3), }, - [1446] = { - [sym_identifier] = ACTIONS(2329), - [sym_variable] = ACTIONS(2331), - [sym_pipe_variable] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_newtype] = ACTIONS(2329), - [anon_sym_shape] = ACTIONS(2329), - [anon_sym_tuple] = ACTIONS(2329), - [anon_sym_clone] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_print] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_LT_LT] = ACTIONS(2329), - [anon_sym_LT_LT_LT] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_echo] = ACTIONS(2329), - [anon_sym_unset] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_concurrent] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_foreach] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [sym_float] = ACTIONS(2331), - [sym_integer] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_True] = ACTIONS(2329), - [anon_sym_TRUE] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [anon_sym_False] = ACTIONS(2329), - [anon_sym_FALSE] = ACTIONS(2329), - [anon_sym_null] = ACTIONS(2329), - [anon_sym_Null] = ACTIONS(2329), - [anon_sym_NULL] = ACTIONS(2329), - [sym_string] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_array] = ACTIONS(2329), - [anon_sym_varray] = ACTIONS(2329), - [anon_sym_darray] = ACTIONS(2329), - [anon_sym_vec] = ACTIONS(2329), - [anon_sym_dict] = ACTIONS(2329), - [anon_sym_keyset] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_trait] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(2331), - [sym_final_modifier] = ACTIONS(2329), - [sym_xhp_modifier] = ACTIONS(2329), - [sym_xhp_identifier] = ACTIONS(2329), - [sym_xhp_class_identifier] = ACTIONS(2331), + [1405] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1406] = { + [sym_identifier] = ACTIONS(2269), + [sym_variable] = ACTIONS(2271), + [sym_pipe_variable] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_newtype] = ACTIONS(2269), + [anon_sym_shape] = ACTIONS(2269), + [anon_sym_tuple] = ACTIONS(2269), + [anon_sym_clone] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_print] = ACTIONS(2269), + [anon_sym_namespace] = ACTIONS(2269), + [anon_sym_include] = ACTIONS(2269), + [anon_sym_include_once] = ACTIONS(2269), + [anon_sym_require] = ACTIONS(2269), + [anon_sym_require_once] = ACTIONS(2269), + [anon_sym_BSLASH] = ACTIONS(2271), + [anon_sym_self] = ACTIONS(2269), + [anon_sym_parent] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_LT_LT_LT] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_echo] = ACTIONS(2269), + [anon_sym_unset] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_concurrent] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_elseif] = ACTIONS(2269), + [anon_sym_else] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_foreach] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_using] = ACTIONS(2269), + [sym_float] = ACTIONS(2271), + [sym_integer] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_True] = ACTIONS(2269), + [anon_sym_TRUE] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_False] = ACTIONS(2269), + [anon_sym_FALSE] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), + [anon_sym_Null] = ACTIONS(2269), + [anon_sym_NULL] = ACTIONS(2269), + [sym_string] = ACTIONS(2271), + [anon_sym_AT] = ACTIONS(2271), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_array] = ACTIONS(2269), + [anon_sym_varray] = ACTIONS(2269), + [anon_sym_darray] = ACTIONS(2269), + [anon_sym_vec] = ACTIONS(2269), + [anon_sym_dict] = ACTIONS(2269), + [anon_sym_keyset] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_list] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_abstract] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2271), + [sym_final_modifier] = ACTIONS(2269), + [sym_xhp_modifier] = ACTIONS(2269), + [sym_xhp_identifier] = ACTIONS(2269), + [sym_xhp_class_identifier] = ACTIONS(2271), + [sym_comment] = ACTIONS(3), + }, + [1407] = { + [sym_identifier] = ACTIONS(2265), + [sym_variable] = ACTIONS(2267), + [sym_pipe_variable] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_newtype] = ACTIONS(2265), + [anon_sym_shape] = ACTIONS(2265), + [anon_sym_tuple] = ACTIONS(2265), + [anon_sym_clone] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_print] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2265), + [anon_sym_include] = ACTIONS(2265), + [anon_sym_include_once] = ACTIONS(2265), + [anon_sym_require] = ACTIONS(2265), + [anon_sym_require_once] = ACTIONS(2265), + [anon_sym_BSLASH] = ACTIONS(2267), + [anon_sym_self] = ACTIONS(2265), + [anon_sym_parent] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_LT_LT_LT] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_throw] = ACTIONS(2265), + [anon_sym_echo] = ACTIONS(2265), + [anon_sym_unset] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_concurrent] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_function] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_elseif] = ACTIONS(2265), + [anon_sym_else] = ACTIONS(2265), + [anon_sym_switch] = ACTIONS(2265), + [anon_sym_foreach] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_using] = ACTIONS(2265), + [sym_float] = ACTIONS(2267), + [sym_integer] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_True] = ACTIONS(2265), + [anon_sym_TRUE] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_False] = ACTIONS(2265), + [anon_sym_FALSE] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), + [anon_sym_Null] = ACTIONS(2265), + [anon_sym_NULL] = ACTIONS(2265), + [sym_string] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_array] = ACTIONS(2265), + [anon_sym_varray] = ACTIONS(2265), + [anon_sym_darray] = ACTIONS(2265), + [anon_sym_vec] = ACTIONS(2265), + [anon_sym_dict] = ACTIONS(2265), + [anon_sym_keyset] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_list] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_abstract] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2267), + [sym_final_modifier] = ACTIONS(2265), + [sym_xhp_modifier] = ACTIONS(2265), + [sym_xhp_identifier] = ACTIONS(2265), + [sym_xhp_class_identifier] = ACTIONS(2267), + [sym_comment] = ACTIONS(3), + }, + [1408] = { + [sym_identifier] = ACTIONS(2043), + [sym_variable] = ACTIONS(2045), + [sym_pipe_variable] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_newtype] = ACTIONS(2043), + [anon_sym_shape] = ACTIONS(2043), + [anon_sym_tuple] = ACTIONS(2043), + [anon_sym_clone] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_print] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2043), + [anon_sym_include] = ACTIONS(2043), + [anon_sym_include_once] = ACTIONS(2043), + [anon_sym_require] = ACTIONS(2043), + [anon_sym_require_once] = ACTIONS(2043), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_self] = ACTIONS(2043), + [anon_sym_parent] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_LT_LT] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_throw] = ACTIONS(2043), + [anon_sym_echo] = ACTIONS(2043), + [anon_sym_unset] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_concurrent] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_function] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_switch] = ACTIONS(2043), + [anon_sym_foreach] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_finally] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(2043), + [sym_float] = ACTIONS(2045), + [sym_integer] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_True] = ACTIONS(2043), + [anon_sym_TRUE] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_False] = ACTIONS(2043), + [anon_sym_FALSE] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [anon_sym_Null] = ACTIONS(2043), + [anon_sym_NULL] = ACTIONS(2043), + [sym_string] = ACTIONS(2045), + [anon_sym_AT] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_array] = ACTIONS(2043), + [anon_sym_varray] = ACTIONS(2043), + [anon_sym_darray] = ACTIONS(2043), + [anon_sym_vec] = ACTIONS(2043), + [anon_sym_dict] = ACTIONS(2043), + [anon_sym_keyset] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2045), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_interface] = ACTIONS(2043), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_abstract] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_final_modifier] = ACTIONS(2043), + [sym_xhp_modifier] = ACTIONS(2043), + [sym_xhp_identifier] = ACTIONS(2043), + [sym_xhp_class_identifier] = ACTIONS(2045), + [sym_comment] = ACTIONS(3), + }, + [1409] = { + [sym_identifier] = ACTIONS(2261), + [sym_variable] = ACTIONS(2263), + [sym_pipe_variable] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_newtype] = ACTIONS(2261), + [anon_sym_shape] = ACTIONS(2261), + [anon_sym_tuple] = ACTIONS(2261), + [anon_sym_clone] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_include] = ACTIONS(2261), + [anon_sym_include_once] = ACTIONS(2261), + [anon_sym_require] = ACTIONS(2261), + [anon_sym_require_once] = ACTIONS(2261), + [anon_sym_BSLASH] = ACTIONS(2263), + [anon_sym_self] = ACTIONS(2261), + [anon_sym_parent] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_LT_LT_LT] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_echo] = ACTIONS(2261), + [anon_sym_unset] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_concurrent] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_elseif] = ACTIONS(2261), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_foreach] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_using] = ACTIONS(2261), + [sym_float] = ACTIONS(2263), + [sym_integer] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_True] = ACTIONS(2261), + [anon_sym_TRUE] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_False] = ACTIONS(2261), + [anon_sym_FALSE] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_Null] = ACTIONS(2261), + [anon_sym_NULL] = ACTIONS(2261), + [sym_string] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_array] = ACTIONS(2261), + [anon_sym_varray] = ACTIONS(2261), + [anon_sym_darray] = ACTIONS(2261), + [anon_sym_vec] = ACTIONS(2261), + [anon_sym_dict] = ACTIONS(2261), + [anon_sym_keyset] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_list] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2263), + [sym_final_modifier] = ACTIONS(2261), + [sym_xhp_modifier] = ACTIONS(2261), + [sym_xhp_identifier] = ACTIONS(2261), + [sym_xhp_class_identifier] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + }, + [1410] = { + [sym_identifier] = ACTIONS(2261), + [sym_variable] = ACTIONS(2263), + [sym_pipe_variable] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_newtype] = ACTIONS(2261), + [anon_sym_shape] = ACTIONS(2261), + [anon_sym_tuple] = ACTIONS(2261), + [anon_sym_clone] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_include] = ACTIONS(2261), + [anon_sym_include_once] = ACTIONS(2261), + [anon_sym_require] = ACTIONS(2261), + [anon_sym_require_once] = ACTIONS(2261), + [anon_sym_BSLASH] = ACTIONS(2263), + [anon_sym_self] = ACTIONS(2261), + [anon_sym_parent] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_LT_LT_LT] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_echo] = ACTIONS(2261), + [anon_sym_unset] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_concurrent] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_case] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_foreach] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_using] = ACTIONS(2261), + [sym_float] = ACTIONS(2263), + [sym_integer] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_True] = ACTIONS(2261), + [anon_sym_TRUE] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_False] = ACTIONS(2261), + [anon_sym_FALSE] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_Null] = ACTIONS(2261), + [anon_sym_NULL] = ACTIONS(2261), + [sym_string] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_array] = ACTIONS(2261), + [anon_sym_varray] = ACTIONS(2261), + [anon_sym_darray] = ACTIONS(2261), + [anon_sym_vec] = ACTIONS(2261), + [anon_sym_dict] = ACTIONS(2261), + [anon_sym_keyset] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_list] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2263), + [sym_final_modifier] = ACTIONS(2261), + [sym_xhp_modifier] = ACTIONS(2261), + [sym_xhp_identifier] = ACTIONS(2261), + [sym_xhp_class_identifier] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + }, + [1411] = { + [sym_identifier] = ACTIONS(2257), + [sym_variable] = ACTIONS(2259), + [sym_pipe_variable] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_newtype] = ACTIONS(2257), + [anon_sym_shape] = ACTIONS(2257), + [anon_sym_tuple] = ACTIONS(2257), + [anon_sym_clone] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_include_once] = ACTIONS(2257), + [anon_sym_require] = ACTIONS(2257), + [anon_sym_require_once] = ACTIONS(2257), + [anon_sym_BSLASH] = ACTIONS(2259), + [anon_sym_self] = ACTIONS(2257), + [anon_sym_parent] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_LT_LT_LT] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_echo] = ACTIONS(2257), + [anon_sym_unset] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_concurrent] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_elseif] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_foreach] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_using] = ACTIONS(2257), + [sym_float] = ACTIONS(2259), + [sym_integer] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_True] = ACTIONS(2257), + [anon_sym_TRUE] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_False] = ACTIONS(2257), + [anon_sym_FALSE] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_Null] = ACTIONS(2257), + [anon_sym_NULL] = ACTIONS(2257), + [sym_string] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_array] = ACTIONS(2257), + [anon_sym_varray] = ACTIONS(2257), + [anon_sym_darray] = ACTIONS(2257), + [anon_sym_vec] = ACTIONS(2257), + [anon_sym_dict] = ACTIONS(2257), + [anon_sym_keyset] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_list] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_abstract] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2259), + [sym_final_modifier] = ACTIONS(2257), + [sym_xhp_modifier] = ACTIONS(2257), + [sym_xhp_identifier] = ACTIONS(2257), + [sym_xhp_class_identifier] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + }, + [1412] = { + [sym_identifier] = ACTIONS(2201), + [sym_variable] = ACTIONS(2203), + [sym_pipe_variable] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_newtype] = ACTIONS(2201), + [anon_sym_shape] = ACTIONS(2201), + [anon_sym_tuple] = ACTIONS(2201), + [anon_sym_clone] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_namespace] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_include_once] = ACTIONS(2201), + [anon_sym_require] = ACTIONS(2201), + [anon_sym_require_once] = ACTIONS(2201), + [anon_sym_BSLASH] = ACTIONS(2203), + [anon_sym_self] = ACTIONS(2201), + [anon_sym_parent] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_LT_LT_LT] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_echo] = ACTIONS(2201), + [anon_sym_unset] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_concurrent] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_elseif] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_foreach] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_using] = ACTIONS(2201), + [sym_float] = ACTIONS(2203), + [sym_integer] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [sym_string] = ACTIONS(2203), + [anon_sym_AT] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_array] = ACTIONS(2201), + [anon_sym_varray] = ACTIONS(2201), + [anon_sym_darray] = ACTIONS(2201), + [anon_sym_vec] = ACTIONS(2201), + [anon_sym_dict] = ACTIONS(2201), + [anon_sym_keyset] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_list] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_class] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2203), + [sym_final_modifier] = ACTIONS(2201), + [sym_xhp_modifier] = ACTIONS(2201), + [sym_xhp_identifier] = ACTIONS(2201), + [sym_xhp_class_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(3), }, - [1447] = { - [sym_identifier] = ACTIONS(2273), - [sym_variable] = ACTIONS(2275), - [sym_pipe_variable] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_newtype] = ACTIONS(2273), - [anon_sym_shape] = ACTIONS(2273), - [anon_sym_tuple] = ACTIONS(2273), - [anon_sym_clone] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_print] = ACTIONS(2273), - [anon_sym_namespace] = ACTIONS(2273), - [anon_sym_include] = ACTIONS(2273), - [anon_sym_include_once] = ACTIONS(2273), - [anon_sym_require] = ACTIONS(2273), - [anon_sym_require_once] = ACTIONS(2273), - [anon_sym_BSLASH] = ACTIONS(2275), - [anon_sym_self] = ACTIONS(2273), - [anon_sym_parent] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_LT_LT_LT] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_throw] = ACTIONS(2273), - [anon_sym_echo] = ACTIONS(2273), - [anon_sym_unset] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_concurrent] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_function] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_switch] = ACTIONS(2273), - [anon_sym_foreach] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_using] = ACTIONS(2273), - [sym_float] = ACTIONS(2275), - [sym_integer] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_True] = ACTIONS(2273), - [anon_sym_TRUE] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_False] = ACTIONS(2273), - [anon_sym_FALSE] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [anon_sym_Null] = ACTIONS(2273), - [anon_sym_NULL] = ACTIONS(2273), - [sym_string] = ACTIONS(2275), - [anon_sym_AT] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_array] = ACTIONS(2273), - [anon_sym_varray] = ACTIONS(2273), - [anon_sym_darray] = ACTIONS(2273), - [anon_sym_vec] = ACTIONS(2273), - [anon_sym_dict] = ACTIONS(2273), - [anon_sym_keyset] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_list] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(2275), - [anon_sym_DASH_DASH] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_class] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_abstract] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2275), - [sym_final_modifier] = ACTIONS(2273), - [sym_xhp_modifier] = ACTIONS(2273), - [sym_xhp_identifier] = ACTIONS(2273), - [sym_xhp_class_identifier] = ACTIONS(2275), + [1413] = { + [sym_identifier] = ACTIONS(2205), + [sym_variable] = ACTIONS(2207), + [sym_pipe_variable] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_newtype] = ACTIONS(2205), + [anon_sym_shape] = ACTIONS(2205), + [anon_sym_tuple] = ACTIONS(2205), + [anon_sym_clone] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_print] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_include] = ACTIONS(2205), + [anon_sym_include_once] = ACTIONS(2205), + [anon_sym_require] = ACTIONS(2205), + [anon_sym_require_once] = ACTIONS(2205), + [anon_sym_BSLASH] = ACTIONS(2207), + [anon_sym_self] = ACTIONS(2205), + [anon_sym_parent] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_LT_LT_LT] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_echo] = ACTIONS(2205), + [anon_sym_unset] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_concurrent] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_elseif] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_foreach] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [sym_float] = ACTIONS(2207), + [sym_integer] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_True] = ACTIONS(2205), + [anon_sym_TRUE] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_False] = ACTIONS(2205), + [anon_sym_FALSE] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(2205), + [anon_sym_Null] = ACTIONS(2205), + [anon_sym_NULL] = ACTIONS(2205), + [sym_string] = ACTIONS(2207), + [anon_sym_AT] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_array] = ACTIONS(2205), + [anon_sym_varray] = ACTIONS(2205), + [anon_sym_darray] = ACTIONS(2205), + [anon_sym_vec] = ACTIONS(2205), + [anon_sym_dict] = ACTIONS(2205), + [anon_sym_keyset] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_list] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2207), + [sym_final_modifier] = ACTIONS(2205), + [sym_xhp_modifier] = ACTIONS(2205), + [sym_xhp_identifier] = ACTIONS(2205), + [sym_xhp_class_identifier] = ACTIONS(2207), [sym_comment] = ACTIONS(3), }, - [1448] = { - [sym_identifier] = ACTIONS(2285), - [sym_variable] = ACTIONS(2287), - [sym_pipe_variable] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_newtype] = ACTIONS(2285), - [anon_sym_shape] = ACTIONS(2285), - [anon_sym_tuple] = ACTIONS(2285), - [anon_sym_clone] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_print] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_LT_LT_LT] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_throw] = ACTIONS(2285), - [anon_sym_echo] = ACTIONS(2285), - [anon_sym_unset] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_concurrent] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_function] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_switch] = ACTIONS(2285), - [anon_sym_foreach] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_using] = ACTIONS(2285), - [sym_float] = ACTIONS(2287), - [sym_integer] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_True] = ACTIONS(2285), - [anon_sym_TRUE] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_False] = ACTIONS(2285), - [anon_sym_FALSE] = ACTIONS(2285), - [anon_sym_null] = ACTIONS(2285), - [anon_sym_Null] = ACTIONS(2285), - [anon_sym_NULL] = ACTIONS(2285), - [sym_string] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_array] = ACTIONS(2285), - [anon_sym_varray] = ACTIONS(2285), - [anon_sym_darray] = ACTIONS(2285), - [anon_sym_vec] = ACTIONS(2285), - [anon_sym_dict] = ACTIONS(2285), - [anon_sym_keyset] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_abstract] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2287), - [sym_final_modifier] = ACTIONS(2285), - [sym_xhp_modifier] = ACTIONS(2285), - [sym_xhp_identifier] = ACTIONS(2285), - [sym_xhp_class_identifier] = ACTIONS(2287), + [1414] = { + [sym_identifier] = ACTIONS(2253), + [sym_variable] = ACTIONS(2255), + [sym_pipe_variable] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_newtype] = ACTIONS(2253), + [anon_sym_shape] = ACTIONS(2253), + [anon_sym_tuple] = ACTIONS(2253), + [anon_sym_clone] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_print] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_include] = ACTIONS(2253), + [anon_sym_include_once] = ACTIONS(2253), + [anon_sym_require] = ACTIONS(2253), + [anon_sym_require_once] = ACTIONS(2253), + [anon_sym_BSLASH] = ACTIONS(2255), + [anon_sym_self] = ACTIONS(2253), + [anon_sym_parent] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2253), + [anon_sym_LT_LT_LT] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_echo] = ACTIONS(2253), + [anon_sym_unset] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_concurrent] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_elseif] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_foreach] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [sym_float] = ACTIONS(2255), + [sym_integer] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_True] = ACTIONS(2253), + [anon_sym_TRUE] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_False] = ACTIONS(2253), + [anon_sym_FALSE] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [anon_sym_Null] = ACTIONS(2253), + [anon_sym_NULL] = ACTIONS(2253), + [sym_string] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_array] = ACTIONS(2253), + [anon_sym_varray] = ACTIONS(2253), + [anon_sym_darray] = ACTIONS(2253), + [anon_sym_vec] = ACTIONS(2253), + [anon_sym_dict] = ACTIONS(2253), + [anon_sym_keyset] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_list] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2255), + [sym_final_modifier] = ACTIONS(2253), + [sym_xhp_modifier] = ACTIONS(2253), + [sym_xhp_identifier] = ACTIONS(2253), + [sym_xhp_class_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(3), }, - [1449] = { - [sym_identifier] = ACTIONS(2337), - [sym_variable] = ACTIONS(2339), - [sym_pipe_variable] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_newtype] = ACTIONS(2337), - [anon_sym_shape] = ACTIONS(2337), - [anon_sym_tuple] = ACTIONS(2337), - [anon_sym_clone] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_print] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2337), - [anon_sym_LT_LT_LT] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_echo] = ACTIONS(2337), - [anon_sym_unset] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_concurrent] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_function] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_foreach] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [sym_float] = ACTIONS(2339), - [sym_integer] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_True] = ACTIONS(2337), - [anon_sym_TRUE] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [anon_sym_False] = ACTIONS(2337), - [anon_sym_FALSE] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [anon_sym_Null] = ACTIONS(2337), - [anon_sym_NULL] = ACTIONS(2337), - [sym_string] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_array] = ACTIONS(2337), - [anon_sym_varray] = ACTIONS(2337), - [anon_sym_darray] = ACTIONS(2337), - [anon_sym_vec] = ACTIONS(2337), - [anon_sym_dict] = ACTIONS(2337), - [anon_sym_keyset] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_trait] = ACTIONS(2337), - [anon_sym_interface] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_abstract] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(2339), - [sym_final_modifier] = ACTIONS(2337), - [sym_xhp_modifier] = ACTIONS(2337), - [sym_xhp_identifier] = ACTIONS(2337), - [sym_xhp_class_identifier] = ACTIONS(2339), + [1415] = { + [sym_identifier] = ACTIONS(2209), + [sym_variable] = ACTIONS(2211), + [sym_pipe_variable] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_newtype] = ACTIONS(2209), + [anon_sym_shape] = ACTIONS(2209), + [anon_sym_tuple] = ACTIONS(2209), + [anon_sym_clone] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_print] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_include] = ACTIONS(2209), + [anon_sym_include_once] = ACTIONS(2209), + [anon_sym_require] = ACTIONS(2209), + [anon_sym_require_once] = ACTIONS(2209), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_self] = ACTIONS(2209), + [anon_sym_parent] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_LT_LT_LT] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_echo] = ACTIONS(2209), + [anon_sym_unset] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_concurrent] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_elseif] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_foreach] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [sym_float] = ACTIONS(2211), + [sym_integer] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_True] = ACTIONS(2209), + [anon_sym_TRUE] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_False] = ACTIONS(2209), + [anon_sym_FALSE] = ACTIONS(2209), + [anon_sym_null] = ACTIONS(2209), + [anon_sym_Null] = ACTIONS(2209), + [anon_sym_NULL] = ACTIONS(2209), + [sym_string] = ACTIONS(2211), + [anon_sym_AT] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_array] = ACTIONS(2209), + [anon_sym_varray] = ACTIONS(2209), + [anon_sym_darray] = ACTIONS(2209), + [anon_sym_vec] = ACTIONS(2209), + [anon_sym_dict] = ACTIONS(2209), + [anon_sym_keyset] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_list] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2211), + [sym_final_modifier] = ACTIONS(2209), + [sym_xhp_modifier] = ACTIONS(2209), + [sym_xhp_identifier] = ACTIONS(2209), + [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [1450] = { - [sym_identifier] = ACTIONS(2605), - [sym_variable] = ACTIONS(2607), - [sym_pipe_variable] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_newtype] = ACTIONS(2605), - [anon_sym_shape] = ACTIONS(2605), - [anon_sym_tuple] = ACTIONS(2605), - [anon_sym_clone] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_print] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_include] = ACTIONS(2605), - [anon_sym_include_once] = ACTIONS(2605), - [anon_sym_require] = ACTIONS(2605), - [anon_sym_require_once] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2607), - [anon_sym_self] = ACTIONS(2605), - [anon_sym_parent] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_LT_LT] = ACTIONS(2605), - [anon_sym_LT_LT_LT] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_echo] = ACTIONS(2605), - [anon_sym_unset] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_concurrent] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_foreach] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [sym_float] = ACTIONS(2607), - [sym_integer] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_True] = ACTIONS(2605), - [anon_sym_TRUE] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [anon_sym_False] = ACTIONS(2605), - [anon_sym_FALSE] = ACTIONS(2605), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_Null] = ACTIONS(2605), - [anon_sym_NULL] = ACTIONS(2605), - [sym_string] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_array] = ACTIONS(2605), - [anon_sym_varray] = ACTIONS(2605), - [anon_sym_darray] = ACTIONS(2605), - [anon_sym_vec] = ACTIONS(2605), - [anon_sym_dict] = ACTIONS(2605), - [anon_sym_keyset] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_list] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2605), - [anon_sym_async] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_trait] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2607), - [sym_final_modifier] = ACTIONS(2605), - [sym_xhp_modifier] = ACTIONS(2605), - [sym_xhp_identifier] = ACTIONS(2605), - [sym_xhp_class_identifier] = ACTIONS(2607), + [1416] = { + [sym_identifier] = ACTIONS(2213), + [sym_variable] = ACTIONS(2215), + [sym_pipe_variable] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_newtype] = ACTIONS(2213), + [anon_sym_shape] = ACTIONS(2213), + [anon_sym_tuple] = ACTIONS(2213), + [anon_sym_clone] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_print] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_include] = ACTIONS(2213), + [anon_sym_include_once] = ACTIONS(2213), + [anon_sym_require] = ACTIONS(2213), + [anon_sym_require_once] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2215), + [anon_sym_self] = ACTIONS(2213), + [anon_sym_parent] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_LT_LT_LT] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_echo] = ACTIONS(2213), + [anon_sym_unset] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_concurrent] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_elseif] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_foreach] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [sym_float] = ACTIONS(2215), + [sym_integer] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_True] = ACTIONS(2213), + [anon_sym_TRUE] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_False] = ACTIONS(2213), + [anon_sym_FALSE] = ACTIONS(2213), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_Null] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2213), + [sym_string] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_array] = ACTIONS(2213), + [anon_sym_varray] = ACTIONS(2213), + [anon_sym_darray] = ACTIONS(2213), + [anon_sym_vec] = ACTIONS(2213), + [anon_sym_dict] = ACTIONS(2213), + [anon_sym_keyset] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_list] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2215), + [sym_final_modifier] = ACTIONS(2213), + [sym_xhp_modifier] = ACTIONS(2213), + [sym_xhp_identifier] = ACTIONS(2213), + [sym_xhp_class_identifier] = ACTIONS(2215), [sym_comment] = ACTIONS(3), }, - [1451] = { - [sym_identifier] = ACTIONS(2289), - [sym_variable] = ACTIONS(2291), - [sym_pipe_variable] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_newtype] = ACTIONS(2289), - [anon_sym_shape] = ACTIONS(2289), - [anon_sym_tuple] = ACTIONS(2289), - [anon_sym_clone] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_print] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2289), - [anon_sym_include] = ACTIONS(2289), - [anon_sym_include_once] = ACTIONS(2289), - [anon_sym_require] = ACTIONS(2289), - [anon_sym_require_once] = ACTIONS(2289), - [anon_sym_BSLASH] = ACTIONS(2291), - [anon_sym_self] = ACTIONS(2289), - [anon_sym_parent] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_LT_LT_LT] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_throw] = ACTIONS(2289), - [anon_sym_echo] = ACTIONS(2289), - [anon_sym_unset] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_concurrent] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_function] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_switch] = ACTIONS(2289), - [anon_sym_foreach] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_using] = ACTIONS(2289), - [sym_float] = ACTIONS(2291), - [sym_integer] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_True] = ACTIONS(2289), - [anon_sym_TRUE] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_False] = ACTIONS(2289), - [anon_sym_FALSE] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [anon_sym_Null] = ACTIONS(2289), - [anon_sym_NULL] = ACTIONS(2289), - [sym_string] = ACTIONS(2291), - [anon_sym_AT] = ACTIONS(2291), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_array] = ACTIONS(2289), - [anon_sym_varray] = ACTIONS(2289), - [anon_sym_darray] = ACTIONS(2289), - [anon_sym_vec] = ACTIONS(2289), - [anon_sym_dict] = ACTIONS(2289), - [anon_sym_keyset] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_abstract] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2291), - [sym_final_modifier] = ACTIONS(2289), - [sym_xhp_modifier] = ACTIONS(2289), - [sym_xhp_identifier] = ACTIONS(2289), - [sym_xhp_class_identifier] = ACTIONS(2291), + [1417] = { + [sym_identifier] = ACTIONS(2249), + [sym_variable] = ACTIONS(2251), + [sym_pipe_variable] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_newtype] = ACTIONS(2249), + [anon_sym_shape] = ACTIONS(2249), + [anon_sym_tuple] = ACTIONS(2249), + [anon_sym_clone] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_include] = ACTIONS(2249), + [anon_sym_include_once] = ACTIONS(2249), + [anon_sym_require] = ACTIONS(2249), + [anon_sym_require_once] = ACTIONS(2249), + [anon_sym_BSLASH] = ACTIONS(2251), + [anon_sym_self] = ACTIONS(2249), + [anon_sym_parent] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_LT_LT_LT] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_echo] = ACTIONS(2249), + [anon_sym_unset] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_concurrent] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_elseif] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_foreach] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [sym_float] = ACTIONS(2251), + [sym_integer] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_True] = ACTIONS(2249), + [anon_sym_TRUE] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_False] = ACTIONS(2249), + [anon_sym_FALSE] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_Null] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [sym_string] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_array] = ACTIONS(2249), + [anon_sym_varray] = ACTIONS(2249), + [anon_sym_darray] = ACTIONS(2249), + [anon_sym_vec] = ACTIONS(2249), + [anon_sym_dict] = ACTIONS(2249), + [anon_sym_keyset] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_list] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2251), + [sym_final_modifier] = ACTIONS(2249), + [sym_xhp_modifier] = ACTIONS(2249), + [sym_xhp_identifier] = ACTIONS(2249), + [sym_xhp_class_identifier] = ACTIONS(2251), [sym_comment] = ACTIONS(3), }, - [1452] = { - [sym_identifier] = ACTIONS(2265), - [sym_variable] = ACTIONS(2267), - [sym_pipe_variable] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_newtype] = ACTIONS(2265), - [anon_sym_shape] = ACTIONS(2265), - [anon_sym_tuple] = ACTIONS(2265), - [anon_sym_clone] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_print] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_LT] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_echo] = ACTIONS(2265), - [anon_sym_unset] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_concurrent] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_using] = ACTIONS(2265), - [sym_float] = ACTIONS(2267), - [sym_integer] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_True] = ACTIONS(2265), - [anon_sym_TRUE] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_False] = ACTIONS(2265), - [anon_sym_FALSE] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_Null] = ACTIONS(2265), - [anon_sym_NULL] = ACTIONS(2265), - [sym_string] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_array] = ACTIONS(2265), - [anon_sym_varray] = ACTIONS(2265), - [anon_sym_darray] = ACTIONS(2265), - [anon_sym_vec] = ACTIONS(2265), - [anon_sym_dict] = ACTIONS(2265), - [anon_sym_keyset] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2267), - [sym_final_modifier] = ACTIONS(2265), - [sym_xhp_modifier] = ACTIONS(2265), - [sym_xhp_identifier] = ACTIONS(2265), - [sym_xhp_class_identifier] = ACTIONS(2267), + [1418] = { + [sym_identifier] = ACTIONS(2217), + [sym_variable] = ACTIONS(2219), + [sym_pipe_variable] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_newtype] = ACTIONS(2217), + [anon_sym_shape] = ACTIONS(2217), + [anon_sym_tuple] = ACTIONS(2217), + [anon_sym_clone] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2217), + [anon_sym_include] = ACTIONS(2217), + [anon_sym_include_once] = ACTIONS(2217), + [anon_sym_require] = ACTIONS(2217), + [anon_sym_require_once] = ACTIONS(2217), + [anon_sym_BSLASH] = ACTIONS(2219), + [anon_sym_self] = ACTIONS(2217), + [anon_sym_parent] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_LT_LT_LT] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_throw] = ACTIONS(2217), + [anon_sym_echo] = ACTIONS(2217), + [anon_sym_unset] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_concurrent] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_function] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_elseif] = ACTIONS(2217), + [anon_sym_else] = ACTIONS(2217), + [anon_sym_switch] = ACTIONS(2217), + [anon_sym_foreach] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_using] = ACTIONS(2217), + [sym_float] = ACTIONS(2219), + [sym_integer] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_True] = ACTIONS(2217), + [anon_sym_TRUE] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_False] = ACTIONS(2217), + [anon_sym_FALSE] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [anon_sym_Null] = ACTIONS(2217), + [anon_sym_NULL] = ACTIONS(2217), + [sym_string] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_array] = ACTIONS(2217), + [anon_sym_varray] = ACTIONS(2217), + [anon_sym_darray] = ACTIONS(2217), + [anon_sym_vec] = ACTIONS(2217), + [anon_sym_dict] = ACTIONS(2217), + [anon_sym_keyset] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_list] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_class] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_abstract] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2219), + [sym_final_modifier] = ACTIONS(2217), + [sym_xhp_modifier] = ACTIONS(2217), + [sym_xhp_identifier] = ACTIONS(2217), + [sym_xhp_class_identifier] = ACTIONS(2219), [sym_comment] = ACTIONS(3), }, - [1453] = { - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2581), - [sym_variable] = ACTIONS(2583), - [sym_pipe_variable] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_newtype] = ACTIONS(2581), - [anon_sym_shape] = ACTIONS(2581), - [anon_sym_tuple] = ACTIONS(2581), - [anon_sym_clone] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_include] = ACTIONS(2581), - [anon_sym_include_once] = ACTIONS(2581), - [anon_sym_require] = ACTIONS(2581), - [anon_sym_require_once] = ACTIONS(2581), - [anon_sym_BSLASH] = ACTIONS(2583), - [anon_sym_self] = ACTIONS(2581), - [anon_sym_parent] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LT_LT_LT] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_echo] = ACTIONS(2581), - [anon_sym_unset] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_concurrent] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_foreach] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [sym_float] = ACTIONS(2583), - [sym_integer] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_True] = ACTIONS(2581), - [anon_sym_TRUE] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [anon_sym_False] = ACTIONS(2581), - [anon_sym_FALSE] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_Null] = ACTIONS(2581), - [anon_sym_NULL] = ACTIONS(2581), - [sym_string] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_array] = ACTIONS(2581), - [anon_sym_varray] = ACTIONS(2581), - [anon_sym_darray] = ACTIONS(2581), - [anon_sym_vec] = ACTIONS(2581), - [anon_sym_dict] = ACTIONS(2581), - [anon_sym_keyset] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_list] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_trait] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2583), - [sym_final_modifier] = ACTIONS(2581), - [sym_xhp_modifier] = ACTIONS(2581), - [sym_xhp_identifier] = ACTIONS(2581), - [sym_xhp_class_identifier] = ACTIONS(2583), + [1419] = { + [sym_identifier] = ACTIONS(2221), + [sym_variable] = ACTIONS(2223), + [sym_pipe_variable] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_newtype] = ACTIONS(2221), + [anon_sym_shape] = ACTIONS(2221), + [anon_sym_tuple] = ACTIONS(2221), + [anon_sym_clone] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_include] = ACTIONS(2221), + [anon_sym_include_once] = ACTIONS(2221), + [anon_sym_require] = ACTIONS(2221), + [anon_sym_require_once] = ACTIONS(2221), + [anon_sym_BSLASH] = ACTIONS(2223), + [anon_sym_self] = ACTIONS(2221), + [anon_sym_parent] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_LT_LT_LT] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_echo] = ACTIONS(2221), + [anon_sym_unset] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_concurrent] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_elseif] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_foreach] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [sym_float] = ACTIONS(2223), + [sym_integer] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_True] = ACTIONS(2221), + [anon_sym_TRUE] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_False] = ACTIONS(2221), + [anon_sym_FALSE] = ACTIONS(2221), + [anon_sym_null] = ACTIONS(2221), + [anon_sym_Null] = ACTIONS(2221), + [anon_sym_NULL] = ACTIONS(2221), + [sym_string] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_array] = ACTIONS(2221), + [anon_sym_varray] = ACTIONS(2221), + [anon_sym_darray] = ACTIONS(2221), + [anon_sym_vec] = ACTIONS(2221), + [anon_sym_dict] = ACTIONS(2221), + [anon_sym_keyset] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_list] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2223), + [sym_final_modifier] = ACTIONS(2221), + [sym_xhp_modifier] = ACTIONS(2221), + [sym_xhp_identifier] = ACTIONS(2221), + [sym_xhp_class_identifier] = ACTIONS(2223), [sym_comment] = ACTIONS(3), }, - [1454] = { - [sym_identifier] = ACTIONS(2261), - [sym_variable] = ACTIONS(2263), - [sym_pipe_variable] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_newtype] = ACTIONS(2261), - [anon_sym_shape] = ACTIONS(2261), - [anon_sym_tuple] = ACTIONS(2261), - [anon_sym_clone] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_print] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_LT_LT_LT] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_throw] = ACTIONS(2261), - [anon_sym_echo] = ACTIONS(2261), - [anon_sym_unset] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_concurrent] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_function] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(2261), - [anon_sym_foreach] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_do] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_using] = ACTIONS(2261), - [sym_float] = ACTIONS(2263), - [sym_integer] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_True] = ACTIONS(2261), - [anon_sym_TRUE] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_False] = ACTIONS(2261), - [anon_sym_FALSE] = ACTIONS(2261), - [anon_sym_null] = ACTIONS(2261), - [anon_sym_Null] = ACTIONS(2261), - [anon_sym_NULL] = ACTIONS(2261), - [sym_string] = ACTIONS(2263), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_array] = ACTIONS(2261), - [anon_sym_varray] = ACTIONS(2261), - [anon_sym_darray] = ACTIONS(2261), - [anon_sym_vec] = ACTIONS(2261), - [anon_sym_dict] = ACTIONS(2261), - [anon_sym_keyset] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_abstract] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2263), - [sym_final_modifier] = ACTIONS(2261), - [sym_xhp_modifier] = ACTIONS(2261), - [sym_xhp_identifier] = ACTIONS(2261), - [sym_xhp_class_identifier] = ACTIONS(2263), + [1420] = { + [sym_identifier] = ACTIONS(2273), + [sym_variable] = ACTIONS(2275), + [sym_pipe_variable] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_newtype] = ACTIONS(2273), + [anon_sym_shape] = ACTIONS(2273), + [anon_sym_tuple] = ACTIONS(2273), + [anon_sym_clone] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_print] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_include] = ACTIONS(2273), + [anon_sym_include_once] = ACTIONS(2273), + [anon_sym_require] = ACTIONS(2273), + [anon_sym_require_once] = ACTIONS(2273), + [anon_sym_BSLASH] = ACTIONS(2275), + [anon_sym_self] = ACTIONS(2273), + [anon_sym_parent] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2273), + [anon_sym_LT_LT_LT] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_echo] = ACTIONS(2273), + [anon_sym_unset] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_concurrent] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_elseif] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_foreach] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [sym_float] = ACTIONS(2275), + [sym_integer] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_True] = ACTIONS(2273), + [anon_sym_TRUE] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_False] = ACTIONS(2273), + [anon_sym_FALSE] = ACTIONS(2273), + [anon_sym_null] = ACTIONS(2273), + [anon_sym_Null] = ACTIONS(2273), + [anon_sym_NULL] = ACTIONS(2273), + [sym_string] = ACTIONS(2275), + [anon_sym_AT] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2275), + [anon_sym_array] = ACTIONS(2273), + [anon_sym_varray] = ACTIONS(2273), + [anon_sym_darray] = ACTIONS(2273), + [anon_sym_vec] = ACTIONS(2273), + [anon_sym_dict] = ACTIONS(2273), + [anon_sym_keyset] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_list] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_PLUS_PLUS] = ACTIONS(2275), + [anon_sym_DASH_DASH] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2275), + [sym_final_modifier] = ACTIONS(2273), + [sym_xhp_modifier] = ACTIONS(2273), + [sym_xhp_identifier] = ACTIONS(2273), + [sym_xhp_class_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), }, - [1455] = { - [sym_identifier] = ACTIONS(2345), - [sym_variable] = ACTIONS(2347), - [sym_pipe_variable] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_newtype] = ACTIONS(2345), - [anon_sym_shape] = ACTIONS(2345), - [anon_sym_tuple] = ACTIONS(2345), - [anon_sym_clone] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_print] = ACTIONS(2345), - [anon_sym_namespace] = ACTIONS(2345), - [anon_sym_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_LT_LT] = ACTIONS(2345), - [anon_sym_LT_LT_LT] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_throw] = ACTIONS(2345), - [anon_sym_echo] = ACTIONS(2345), - [anon_sym_unset] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_concurrent] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_switch] = ACTIONS(2345), - [anon_sym_foreach] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_using] = ACTIONS(2345), - [sym_float] = ACTIONS(2347), - [sym_integer] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_True] = ACTIONS(2345), - [anon_sym_TRUE] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_False] = ACTIONS(2345), - [anon_sym_FALSE] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2345), - [anon_sym_Null] = ACTIONS(2345), - [anon_sym_NULL] = ACTIONS(2345), - [sym_string] = ACTIONS(2347), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_array] = ACTIONS(2345), - [anon_sym_varray] = ACTIONS(2345), - [anon_sym_darray] = ACTIONS(2345), - [anon_sym_vec] = ACTIONS(2345), - [anon_sym_dict] = ACTIONS(2345), - [anon_sym_keyset] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(2347), - [sym_final_modifier] = ACTIONS(2345), - [sym_xhp_modifier] = ACTIONS(2345), - [sym_xhp_identifier] = ACTIONS(2345), - [sym_xhp_class_identifier] = ACTIONS(2347), + [1421] = { + [sym_identifier] = ACTIONS(2245), + [sym_variable] = ACTIONS(2247), + [sym_pipe_variable] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_newtype] = ACTIONS(2245), + [anon_sym_shape] = ACTIONS(2245), + [anon_sym_tuple] = ACTIONS(2245), + [anon_sym_clone] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_print] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_include] = ACTIONS(2245), + [anon_sym_include_once] = ACTIONS(2245), + [anon_sym_require] = ACTIONS(2245), + [anon_sym_require_once] = ACTIONS(2245), + [anon_sym_BSLASH] = ACTIONS(2247), + [anon_sym_self] = ACTIONS(2245), + [anon_sym_parent] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_LT_LT_LT] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_echo] = ACTIONS(2245), + [anon_sym_unset] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_concurrent] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_elseif] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_foreach] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [sym_float] = ACTIONS(2247), + [sym_integer] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_True] = ACTIONS(2245), + [anon_sym_TRUE] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_False] = ACTIONS(2245), + [anon_sym_FALSE] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [anon_sym_Null] = ACTIONS(2245), + [anon_sym_NULL] = ACTIONS(2245), + [sym_string] = ACTIONS(2247), + [anon_sym_AT] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2247), + [anon_sym_array] = ACTIONS(2245), + [anon_sym_varray] = ACTIONS(2245), + [anon_sym_darray] = ACTIONS(2245), + [anon_sym_vec] = ACTIONS(2245), + [anon_sym_dict] = ACTIONS(2245), + [anon_sym_keyset] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_list] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(2247), + [anon_sym_DASH_DASH] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2247), + [sym_final_modifier] = ACTIONS(2245), + [sym_xhp_modifier] = ACTIONS(2245), + [sym_xhp_identifier] = ACTIONS(2245), + [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [1456] = { - [ts_builtin_sym_end] = ACTIONS(2495), - [sym_identifier] = ACTIONS(2493), - [sym_variable] = ACTIONS(2495), - [sym_pipe_variable] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2493), - [anon_sym_newtype] = ACTIONS(2493), - [anon_sym_shape] = ACTIONS(2493), - [anon_sym_tuple] = ACTIONS(2493), - [anon_sym_clone] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_print] = ACTIONS(2493), - [anon_sym_namespace] = ACTIONS(2493), - [anon_sym_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = ACTIONS(2493), - [anon_sym_LT_LT] = ACTIONS(2493), - [anon_sym_LT_LT_LT] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_throw] = ACTIONS(2493), - [anon_sym_echo] = ACTIONS(2493), - [anon_sym_unset] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_concurrent] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_function] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_switch] = ACTIONS(2493), - [anon_sym_foreach] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_using] = ACTIONS(2493), - [sym_float] = ACTIONS(2495), - [sym_integer] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_True] = ACTIONS(2493), - [anon_sym_TRUE] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_False] = ACTIONS(2493), - [anon_sym_FALSE] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [anon_sym_Null] = ACTIONS(2493), - [anon_sym_NULL] = ACTIONS(2493), - [sym_string] = ACTIONS(2495), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_array] = ACTIONS(2493), - [anon_sym_varray] = ACTIONS(2493), - [anon_sym_darray] = ACTIONS(2493), - [anon_sym_vec] = ACTIONS(2493), - [anon_sym_dict] = ACTIONS(2493), - [anon_sym_keyset] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2493), - [anon_sym_async] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2493), - [anon_sym_interface] = ACTIONS(2493), - [anon_sym_class] = ACTIONS(2493), - [anon_sym_enum] = ACTIONS(2493), - [anon_sym_abstract] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2495), - [sym_final_modifier] = ACTIONS(2493), - [sym_xhp_modifier] = ACTIONS(2493), - [sym_xhp_identifier] = ACTIONS(2493), - [sym_xhp_class_identifier] = ACTIONS(2495), + [1422] = { + [sym_identifier] = ACTIONS(2241), + [sym_variable] = ACTIONS(2243), + [sym_pipe_variable] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_newtype] = ACTIONS(2241), + [anon_sym_shape] = ACTIONS(2241), + [anon_sym_tuple] = ACTIONS(2241), + [anon_sym_clone] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_print] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_include] = ACTIONS(2241), + [anon_sym_include_once] = ACTIONS(2241), + [anon_sym_require] = ACTIONS(2241), + [anon_sym_require_once] = ACTIONS(2241), + [anon_sym_BSLASH] = ACTIONS(2243), + [anon_sym_self] = ACTIONS(2241), + [anon_sym_parent] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_LT_LT] = ACTIONS(2241), + [anon_sym_LT_LT_LT] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_echo] = ACTIONS(2241), + [anon_sym_unset] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_concurrent] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_elseif] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_foreach] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [sym_float] = ACTIONS(2243), + [sym_integer] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_True] = ACTIONS(2241), + [anon_sym_TRUE] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_False] = ACTIONS(2241), + [anon_sym_FALSE] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [anon_sym_Null] = ACTIONS(2241), + [anon_sym_NULL] = ACTIONS(2241), + [sym_string] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_array] = ACTIONS(2241), + [anon_sym_varray] = ACTIONS(2241), + [anon_sym_darray] = ACTIONS(2241), + [anon_sym_vec] = ACTIONS(2241), + [anon_sym_dict] = ACTIONS(2241), + [anon_sym_keyset] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_list] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2243), + [sym_final_modifier] = ACTIONS(2241), + [sym_xhp_modifier] = ACTIONS(2241), + [sym_xhp_identifier] = ACTIONS(2241), + [sym_xhp_class_identifier] = ACTIONS(2243), [sym_comment] = ACTIONS(3), }, - [1457] = { - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2285), - [sym_variable] = ACTIONS(2287), - [sym_pipe_variable] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_newtype] = ACTIONS(2285), - [anon_sym_shape] = ACTIONS(2285), - [anon_sym_tuple] = ACTIONS(2285), - [anon_sym_clone] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_print] = ACTIONS(2285), - [anon_sym_namespace] = ACTIONS(2285), - [anon_sym_include] = ACTIONS(2285), - [anon_sym_include_once] = ACTIONS(2285), - [anon_sym_require] = ACTIONS(2285), - [anon_sym_require_once] = ACTIONS(2285), - [anon_sym_BSLASH] = ACTIONS(2287), - [anon_sym_self] = ACTIONS(2285), - [anon_sym_parent] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_LT_LT_LT] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_throw] = ACTIONS(2285), - [anon_sym_echo] = ACTIONS(2285), - [anon_sym_unset] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_concurrent] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_function] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_switch] = ACTIONS(2285), - [anon_sym_foreach] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_do] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_using] = ACTIONS(2285), - [sym_float] = ACTIONS(2287), - [sym_integer] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_True] = ACTIONS(2285), - [anon_sym_TRUE] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_False] = ACTIONS(2285), - [anon_sym_FALSE] = ACTIONS(2285), - [anon_sym_null] = ACTIONS(2285), - [anon_sym_Null] = ACTIONS(2285), - [anon_sym_NULL] = ACTIONS(2285), - [sym_string] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_array] = ACTIONS(2285), - [anon_sym_varray] = ACTIONS(2285), - [anon_sym_darray] = ACTIONS(2285), - [anon_sym_vec] = ACTIONS(2285), - [anon_sym_dict] = ACTIONS(2285), - [anon_sym_keyset] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_list] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_interface] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_abstract] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2287), - [sym_final_modifier] = ACTIONS(2285), - [sym_xhp_modifier] = ACTIONS(2285), - [sym_xhp_identifier] = ACTIONS(2285), - [sym_xhp_class_identifier] = ACTIONS(2287), + [1423] = { + [sym_identifier] = ACTIONS(2237), + [sym_variable] = ACTIONS(2239), + [sym_pipe_variable] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_newtype] = ACTIONS(2237), + [anon_sym_shape] = ACTIONS(2237), + [anon_sym_tuple] = ACTIONS(2237), + [anon_sym_clone] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_print] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_include] = ACTIONS(2237), + [anon_sym_include_once] = ACTIONS(2237), + [anon_sym_require] = ACTIONS(2237), + [anon_sym_require_once] = ACTIONS(2237), + [anon_sym_BSLASH] = ACTIONS(2239), + [anon_sym_self] = ACTIONS(2237), + [anon_sym_parent] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_LT_LT_LT] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_echo] = ACTIONS(2237), + [anon_sym_unset] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_concurrent] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_elseif] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_foreach] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [sym_float] = ACTIONS(2239), + [sym_integer] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_True] = ACTIONS(2237), + [anon_sym_TRUE] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_False] = ACTIONS(2237), + [anon_sym_FALSE] = ACTIONS(2237), + [anon_sym_null] = ACTIONS(2237), + [anon_sym_Null] = ACTIONS(2237), + [anon_sym_NULL] = ACTIONS(2237), + [sym_string] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_array] = ACTIONS(2237), + [anon_sym_varray] = ACTIONS(2237), + [anon_sym_darray] = ACTIONS(2237), + [anon_sym_vec] = ACTIONS(2237), + [anon_sym_dict] = ACTIONS(2237), + [anon_sym_keyset] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_list] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2239), + [sym_final_modifier] = ACTIONS(2237), + [sym_xhp_modifier] = ACTIONS(2237), + [sym_xhp_identifier] = ACTIONS(2237), + [sym_xhp_class_identifier] = ACTIONS(2239), [sym_comment] = ACTIONS(3), }, - [1458] = { - [sym_identifier] = ACTIONS(2257), - [sym_variable] = ACTIONS(2259), - [sym_pipe_variable] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_newtype] = ACTIONS(2257), - [anon_sym_shape] = ACTIONS(2257), - [anon_sym_tuple] = ACTIONS(2257), - [anon_sym_clone] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_print] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_LT_LT_LT] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_echo] = ACTIONS(2257), - [anon_sym_unset] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_concurrent] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_foreach] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [sym_float] = ACTIONS(2259), - [sym_integer] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_True] = ACTIONS(2257), - [anon_sym_TRUE] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_False] = ACTIONS(2257), - [anon_sym_FALSE] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2257), - [anon_sym_Null] = ACTIONS(2257), - [anon_sym_NULL] = ACTIONS(2257), - [sym_string] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_array] = ACTIONS(2257), - [anon_sym_varray] = ACTIONS(2257), - [anon_sym_darray] = ACTIONS(2257), - [anon_sym_vec] = ACTIONS(2257), - [anon_sym_dict] = ACTIONS(2257), - [anon_sym_keyset] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2259), - [sym_final_modifier] = ACTIONS(2257), - [sym_xhp_modifier] = ACTIONS(2257), - [sym_xhp_identifier] = ACTIONS(2257), - [sym_xhp_class_identifier] = ACTIONS(2259), + [1424] = { + [sym_identifier] = ACTIONS(2233), + [sym_variable] = ACTIONS(2235), + [sym_pipe_variable] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_newtype] = ACTIONS(2233), + [anon_sym_shape] = ACTIONS(2233), + [anon_sym_tuple] = ACTIONS(2233), + [anon_sym_clone] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_include] = ACTIONS(2233), + [anon_sym_include_once] = ACTIONS(2233), + [anon_sym_require] = ACTIONS(2233), + [anon_sym_require_once] = ACTIONS(2233), + [anon_sym_BSLASH] = ACTIONS(2235), + [anon_sym_self] = ACTIONS(2233), + [anon_sym_parent] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_LT_LT_LT] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_echo] = ACTIONS(2233), + [anon_sym_unset] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_concurrent] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_elseif] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_foreach] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [sym_float] = ACTIONS(2235), + [sym_integer] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_True] = ACTIONS(2233), + [anon_sym_TRUE] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_False] = ACTIONS(2233), + [anon_sym_FALSE] = ACTIONS(2233), + [anon_sym_null] = ACTIONS(2233), + [anon_sym_Null] = ACTIONS(2233), + [anon_sym_NULL] = ACTIONS(2233), + [sym_string] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_array] = ACTIONS(2233), + [anon_sym_varray] = ACTIONS(2233), + [anon_sym_darray] = ACTIONS(2233), + [anon_sym_vec] = ACTIONS(2233), + [anon_sym_dict] = ACTIONS(2233), + [anon_sym_keyset] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_list] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2235), + [sym_final_modifier] = ACTIONS(2233), + [sym_xhp_modifier] = ACTIONS(2233), + [sym_xhp_identifier] = ACTIONS(2233), + [sym_xhp_class_identifier] = ACTIONS(2235), [sym_comment] = ACTIONS(3), }, - [1459] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2353), - [sym_variable] = ACTIONS(2355), - [sym_pipe_variable] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_newtype] = ACTIONS(2353), - [anon_sym_shape] = ACTIONS(2353), - [anon_sym_tuple] = ACTIONS(2353), - [anon_sym_clone] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_print] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_LT_LT_LT] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_echo] = ACTIONS(2353), - [anon_sym_unset] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_concurrent] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_foreach] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_using] = ACTIONS(2353), - [sym_float] = ACTIONS(2355), - [sym_integer] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_True] = ACTIONS(2353), - [anon_sym_TRUE] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_False] = ACTIONS(2353), - [anon_sym_FALSE] = ACTIONS(2353), - [anon_sym_null] = ACTIONS(2353), - [anon_sym_Null] = ACTIONS(2353), - [anon_sym_NULL] = ACTIONS(2353), - [sym_string] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_array] = ACTIONS(2353), - [anon_sym_varray] = ACTIONS(2353), - [anon_sym_darray] = ACTIONS(2353), - [anon_sym_vec] = ACTIONS(2353), - [anon_sym_dict] = ACTIONS(2353), - [anon_sym_keyset] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2355), - [sym_final_modifier] = ACTIONS(2353), - [sym_xhp_modifier] = ACTIONS(2353), - [sym_xhp_identifier] = ACTIONS(2353), - [sym_xhp_class_identifier] = ACTIONS(2355), + [1425] = { + [sym_identifier] = ACTIONS(2229), + [sym_variable] = ACTIONS(2231), + [sym_pipe_variable] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_newtype] = ACTIONS(2229), + [anon_sym_shape] = ACTIONS(2229), + [anon_sym_tuple] = ACTIONS(2229), + [anon_sym_clone] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_print] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_include] = ACTIONS(2229), + [anon_sym_include_once] = ACTIONS(2229), + [anon_sym_require] = ACTIONS(2229), + [anon_sym_require_once] = ACTIONS(2229), + [anon_sym_BSLASH] = ACTIONS(2231), + [anon_sym_self] = ACTIONS(2229), + [anon_sym_parent] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_LT_LT_LT] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_echo] = ACTIONS(2229), + [anon_sym_unset] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_concurrent] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_elseif] = ACTIONS(2229), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_foreach] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [sym_float] = ACTIONS(2231), + [sym_integer] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_True] = ACTIONS(2229), + [anon_sym_TRUE] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_False] = ACTIONS(2229), + [anon_sym_FALSE] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_Null] = ACTIONS(2229), + [anon_sym_NULL] = ACTIONS(2229), + [sym_string] = ACTIONS(2231), + [anon_sym_AT] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2231), + [anon_sym_array] = ACTIONS(2229), + [anon_sym_varray] = ACTIONS(2229), + [anon_sym_darray] = ACTIONS(2229), + [anon_sym_vec] = ACTIONS(2229), + [anon_sym_dict] = ACTIONS(2229), + [anon_sym_keyset] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_list] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_PLUS_PLUS] = ACTIONS(2231), + [anon_sym_DASH_DASH] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2231), + [sym_final_modifier] = ACTIONS(2229), + [sym_xhp_modifier] = ACTIONS(2229), + [sym_xhp_identifier] = ACTIONS(2229), + [sym_xhp_class_identifier] = ACTIONS(2231), [sym_comment] = ACTIONS(3), }, - [1460] = { - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2281), - [sym_variable] = ACTIONS(2283), - [sym_pipe_variable] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_newtype] = ACTIONS(2281), - [anon_sym_shape] = ACTIONS(2281), - [anon_sym_tuple] = ACTIONS(2281), - [anon_sym_clone] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_print] = ACTIONS(2281), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_include] = ACTIONS(2281), - [anon_sym_include_once] = ACTIONS(2281), - [anon_sym_require] = ACTIONS(2281), - [anon_sym_require_once] = ACTIONS(2281), - [anon_sym_BSLASH] = ACTIONS(2283), - [anon_sym_self] = ACTIONS(2281), - [anon_sym_parent] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_LT_LT_LT] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_throw] = ACTIONS(2281), - [anon_sym_echo] = ACTIONS(2281), - [anon_sym_unset] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_concurrent] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_foreach] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_using] = ACTIONS(2281), - [sym_float] = ACTIONS(2283), - [sym_integer] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_True] = ACTIONS(2281), - [anon_sym_TRUE] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_False] = ACTIONS(2281), - [anon_sym_FALSE] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [anon_sym_Null] = ACTIONS(2281), - [anon_sym_NULL] = ACTIONS(2281), - [sym_string] = ACTIONS(2283), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_array] = ACTIONS(2281), - [anon_sym_varray] = ACTIONS(2281), - [anon_sym_darray] = ACTIONS(2281), - [anon_sym_vec] = ACTIONS(2281), - [anon_sym_dict] = ACTIONS(2281), - [anon_sym_keyset] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(2283), - [anon_sym_DASH_DASH] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_abstract] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2283), - [sym_final_modifier] = ACTIONS(2281), - [sym_xhp_modifier] = ACTIONS(2281), - [sym_xhp_identifier] = ACTIONS(2281), - [sym_xhp_class_identifier] = ACTIONS(2283), + [1426] = { + [ts_builtin_sym_end] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2089), + [sym_variable] = ACTIONS(2091), + [sym_pipe_variable] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_newtype] = ACTIONS(2089), + [anon_sym_shape] = ACTIONS(2089), + [anon_sym_tuple] = ACTIONS(2089), + [anon_sym_clone] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_print] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_include] = ACTIONS(2089), + [anon_sym_include_once] = ACTIONS(2089), + [anon_sym_require] = ACTIONS(2089), + [anon_sym_require_once] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2091), + [anon_sym_self] = ACTIONS(2089), + [anon_sym_parent] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_LT_LT_LT] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_echo] = ACTIONS(2089), + [anon_sym_unset] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_concurrent] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_foreach] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [sym_float] = ACTIONS(2091), + [sym_integer] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_True] = ACTIONS(2089), + [anon_sym_TRUE] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_False] = ACTIONS(2089), + [anon_sym_FALSE] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [anon_sym_Null] = ACTIONS(2089), + [anon_sym_NULL] = ACTIONS(2089), + [sym_string] = ACTIONS(2091), + [anon_sym_AT] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2091), + [anon_sym_array] = ACTIONS(2089), + [anon_sym_varray] = ACTIONS(2089), + [anon_sym_darray] = ACTIONS(2089), + [anon_sym_vec] = ACTIONS(2089), + [anon_sym_dict] = ACTIONS(2089), + [anon_sym_keyset] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_list] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2091), + [sym_final_modifier] = ACTIONS(2089), + [sym_xhp_modifier] = ACTIONS(2089), + [sym_xhp_identifier] = ACTIONS(2089), + [sym_xhp_class_identifier] = ACTIONS(2091), [sym_comment] = ACTIONS(3), }, - [1461] = { - [ts_builtin_sym_end] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2585), - [sym_variable] = ACTIONS(2587), - [sym_pipe_variable] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_newtype] = ACTIONS(2585), - [anon_sym_shape] = ACTIONS(2585), - [anon_sym_tuple] = ACTIONS(2585), - [anon_sym_clone] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_include] = ACTIONS(2585), - [anon_sym_include_once] = ACTIONS(2585), - [anon_sym_require] = ACTIONS(2585), - [anon_sym_require_once] = ACTIONS(2585), - [anon_sym_BSLASH] = ACTIONS(2587), - [anon_sym_self] = ACTIONS(2585), - [anon_sym_parent] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_LT_LT_LT] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_echo] = ACTIONS(2585), - [anon_sym_unset] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_concurrent] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_foreach] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [sym_float] = ACTIONS(2587), - [sym_integer] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2585), - [anon_sym_True] = ACTIONS(2585), - [anon_sym_TRUE] = ACTIONS(2585), - [anon_sym_false] = ACTIONS(2585), - [anon_sym_False] = ACTIONS(2585), - [anon_sym_FALSE] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2585), - [anon_sym_Null] = ACTIONS(2585), - [anon_sym_NULL] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_array] = ACTIONS(2585), - [anon_sym_varray] = ACTIONS(2585), - [anon_sym_darray] = ACTIONS(2585), - [anon_sym_vec] = ACTIONS(2585), - [anon_sym_dict] = ACTIONS(2585), - [anon_sym_keyset] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_list] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2587), - [sym_final_modifier] = ACTIONS(2585), - [sym_xhp_modifier] = ACTIONS(2585), - [sym_xhp_identifier] = ACTIONS(2585), - [sym_xhp_class_identifier] = ACTIONS(2587), + [1427] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1462] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2277), - [sym_variable] = ACTIONS(2279), - [sym_pipe_variable] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_newtype] = ACTIONS(2277), - [anon_sym_shape] = ACTIONS(2277), - [anon_sym_tuple] = ACTIONS(2277), - [anon_sym_clone] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_print] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2277), - [anon_sym_include] = ACTIONS(2277), - [anon_sym_include_once] = ACTIONS(2277), - [anon_sym_require] = ACTIONS(2277), - [anon_sym_require_once] = ACTIONS(2277), - [anon_sym_BSLASH] = ACTIONS(2279), - [anon_sym_self] = ACTIONS(2277), - [anon_sym_parent] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_LT_LT] = ACTIONS(2277), - [anon_sym_LT_LT_LT] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_throw] = ACTIONS(2277), - [anon_sym_echo] = ACTIONS(2277), - [anon_sym_unset] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_concurrent] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_function] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_switch] = ACTIONS(2277), - [anon_sym_foreach] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_using] = ACTIONS(2277), - [sym_float] = ACTIONS(2279), - [sym_integer] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_True] = ACTIONS(2277), - [anon_sym_TRUE] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_False] = ACTIONS(2277), - [anon_sym_FALSE] = ACTIONS(2277), - [anon_sym_null] = ACTIONS(2277), - [anon_sym_Null] = ACTIONS(2277), - [anon_sym_NULL] = ACTIONS(2277), - [sym_string] = ACTIONS(2279), - [anon_sym_AT] = ACTIONS(2279), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_array] = ACTIONS(2277), - [anon_sym_varray] = ACTIONS(2277), - [anon_sym_darray] = ACTIONS(2277), - [anon_sym_vec] = ACTIONS(2277), - [anon_sym_dict] = ACTIONS(2277), - [anon_sym_keyset] = ACTIONS(2277), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_list] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_interface] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_abstract] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(2279), - [sym_final_modifier] = ACTIONS(2277), - [sym_xhp_modifier] = ACTIONS(2277), - [sym_xhp_identifier] = ACTIONS(2277), - [sym_xhp_class_identifier] = ACTIONS(2279), + [1428] = { + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2233), + [sym_variable] = ACTIONS(2235), + [sym_pipe_variable] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_newtype] = ACTIONS(2233), + [anon_sym_shape] = ACTIONS(2233), + [anon_sym_tuple] = ACTIONS(2233), + [anon_sym_clone] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_include] = ACTIONS(2233), + [anon_sym_include_once] = ACTIONS(2233), + [anon_sym_require] = ACTIONS(2233), + [anon_sym_require_once] = ACTIONS(2233), + [anon_sym_BSLASH] = ACTIONS(2235), + [anon_sym_self] = ACTIONS(2233), + [anon_sym_parent] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_LT_LT_LT] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_echo] = ACTIONS(2233), + [anon_sym_unset] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_concurrent] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_foreach] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [sym_float] = ACTIONS(2235), + [sym_integer] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_True] = ACTIONS(2233), + [anon_sym_TRUE] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_False] = ACTIONS(2233), + [anon_sym_FALSE] = ACTIONS(2233), + [anon_sym_null] = ACTIONS(2233), + [anon_sym_Null] = ACTIONS(2233), + [anon_sym_NULL] = ACTIONS(2233), + [sym_string] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_array] = ACTIONS(2233), + [anon_sym_varray] = ACTIONS(2233), + [anon_sym_darray] = ACTIONS(2233), + [anon_sym_vec] = ACTIONS(2233), + [anon_sym_dict] = ACTIONS(2233), + [anon_sym_keyset] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_list] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2235), + [sym_final_modifier] = ACTIONS(2233), + [sym_xhp_modifier] = ACTIONS(2233), + [sym_xhp_identifier] = ACTIONS(2233), + [sym_xhp_class_identifier] = ACTIONS(2235), [sym_comment] = ACTIONS(3), }, - [1463] = { - [sym_identifier] = ACTIONS(2361), - [sym_variable] = ACTIONS(2363), - [sym_pipe_variable] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_newtype] = ACTIONS(2361), - [anon_sym_shape] = ACTIONS(2361), - [anon_sym_tuple] = ACTIONS(2361), - [anon_sym_clone] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_print] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_echo] = ACTIONS(2361), - [anon_sym_unset] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_concurrent] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_foreach] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [sym_float] = ACTIONS(2363), - [sym_integer] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_True] = ACTIONS(2361), - [anon_sym_TRUE] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_False] = ACTIONS(2361), - [anon_sym_FALSE] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [anon_sym_Null] = ACTIONS(2361), - [anon_sym_NULL] = ACTIONS(2361), - [sym_string] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_array] = ACTIONS(2361), - [anon_sym_varray] = ACTIONS(2361), - [anon_sym_darray] = ACTIONS(2361), - [anon_sym_vec] = ACTIONS(2361), - [anon_sym_dict] = ACTIONS(2361), - [anon_sym_keyset] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_interface] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2363), - [sym_final_modifier] = ACTIONS(2361), - [sym_xhp_modifier] = ACTIONS(2361), - [sym_xhp_identifier] = ACTIONS(2361), - [sym_xhp_class_identifier] = ACTIONS(2363), + [1429] = { + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2453), + [sym_variable] = ACTIONS(2455), + [sym_pipe_variable] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_newtype] = ACTIONS(2453), + [anon_sym_shape] = ACTIONS(2453), + [anon_sym_tuple] = ACTIONS(2453), + [anon_sym_clone] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_include] = ACTIONS(2453), + [anon_sym_include_once] = ACTIONS(2453), + [anon_sym_require] = ACTIONS(2453), + [anon_sym_require_once] = ACTIONS(2453), + [anon_sym_BSLASH] = ACTIONS(2455), + [anon_sym_self] = ACTIONS(2453), + [anon_sym_parent] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_LT_LT_LT] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_throw] = ACTIONS(2453), + [anon_sym_echo] = ACTIONS(2453), + [anon_sym_unset] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_concurrent] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_foreach] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_using] = ACTIONS(2453), + [sym_float] = ACTIONS(2455), + [sym_integer] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_True] = ACTIONS(2453), + [anon_sym_TRUE] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_False] = ACTIONS(2453), + [anon_sym_FALSE] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [anon_sym_Null] = ACTIONS(2453), + [anon_sym_NULL] = ACTIONS(2453), + [sym_string] = ACTIONS(2455), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_array] = ACTIONS(2453), + [anon_sym_varray] = ACTIONS(2453), + [anon_sym_darray] = ACTIONS(2453), + [anon_sym_vec] = ACTIONS(2453), + [anon_sym_dict] = ACTIONS(2453), + [anon_sym_keyset] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_abstract] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2455), + [sym_final_modifier] = ACTIONS(2453), + [sym_xhp_modifier] = ACTIONS(2453), + [sym_xhp_identifier] = ACTIONS(2453), + [sym_xhp_class_identifier] = ACTIONS(2455), [sym_comment] = ACTIONS(3), }, - [1464] = { - [sym_identifier] = ACTIONS(2537), - [sym_variable] = ACTIONS(2539), - [sym_pipe_variable] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2537), - [anon_sym_newtype] = ACTIONS(2537), - [anon_sym_shape] = ACTIONS(2537), - [anon_sym_tuple] = ACTIONS(2537), - [anon_sym_clone] = ACTIONS(2537), - [anon_sym_new] = ACTIONS(2537), - [anon_sym_print] = ACTIONS(2537), - [anon_sym_namespace] = ACTIONS(2537), - [anon_sym_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2537), - [anon_sym_LT_LT] = ACTIONS(2537), - [anon_sym_LT_LT_LT] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_throw] = ACTIONS(2537), - [anon_sym_echo] = ACTIONS(2537), - [anon_sym_unset] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_concurrent] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_function] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_switch] = ACTIONS(2537), - [anon_sym_foreach] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_do] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [anon_sym_using] = ACTIONS(2537), - [sym_float] = ACTIONS(2539), - [sym_integer] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_True] = ACTIONS(2537), - [anon_sym_TRUE] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_False] = ACTIONS(2537), - [anon_sym_FALSE] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2537), - [anon_sym_Null] = ACTIONS(2537), - [anon_sym_NULL] = ACTIONS(2537), - [sym_string] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_TILDE] = ACTIONS(2539), - [anon_sym_array] = ACTIONS(2537), - [anon_sym_varray] = ACTIONS(2537), - [anon_sym_darray] = ACTIONS(2537), - [anon_sym_vec] = ACTIONS(2537), - [anon_sym_dict] = ACTIONS(2537), - [anon_sym_keyset] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_await] = ACTIONS(2537), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_trait] = ACTIONS(2537), - [anon_sym_interface] = ACTIONS(2537), - [anon_sym_class] = ACTIONS(2537), - [anon_sym_enum] = ACTIONS(2537), - [anon_sym_abstract] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2539), - [sym_final_modifier] = ACTIONS(2537), - [sym_xhp_modifier] = ACTIONS(2537), - [sym_xhp_identifier] = ACTIONS(2537), - [sym_xhp_class_identifier] = ACTIONS(2539), + [1430] = { + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2237), + [sym_variable] = ACTIONS(2239), + [sym_pipe_variable] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_newtype] = ACTIONS(2237), + [anon_sym_shape] = ACTIONS(2237), + [anon_sym_tuple] = ACTIONS(2237), + [anon_sym_clone] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_print] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_include] = ACTIONS(2237), + [anon_sym_include_once] = ACTIONS(2237), + [anon_sym_require] = ACTIONS(2237), + [anon_sym_require_once] = ACTIONS(2237), + [anon_sym_BSLASH] = ACTIONS(2239), + [anon_sym_self] = ACTIONS(2237), + [anon_sym_parent] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_LT_LT_LT] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_echo] = ACTIONS(2237), + [anon_sym_unset] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_concurrent] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_foreach] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [sym_float] = ACTIONS(2239), + [sym_integer] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_True] = ACTIONS(2237), + [anon_sym_TRUE] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_False] = ACTIONS(2237), + [anon_sym_FALSE] = ACTIONS(2237), + [anon_sym_null] = ACTIONS(2237), + [anon_sym_Null] = ACTIONS(2237), + [anon_sym_NULL] = ACTIONS(2237), + [sym_string] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_array] = ACTIONS(2237), + [anon_sym_varray] = ACTIONS(2237), + [anon_sym_darray] = ACTIONS(2237), + [anon_sym_vec] = ACTIONS(2237), + [anon_sym_dict] = ACTIONS(2237), + [anon_sym_keyset] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_list] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2239), + [sym_final_modifier] = ACTIONS(2237), + [sym_xhp_modifier] = ACTIONS(2237), + [sym_xhp_identifier] = ACTIONS(2237), + [sym_xhp_class_identifier] = ACTIONS(2239), [sym_comment] = ACTIONS(3), }, - [1465] = { - [ts_builtin_sym_end] = ACTIONS(2563), - [sym_identifier] = ACTIONS(2561), - [sym_variable] = ACTIONS(2563), - [sym_pipe_variable] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_newtype] = ACTIONS(2561), - [anon_sym_shape] = ACTIONS(2561), - [anon_sym_tuple] = ACTIONS(2561), - [anon_sym_clone] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_print] = ACTIONS(2561), - [anon_sym_namespace] = ACTIONS(2561), - [anon_sym_include] = ACTIONS(2561), - [anon_sym_include_once] = ACTIONS(2561), - [anon_sym_require] = ACTIONS(2561), - [anon_sym_require_once] = ACTIONS(2561), - [anon_sym_BSLASH] = ACTIONS(2563), - [anon_sym_self] = ACTIONS(2561), - [anon_sym_parent] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2561), - [anon_sym_LT_LT] = ACTIONS(2561), - [anon_sym_LT_LT_LT] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_echo] = ACTIONS(2561), - [anon_sym_unset] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_concurrent] = ACTIONS(2561), - [anon_sym_use] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_switch] = ACTIONS(2561), - [anon_sym_foreach] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(2561), - [sym_float] = ACTIONS(2563), - [sym_integer] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2561), - [anon_sym_True] = ACTIONS(2561), - [anon_sym_TRUE] = ACTIONS(2561), - [anon_sym_false] = ACTIONS(2561), - [anon_sym_False] = ACTIONS(2561), - [anon_sym_FALSE] = ACTIONS(2561), - [anon_sym_null] = ACTIONS(2561), - [anon_sym_Null] = ACTIONS(2561), - [anon_sym_NULL] = ACTIONS(2561), - [sym_string] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_array] = ACTIONS(2561), - [anon_sym_varray] = ACTIONS(2561), - [anon_sym_darray] = ACTIONS(2561), - [anon_sym_vec] = ACTIONS(2561), - [anon_sym_dict] = ACTIONS(2561), - [anon_sym_keyset] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_list] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_await] = ACTIONS(2561), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_trait] = ACTIONS(2561), - [anon_sym_interface] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2561), - [anon_sym_abstract] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2563), - [sym_final_modifier] = ACTIONS(2561), - [sym_xhp_modifier] = ACTIONS(2561), - [sym_xhp_identifier] = ACTIONS(2561), - [sym_xhp_class_identifier] = ACTIONS(2563), + [1431] = { + [sym_identifier] = ACTIONS(2505), + [sym_variable] = ACTIONS(2507), + [sym_pipe_variable] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_newtype] = ACTIONS(2505), + [anon_sym_shape] = ACTIONS(2505), + [anon_sym_tuple] = ACTIONS(2505), + [anon_sym_clone] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_namespace] = ACTIONS(2505), + [anon_sym_include] = ACTIONS(2505), + [anon_sym_include_once] = ACTIONS(2505), + [anon_sym_require] = ACTIONS(2505), + [anon_sym_require_once] = ACTIONS(2505), + [anon_sym_BSLASH] = ACTIONS(2507), + [anon_sym_self] = ACTIONS(2505), + [anon_sym_parent] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_LT_LT_LT] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_throw] = ACTIONS(2505), + [anon_sym_echo] = ACTIONS(2505), + [anon_sym_unset] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_concurrent] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_function] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_switch] = ACTIONS(2505), + [anon_sym_foreach] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(2505), + [sym_float] = ACTIONS(2507), + [sym_integer] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_True] = ACTIONS(2505), + [anon_sym_TRUE] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_False] = ACTIONS(2505), + [anon_sym_FALSE] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [anon_sym_Null] = ACTIONS(2505), + [anon_sym_NULL] = ACTIONS(2505), + [sym_string] = ACTIONS(2507), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_array] = ACTIONS(2505), + [anon_sym_varray] = ACTIONS(2505), + [anon_sym_darray] = ACTIONS(2505), + [anon_sym_vec] = ACTIONS(2505), + [anon_sym_dict] = ACTIONS(2505), + [anon_sym_keyset] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_class] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_abstract] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2507), + [sym_final_modifier] = ACTIONS(2505), + [sym_xhp_modifier] = ACTIONS(2505), + [sym_xhp_identifier] = ACTIONS(2505), + [sym_xhp_class_identifier] = ACTIONS(2507), [sym_comment] = ACTIONS(3), }, - [1466] = { - [sym_identifier] = ACTIONS(2501), - [sym_variable] = ACTIONS(2503), - [sym_pipe_variable] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_newtype] = ACTIONS(2501), - [anon_sym_shape] = ACTIONS(2501), - [anon_sym_tuple] = ACTIONS(2501), - [anon_sym_clone] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_print] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_LT_LT_LT] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_echo] = ACTIONS(2501), - [anon_sym_unset] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_concurrent] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_foreach] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [sym_float] = ACTIONS(2503), - [sym_integer] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_True] = ACTIONS(2501), - [anon_sym_TRUE] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_False] = ACTIONS(2501), - [anon_sym_FALSE] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [anon_sym_Null] = ACTIONS(2501), - [anon_sym_NULL] = ACTIONS(2501), - [sym_string] = ACTIONS(2503), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_array] = ACTIONS(2501), - [anon_sym_varray] = ACTIONS(2501), - [anon_sym_darray] = ACTIONS(2501), - [anon_sym_vec] = ACTIONS(2501), - [anon_sym_dict] = ACTIONS(2501), - [anon_sym_keyset] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_trait] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2503), - [sym_final_modifier] = ACTIONS(2501), - [sym_xhp_modifier] = ACTIONS(2501), - [sym_xhp_identifier] = ACTIONS(2501), - [sym_xhp_class_identifier] = ACTIONS(2503), + [1432] = { + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2225), + [sym_variable] = ACTIONS(2227), + [sym_pipe_variable] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_newtype] = ACTIONS(2225), + [anon_sym_shape] = ACTIONS(2225), + [anon_sym_tuple] = ACTIONS(2225), + [anon_sym_clone] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_print] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_include] = ACTIONS(2225), + [anon_sym_include_once] = ACTIONS(2225), + [anon_sym_require] = ACTIONS(2225), + [anon_sym_require_once] = ACTIONS(2225), + [anon_sym_BSLASH] = ACTIONS(2227), + [anon_sym_self] = ACTIONS(2225), + [anon_sym_parent] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_LT_LT_LT] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_echo] = ACTIONS(2225), + [anon_sym_unset] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_concurrent] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_foreach] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [sym_float] = ACTIONS(2227), + [sym_integer] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_True] = ACTIONS(2225), + [anon_sym_TRUE] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_False] = ACTIONS(2225), + [anon_sym_FALSE] = ACTIONS(2225), + [anon_sym_null] = ACTIONS(2225), + [anon_sym_Null] = ACTIONS(2225), + [anon_sym_NULL] = ACTIONS(2225), + [sym_string] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_array] = ACTIONS(2225), + [anon_sym_varray] = ACTIONS(2225), + [anon_sym_darray] = ACTIONS(2225), + [anon_sym_vec] = ACTIONS(2225), + [anon_sym_dict] = ACTIONS(2225), + [anon_sym_keyset] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_list] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2227), + [sym_final_modifier] = ACTIONS(2225), + [sym_xhp_modifier] = ACTIONS(2225), + [sym_xhp_identifier] = ACTIONS(2225), + [sym_xhp_class_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(3), }, - [1467] = { - [sym_identifier] = ACTIONS(2449), - [sym_variable] = ACTIONS(2451), - [sym_pipe_variable] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_newtype] = ACTIONS(2449), - [anon_sym_shape] = ACTIONS(2449), - [anon_sym_tuple] = ACTIONS(2449), - [anon_sym_clone] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_print] = ACTIONS(2449), - [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_LT_LT_LT] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_echo] = ACTIONS(2449), - [anon_sym_unset] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_concurrent] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_switch] = ACTIONS(2449), - [anon_sym_foreach] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_using] = ACTIONS(2449), - [sym_float] = ACTIONS(2451), - [sym_integer] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_True] = ACTIONS(2449), - [anon_sym_TRUE] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_False] = ACTIONS(2449), - [anon_sym_FALSE] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [anon_sym_Null] = ACTIONS(2449), - [anon_sym_NULL] = ACTIONS(2449), - [sym_string] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_array] = ACTIONS(2449), - [anon_sym_varray] = ACTIONS(2449), - [anon_sym_darray] = ACTIONS(2449), - [anon_sym_vec] = ACTIONS(2449), - [anon_sym_dict] = ACTIONS(2449), - [anon_sym_keyset] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_class] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_abstract] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2451), - [sym_final_modifier] = ACTIONS(2449), - [sym_xhp_modifier] = ACTIONS(2449), - [sym_xhp_identifier] = ACTIONS(2449), - [sym_xhp_class_identifier] = ACTIONS(2451), + [1433] = { + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [sym_variable] = ACTIONS(2223), + [sym_pipe_variable] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_newtype] = ACTIONS(2221), + [anon_sym_shape] = ACTIONS(2221), + [anon_sym_tuple] = ACTIONS(2221), + [anon_sym_clone] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_include] = ACTIONS(2221), + [anon_sym_include_once] = ACTIONS(2221), + [anon_sym_require] = ACTIONS(2221), + [anon_sym_require_once] = ACTIONS(2221), + [anon_sym_BSLASH] = ACTIONS(2223), + [anon_sym_self] = ACTIONS(2221), + [anon_sym_parent] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_LT_LT_LT] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_echo] = ACTIONS(2221), + [anon_sym_unset] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_concurrent] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_foreach] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [sym_float] = ACTIONS(2223), + [sym_integer] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_True] = ACTIONS(2221), + [anon_sym_TRUE] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_False] = ACTIONS(2221), + [anon_sym_FALSE] = ACTIONS(2221), + [anon_sym_null] = ACTIONS(2221), + [anon_sym_Null] = ACTIONS(2221), + [anon_sym_NULL] = ACTIONS(2221), + [sym_string] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_array] = ACTIONS(2221), + [anon_sym_varray] = ACTIONS(2221), + [anon_sym_darray] = ACTIONS(2221), + [anon_sym_vec] = ACTIONS(2221), + [anon_sym_dict] = ACTIONS(2221), + [anon_sym_keyset] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_list] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2223), + [sym_final_modifier] = ACTIONS(2221), + [sym_xhp_modifier] = ACTIONS(2221), + [sym_xhp_identifier] = ACTIONS(2221), + [sym_xhp_class_identifier] = ACTIONS(2223), [sym_comment] = ACTIONS(3), }, - [1468] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2185), - [sym_variable] = ACTIONS(2187), - [sym_pipe_variable] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_newtype] = ACTIONS(2185), - [anon_sym_shape] = ACTIONS(2185), - [anon_sym_tuple] = ACTIONS(2185), - [anon_sym_clone] = ACTIONS(2185), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_print] = ACTIONS(2185), - [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_LT_LT_LT] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_throw] = ACTIONS(2185), - [anon_sym_echo] = ACTIONS(2185), - [anon_sym_unset] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_concurrent] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_function] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_switch] = ACTIONS(2185), - [anon_sym_foreach] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_do] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_using] = ACTIONS(2185), - [sym_float] = ACTIONS(2187), - [sym_integer] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_True] = ACTIONS(2185), - [anon_sym_TRUE] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [anon_sym_False] = ACTIONS(2185), - [anon_sym_FALSE] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_Null] = ACTIONS(2185), - [anon_sym_NULL] = ACTIONS(2185), - [sym_string] = ACTIONS(2187), - [anon_sym_AT] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [anon_sym_array] = ACTIONS(2185), - [anon_sym_varray] = ACTIONS(2185), - [anon_sym_darray] = ACTIONS(2185), - [anon_sym_vec] = ACTIONS(2185), - [anon_sym_dict] = ACTIONS(2185), - [anon_sym_keyset] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_class] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_abstract] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2187), - [sym_final_modifier] = ACTIONS(2185), - [sym_xhp_modifier] = ACTIONS(2185), - [sym_xhp_identifier] = ACTIONS(2185), - [sym_xhp_class_identifier] = ACTIONS(2187), + [1434] = { + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2217), + [sym_variable] = ACTIONS(2219), + [sym_pipe_variable] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_newtype] = ACTIONS(2217), + [anon_sym_shape] = ACTIONS(2217), + [anon_sym_tuple] = ACTIONS(2217), + [anon_sym_clone] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2217), + [anon_sym_include] = ACTIONS(2217), + [anon_sym_include_once] = ACTIONS(2217), + [anon_sym_require] = ACTIONS(2217), + [anon_sym_require_once] = ACTIONS(2217), + [anon_sym_BSLASH] = ACTIONS(2219), + [anon_sym_self] = ACTIONS(2217), + [anon_sym_parent] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_LT_LT_LT] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_throw] = ACTIONS(2217), + [anon_sym_echo] = ACTIONS(2217), + [anon_sym_unset] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_concurrent] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_function] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_switch] = ACTIONS(2217), + [anon_sym_foreach] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_using] = ACTIONS(2217), + [sym_float] = ACTIONS(2219), + [sym_integer] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_True] = ACTIONS(2217), + [anon_sym_TRUE] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_False] = ACTIONS(2217), + [anon_sym_FALSE] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [anon_sym_Null] = ACTIONS(2217), + [anon_sym_NULL] = ACTIONS(2217), + [sym_string] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_array] = ACTIONS(2217), + [anon_sym_varray] = ACTIONS(2217), + [anon_sym_darray] = ACTIONS(2217), + [anon_sym_vec] = ACTIONS(2217), + [anon_sym_dict] = ACTIONS(2217), + [anon_sym_keyset] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_list] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_class] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_abstract] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2219), + [sym_final_modifier] = ACTIONS(2217), + [sym_xhp_modifier] = ACTIONS(2217), + [sym_xhp_identifier] = ACTIONS(2217), + [sym_xhp_class_identifier] = ACTIONS(2219), [sym_comment] = ACTIONS(3), }, - [1469] = { - [sym_identifier] = ACTIONS(2293), - [sym_variable] = ACTIONS(2295), - [sym_pipe_variable] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_newtype] = ACTIONS(2293), - [anon_sym_shape] = ACTIONS(2293), - [anon_sym_tuple] = ACTIONS(2293), - [anon_sym_clone] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_print] = ACTIONS(2293), - [anon_sym_namespace] = ACTIONS(2293), - [anon_sym_include] = ACTIONS(2293), - [anon_sym_include_once] = ACTIONS(2293), - [anon_sym_require] = ACTIONS(2293), - [anon_sym_require_once] = ACTIONS(2293), - [anon_sym_BSLASH] = ACTIONS(2295), - [anon_sym_self] = ACTIONS(2293), - [anon_sym_parent] = ACTIONS(2293), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_LT_LT_LT] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_throw] = ACTIONS(2293), - [anon_sym_echo] = ACTIONS(2293), - [anon_sym_unset] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_concurrent] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_function] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_switch] = ACTIONS(2293), - [anon_sym_foreach] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_do] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_using] = ACTIONS(2293), - [sym_float] = ACTIONS(2295), - [sym_integer] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_True] = ACTIONS(2293), - [anon_sym_TRUE] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_False] = ACTIONS(2293), - [anon_sym_FALSE] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2293), - [anon_sym_Null] = ACTIONS(2293), - [anon_sym_NULL] = ACTIONS(2293), - [sym_string] = ACTIONS(2295), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_array] = ACTIONS(2293), - [anon_sym_varray] = ACTIONS(2293), - [anon_sym_darray] = ACTIONS(2293), - [anon_sym_vec] = ACTIONS(2293), - [anon_sym_dict] = ACTIONS(2293), - [anon_sym_keyset] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_list] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_trait] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_abstract] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2295), - [sym_final_modifier] = ACTIONS(2293), - [sym_xhp_modifier] = ACTIONS(2293), - [sym_xhp_identifier] = ACTIONS(2293), - [sym_xhp_class_identifier] = ACTIONS(2295), + [1435] = { + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2213), + [sym_variable] = ACTIONS(2215), + [sym_pipe_variable] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_newtype] = ACTIONS(2213), + [anon_sym_shape] = ACTIONS(2213), + [anon_sym_tuple] = ACTIONS(2213), + [anon_sym_clone] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_print] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_include] = ACTIONS(2213), + [anon_sym_include_once] = ACTIONS(2213), + [anon_sym_require] = ACTIONS(2213), + [anon_sym_require_once] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2215), + [anon_sym_self] = ACTIONS(2213), + [anon_sym_parent] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_LT_LT_LT] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_echo] = ACTIONS(2213), + [anon_sym_unset] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_concurrent] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_foreach] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [sym_float] = ACTIONS(2215), + [sym_integer] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_True] = ACTIONS(2213), + [anon_sym_TRUE] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_False] = ACTIONS(2213), + [anon_sym_FALSE] = ACTIONS(2213), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_Null] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2213), + [sym_string] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_array] = ACTIONS(2213), + [anon_sym_varray] = ACTIONS(2213), + [anon_sym_darray] = ACTIONS(2213), + [anon_sym_vec] = ACTIONS(2213), + [anon_sym_dict] = ACTIONS(2213), + [anon_sym_keyset] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_list] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2215), + [sym_final_modifier] = ACTIONS(2213), + [sym_xhp_modifier] = ACTIONS(2213), + [sym_xhp_identifier] = ACTIONS(2213), + [sym_xhp_class_identifier] = ACTIONS(2215), [sym_comment] = ACTIONS(3), }, - [1470] = { - [sym_identifier] = ACTIONS(2249), - [sym_variable] = ACTIONS(2251), - [sym_pipe_variable] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_newtype] = ACTIONS(2249), - [anon_sym_shape] = ACTIONS(2249), - [anon_sym_tuple] = ACTIONS(2249), - [anon_sym_clone] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_print] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_LT_LT_LT] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_echo] = ACTIONS(2249), - [anon_sym_unset] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_concurrent] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_foreach] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [sym_float] = ACTIONS(2251), - [sym_integer] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_True] = ACTIONS(2249), - [anon_sym_TRUE] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [anon_sym_False] = ACTIONS(2249), - [anon_sym_FALSE] = ACTIONS(2249), - [anon_sym_null] = ACTIONS(2249), - [anon_sym_Null] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2249), - [sym_string] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_array] = ACTIONS(2249), - [anon_sym_varray] = ACTIONS(2249), - [anon_sym_darray] = ACTIONS(2249), - [anon_sym_vec] = ACTIONS(2249), - [anon_sym_dict] = ACTIONS(2249), - [anon_sym_keyset] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2251), - [sym_final_modifier] = ACTIONS(2249), - [sym_xhp_modifier] = ACTIONS(2249), - [sym_xhp_identifier] = ACTIONS(2249), - [sym_xhp_class_identifier] = ACTIONS(2251), + [1436] = { + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2241), + [sym_variable] = ACTIONS(2243), + [sym_pipe_variable] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_newtype] = ACTIONS(2241), + [anon_sym_shape] = ACTIONS(2241), + [anon_sym_tuple] = ACTIONS(2241), + [anon_sym_clone] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_print] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_include] = ACTIONS(2241), + [anon_sym_include_once] = ACTIONS(2241), + [anon_sym_require] = ACTIONS(2241), + [anon_sym_require_once] = ACTIONS(2241), + [anon_sym_BSLASH] = ACTIONS(2243), + [anon_sym_self] = ACTIONS(2241), + [anon_sym_parent] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_LT_LT] = ACTIONS(2241), + [anon_sym_LT_LT_LT] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_echo] = ACTIONS(2241), + [anon_sym_unset] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_concurrent] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_foreach] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [sym_float] = ACTIONS(2243), + [sym_integer] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_True] = ACTIONS(2241), + [anon_sym_TRUE] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_False] = ACTIONS(2241), + [anon_sym_FALSE] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [anon_sym_Null] = ACTIONS(2241), + [anon_sym_NULL] = ACTIONS(2241), + [sym_string] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_array] = ACTIONS(2241), + [anon_sym_varray] = ACTIONS(2241), + [anon_sym_darray] = ACTIONS(2241), + [anon_sym_vec] = ACTIONS(2241), + [anon_sym_dict] = ACTIONS(2241), + [anon_sym_keyset] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_list] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2243), + [sym_final_modifier] = ACTIONS(2241), + [sym_xhp_modifier] = ACTIONS(2241), + [sym_xhp_identifier] = ACTIONS(2241), + [sym_xhp_class_identifier] = ACTIONS(2243), [sym_comment] = ACTIONS(3), }, - [1471] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2133), - [sym_variable] = ACTIONS(2135), - [sym_pipe_variable] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_newtype] = ACTIONS(2133), - [anon_sym_shape] = ACTIONS(2133), - [anon_sym_tuple] = ACTIONS(2133), - [anon_sym_clone] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_print] = ACTIONS(2133), - [anon_sym_namespace] = ACTIONS(2133), - [anon_sym_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_LT_LT_LT] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_throw] = ACTIONS(2133), - [anon_sym_echo] = ACTIONS(2133), - [anon_sym_unset] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_concurrent] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_foreach] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(2133), - [sym_float] = ACTIONS(2135), - [sym_integer] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_True] = ACTIONS(2133), - [anon_sym_TRUE] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_False] = ACTIONS(2133), - [anon_sym_FALSE] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [anon_sym_Null] = ACTIONS(2133), - [anon_sym_NULL] = ACTIONS(2133), - [sym_string] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_array] = ACTIONS(2133), - [anon_sym_varray] = ACTIONS(2133), - [anon_sym_darray] = ACTIONS(2133), - [anon_sym_vec] = ACTIONS(2133), - [anon_sym_dict] = ACTIONS(2133), - [anon_sym_keyset] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_trait] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_class] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_abstract] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2135), - [sym_final_modifier] = ACTIONS(2133), - [sym_xhp_modifier] = ACTIONS(2133), - [sym_xhp_identifier] = ACTIONS(2133), - [sym_xhp_class_identifier] = ACTIONS(2135), + [1437] = { + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2209), + [sym_variable] = ACTIONS(2211), + [sym_pipe_variable] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_newtype] = ACTIONS(2209), + [anon_sym_shape] = ACTIONS(2209), + [anon_sym_tuple] = ACTIONS(2209), + [anon_sym_clone] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_print] = ACTIONS(2209), + [anon_sym_namespace] = ACTIONS(2209), + [anon_sym_include] = ACTIONS(2209), + [anon_sym_include_once] = ACTIONS(2209), + [anon_sym_require] = ACTIONS(2209), + [anon_sym_require_once] = ACTIONS(2209), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_self] = ACTIONS(2209), + [anon_sym_parent] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_LT_LT_LT] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_echo] = ACTIONS(2209), + [anon_sym_unset] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_concurrent] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_foreach] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_using] = ACTIONS(2209), + [sym_float] = ACTIONS(2211), + [sym_integer] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_True] = ACTIONS(2209), + [anon_sym_TRUE] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_False] = ACTIONS(2209), + [anon_sym_FALSE] = ACTIONS(2209), + [anon_sym_null] = ACTIONS(2209), + [anon_sym_Null] = ACTIONS(2209), + [anon_sym_NULL] = ACTIONS(2209), + [sym_string] = ACTIONS(2211), + [anon_sym_AT] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_array] = ACTIONS(2209), + [anon_sym_varray] = ACTIONS(2209), + [anon_sym_darray] = ACTIONS(2209), + [anon_sym_vec] = ACTIONS(2209), + [anon_sym_dict] = ACTIONS(2209), + [anon_sym_keyset] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_list] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2211), + [sym_final_modifier] = ACTIONS(2209), + [sym_xhp_modifier] = ACTIONS(2209), + [sym_xhp_identifier] = ACTIONS(2209), + [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [1472] = { + [1438] = { + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2441), + [sym_variable] = ACTIONS(2443), + [sym_pipe_variable] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_newtype] = ACTIONS(2441), + [anon_sym_shape] = ACTIONS(2441), + [anon_sym_tuple] = ACTIONS(2441), + [anon_sym_clone] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_include] = ACTIONS(2441), + [anon_sym_include_once] = ACTIONS(2441), + [anon_sym_require] = ACTIONS(2441), + [anon_sym_require_once] = ACTIONS(2441), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_self] = ACTIONS(2441), + [anon_sym_parent] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_LT] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_echo] = ACTIONS(2441), + [anon_sym_unset] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_concurrent] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_foreach] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [sym_float] = ACTIONS(2443), + [sym_integer] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_True] = ACTIONS(2441), + [anon_sym_TRUE] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_False] = ACTIONS(2441), + [anon_sym_FALSE] = ACTIONS(2441), + [anon_sym_null] = ACTIONS(2441), + [anon_sym_Null] = ACTIONS(2441), + [anon_sym_NULL] = ACTIONS(2441), + [sym_string] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_array] = ACTIONS(2441), + [anon_sym_varray] = ACTIONS(2441), + [anon_sym_darray] = ACTIONS(2441), + [anon_sym_vec] = ACTIONS(2441), + [anon_sym_dict] = ACTIONS(2441), + [anon_sym_keyset] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_abstract] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2443), + [sym_final_modifier] = ACTIONS(2441), + [sym_xhp_modifier] = ACTIONS(2441), + [sym_xhp_identifier] = ACTIONS(2441), + [sym_xhp_class_identifier] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + }, + [1439] = { [sym_identifier] = ACTIONS(2209), [sym_variable] = ACTIONS(2211), [sym_pipe_variable] = ACTIONS(2211), @@ -172283,781 +163019,1211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(3), }, - [1473] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2613), - [sym_variable] = ACTIONS(2615), - [sym_pipe_variable] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2613), - [anon_sym_newtype] = ACTIONS(2613), - [anon_sym_shape] = ACTIONS(2613), - [anon_sym_tuple] = ACTIONS(2613), - [anon_sym_clone] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_print] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_include] = ACTIONS(2613), - [anon_sym_include_once] = ACTIONS(2613), - [anon_sym_require] = ACTIONS(2613), - [anon_sym_require_once] = ACTIONS(2613), - [anon_sym_BSLASH] = ACTIONS(2615), - [anon_sym_self] = ACTIONS(2613), - [anon_sym_parent] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_echo] = ACTIONS(2613), - [anon_sym_unset] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_concurrent] = ACTIONS(2613), - [anon_sym_use] = ACTIONS(2613), - [anon_sym_function] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_foreach] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [sym_float] = ACTIONS(2615), - [sym_integer] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_True] = ACTIONS(2613), - [anon_sym_TRUE] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_False] = ACTIONS(2613), - [anon_sym_FALSE] = ACTIONS(2613), - [anon_sym_null] = ACTIONS(2613), - [anon_sym_Null] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [sym_string] = ACTIONS(2615), - [anon_sym_AT] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_array] = ACTIONS(2613), - [anon_sym_varray] = ACTIONS(2613), - [anon_sym_darray] = ACTIONS(2613), - [anon_sym_vec] = ACTIONS(2613), - [anon_sym_dict] = ACTIONS(2613), - [anon_sym_keyset] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_list] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_await] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_trait] = ACTIONS(2613), - [anon_sym_interface] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_abstract] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2615), - [sym_final_modifier] = ACTIONS(2613), - [sym_xhp_modifier] = ACTIONS(2613), - [sym_xhp_identifier] = ACTIONS(2613), - [sym_xhp_class_identifier] = ACTIONS(2615), + [1440] = { + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2437), + [sym_variable] = ACTIONS(2439), + [sym_pipe_variable] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_newtype] = ACTIONS(2437), + [anon_sym_shape] = ACTIONS(2437), + [anon_sym_tuple] = ACTIONS(2437), + [anon_sym_clone] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_print] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_include] = ACTIONS(2437), + [anon_sym_include_once] = ACTIONS(2437), + [anon_sym_require] = ACTIONS(2437), + [anon_sym_require_once] = ACTIONS(2437), + [anon_sym_BSLASH] = ACTIONS(2439), + [anon_sym_self] = ACTIONS(2437), + [anon_sym_parent] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_LT_LT] = ACTIONS(2437), + [anon_sym_LT_LT_LT] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_echo] = ACTIONS(2437), + [anon_sym_unset] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_concurrent] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_foreach] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [sym_float] = ACTIONS(2439), + [sym_integer] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_True] = ACTIONS(2437), + [anon_sym_TRUE] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_False] = ACTIONS(2437), + [anon_sym_FALSE] = ACTIONS(2437), + [anon_sym_null] = ACTIONS(2437), + [anon_sym_Null] = ACTIONS(2437), + [anon_sym_NULL] = ACTIONS(2437), + [sym_string] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_array] = ACTIONS(2437), + [anon_sym_varray] = ACTIONS(2437), + [anon_sym_darray] = ACTIONS(2437), + [anon_sym_vec] = ACTIONS(2437), + [anon_sym_dict] = ACTIONS(2437), + [anon_sym_keyset] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_interface] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_abstract] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [sym_final_modifier] = ACTIONS(2437), + [sym_xhp_modifier] = ACTIONS(2437), + [sym_xhp_identifier] = ACTIONS(2437), + [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, - [1474] = { - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2149), - [sym_variable] = ACTIONS(2151), - [sym_pipe_variable] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_newtype] = ACTIONS(2149), - [anon_sym_shape] = ACTIONS(2149), - [anon_sym_tuple] = ACTIONS(2149), - [anon_sym_clone] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_print] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_LT_LT_LT] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_echo] = ACTIONS(2149), - [anon_sym_unset] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_concurrent] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_foreach] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [sym_float] = ACTIONS(2151), - [sym_integer] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_True] = ACTIONS(2149), - [anon_sym_TRUE] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_False] = ACTIONS(2149), - [anon_sym_FALSE] = ACTIONS(2149), - [anon_sym_null] = ACTIONS(2149), - [anon_sym_Null] = ACTIONS(2149), - [anon_sym_NULL] = ACTIONS(2149), - [sym_string] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_array] = ACTIONS(2149), - [anon_sym_varray] = ACTIONS(2149), - [anon_sym_darray] = ACTIONS(2149), - [anon_sym_vec] = ACTIONS(2149), - [anon_sym_dict] = ACTIONS(2149), - [anon_sym_keyset] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2151), - [sym_final_modifier] = ACTIONS(2149), - [sym_xhp_modifier] = ACTIONS(2149), - [sym_xhp_identifier] = ACTIONS(2149), - [sym_xhp_class_identifier] = ACTIONS(2151), + [1441] = { + [sym_identifier] = ACTIONS(2213), + [sym_variable] = ACTIONS(2215), + [sym_pipe_variable] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_newtype] = ACTIONS(2213), + [anon_sym_shape] = ACTIONS(2213), + [anon_sym_tuple] = ACTIONS(2213), + [anon_sym_clone] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_print] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_include] = ACTIONS(2213), + [anon_sym_include_once] = ACTIONS(2213), + [anon_sym_require] = ACTIONS(2213), + [anon_sym_require_once] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2215), + [anon_sym_self] = ACTIONS(2213), + [anon_sym_parent] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_LT_LT_LT] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_echo] = ACTIONS(2213), + [anon_sym_unset] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_concurrent] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_foreach] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [sym_float] = ACTIONS(2215), + [sym_integer] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_True] = ACTIONS(2213), + [anon_sym_TRUE] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_False] = ACTIONS(2213), + [anon_sym_FALSE] = ACTIONS(2213), + [anon_sym_null] = ACTIONS(2213), + [anon_sym_Null] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2213), + [sym_string] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_array] = ACTIONS(2213), + [anon_sym_varray] = ACTIONS(2213), + [anon_sym_darray] = ACTIONS(2213), + [anon_sym_vec] = ACTIONS(2213), + [anon_sym_dict] = ACTIONS(2213), + [anon_sym_keyset] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_list] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2215), + [sym_final_modifier] = ACTIONS(2213), + [sym_xhp_modifier] = ACTIONS(2213), + [sym_xhp_identifier] = ACTIONS(2213), + [sym_xhp_class_identifier] = ACTIONS(2215), + [sym_comment] = ACTIONS(3), + }, + [1442] = { + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + }, + [1443] = { + [sym_identifier] = ACTIONS(2217), + [sym_variable] = ACTIONS(2219), + [sym_pipe_variable] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_newtype] = ACTIONS(2217), + [anon_sym_shape] = ACTIONS(2217), + [anon_sym_tuple] = ACTIONS(2217), + [anon_sym_clone] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2217), + [anon_sym_include] = ACTIONS(2217), + [anon_sym_include_once] = ACTIONS(2217), + [anon_sym_require] = ACTIONS(2217), + [anon_sym_require_once] = ACTIONS(2217), + [anon_sym_BSLASH] = ACTIONS(2219), + [anon_sym_self] = ACTIONS(2217), + [anon_sym_parent] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_LT_LT_LT] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_throw] = ACTIONS(2217), + [anon_sym_echo] = ACTIONS(2217), + [anon_sym_unset] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_concurrent] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_function] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_switch] = ACTIONS(2217), + [anon_sym_foreach] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_do] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_using] = ACTIONS(2217), + [sym_float] = ACTIONS(2219), + [sym_integer] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_True] = ACTIONS(2217), + [anon_sym_TRUE] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_False] = ACTIONS(2217), + [anon_sym_FALSE] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [anon_sym_Null] = ACTIONS(2217), + [anon_sym_NULL] = ACTIONS(2217), + [sym_string] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_array] = ACTIONS(2217), + [anon_sym_varray] = ACTIONS(2217), + [anon_sym_darray] = ACTIONS(2217), + [anon_sym_vec] = ACTIONS(2217), + [anon_sym_dict] = ACTIONS(2217), + [anon_sym_keyset] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_list] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_class] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_abstract] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2219), + [sym_final_modifier] = ACTIONS(2217), + [sym_xhp_modifier] = ACTIONS(2217), + [sym_xhp_identifier] = ACTIONS(2217), + [sym_xhp_class_identifier] = ACTIONS(2219), + [sym_comment] = ACTIONS(3), + }, + [1444] = { + [sym_identifier] = ACTIONS(2205), + [sym_variable] = ACTIONS(2207), + [sym_pipe_variable] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_newtype] = ACTIONS(2205), + [anon_sym_shape] = ACTIONS(2205), + [anon_sym_tuple] = ACTIONS(2205), + [anon_sym_clone] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_print] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_include] = ACTIONS(2205), + [anon_sym_include_once] = ACTIONS(2205), + [anon_sym_require] = ACTIONS(2205), + [anon_sym_require_once] = ACTIONS(2205), + [anon_sym_BSLASH] = ACTIONS(2207), + [anon_sym_self] = ACTIONS(2205), + [anon_sym_parent] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_LT_LT_LT] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_echo] = ACTIONS(2205), + [anon_sym_unset] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_concurrent] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_foreach] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [sym_float] = ACTIONS(2207), + [sym_integer] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_True] = ACTIONS(2205), + [anon_sym_TRUE] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_False] = ACTIONS(2205), + [anon_sym_FALSE] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(2205), + [anon_sym_Null] = ACTIONS(2205), + [anon_sym_NULL] = ACTIONS(2205), + [sym_string] = ACTIONS(2207), + [anon_sym_AT] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_array] = ACTIONS(2205), + [anon_sym_varray] = ACTIONS(2205), + [anon_sym_darray] = ACTIONS(2205), + [anon_sym_vec] = ACTIONS(2205), + [anon_sym_dict] = ACTIONS(2205), + [anon_sym_keyset] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_list] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2207), + [sym_final_modifier] = ACTIONS(2205), + [sym_xhp_modifier] = ACTIONS(2205), + [sym_xhp_identifier] = ACTIONS(2205), + [sym_xhp_class_identifier] = ACTIONS(2207), + [sym_comment] = ACTIONS(3), + }, + [1445] = { + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2433), + [sym_variable] = ACTIONS(2435), + [sym_pipe_variable] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_newtype] = ACTIONS(2433), + [anon_sym_shape] = ACTIONS(2433), + [anon_sym_tuple] = ACTIONS(2433), + [anon_sym_clone] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_print] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_include] = ACTIONS(2433), + [anon_sym_include_once] = ACTIONS(2433), + [anon_sym_require] = ACTIONS(2433), + [anon_sym_require_once] = ACTIONS(2433), + [anon_sym_BSLASH] = ACTIONS(2435), + [anon_sym_self] = ACTIONS(2433), + [anon_sym_parent] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_LT_LT_LT] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_echo] = ACTIONS(2433), + [anon_sym_unset] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_concurrent] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_foreach] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [sym_float] = ACTIONS(2435), + [sym_integer] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_True] = ACTIONS(2433), + [anon_sym_TRUE] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_False] = ACTIONS(2433), + [anon_sym_FALSE] = ACTIONS(2433), + [anon_sym_null] = ACTIONS(2433), + [anon_sym_Null] = ACTIONS(2433), + [anon_sym_NULL] = ACTIONS(2433), + [sym_string] = ACTIONS(2435), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_array] = ACTIONS(2433), + [anon_sym_varray] = ACTIONS(2433), + [anon_sym_darray] = ACTIONS(2433), + [anon_sym_vec] = ACTIONS(2433), + [anon_sym_dict] = ACTIONS(2433), + [anon_sym_keyset] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_abstract] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2435), + [sym_final_modifier] = ACTIONS(2433), + [sym_xhp_modifier] = ACTIONS(2433), + [sym_xhp_identifier] = ACTIONS(2433), + [sym_xhp_class_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(3), }, - [1475] = { - [sym_identifier] = ACTIONS(2309), - [sym_variable] = ACTIONS(2311), - [sym_pipe_variable] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_newtype] = ACTIONS(2309), - [anon_sym_shape] = ACTIONS(2309), - [anon_sym_tuple] = ACTIONS(2309), - [anon_sym_clone] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_print] = ACTIONS(2309), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_include] = ACTIONS(2309), - [anon_sym_include_once] = ACTIONS(2309), - [anon_sym_require] = ACTIONS(2309), - [anon_sym_require_once] = ACTIONS(2309), - [anon_sym_BSLASH] = ACTIONS(2311), - [anon_sym_self] = ACTIONS(2309), - [anon_sym_parent] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_LT_LT_LT] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_throw] = ACTIONS(2309), - [anon_sym_echo] = ACTIONS(2309), - [anon_sym_unset] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_concurrent] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_switch] = ACTIONS(2309), - [anon_sym_foreach] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_using] = ACTIONS(2309), - [sym_float] = ACTIONS(2311), - [sym_integer] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_True] = ACTIONS(2309), - [anon_sym_TRUE] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_False] = ACTIONS(2309), - [anon_sym_FALSE] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [anon_sym_Null] = ACTIONS(2309), - [anon_sym_NULL] = ACTIONS(2309), - [sym_string] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_array] = ACTIONS(2309), - [anon_sym_varray] = ACTIONS(2309), - [anon_sym_darray] = ACTIONS(2309), - [anon_sym_vec] = ACTIONS(2309), - [anon_sym_dict] = ACTIONS(2309), - [anon_sym_keyset] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_abstract] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2311), - [sym_final_modifier] = ACTIONS(2309), - [sym_xhp_modifier] = ACTIONS(2309), - [sym_xhp_identifier] = ACTIONS(2309), - [sym_xhp_class_identifier] = ACTIONS(2311), + [1446] = { + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2493), + [sym_variable] = ACTIONS(2495), + [sym_pipe_variable] = ACTIONS(2495), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_newtype] = ACTIONS(2493), + [anon_sym_shape] = ACTIONS(2493), + [anon_sym_tuple] = ACTIONS(2493), + [anon_sym_clone] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_include] = ACTIONS(2493), + [anon_sym_include_once] = ACTIONS(2493), + [anon_sym_require] = ACTIONS(2493), + [anon_sym_require_once] = ACTIONS(2493), + [anon_sym_BSLASH] = ACTIONS(2495), + [anon_sym_self] = ACTIONS(2493), + [anon_sym_parent] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_LT_LT] = ACTIONS(2493), + [anon_sym_LT_LT_LT] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_echo] = ACTIONS(2493), + [anon_sym_unset] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_concurrent] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_function] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_foreach] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [sym_float] = ACTIONS(2495), + [sym_integer] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_True] = ACTIONS(2493), + [anon_sym_TRUE] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_False] = ACTIONS(2493), + [anon_sym_FALSE] = ACTIONS(2493), + [anon_sym_null] = ACTIONS(2493), + [anon_sym_Null] = ACTIONS(2493), + [anon_sym_NULL] = ACTIONS(2493), + [sym_string] = ACTIONS(2495), + [anon_sym_AT] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_array] = ACTIONS(2493), + [anon_sym_varray] = ACTIONS(2493), + [anon_sym_darray] = ACTIONS(2493), + [anon_sym_vec] = ACTIONS(2493), + [anon_sym_dict] = ACTIONS(2493), + [anon_sym_keyset] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_interface] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_abstract] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2495), + [sym_final_modifier] = ACTIONS(2493), + [sym_xhp_modifier] = ACTIONS(2493), + [sym_xhp_identifier] = ACTIONS(2493), + [sym_xhp_class_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(3), }, - [1476] = { - [sym_identifier] = ACTIONS(2269), - [sym_variable] = ACTIONS(2271), - [sym_pipe_variable] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_newtype] = ACTIONS(2269), - [anon_sym_shape] = ACTIONS(2269), - [anon_sym_tuple] = ACTIONS(2269), - [anon_sym_clone] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_print] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_LT_LT_LT] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_echo] = ACTIONS(2269), - [anon_sym_unset] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_concurrent] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_switch] = ACTIONS(2269), - [anon_sym_foreach] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_using] = ACTIONS(2269), - [sym_float] = ACTIONS(2271), - [sym_integer] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_True] = ACTIONS(2269), - [anon_sym_TRUE] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_False] = ACTIONS(2269), - [anon_sym_FALSE] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [anon_sym_Null] = ACTIONS(2269), - [anon_sym_NULL] = ACTIONS(2269), - [sym_string] = ACTIONS(2271), - [anon_sym_AT] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_array] = ACTIONS(2269), - [anon_sym_varray] = ACTIONS(2269), - [anon_sym_darray] = ACTIONS(2269), - [anon_sym_vec] = ACTIONS(2269), - [anon_sym_dict] = ACTIONS(2269), - [anon_sym_keyset] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2271), - [sym_final_modifier] = ACTIONS(2269), - [sym_xhp_modifier] = ACTIONS(2269), - [sym_xhp_identifier] = ACTIONS(2269), - [sym_xhp_class_identifier] = ACTIONS(2271), + [1447] = { + [sym_identifier] = ACTIONS(2201), + [sym_variable] = ACTIONS(2203), + [sym_pipe_variable] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_newtype] = ACTIONS(2201), + [anon_sym_shape] = ACTIONS(2201), + [anon_sym_tuple] = ACTIONS(2201), + [anon_sym_clone] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_namespace] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_include_once] = ACTIONS(2201), + [anon_sym_require] = ACTIONS(2201), + [anon_sym_require_once] = ACTIONS(2201), + [anon_sym_BSLASH] = ACTIONS(2203), + [anon_sym_self] = ACTIONS(2201), + [anon_sym_parent] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_LT_LT_LT] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_echo] = ACTIONS(2201), + [anon_sym_unset] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_concurrent] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_foreach] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_using] = ACTIONS(2201), + [sym_float] = ACTIONS(2203), + [sym_integer] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [sym_string] = ACTIONS(2203), + [anon_sym_AT] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_array] = ACTIONS(2201), + [anon_sym_varray] = ACTIONS(2201), + [anon_sym_darray] = ACTIONS(2201), + [anon_sym_vec] = ACTIONS(2201), + [anon_sym_dict] = ACTIONS(2201), + [anon_sym_keyset] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_list] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_class] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2203), + [sym_final_modifier] = ACTIONS(2201), + [sym_xhp_modifier] = ACTIONS(2201), + [sym_xhp_identifier] = ACTIONS(2201), + [sym_xhp_class_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(3), }, - [1477] = { - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2161), - [sym_variable] = ACTIONS(2163), - [sym_pipe_variable] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_newtype] = ACTIONS(2161), - [anon_sym_shape] = ACTIONS(2161), - [anon_sym_tuple] = ACTIONS(2161), - [anon_sym_clone] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2161), - [anon_sym_print] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2161), - [anon_sym_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_LT_LT_LT] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_echo] = ACTIONS(2161), - [anon_sym_unset] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_concurrent] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_function] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [anon_sym_foreach] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_using] = ACTIONS(2161), - [sym_float] = ACTIONS(2163), - [sym_integer] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_True] = ACTIONS(2161), - [anon_sym_TRUE] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_False] = ACTIONS(2161), - [anon_sym_FALSE] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2161), - [anon_sym_Null] = ACTIONS(2161), - [anon_sym_NULL] = ACTIONS(2161), - [sym_string] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_array] = ACTIONS(2161), - [anon_sym_varray] = ACTIONS(2161), - [anon_sym_darray] = ACTIONS(2161), - [anon_sym_vec] = ACTIONS(2161), - [anon_sym_dict] = ACTIONS(2161), - [anon_sym_keyset] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2161), - [anon_sym_class] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_abstract] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2163), - [sym_final_modifier] = ACTIONS(2161), - [sym_xhp_modifier] = ACTIONS(2161), - [sym_xhp_identifier] = ACTIONS(2161), - [sym_xhp_class_identifier] = ACTIONS(2163), + [1448] = { + [sym_identifier] = ACTIONS(2221), + [sym_variable] = ACTIONS(2223), + [sym_pipe_variable] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_newtype] = ACTIONS(2221), + [anon_sym_shape] = ACTIONS(2221), + [anon_sym_tuple] = ACTIONS(2221), + [anon_sym_clone] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_include] = ACTIONS(2221), + [anon_sym_include_once] = ACTIONS(2221), + [anon_sym_require] = ACTIONS(2221), + [anon_sym_require_once] = ACTIONS(2221), + [anon_sym_BSLASH] = ACTIONS(2223), + [anon_sym_self] = ACTIONS(2221), + [anon_sym_parent] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_LT_LT_LT] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_echo] = ACTIONS(2221), + [anon_sym_unset] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_concurrent] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_foreach] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [sym_float] = ACTIONS(2223), + [sym_integer] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_True] = ACTIONS(2221), + [anon_sym_TRUE] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_False] = ACTIONS(2221), + [anon_sym_FALSE] = ACTIONS(2221), + [anon_sym_null] = ACTIONS(2221), + [anon_sym_Null] = ACTIONS(2221), + [anon_sym_NULL] = ACTIONS(2221), + [sym_string] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_array] = ACTIONS(2221), + [anon_sym_varray] = ACTIONS(2221), + [anon_sym_darray] = ACTIONS(2221), + [anon_sym_vec] = ACTIONS(2221), + [anon_sym_dict] = ACTIONS(2221), + [anon_sym_keyset] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_list] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2223), + [sym_final_modifier] = ACTIONS(2221), + [sym_xhp_modifier] = ACTIONS(2221), + [sym_xhp_identifier] = ACTIONS(2221), + [sym_xhp_class_identifier] = ACTIONS(2223), [sym_comment] = ACTIONS(3), }, - [1478] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_identifier] = ACTIONS(2333), - [sym_variable] = ACTIONS(2335), - [sym_pipe_variable] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_newtype] = ACTIONS(2333), - [anon_sym_shape] = ACTIONS(2333), - [anon_sym_tuple] = ACTIONS(2333), - [anon_sym_clone] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_print] = ACTIONS(2333), - [anon_sym_namespace] = ACTIONS(2333), - [anon_sym_include] = ACTIONS(2333), - [anon_sym_include_once] = ACTIONS(2333), - [anon_sym_require] = ACTIONS(2333), - [anon_sym_require_once] = ACTIONS(2333), - [anon_sym_BSLASH] = ACTIONS(2335), - [anon_sym_self] = ACTIONS(2333), - [anon_sym_parent] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_LT_LT] = ACTIONS(2333), - [anon_sym_LT_LT_LT] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_throw] = ACTIONS(2333), - [anon_sym_echo] = ACTIONS(2333), - [anon_sym_unset] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_concurrent] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_function] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_switch] = ACTIONS(2333), - [anon_sym_foreach] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_using] = ACTIONS(2333), - [sym_float] = ACTIONS(2335), - [sym_integer] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_True] = ACTIONS(2333), - [anon_sym_TRUE] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [anon_sym_False] = ACTIONS(2333), - [anon_sym_FALSE] = ACTIONS(2333), - [anon_sym_null] = ACTIONS(2333), - [anon_sym_Null] = ACTIONS(2333), - [anon_sym_NULL] = ACTIONS(2333), - [sym_string] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2335), - [anon_sym_array] = ACTIONS(2333), - [anon_sym_varray] = ACTIONS(2333), - [anon_sym_darray] = ACTIONS(2333), - [anon_sym_vec] = ACTIONS(2333), - [anon_sym_dict] = ACTIONS(2333), - [anon_sym_keyset] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_list] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_interface] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_abstract] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(2335), - [sym_final_modifier] = ACTIONS(2333), - [sym_xhp_modifier] = ACTIONS(2333), - [sym_xhp_identifier] = ACTIONS(2333), - [sym_xhp_class_identifier] = ACTIONS(2335), + [1449] = { + [sym_identifier] = ACTIONS(2225), + [sym_variable] = ACTIONS(2227), + [sym_pipe_variable] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_newtype] = ACTIONS(2225), + [anon_sym_shape] = ACTIONS(2225), + [anon_sym_tuple] = ACTIONS(2225), + [anon_sym_clone] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_print] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_include] = ACTIONS(2225), + [anon_sym_include_once] = ACTIONS(2225), + [anon_sym_require] = ACTIONS(2225), + [anon_sym_require_once] = ACTIONS(2225), + [anon_sym_BSLASH] = ACTIONS(2227), + [anon_sym_self] = ACTIONS(2225), + [anon_sym_parent] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_LT_LT_LT] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_echo] = ACTIONS(2225), + [anon_sym_unset] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_concurrent] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_foreach] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [sym_float] = ACTIONS(2227), + [sym_integer] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_True] = ACTIONS(2225), + [anon_sym_TRUE] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_False] = ACTIONS(2225), + [anon_sym_FALSE] = ACTIONS(2225), + [anon_sym_null] = ACTIONS(2225), + [anon_sym_Null] = ACTIONS(2225), + [anon_sym_NULL] = ACTIONS(2225), + [sym_string] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_array] = ACTIONS(2225), + [anon_sym_varray] = ACTIONS(2225), + [anon_sym_darray] = ACTIONS(2225), + [anon_sym_vec] = ACTIONS(2225), + [anon_sym_dict] = ACTIONS(2225), + [anon_sym_keyset] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_list] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2227), + [sym_final_modifier] = ACTIONS(2225), + [sym_xhp_modifier] = ACTIONS(2225), + [sym_xhp_identifier] = ACTIONS(2225), + [sym_xhp_class_identifier] = ACTIONS(2227), [sym_comment] = ACTIONS(3), }, - [1479] = { - [sym_identifier] = ACTIONS(2245), - [sym_variable] = ACTIONS(2247), - [sym_pipe_variable] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_newtype] = ACTIONS(2245), - [anon_sym_shape] = ACTIONS(2245), - [anon_sym_tuple] = ACTIONS(2245), - [anon_sym_clone] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_print] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_LT_LT_LT] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_echo] = ACTIONS(2245), - [anon_sym_unset] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_concurrent] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_foreach] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [sym_float] = ACTIONS(2247), - [sym_integer] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_True] = ACTIONS(2245), - [anon_sym_TRUE] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_False] = ACTIONS(2245), - [anon_sym_FALSE] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_Null] = ACTIONS(2245), - [anon_sym_NULL] = ACTIONS(2245), - [sym_string] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_array] = ACTIONS(2245), - [anon_sym_varray] = ACTIONS(2245), - [anon_sym_darray] = ACTIONS(2245), - [anon_sym_vec] = ACTIONS(2245), - [anon_sym_dict] = ACTIONS(2245), - [anon_sym_keyset] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2247), - [sym_final_modifier] = ACTIONS(2245), - [sym_xhp_modifier] = ACTIONS(2245), - [sym_xhp_identifier] = ACTIONS(2245), - [sym_xhp_class_identifier] = ACTIONS(2247), + [1450] = { + [sym_identifier] = ACTIONS(2229), + [sym_variable] = ACTIONS(2231), + [sym_pipe_variable] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_newtype] = ACTIONS(2229), + [anon_sym_shape] = ACTIONS(2229), + [anon_sym_tuple] = ACTIONS(2229), + [anon_sym_clone] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_print] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_include] = ACTIONS(2229), + [anon_sym_include_once] = ACTIONS(2229), + [anon_sym_require] = ACTIONS(2229), + [anon_sym_require_once] = ACTIONS(2229), + [anon_sym_BSLASH] = ACTIONS(2231), + [anon_sym_self] = ACTIONS(2229), + [anon_sym_parent] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_LT_LT_LT] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_echo] = ACTIONS(2229), + [anon_sym_unset] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_concurrent] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_foreach] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [sym_float] = ACTIONS(2231), + [sym_integer] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_True] = ACTIONS(2229), + [anon_sym_TRUE] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_False] = ACTIONS(2229), + [anon_sym_FALSE] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_Null] = ACTIONS(2229), + [anon_sym_NULL] = ACTIONS(2229), + [sym_string] = ACTIONS(2231), + [anon_sym_AT] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2231), + [anon_sym_array] = ACTIONS(2229), + [anon_sym_varray] = ACTIONS(2229), + [anon_sym_darray] = ACTIONS(2229), + [anon_sym_vec] = ACTIONS(2229), + [anon_sym_dict] = ACTIONS(2229), + [anon_sym_keyset] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_list] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_PLUS_PLUS] = ACTIONS(2231), + [anon_sym_DASH_DASH] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2231), + [sym_final_modifier] = ACTIONS(2229), + [sym_xhp_modifier] = ACTIONS(2229), + [sym_xhp_identifier] = ACTIONS(2229), + [sym_xhp_class_identifier] = ACTIONS(2231), [sym_comment] = ACTIONS(3), }, - [1480] = { - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_identifier] = ACTIONS(2337), - [sym_variable] = ACTIONS(2339), - [sym_pipe_variable] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_newtype] = ACTIONS(2337), - [anon_sym_shape] = ACTIONS(2337), - [anon_sym_tuple] = ACTIONS(2337), - [anon_sym_clone] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_print] = ACTIONS(2337), - [anon_sym_namespace] = ACTIONS(2337), - [anon_sym_include] = ACTIONS(2337), - [anon_sym_include_once] = ACTIONS(2337), - [anon_sym_require] = ACTIONS(2337), - [anon_sym_require_once] = ACTIONS(2337), - [anon_sym_BSLASH] = ACTIONS(2339), - [anon_sym_self] = ACTIONS(2337), - [anon_sym_parent] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2337), - [anon_sym_LT_LT_LT] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2337), - [anon_sym_echo] = ACTIONS(2337), - [anon_sym_unset] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_concurrent] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_function] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_switch] = ACTIONS(2337), - [anon_sym_foreach] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_using] = ACTIONS(2337), - [sym_float] = ACTIONS(2339), - [sym_integer] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_True] = ACTIONS(2337), - [anon_sym_TRUE] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [anon_sym_False] = ACTIONS(2337), - [anon_sym_FALSE] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [anon_sym_Null] = ACTIONS(2337), - [anon_sym_NULL] = ACTIONS(2337), - [sym_string] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_array] = ACTIONS(2337), - [anon_sym_varray] = ACTIONS(2337), - [anon_sym_darray] = ACTIONS(2337), - [anon_sym_vec] = ACTIONS(2337), - [anon_sym_dict] = ACTIONS(2337), - [anon_sym_keyset] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_list] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2339), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_trait] = ACTIONS(2337), - [anon_sym_interface] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_abstract] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(2339), - [sym_final_modifier] = ACTIONS(2337), - [sym_xhp_modifier] = ACTIONS(2337), - [sym_xhp_identifier] = ACTIONS(2337), - [sym_xhp_class_identifier] = ACTIONS(2339), + [1451] = { + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2601), + [sym_variable] = ACTIONS(2603), + [sym_pipe_variable] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_newtype] = ACTIONS(2601), + [anon_sym_shape] = ACTIONS(2601), + [anon_sym_tuple] = ACTIONS(2601), + [anon_sym_clone] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_namespace] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_include_once] = ACTIONS(2601), + [anon_sym_require] = ACTIONS(2601), + [anon_sym_require_once] = ACTIONS(2601), + [anon_sym_BSLASH] = ACTIONS(2603), + [anon_sym_self] = ACTIONS(2601), + [anon_sym_parent] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_LT_LT] = ACTIONS(2601), + [anon_sym_LT_LT_LT] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_throw] = ACTIONS(2601), + [anon_sym_echo] = ACTIONS(2601), + [anon_sym_unset] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_concurrent] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_function] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_switch] = ACTIONS(2601), + [anon_sym_foreach] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_using] = ACTIONS(2601), + [sym_float] = ACTIONS(2603), + [sym_integer] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_True] = ACTIONS(2601), + [anon_sym_TRUE] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_False] = ACTIONS(2601), + [anon_sym_FALSE] = ACTIONS(2601), + [anon_sym_null] = ACTIONS(2601), + [anon_sym_Null] = ACTIONS(2601), + [anon_sym_NULL] = ACTIONS(2601), + [sym_string] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2603), + [anon_sym_array] = ACTIONS(2601), + [anon_sym_varray] = ACTIONS(2601), + [anon_sym_darray] = ACTIONS(2601), + [anon_sym_vec] = ACTIONS(2601), + [anon_sym_dict] = ACTIONS(2601), + [anon_sym_keyset] = ACTIONS(2601), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_list] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_interface] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_abstract] = ACTIONS(2601), + [anon_sym_POUND] = ACTIONS(2603), + [sym_final_modifier] = ACTIONS(2601), + [sym_xhp_modifier] = ACTIONS(2601), + [sym_xhp_identifier] = ACTIONS(2601), + [sym_xhp_class_identifier] = ACTIONS(2603), [sym_comment] = ACTIONS(3), }, - [1481] = { - [sym_identifier] = ACTIONS(2301), - [sym_variable] = ACTIONS(2303), - [sym_pipe_variable] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_newtype] = ACTIONS(2301), - [anon_sym_shape] = ACTIONS(2301), - [anon_sym_tuple] = ACTIONS(2301), - [anon_sym_clone] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_print] = ACTIONS(2301), - [anon_sym_namespace] = ACTIONS(2301), - [anon_sym_include] = ACTIONS(2301), - [anon_sym_include_once] = ACTIONS(2301), - [anon_sym_require] = ACTIONS(2301), - [anon_sym_require_once] = ACTIONS(2301), - [anon_sym_BSLASH] = ACTIONS(2303), - [anon_sym_self] = ACTIONS(2301), - [anon_sym_parent] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_LT_LT] = ACTIONS(2301), - [anon_sym_LT_LT_LT] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_throw] = ACTIONS(2301), - [anon_sym_echo] = ACTIONS(2301), - [anon_sym_unset] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_concurrent] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_function] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_switch] = ACTIONS(2301), - [anon_sym_foreach] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_do] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_using] = ACTIONS(2301), - [sym_float] = ACTIONS(2303), - [sym_integer] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_True] = ACTIONS(2301), - [anon_sym_TRUE] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_False] = ACTIONS(2301), - [anon_sym_FALSE] = ACTIONS(2301), - [anon_sym_null] = ACTIONS(2301), - [anon_sym_Null] = ACTIONS(2301), - [anon_sym_NULL] = ACTIONS(2301), - [sym_string] = ACTIONS(2303), - [anon_sym_AT] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_array] = ACTIONS(2301), - [anon_sym_varray] = ACTIONS(2301), - [anon_sym_darray] = ACTIONS(2301), - [anon_sym_vec] = ACTIONS(2301), - [anon_sym_dict] = ACTIONS(2301), - [anon_sym_keyset] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_list] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_interface] = ACTIONS(2301), - [anon_sym_class] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_abstract] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [sym_final_modifier] = ACTIONS(2301), - [sym_xhp_modifier] = ACTIONS(2301), - [sym_xhp_identifier] = ACTIONS(2301), - [sym_xhp_class_identifier] = ACTIONS(2303), + [1452] = { + [sym_identifier] = ACTIONS(2233), + [sym_variable] = ACTIONS(2235), + [sym_pipe_variable] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_newtype] = ACTIONS(2233), + [anon_sym_shape] = ACTIONS(2233), + [anon_sym_tuple] = ACTIONS(2233), + [anon_sym_clone] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_include] = ACTIONS(2233), + [anon_sym_include_once] = ACTIONS(2233), + [anon_sym_require] = ACTIONS(2233), + [anon_sym_require_once] = ACTIONS(2233), + [anon_sym_BSLASH] = ACTIONS(2235), + [anon_sym_self] = ACTIONS(2233), + [anon_sym_parent] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_LT_LT_LT] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_echo] = ACTIONS(2233), + [anon_sym_unset] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_concurrent] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_foreach] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [sym_float] = ACTIONS(2235), + [sym_integer] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_True] = ACTIONS(2233), + [anon_sym_TRUE] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_False] = ACTIONS(2233), + [anon_sym_FALSE] = ACTIONS(2233), + [anon_sym_null] = ACTIONS(2233), + [anon_sym_Null] = ACTIONS(2233), + [anon_sym_NULL] = ACTIONS(2233), + [sym_string] = ACTIONS(2235), + [anon_sym_AT] = ACTIONS(2235), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_array] = ACTIONS(2233), + [anon_sym_varray] = ACTIONS(2233), + [anon_sym_darray] = ACTIONS(2233), + [anon_sym_vec] = ACTIONS(2233), + [anon_sym_dict] = ACTIONS(2233), + [anon_sym_keyset] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_list] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2235), + [sym_final_modifier] = ACTIONS(2233), + [sym_xhp_modifier] = ACTIONS(2233), + [sym_xhp_identifier] = ACTIONS(2233), + [sym_xhp_class_identifier] = ACTIONS(2235), [sym_comment] = ACTIONS(3), }, - [1482] = { + [1453] = { + [sym_identifier] = ACTIONS(2237), + [sym_variable] = ACTIONS(2239), + [sym_pipe_variable] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_newtype] = ACTIONS(2237), + [anon_sym_shape] = ACTIONS(2237), + [anon_sym_tuple] = ACTIONS(2237), + [anon_sym_clone] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_print] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_include] = ACTIONS(2237), + [anon_sym_include_once] = ACTIONS(2237), + [anon_sym_require] = ACTIONS(2237), + [anon_sym_require_once] = ACTIONS(2237), + [anon_sym_BSLASH] = ACTIONS(2239), + [anon_sym_self] = ACTIONS(2237), + [anon_sym_parent] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_LT_LT_LT] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_echo] = ACTIONS(2237), + [anon_sym_unset] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_concurrent] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_foreach] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [sym_float] = ACTIONS(2239), + [sym_integer] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_True] = ACTIONS(2237), + [anon_sym_TRUE] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_False] = ACTIONS(2237), + [anon_sym_FALSE] = ACTIONS(2237), + [anon_sym_null] = ACTIONS(2237), + [anon_sym_Null] = ACTIONS(2237), + [anon_sym_NULL] = ACTIONS(2237), + [sym_string] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_array] = ACTIONS(2237), + [anon_sym_varray] = ACTIONS(2237), + [anon_sym_darray] = ACTIONS(2237), + [anon_sym_vec] = ACTIONS(2237), + [anon_sym_dict] = ACTIONS(2237), + [anon_sym_keyset] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_list] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2239), + [sym_final_modifier] = ACTIONS(2237), + [sym_xhp_modifier] = ACTIONS(2237), + [sym_xhp_identifier] = ACTIONS(2237), + [sym_xhp_class_identifier] = ACTIONS(2239), + [sym_comment] = ACTIONS(3), + }, + [1454] = { [sym_identifier] = ACTIONS(2241), [sym_variable] = ACTIONS(2243), [sym_pipe_variable] = ACTIONS(2243), @@ -173143,523 +164309,610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2243), [sym_comment] = ACTIONS(3), }, - [1483] = { - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), + [1455] = { + [sym_identifier] = ACTIONS(2197), + [sym_variable] = ACTIONS(2199), + [sym_pipe_variable] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_newtype] = ACTIONS(2197), + [anon_sym_shape] = ACTIONS(2197), + [anon_sym_tuple] = ACTIONS(2197), + [anon_sym_clone] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_print] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_include] = ACTIONS(2197), + [anon_sym_include_once] = ACTIONS(2197), + [anon_sym_require] = ACTIONS(2197), + [anon_sym_require_once] = ACTIONS(2197), + [anon_sym_BSLASH] = ACTIONS(2199), + [anon_sym_self] = ACTIONS(2197), + [anon_sym_parent] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_LT_LT_LT] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_echo] = ACTIONS(2197), + [anon_sym_unset] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_concurrent] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_foreach] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [sym_float] = ACTIONS(2199), + [sym_integer] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_True] = ACTIONS(2197), + [anon_sym_TRUE] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_False] = ACTIONS(2197), + [anon_sym_FALSE] = ACTIONS(2197), + [anon_sym_null] = ACTIONS(2197), + [anon_sym_Null] = ACTIONS(2197), + [anon_sym_NULL] = ACTIONS(2197), + [sym_string] = ACTIONS(2199), + [anon_sym_AT] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_array] = ACTIONS(2197), + [anon_sym_varray] = ACTIONS(2197), + [anon_sym_darray] = ACTIONS(2197), + [anon_sym_vec] = ACTIONS(2197), + [anon_sym_dict] = ACTIONS(2197), + [anon_sym_keyset] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_list] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2199), + [sym_final_modifier] = ACTIONS(2197), + [sym_xhp_modifier] = ACTIONS(2197), + [sym_xhp_identifier] = ACTIONS(2197), + [sym_xhp_class_identifier] = ACTIONS(2199), [sym_comment] = ACTIONS(3), }, - [1484] = { - [sym_identifier] = ACTIONS(2365), - [sym_variable] = ACTIONS(2367), - [sym_pipe_variable] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_newtype] = ACTIONS(2365), - [anon_sym_shape] = ACTIONS(2365), - [anon_sym_tuple] = ACTIONS(2365), - [anon_sym_clone] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_print] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2365), - [anon_sym_LT_LT_LT] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_throw] = ACTIONS(2365), - [anon_sym_echo] = ACTIONS(2365), - [anon_sym_unset] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_concurrent] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_foreach] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_using] = ACTIONS(2365), - [sym_float] = ACTIONS(2367), - [sym_integer] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_True] = ACTIONS(2365), - [anon_sym_TRUE] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_False] = ACTIONS(2365), - [anon_sym_FALSE] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_Null] = ACTIONS(2365), - [anon_sym_NULL] = ACTIONS(2365), - [sym_string] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_array] = ACTIONS(2365), - [anon_sym_varray] = ACTIONS(2365), - [anon_sym_darray] = ACTIONS(2365), - [anon_sym_vec] = ACTIONS(2365), - [anon_sym_dict] = ACTIONS(2365), - [anon_sym_keyset] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2367), - [sym_final_modifier] = ACTIONS(2365), - [sym_xhp_modifier] = ACTIONS(2365), - [sym_xhp_identifier] = ACTIONS(2365), - [sym_xhp_class_identifier] = ACTIONS(2367), + [1456] = { + [sym_identifier] = ACTIONS(2245), + [sym_variable] = ACTIONS(2247), + [sym_pipe_variable] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_newtype] = ACTIONS(2245), + [anon_sym_shape] = ACTIONS(2245), + [anon_sym_tuple] = ACTIONS(2245), + [anon_sym_clone] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_print] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_include] = ACTIONS(2245), + [anon_sym_include_once] = ACTIONS(2245), + [anon_sym_require] = ACTIONS(2245), + [anon_sym_require_once] = ACTIONS(2245), + [anon_sym_BSLASH] = ACTIONS(2247), + [anon_sym_self] = ACTIONS(2245), + [anon_sym_parent] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_LT_LT_LT] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_echo] = ACTIONS(2245), + [anon_sym_unset] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_concurrent] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_foreach] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [sym_float] = ACTIONS(2247), + [sym_integer] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_True] = ACTIONS(2245), + [anon_sym_TRUE] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_False] = ACTIONS(2245), + [anon_sym_FALSE] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [anon_sym_Null] = ACTIONS(2245), + [anon_sym_NULL] = ACTIONS(2245), + [sym_string] = ACTIONS(2247), + [anon_sym_AT] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2247), + [anon_sym_array] = ACTIONS(2245), + [anon_sym_varray] = ACTIONS(2245), + [anon_sym_darray] = ACTIONS(2245), + [anon_sym_vec] = ACTIONS(2245), + [anon_sym_dict] = ACTIONS(2245), + [anon_sym_keyset] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_list] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(2247), + [anon_sym_DASH_DASH] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2247), + [sym_final_modifier] = ACTIONS(2245), + [sym_xhp_modifier] = ACTIONS(2245), + [sym_xhp_identifier] = ACTIONS(2245), + [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [1485] = { - [sym_identifier] = ACTIONS(2313), - [sym_variable] = ACTIONS(2315), - [sym_pipe_variable] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_newtype] = ACTIONS(2313), - [anon_sym_shape] = ACTIONS(2313), - [anon_sym_tuple] = ACTIONS(2313), - [anon_sym_clone] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_print] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_LT_LT_LT] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_throw] = ACTIONS(2313), - [anon_sym_echo] = ACTIONS(2313), - [anon_sym_unset] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_concurrent] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_function] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_switch] = ACTIONS(2313), - [anon_sym_foreach] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_using] = ACTIONS(2313), - [sym_float] = ACTIONS(2315), - [sym_integer] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_True] = ACTIONS(2313), - [anon_sym_TRUE] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_False] = ACTIONS(2313), - [anon_sym_FALSE] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [anon_sym_Null] = ACTIONS(2313), - [anon_sym_NULL] = ACTIONS(2313), - [sym_string] = ACTIONS(2315), - [anon_sym_AT] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_array] = ACTIONS(2313), - [anon_sym_varray] = ACTIONS(2313), - [anon_sym_darray] = ACTIONS(2313), - [anon_sym_vec] = ACTIONS(2313), - [anon_sym_dict] = ACTIONS(2313), - [anon_sym_keyset] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_interface] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_abstract] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(2315), - [sym_final_modifier] = ACTIONS(2313), - [sym_xhp_modifier] = ACTIONS(2313), - [sym_xhp_identifier] = ACTIONS(2313), - [sym_xhp_class_identifier] = ACTIONS(2315), + [1457] = { + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2245), + [sym_variable] = ACTIONS(2247), + [sym_pipe_variable] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_newtype] = ACTIONS(2245), + [anon_sym_shape] = ACTIONS(2245), + [anon_sym_tuple] = ACTIONS(2245), + [anon_sym_clone] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_print] = ACTIONS(2245), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_include] = ACTIONS(2245), + [anon_sym_include_once] = ACTIONS(2245), + [anon_sym_require] = ACTIONS(2245), + [anon_sym_require_once] = ACTIONS(2245), + [anon_sym_BSLASH] = ACTIONS(2247), + [anon_sym_self] = ACTIONS(2245), + [anon_sym_parent] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_LT_LT_LT] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_throw] = ACTIONS(2245), + [anon_sym_echo] = ACTIONS(2245), + [anon_sym_unset] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_concurrent] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_switch] = ACTIONS(2245), + [anon_sym_foreach] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_do] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_using] = ACTIONS(2245), + [sym_float] = ACTIONS(2247), + [sym_integer] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_True] = ACTIONS(2245), + [anon_sym_TRUE] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_False] = ACTIONS(2245), + [anon_sym_FALSE] = ACTIONS(2245), + [anon_sym_null] = ACTIONS(2245), + [anon_sym_Null] = ACTIONS(2245), + [anon_sym_NULL] = ACTIONS(2245), + [sym_string] = ACTIONS(2247), + [anon_sym_AT] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2247), + [anon_sym_array] = ACTIONS(2245), + [anon_sym_varray] = ACTIONS(2245), + [anon_sym_darray] = ACTIONS(2245), + [anon_sym_vec] = ACTIONS(2245), + [anon_sym_dict] = ACTIONS(2245), + [anon_sym_keyset] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_list] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(2247), + [anon_sym_DASH_DASH] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_abstract] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2247), + [sym_final_modifier] = ACTIONS(2245), + [sym_xhp_modifier] = ACTIONS(2245), + [sym_xhp_identifier] = ACTIONS(2245), + [sym_xhp_class_identifier] = ACTIONS(2247), [sym_comment] = ACTIONS(3), }, - [1486] = { - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2341), - [sym_variable] = ACTIONS(2343), - [sym_pipe_variable] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_newtype] = ACTIONS(2341), - [anon_sym_shape] = ACTIONS(2341), - [anon_sym_tuple] = ACTIONS(2341), - [anon_sym_clone] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_print] = ACTIONS(2341), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_LT_LT] = ACTIONS(2341), - [anon_sym_LT_LT_LT] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_throw] = ACTIONS(2341), - [anon_sym_echo] = ACTIONS(2341), - [anon_sym_unset] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_concurrent] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_function] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_foreach] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_using] = ACTIONS(2341), - [sym_float] = ACTIONS(2343), - [sym_integer] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_True] = ACTIONS(2341), - [anon_sym_TRUE] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_False] = ACTIONS(2341), - [anon_sym_FALSE] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [anon_sym_Null] = ACTIONS(2341), - [anon_sym_NULL] = ACTIONS(2341), - [sym_string] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_array] = ACTIONS(2341), - [anon_sym_varray] = ACTIONS(2341), - [anon_sym_darray] = ACTIONS(2341), - [anon_sym_vec] = ACTIONS(2341), - [anon_sym_dict] = ACTIONS(2341), - [anon_sym_keyset] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2343), - [anon_sym_DASH_DASH] = ACTIONS(2343), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_interface] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_abstract] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2343), - [sym_final_modifier] = ACTIONS(2341), - [sym_xhp_modifier] = ACTIONS(2341), - [sym_xhp_identifier] = ACTIONS(2341), - [sym_xhp_class_identifier] = ACTIONS(2343), + [1458] = { + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2429), + [sym_variable] = ACTIONS(2431), + [sym_pipe_variable] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_newtype] = ACTIONS(2429), + [anon_sym_shape] = ACTIONS(2429), + [anon_sym_tuple] = ACTIONS(2429), + [anon_sym_clone] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_include] = ACTIONS(2429), + [anon_sym_include_once] = ACTIONS(2429), + [anon_sym_require] = ACTIONS(2429), + [anon_sym_require_once] = ACTIONS(2429), + [anon_sym_BSLASH] = ACTIONS(2431), + [anon_sym_self] = ACTIONS(2429), + [anon_sym_parent] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_echo] = ACTIONS(2429), + [anon_sym_unset] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_concurrent] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_foreach] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [sym_float] = ACTIONS(2431), + [sym_integer] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_True] = ACTIONS(2429), + [anon_sym_TRUE] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_False] = ACTIONS(2429), + [anon_sym_FALSE] = ACTIONS(2429), + [anon_sym_null] = ACTIONS(2429), + [anon_sym_Null] = ACTIONS(2429), + [anon_sym_NULL] = ACTIONS(2429), + [sym_string] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_array] = ACTIONS(2429), + [anon_sym_varray] = ACTIONS(2429), + [anon_sym_darray] = ACTIONS(2429), + [anon_sym_vec] = ACTIONS(2429), + [anon_sym_dict] = ACTIONS(2429), + [anon_sym_keyset] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_abstract] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2431), + [sym_final_modifier] = ACTIONS(2429), + [sym_xhp_modifier] = ACTIONS(2429), + [sym_xhp_identifier] = ACTIONS(2429), + [sym_xhp_class_identifier] = ACTIONS(2431), [sym_comment] = ACTIONS(3), }, - [1487] = { - [sym_identifier] = ACTIONS(2129), - [sym_variable] = ACTIONS(2131), - [sym_pipe_variable] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_newtype] = ACTIONS(2129), - [anon_sym_shape] = ACTIONS(2129), - [anon_sym_tuple] = ACTIONS(2129), - [anon_sym_clone] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_print] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_LT_LT_LT] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_echo] = ACTIONS(2129), - [anon_sym_unset] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_concurrent] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_foreach] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [sym_float] = ACTIONS(2131), - [sym_integer] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_True] = ACTIONS(2129), - [anon_sym_TRUE] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [anon_sym_False] = ACTIONS(2129), - [anon_sym_FALSE] = ACTIONS(2129), - [anon_sym_null] = ACTIONS(2129), - [anon_sym_Null] = ACTIONS(2129), - [anon_sym_NULL] = ACTIONS(2129), - [sym_string] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_array] = ACTIONS(2129), - [anon_sym_varray] = ACTIONS(2129), - [anon_sym_darray] = ACTIONS(2129), - [anon_sym_vec] = ACTIONS(2129), - [anon_sym_dict] = ACTIONS(2129), - [anon_sym_keyset] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_trait] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(2131), - [sym_final_modifier] = ACTIONS(2129), - [sym_xhp_modifier] = ACTIONS(2129), - [sym_xhp_identifier] = ACTIONS(2129), - [sym_xhp_class_identifier] = ACTIONS(2131), + [1459] = { + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2425), + [sym_variable] = ACTIONS(2427), + [sym_pipe_variable] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_newtype] = ACTIONS(2425), + [anon_sym_shape] = ACTIONS(2425), + [anon_sym_tuple] = ACTIONS(2425), + [anon_sym_clone] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_print] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_include] = ACTIONS(2425), + [anon_sym_include_once] = ACTIONS(2425), + [anon_sym_require] = ACTIONS(2425), + [anon_sym_require_once] = ACTIONS(2425), + [anon_sym_BSLASH] = ACTIONS(2427), + [anon_sym_self] = ACTIONS(2425), + [anon_sym_parent] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_LT_LT_LT] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_echo] = ACTIONS(2425), + [anon_sym_unset] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_concurrent] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_foreach] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [sym_float] = ACTIONS(2427), + [sym_integer] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_True] = ACTIONS(2425), + [anon_sym_TRUE] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_False] = ACTIONS(2425), + [anon_sym_FALSE] = ACTIONS(2425), + [anon_sym_null] = ACTIONS(2425), + [anon_sym_Null] = ACTIONS(2425), + [anon_sym_NULL] = ACTIONS(2425), + [sym_string] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_array] = ACTIONS(2425), + [anon_sym_varray] = ACTIONS(2425), + [anon_sym_darray] = ACTIONS(2425), + [anon_sym_vec] = ACTIONS(2425), + [anon_sym_dict] = ACTIONS(2425), + [anon_sym_keyset] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_list] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_interface] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_abstract] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2427), + [sym_final_modifier] = ACTIONS(2425), + [sym_xhp_modifier] = ACTIONS(2425), + [sym_xhp_identifier] = ACTIONS(2425), + [sym_xhp_class_identifier] = ACTIONS(2427), [sym_comment] = ACTIONS(3), }, - [1488] = { - [ts_builtin_sym_end] = ACTIONS(2419), - [sym_identifier] = ACTIONS(2417), - [sym_variable] = ACTIONS(2419), - [sym_pipe_variable] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_newtype] = ACTIONS(2417), - [anon_sym_shape] = ACTIONS(2417), - [anon_sym_tuple] = ACTIONS(2417), - [anon_sym_clone] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_print] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), - [anon_sym_LT_LT_LT] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_echo] = ACTIONS(2417), - [anon_sym_unset] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_concurrent] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_function] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_foreach] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [sym_float] = ACTIONS(2419), - [sym_integer] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_True] = ACTIONS(2417), - [anon_sym_TRUE] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [anon_sym_False] = ACTIONS(2417), - [anon_sym_FALSE] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2417), - [anon_sym_Null] = ACTIONS(2417), - [anon_sym_NULL] = ACTIONS(2417), - [sym_string] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_array] = ACTIONS(2417), - [anon_sym_varray] = ACTIONS(2417), - [anon_sym_darray] = ACTIONS(2417), - [anon_sym_vec] = ACTIONS(2417), - [anon_sym_dict] = ACTIONS(2417), - [anon_sym_keyset] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_trait] = ACTIONS(2417), - [anon_sym_interface] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_abstract] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2419), - [sym_final_modifier] = ACTIONS(2417), - [sym_xhp_modifier] = ACTIONS(2417), - [sym_xhp_identifier] = ACTIONS(2417), - [sym_xhp_class_identifier] = ACTIONS(2419), + [1460] = { + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2249), + [sym_variable] = ACTIONS(2251), + [sym_pipe_variable] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_newtype] = ACTIONS(2249), + [anon_sym_shape] = ACTIONS(2249), + [anon_sym_tuple] = ACTIONS(2249), + [anon_sym_clone] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_include] = ACTIONS(2249), + [anon_sym_include_once] = ACTIONS(2249), + [anon_sym_require] = ACTIONS(2249), + [anon_sym_require_once] = ACTIONS(2249), + [anon_sym_BSLASH] = ACTIONS(2251), + [anon_sym_self] = ACTIONS(2249), + [anon_sym_parent] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_LT_LT_LT] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_echo] = ACTIONS(2249), + [anon_sym_unset] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_concurrent] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_foreach] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [sym_float] = ACTIONS(2251), + [sym_integer] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_True] = ACTIONS(2249), + [anon_sym_TRUE] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_False] = ACTIONS(2249), + [anon_sym_FALSE] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_Null] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [sym_string] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_array] = ACTIONS(2249), + [anon_sym_varray] = ACTIONS(2249), + [anon_sym_darray] = ACTIONS(2249), + [anon_sym_vec] = ACTIONS(2249), + [anon_sym_dict] = ACTIONS(2249), + [anon_sym_keyset] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_list] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2251), + [sym_final_modifier] = ACTIONS(2249), + [sym_xhp_modifier] = ACTIONS(2249), + [sym_xhp_identifier] = ACTIONS(2249), + [sym_xhp_class_identifier] = ACTIONS(2251), [sym_comment] = ACTIONS(3), }, - [1489] = { + [1461] = { + [sym_identifier] = ACTIONS(2193), + [sym_variable] = ACTIONS(2195), + [sym_pipe_variable] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_newtype] = ACTIONS(2193), + [anon_sym_shape] = ACTIONS(2193), + [anon_sym_tuple] = ACTIONS(2193), + [anon_sym_clone] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_print] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_include] = ACTIONS(2193), + [anon_sym_include_once] = ACTIONS(2193), + [anon_sym_require] = ACTIONS(2193), + [anon_sym_require_once] = ACTIONS(2193), + [anon_sym_BSLASH] = ACTIONS(2195), + [anon_sym_self] = ACTIONS(2193), + [anon_sym_parent] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_LT_LT_LT] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_echo] = ACTIONS(2193), + [anon_sym_unset] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_concurrent] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_foreach] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [sym_float] = ACTIONS(2195), + [sym_integer] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_True] = ACTIONS(2193), + [anon_sym_TRUE] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_False] = ACTIONS(2193), + [anon_sym_FALSE] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [anon_sym_Null] = ACTIONS(2193), + [anon_sym_NULL] = ACTIONS(2193), + [sym_string] = ACTIONS(2195), + [anon_sym_AT] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_array] = ACTIONS(2193), + [anon_sym_varray] = ACTIONS(2193), + [anon_sym_darray] = ACTIONS(2193), + [anon_sym_vec] = ACTIONS(2193), + [anon_sym_dict] = ACTIONS(2193), + [anon_sym_keyset] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_list] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2195), + [sym_final_modifier] = ACTIONS(2193), + [sym_xhp_modifier] = ACTIONS(2193), + [sym_xhp_identifier] = ACTIONS(2193), + [sym_xhp_class_identifier] = ACTIONS(2195), + [sym_comment] = ACTIONS(3), + }, + [1462] = { + [ts_builtin_sym_end] = ACTIONS(2255), [sym_identifier] = ACTIONS(2253), [sym_variable] = ACTIONS(2255), [sym_pipe_variable] = ACTIONS(2255), @@ -173681,7 +164934,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2253), [anon_sym_LT_LT] = ACTIONS(2253), [anon_sym_LT_LT_LT] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), [anon_sym_LBRACE] = ACTIONS(2255), [anon_sym_SEMI] = ACTIONS(2255), [anon_sym_return] = ACTIONS(2253), @@ -173745,351 +164997,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(3), }, - [1490] = { - [sym_identifier] = ACTIONS(2341), - [sym_variable] = ACTIONS(2343), - [sym_pipe_variable] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_newtype] = ACTIONS(2341), - [anon_sym_shape] = ACTIONS(2341), - [anon_sym_tuple] = ACTIONS(2341), - [anon_sym_clone] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_print] = ACTIONS(2341), - [anon_sym_namespace] = ACTIONS(2341), - [anon_sym_include] = ACTIONS(2341), - [anon_sym_include_once] = ACTIONS(2341), - [anon_sym_require] = ACTIONS(2341), - [anon_sym_require_once] = ACTIONS(2341), - [anon_sym_BSLASH] = ACTIONS(2343), - [anon_sym_self] = ACTIONS(2341), - [anon_sym_parent] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_LT_LT] = ACTIONS(2341), - [anon_sym_LT_LT_LT] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_throw] = ACTIONS(2341), - [anon_sym_echo] = ACTIONS(2341), - [anon_sym_unset] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_concurrent] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_function] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_switch] = ACTIONS(2341), - [anon_sym_foreach] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_using] = ACTIONS(2341), - [sym_float] = ACTIONS(2343), - [sym_integer] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_True] = ACTIONS(2341), - [anon_sym_TRUE] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_False] = ACTIONS(2341), - [anon_sym_FALSE] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [anon_sym_Null] = ACTIONS(2341), - [anon_sym_NULL] = ACTIONS(2341), - [sym_string] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_array] = ACTIONS(2341), - [anon_sym_varray] = ACTIONS(2341), - [anon_sym_darray] = ACTIONS(2341), - [anon_sym_vec] = ACTIONS(2341), - [anon_sym_dict] = ACTIONS(2341), - [anon_sym_keyset] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2343), - [anon_sym_DASH_DASH] = ACTIONS(2343), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_interface] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_abstract] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2343), - [sym_final_modifier] = ACTIONS(2341), - [sym_xhp_modifier] = ACTIONS(2341), - [sym_xhp_identifier] = ACTIONS(2341), - [sym_xhp_class_identifier] = ACTIONS(2343), + [1463] = { + [sym_identifier] = ACTIONS(2189), + [sym_variable] = ACTIONS(2191), + [sym_pipe_variable] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_newtype] = ACTIONS(2189), + [anon_sym_shape] = ACTIONS(2189), + [anon_sym_tuple] = ACTIONS(2189), + [anon_sym_clone] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_include] = ACTIONS(2189), + [anon_sym_include_once] = ACTIONS(2189), + [anon_sym_require] = ACTIONS(2189), + [anon_sym_require_once] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_self] = ACTIONS(2189), + [anon_sym_parent] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT_LT_LT] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_echo] = ACTIONS(2189), + [anon_sym_unset] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_concurrent] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_foreach] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [sym_float] = ACTIONS(2191), + [sym_integer] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_True] = ACTIONS(2189), + [anon_sym_TRUE] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_False] = ACTIONS(2189), + [anon_sym_FALSE] = ACTIONS(2189), + [anon_sym_null] = ACTIONS(2189), + [anon_sym_Null] = ACTIONS(2189), + [anon_sym_NULL] = ACTIONS(2189), + [sym_string] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_array] = ACTIONS(2189), + [anon_sym_varray] = ACTIONS(2189), + [anon_sym_darray] = ACTIONS(2189), + [anon_sym_vec] = ACTIONS(2189), + [anon_sym_dict] = ACTIONS(2189), + [anon_sym_keyset] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_list] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2191), + [sym_final_modifier] = ACTIONS(2189), + [sym_xhp_modifier] = ACTIONS(2189), + [sym_xhp_identifier] = ACTIONS(2189), + [sym_xhp_class_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(3), }, - [1491] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2217), - [sym_variable] = ACTIONS(2219), - [sym_pipe_variable] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_newtype] = ACTIONS(2217), - [anon_sym_shape] = ACTIONS(2217), - [anon_sym_tuple] = ACTIONS(2217), - [anon_sym_clone] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_print] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_LT_LT_LT] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_echo] = ACTIONS(2217), - [anon_sym_unset] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_concurrent] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_foreach] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_using] = ACTIONS(2217), - [sym_float] = ACTIONS(2219), - [sym_integer] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_True] = ACTIONS(2217), - [anon_sym_TRUE] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_False] = ACTIONS(2217), - [anon_sym_FALSE] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_Null] = ACTIONS(2217), - [anon_sym_NULL] = ACTIONS(2217), - [sym_string] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_array] = ACTIONS(2217), - [anon_sym_varray] = ACTIONS(2217), - [anon_sym_darray] = ACTIONS(2217), - [anon_sym_vec] = ACTIONS(2217), - [anon_sym_dict] = ACTIONS(2217), - [anon_sym_keyset] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_class] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2219), - [sym_final_modifier] = ACTIONS(2217), - [sym_xhp_modifier] = ACTIONS(2217), - [sym_xhp_identifier] = ACTIONS(2217), - [sym_xhp_class_identifier] = ACTIONS(2219), + [1464] = { + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2597), + [sym_variable] = ACTIONS(2599), + [sym_pipe_variable] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_newtype] = ACTIONS(2597), + [anon_sym_shape] = ACTIONS(2597), + [anon_sym_tuple] = ACTIONS(2597), + [anon_sym_clone] = ACTIONS(2597), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_print] = ACTIONS(2597), + [anon_sym_namespace] = ACTIONS(2597), + [anon_sym_include] = ACTIONS(2597), + [anon_sym_include_once] = ACTIONS(2597), + [anon_sym_require] = ACTIONS(2597), + [anon_sym_require_once] = ACTIONS(2597), + [anon_sym_BSLASH] = ACTIONS(2599), + [anon_sym_self] = ACTIONS(2597), + [anon_sym_parent] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_LT_LT] = ACTIONS(2597), + [anon_sym_LT_LT_LT] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_throw] = ACTIONS(2597), + [anon_sym_echo] = ACTIONS(2597), + [anon_sym_unset] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_concurrent] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_switch] = ACTIONS(2597), + [anon_sym_foreach] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_using] = ACTIONS(2597), + [sym_float] = ACTIONS(2599), + [sym_integer] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_True] = ACTIONS(2597), + [anon_sym_TRUE] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_False] = ACTIONS(2597), + [anon_sym_FALSE] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2597), + [anon_sym_Null] = ACTIONS(2597), + [anon_sym_NULL] = ACTIONS(2597), + [sym_string] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_array] = ACTIONS(2597), + [anon_sym_varray] = ACTIONS(2597), + [anon_sym_darray] = ACTIONS(2597), + [anon_sym_vec] = ACTIONS(2597), + [anon_sym_dict] = ACTIONS(2597), + [anon_sym_keyset] = ACTIONS(2597), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_list] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_interface] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_abstract] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(2599), + [sym_final_modifier] = ACTIONS(2597), + [sym_xhp_modifier] = ACTIONS(2597), + [sym_xhp_identifier] = ACTIONS(2597), + [sym_xhp_class_identifier] = ACTIONS(2599), [sym_comment] = ACTIONS(3), }, - [1492] = { - [sym_identifier] = ACTIONS(2237), - [sym_variable] = ACTIONS(2239), - [sym_pipe_variable] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_newtype] = ACTIONS(2237), - [anon_sym_shape] = ACTIONS(2237), - [anon_sym_tuple] = ACTIONS(2237), - [anon_sym_clone] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_print] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_LT_LT_LT] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_echo] = ACTIONS(2237), - [anon_sym_unset] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_concurrent] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_foreach] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [sym_float] = ACTIONS(2239), - [sym_integer] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_True] = ACTIONS(2237), - [anon_sym_TRUE] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_False] = ACTIONS(2237), - [anon_sym_FALSE] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [anon_sym_Null] = ACTIONS(2237), - [anon_sym_NULL] = ACTIONS(2237), - [sym_string] = ACTIONS(2239), - [anon_sym_AT] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_array] = ACTIONS(2237), - [anon_sym_varray] = ACTIONS(2237), - [anon_sym_darray] = ACTIONS(2237), - [anon_sym_vec] = ACTIONS(2237), - [anon_sym_dict] = ACTIONS(2237), - [anon_sym_keyset] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2239), - [sym_final_modifier] = ACTIONS(2237), - [sym_xhp_modifier] = ACTIONS(2237), - [sym_xhp_identifier] = ACTIONS(2237), - [sym_xhp_class_identifier] = ACTIONS(2239), + [1465] = { + [sym_identifier] = ACTIONS(2185), + [sym_variable] = ACTIONS(2187), + [sym_pipe_variable] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_newtype] = ACTIONS(2185), + [anon_sym_shape] = ACTIONS(2185), + [anon_sym_tuple] = ACTIONS(2185), + [anon_sym_clone] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_print] = ACTIONS(2185), + [anon_sym_namespace] = ACTIONS(2185), + [anon_sym_include] = ACTIONS(2185), + [anon_sym_include_once] = ACTIONS(2185), + [anon_sym_require] = ACTIONS(2185), + [anon_sym_require_once] = ACTIONS(2185), + [anon_sym_BSLASH] = ACTIONS(2187), + [anon_sym_self] = ACTIONS(2185), + [anon_sym_parent] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_LT_LT_LT] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_throw] = ACTIONS(2185), + [anon_sym_echo] = ACTIONS(2185), + [anon_sym_unset] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_concurrent] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_foreach] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_using] = ACTIONS(2185), + [sym_float] = ACTIONS(2187), + [sym_integer] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_True] = ACTIONS(2185), + [anon_sym_TRUE] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_False] = ACTIONS(2185), + [anon_sym_FALSE] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_Null] = ACTIONS(2185), + [anon_sym_NULL] = ACTIONS(2185), + [sym_string] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_array] = ACTIONS(2185), + [anon_sym_varray] = ACTIONS(2185), + [anon_sym_darray] = ACTIONS(2185), + [anon_sym_vec] = ACTIONS(2185), + [anon_sym_dict] = ACTIONS(2185), + [anon_sym_keyset] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_list] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_class] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_abstract] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2187), + [sym_final_modifier] = ACTIONS(2185), + [sym_xhp_modifier] = ACTIONS(2185), + [sym_xhp_identifier] = ACTIONS(2185), + [sym_xhp_class_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(3), }, - [1493] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2349), - [sym_variable] = ACTIONS(2351), - [sym_pipe_variable] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_newtype] = ACTIONS(2349), - [anon_sym_shape] = ACTIONS(2349), - [anon_sym_tuple] = ACTIONS(2349), - [anon_sym_clone] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_print] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_LT_LT_LT] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_echo] = ACTIONS(2349), - [anon_sym_unset] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_concurrent] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_foreach] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_using] = ACTIONS(2349), - [sym_float] = ACTIONS(2351), - [sym_integer] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_True] = ACTIONS(2349), - [anon_sym_TRUE] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_False] = ACTIONS(2349), - [anon_sym_FALSE] = ACTIONS(2349), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_Null] = ACTIONS(2349), - [anon_sym_NULL] = ACTIONS(2349), - [sym_string] = ACTIONS(2351), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_array] = ACTIONS(2349), - [anon_sym_varray] = ACTIONS(2349), - [anon_sym_darray] = ACTIONS(2349), - [anon_sym_vec] = ACTIONS(2349), - [anon_sym_dict] = ACTIONS(2349), - [anon_sym_keyset] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(2351), - [sym_final_modifier] = ACTIONS(2349), - [sym_xhp_modifier] = ACTIONS(2349), - [sym_xhp_identifier] = ACTIONS(2349), - [sym_xhp_class_identifier] = ACTIONS(2351), + [1466] = { + [sym_identifier] = ACTIONS(2249), + [sym_variable] = ACTIONS(2251), + [sym_pipe_variable] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_newtype] = ACTIONS(2249), + [anon_sym_shape] = ACTIONS(2249), + [anon_sym_tuple] = ACTIONS(2249), + [anon_sym_clone] = ACTIONS(2249), + [anon_sym_new] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(2249), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_include] = ACTIONS(2249), + [anon_sym_include_once] = ACTIONS(2249), + [anon_sym_require] = ACTIONS(2249), + [anon_sym_require_once] = ACTIONS(2249), + [anon_sym_BSLASH] = ACTIONS(2251), + [anon_sym_self] = ACTIONS(2249), + [anon_sym_parent] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_LT_LT_LT] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_throw] = ACTIONS(2249), + [anon_sym_echo] = ACTIONS(2249), + [anon_sym_unset] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_concurrent] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_function] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_switch] = ACTIONS(2249), + [anon_sym_foreach] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_using] = ACTIONS(2249), + [sym_float] = ACTIONS(2251), + [sym_integer] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_True] = ACTIONS(2249), + [anon_sym_TRUE] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_False] = ACTIONS(2249), + [anon_sym_FALSE] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_Null] = ACTIONS(2249), + [anon_sym_NULL] = ACTIONS(2249), + [sym_string] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_array] = ACTIONS(2249), + [anon_sym_varray] = ACTIONS(2249), + [anon_sym_darray] = ACTIONS(2249), + [anon_sym_vec] = ACTIONS(2249), + [anon_sym_dict] = ACTIONS(2249), + [anon_sym_keyset] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_list] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_class] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_abstract] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2251), + [sym_final_modifier] = ACTIONS(2249), + [sym_xhp_modifier] = ACTIONS(2249), + [sym_xhp_identifier] = ACTIONS(2249), + [sym_xhp_class_identifier] = ACTIONS(2251), + [sym_comment] = ACTIONS(3), + }, + [1467] = { + [sym_identifier] = ACTIONS(2253), + [sym_variable] = ACTIONS(2255), + [sym_pipe_variable] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_newtype] = ACTIONS(2253), + [anon_sym_shape] = ACTIONS(2253), + [anon_sym_tuple] = ACTIONS(2253), + [anon_sym_clone] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_print] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2253), + [anon_sym_include] = ACTIONS(2253), + [anon_sym_include_once] = ACTIONS(2253), + [anon_sym_require] = ACTIONS(2253), + [anon_sym_require_once] = ACTIONS(2253), + [anon_sym_BSLASH] = ACTIONS(2255), + [anon_sym_self] = ACTIONS(2253), + [anon_sym_parent] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2253), + [anon_sym_LT_LT_LT] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_throw] = ACTIONS(2253), + [anon_sym_echo] = ACTIONS(2253), + [anon_sym_unset] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_concurrent] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_function] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2253), + [anon_sym_foreach] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(2253), + [sym_float] = ACTIONS(2255), + [sym_integer] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_True] = ACTIONS(2253), + [anon_sym_TRUE] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_False] = ACTIONS(2253), + [anon_sym_FALSE] = ACTIONS(2253), + [anon_sym_null] = ACTIONS(2253), + [anon_sym_Null] = ACTIONS(2253), + [anon_sym_NULL] = ACTIONS(2253), + [sym_string] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_array] = ACTIONS(2253), + [anon_sym_varray] = ACTIONS(2253), + [anon_sym_darray] = ACTIONS(2253), + [anon_sym_vec] = ACTIONS(2253), + [anon_sym_dict] = ACTIONS(2253), + [anon_sym_keyset] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_list] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_abstract] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2255), + [sym_final_modifier] = ACTIONS(2253), + [sym_xhp_modifier] = ACTIONS(2253), + [sym_xhp_identifier] = ACTIONS(2253), + [sym_xhp_class_identifier] = ACTIONS(2255), [sym_comment] = ACTIONS(3), }, - [1494] = { + [1468] = { + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2397), + [sym_variable] = ACTIONS(2399), + [sym_pipe_variable] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_newtype] = ACTIONS(2397), + [anon_sym_shape] = ACTIONS(2397), + [anon_sym_tuple] = ACTIONS(2397), + [anon_sym_clone] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_include] = ACTIONS(2397), + [anon_sym_include_once] = ACTIONS(2397), + [anon_sym_require] = ACTIONS(2397), + [anon_sym_require_once] = ACTIONS(2397), + [anon_sym_BSLASH] = ACTIONS(2399), + [anon_sym_self] = ACTIONS(2397), + [anon_sym_parent] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_LT_LT_LT] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_throw] = ACTIONS(2397), + [anon_sym_echo] = ACTIONS(2397), + [anon_sym_unset] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_concurrent] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_foreach] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_using] = ACTIONS(2397), + [sym_float] = ACTIONS(2399), + [sym_integer] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_True] = ACTIONS(2397), + [anon_sym_TRUE] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_False] = ACTIONS(2397), + [anon_sym_FALSE] = ACTIONS(2397), + [anon_sym_null] = ACTIONS(2397), + [anon_sym_Null] = ACTIONS(2397), + [anon_sym_NULL] = ACTIONS(2397), + [sym_string] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_array] = ACTIONS(2397), + [anon_sym_varray] = ACTIONS(2397), + [anon_sym_darray] = ACTIONS(2397), + [anon_sym_vec] = ACTIONS(2397), + [anon_sym_dict] = ACTIONS(2397), + [anon_sym_keyset] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_list] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_interface] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_abstract] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2399), + [sym_final_modifier] = ACTIONS(2397), + [sym_xhp_modifier] = ACTIONS(2397), + [sym_xhp_identifier] = ACTIONS(2397), + [sym_xhp_class_identifier] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + }, + [1469] = { [ts_builtin_sym_end] = ACTIONS(2359), [sym_identifier] = ACTIONS(2357), [sym_variable] = ACTIONS(2359), @@ -174175,524 +165599,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2359), [sym_comment] = ACTIONS(3), }, - [1495] = { - [ts_builtin_sym_end] = ACTIONS(2371), - [sym_identifier] = ACTIONS(2369), - [sym_variable] = ACTIONS(2371), - [sym_pipe_variable] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_newtype] = ACTIONS(2369), - [anon_sym_shape] = ACTIONS(2369), - [anon_sym_tuple] = ACTIONS(2369), - [anon_sym_clone] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_print] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_throw] = ACTIONS(2369), - [anon_sym_echo] = ACTIONS(2369), - [anon_sym_unset] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_concurrent] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_switch] = ACTIONS(2369), - [anon_sym_foreach] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_using] = ACTIONS(2369), - [sym_float] = ACTIONS(2371), - [sym_integer] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_True] = ACTIONS(2369), - [anon_sym_TRUE] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_False] = ACTIONS(2369), - [anon_sym_FALSE] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [anon_sym_Null] = ACTIONS(2369), - [anon_sym_NULL] = ACTIONS(2369), - [sym_string] = ACTIONS(2371), - [anon_sym_AT] = ACTIONS(2371), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_array] = ACTIONS(2369), - [anon_sym_varray] = ACTIONS(2369), - [anon_sym_darray] = ACTIONS(2369), - [anon_sym_vec] = ACTIONS(2369), - [anon_sym_dict] = ACTIONS(2369), - [anon_sym_keyset] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2371), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_interface] = ACTIONS(2369), - [anon_sym_class] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_abstract] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(2371), - [sym_final_modifier] = ACTIONS(2369), - [sym_xhp_modifier] = ACTIONS(2369), - [sym_xhp_identifier] = ACTIONS(2369), - [sym_xhp_class_identifier] = ACTIONS(2371), + [1470] = { + [sym_identifier] = ACTIONS(2181), + [sym_variable] = ACTIONS(2183), + [sym_pipe_variable] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_newtype] = ACTIONS(2181), + [anon_sym_shape] = ACTIONS(2181), + [anon_sym_tuple] = ACTIONS(2181), + [anon_sym_clone] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(2181), + [anon_sym_namespace] = ACTIONS(2181), + [anon_sym_include] = ACTIONS(2181), + [anon_sym_include_once] = ACTIONS(2181), + [anon_sym_require] = ACTIONS(2181), + [anon_sym_require_once] = ACTIONS(2181), + [anon_sym_BSLASH] = ACTIONS(2183), + [anon_sym_self] = ACTIONS(2181), + [anon_sym_parent] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_LT_LT_LT] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2181), + [anon_sym_echo] = ACTIONS(2181), + [anon_sym_unset] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_concurrent] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_switch] = ACTIONS(2181), + [anon_sym_foreach] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_using] = ACTIONS(2181), + [sym_float] = ACTIONS(2183), + [sym_integer] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_True] = ACTIONS(2181), + [anon_sym_TRUE] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_False] = ACTIONS(2181), + [anon_sym_FALSE] = ACTIONS(2181), + [anon_sym_null] = ACTIONS(2181), + [anon_sym_Null] = ACTIONS(2181), + [anon_sym_NULL] = ACTIONS(2181), + [sym_string] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_array] = ACTIONS(2181), + [anon_sym_varray] = ACTIONS(2181), + [anon_sym_darray] = ACTIONS(2181), + [anon_sym_vec] = ACTIONS(2181), + [anon_sym_dict] = ACTIONS(2181), + [anon_sym_keyset] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_list] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_class] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_abstract] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2183), + [sym_final_modifier] = ACTIONS(2181), + [sym_xhp_modifier] = ACTIONS(2181), + [sym_xhp_identifier] = ACTIONS(2181), + [sym_xhp_class_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(3), }, - [1496] = { - [sym_identifier] = ACTIONS(2233), - [sym_variable] = ACTIONS(2235), - [sym_pipe_variable] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_newtype] = ACTIONS(2233), - [anon_sym_shape] = ACTIONS(2233), - [anon_sym_tuple] = ACTIONS(2233), - [anon_sym_clone] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_print] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_LT_LT_LT] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_echo] = ACTIONS(2233), - [anon_sym_unset] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_concurrent] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_foreach] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [sym_float] = ACTIONS(2235), - [sym_integer] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_True] = ACTIONS(2233), - [anon_sym_TRUE] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_False] = ACTIONS(2233), - [anon_sym_FALSE] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_Null] = ACTIONS(2233), - [anon_sym_NULL] = ACTIONS(2233), - [sym_string] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_array] = ACTIONS(2233), - [anon_sym_varray] = ACTIONS(2233), - [anon_sym_darray] = ACTIONS(2233), - [anon_sym_vec] = ACTIONS(2233), - [anon_sym_dict] = ACTIONS(2233), - [anon_sym_keyset] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2235), - [sym_final_modifier] = ACTIONS(2233), - [sym_xhp_modifier] = ACTIONS(2233), - [sym_xhp_identifier] = ACTIONS(2233), - [sym_xhp_class_identifier] = ACTIONS(2235), + [1471] = { + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2205), + [sym_variable] = ACTIONS(2207), + [sym_pipe_variable] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_newtype] = ACTIONS(2205), + [anon_sym_shape] = ACTIONS(2205), + [anon_sym_tuple] = ACTIONS(2205), + [anon_sym_clone] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_print] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_include] = ACTIONS(2205), + [anon_sym_include_once] = ACTIONS(2205), + [anon_sym_require] = ACTIONS(2205), + [anon_sym_require_once] = ACTIONS(2205), + [anon_sym_BSLASH] = ACTIONS(2207), + [anon_sym_self] = ACTIONS(2205), + [anon_sym_parent] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_LT_LT_LT] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_echo] = ACTIONS(2205), + [anon_sym_unset] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_concurrent] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_foreach] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [sym_float] = ACTIONS(2207), + [sym_integer] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_True] = ACTIONS(2205), + [anon_sym_TRUE] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_False] = ACTIONS(2205), + [anon_sym_FALSE] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(2205), + [anon_sym_Null] = ACTIONS(2205), + [anon_sym_NULL] = ACTIONS(2205), + [sym_string] = ACTIONS(2207), + [anon_sym_AT] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_array] = ACTIONS(2205), + [anon_sym_varray] = ACTIONS(2205), + [anon_sym_darray] = ACTIONS(2205), + [anon_sym_vec] = ACTIONS(2205), + [anon_sym_dict] = ACTIONS(2205), + [anon_sym_keyset] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_list] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2207), + [sym_final_modifier] = ACTIONS(2205), + [sym_xhp_modifier] = ACTIONS(2205), + [sym_xhp_identifier] = ACTIONS(2205), + [sym_xhp_class_identifier] = ACTIONS(2207), [sym_comment] = ACTIONS(3), }, - [1497] = { - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2165), - [sym_variable] = ACTIONS(2167), - [sym_pipe_variable] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_newtype] = ACTIONS(2165), - [anon_sym_shape] = ACTIONS(2165), - [anon_sym_tuple] = ACTIONS(2165), - [anon_sym_clone] = ACTIONS(2165), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_print] = ACTIONS(2165), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_LT_LT_LT] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_throw] = ACTIONS(2165), - [anon_sym_echo] = ACTIONS(2165), - [anon_sym_unset] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_concurrent] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_function] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [anon_sym_foreach] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_using] = ACTIONS(2165), - [sym_float] = ACTIONS(2167), - [sym_integer] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_True] = ACTIONS(2165), - [anon_sym_TRUE] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_False] = ACTIONS(2165), - [anon_sym_FALSE] = ACTIONS(2165), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_Null] = ACTIONS(2165), - [anon_sym_NULL] = ACTIONS(2165), - [sym_string] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_array] = ACTIONS(2165), - [anon_sym_varray] = ACTIONS(2165), - [anon_sym_darray] = ACTIONS(2165), - [anon_sym_vec] = ACTIONS(2165), - [anon_sym_dict] = ACTIONS(2165), - [anon_sym_keyset] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2167), - [sym_final_modifier] = ACTIONS(2165), - [sym_xhp_modifier] = ACTIONS(2165), - [sym_xhp_identifier] = ACTIONS(2165), - [sym_xhp_class_identifier] = ACTIONS(2167), + [1472] = { + [sym_identifier] = ACTIONS(2257), + [sym_variable] = ACTIONS(2259), + [sym_pipe_variable] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_newtype] = ACTIONS(2257), + [anon_sym_shape] = ACTIONS(2257), + [anon_sym_tuple] = ACTIONS(2257), + [anon_sym_clone] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_include_once] = ACTIONS(2257), + [anon_sym_require] = ACTIONS(2257), + [anon_sym_require_once] = ACTIONS(2257), + [anon_sym_BSLASH] = ACTIONS(2259), + [anon_sym_self] = ACTIONS(2257), + [anon_sym_parent] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_LT_LT_LT] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_echo] = ACTIONS(2257), + [anon_sym_unset] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_concurrent] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_foreach] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_using] = ACTIONS(2257), + [sym_float] = ACTIONS(2259), + [sym_integer] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_True] = ACTIONS(2257), + [anon_sym_TRUE] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_False] = ACTIONS(2257), + [anon_sym_FALSE] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_Null] = ACTIONS(2257), + [anon_sym_NULL] = ACTIONS(2257), + [sym_string] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_array] = ACTIONS(2257), + [anon_sym_varray] = ACTIONS(2257), + [anon_sym_darray] = ACTIONS(2257), + [anon_sym_vec] = ACTIONS(2257), + [anon_sym_dict] = ACTIONS(2257), + [anon_sym_keyset] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_list] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_abstract] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2259), + [sym_final_modifier] = ACTIONS(2257), + [sym_xhp_modifier] = ACTIONS(2257), + [sym_xhp_identifier] = ACTIONS(2257), + [sym_xhp_class_identifier] = ACTIONS(2259), [sym_comment] = ACTIONS(3), }, - [1498] = { - [sym_identifier] = ACTIONS(2317), - [sym_variable] = ACTIONS(2319), - [sym_pipe_variable] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_newtype] = ACTIONS(2317), - [anon_sym_shape] = ACTIONS(2317), - [anon_sym_tuple] = ACTIONS(2317), - [anon_sym_clone] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_print] = ACTIONS(2317), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_include] = ACTIONS(2317), - [anon_sym_include_once] = ACTIONS(2317), - [anon_sym_require] = ACTIONS(2317), - [anon_sym_require_once] = ACTIONS(2317), - [anon_sym_BSLASH] = ACTIONS(2319), - [anon_sym_self] = ACTIONS(2317), - [anon_sym_parent] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_LT_LT] = ACTIONS(2317), - [anon_sym_LT_LT_LT] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_throw] = ACTIONS(2317), - [anon_sym_echo] = ACTIONS(2317), - [anon_sym_unset] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_concurrent] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_function] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_switch] = ACTIONS(2317), - [anon_sym_foreach] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_do] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_using] = ACTIONS(2317), - [sym_float] = ACTIONS(2319), - [sym_integer] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_True] = ACTIONS(2317), - [anon_sym_TRUE] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_False] = ACTIONS(2317), - [anon_sym_FALSE] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [anon_sym_Null] = ACTIONS(2317), - [anon_sym_NULL] = ACTIONS(2317), - [sym_string] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_array] = ACTIONS(2317), - [anon_sym_varray] = ACTIONS(2317), - [anon_sym_darray] = ACTIONS(2317), - [anon_sym_vec] = ACTIONS(2317), - [anon_sym_dict] = ACTIONS(2317), - [anon_sym_keyset] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_list] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2319), - [anon_sym_DASH_DASH] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_interface] = ACTIONS(2317), - [anon_sym_class] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_abstract] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(2319), - [sym_final_modifier] = ACTIONS(2317), - [sym_xhp_modifier] = ACTIONS(2317), - [sym_xhp_identifier] = ACTIONS(2317), - [sym_xhp_class_identifier] = ACTIONS(2319), + [1473] = { + [sym_identifier] = ACTIONS(2177), + [sym_variable] = ACTIONS(2179), + [sym_pipe_variable] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_newtype] = ACTIONS(2177), + [anon_sym_shape] = ACTIONS(2177), + [anon_sym_tuple] = ACTIONS(2177), + [anon_sym_clone] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2177), + [anon_sym_print] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2177), + [anon_sym_include] = ACTIONS(2177), + [anon_sym_include_once] = ACTIONS(2177), + [anon_sym_require] = ACTIONS(2177), + [anon_sym_require_once] = ACTIONS(2177), + [anon_sym_BSLASH] = ACTIONS(2179), + [anon_sym_self] = ACTIONS(2177), + [anon_sym_parent] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_LT_LT_LT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_throw] = ACTIONS(2177), + [anon_sym_echo] = ACTIONS(2177), + [anon_sym_unset] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_concurrent] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_function] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_switch] = ACTIONS(2177), + [anon_sym_foreach] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_using] = ACTIONS(2177), + [sym_float] = ACTIONS(2179), + [sym_integer] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_True] = ACTIONS(2177), + [anon_sym_TRUE] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_False] = ACTIONS(2177), + [anon_sym_FALSE] = ACTIONS(2177), + [anon_sym_null] = ACTIONS(2177), + [anon_sym_Null] = ACTIONS(2177), + [anon_sym_NULL] = ACTIONS(2177), + [sym_string] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_array] = ACTIONS(2177), + [anon_sym_varray] = ACTIONS(2177), + [anon_sym_darray] = ACTIONS(2177), + [anon_sym_vec] = ACTIONS(2177), + [anon_sym_dict] = ACTIONS(2177), + [anon_sym_keyset] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_list] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_PLUS_PLUS] = ACTIONS(2179), + [anon_sym_DASH_DASH] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2177), + [anon_sym_class] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_abstract] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2179), + [sym_final_modifier] = ACTIONS(2177), + [sym_xhp_modifier] = ACTIONS(2177), + [sym_xhp_identifier] = ACTIONS(2177), + [sym_xhp_class_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(3), }, - [1499] = { - [sym_identifier] = ACTIONS(2373), - [sym_variable] = ACTIONS(2375), - [sym_pipe_variable] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_newtype] = ACTIONS(2373), - [anon_sym_shape] = ACTIONS(2373), - [anon_sym_tuple] = ACTIONS(2373), - [anon_sym_clone] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_print] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_LT_LT_LT] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2373), - [anon_sym_echo] = ACTIONS(2373), - [anon_sym_unset] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_concurrent] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_function] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_switch] = ACTIONS(2373), - [anon_sym_foreach] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_using] = ACTIONS(2373), - [sym_float] = ACTIONS(2375), - [sym_integer] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_True] = ACTIONS(2373), - [anon_sym_TRUE] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_False] = ACTIONS(2373), - [anon_sym_FALSE] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_Null] = ACTIONS(2373), - [anon_sym_NULL] = ACTIONS(2373), - [sym_string] = ACTIONS(2375), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_array] = ACTIONS(2373), - [anon_sym_varray] = ACTIONS(2373), - [anon_sym_darray] = ACTIONS(2373), - [anon_sym_vec] = ACTIONS(2373), - [anon_sym_dict] = ACTIONS(2373), - [anon_sym_keyset] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_class] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_abstract] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2375), - [sym_final_modifier] = ACTIONS(2373), - [sym_xhp_modifier] = ACTIONS(2373), - [sym_xhp_identifier] = ACTIONS(2373), - [sym_xhp_class_identifier] = ACTIONS(2375), + [1474] = { + [sym_identifier] = ACTIONS(2261), + [sym_variable] = ACTIONS(2263), + [sym_pipe_variable] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_newtype] = ACTIONS(2261), + [anon_sym_shape] = ACTIONS(2261), + [anon_sym_tuple] = ACTIONS(2261), + [anon_sym_clone] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_include] = ACTIONS(2261), + [anon_sym_include_once] = ACTIONS(2261), + [anon_sym_require] = ACTIONS(2261), + [anon_sym_require_once] = ACTIONS(2261), + [anon_sym_BSLASH] = ACTIONS(2263), + [anon_sym_self] = ACTIONS(2261), + [anon_sym_parent] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_LT_LT_LT] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_echo] = ACTIONS(2261), + [anon_sym_unset] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_concurrent] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_foreach] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_using] = ACTIONS(2261), + [sym_float] = ACTIONS(2263), + [sym_integer] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_True] = ACTIONS(2261), + [anon_sym_TRUE] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_False] = ACTIONS(2261), + [anon_sym_FALSE] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_Null] = ACTIONS(2261), + [anon_sym_NULL] = ACTIONS(2261), + [sym_string] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_array] = ACTIONS(2261), + [anon_sym_varray] = ACTIONS(2261), + [anon_sym_darray] = ACTIONS(2261), + [anon_sym_vec] = ACTIONS(2261), + [anon_sym_dict] = ACTIONS(2261), + [anon_sym_keyset] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_list] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2263), + [sym_final_modifier] = ACTIONS(2261), + [sym_xhp_modifier] = ACTIONS(2261), + [sym_xhp_identifier] = ACTIONS(2261), + [sym_xhp_class_identifier] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + }, + [1475] = { + [sym_identifier] = ACTIONS(2265), + [sym_variable] = ACTIONS(2267), + [sym_pipe_variable] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_newtype] = ACTIONS(2265), + [anon_sym_shape] = ACTIONS(2265), + [anon_sym_tuple] = ACTIONS(2265), + [anon_sym_clone] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_print] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2265), + [anon_sym_include] = ACTIONS(2265), + [anon_sym_include_once] = ACTIONS(2265), + [anon_sym_require] = ACTIONS(2265), + [anon_sym_require_once] = ACTIONS(2265), + [anon_sym_BSLASH] = ACTIONS(2267), + [anon_sym_self] = ACTIONS(2265), + [anon_sym_parent] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_LT_LT_LT] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_throw] = ACTIONS(2265), + [anon_sym_echo] = ACTIONS(2265), + [anon_sym_unset] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_concurrent] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_function] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_switch] = ACTIONS(2265), + [anon_sym_foreach] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_using] = ACTIONS(2265), + [sym_float] = ACTIONS(2267), + [sym_integer] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_True] = ACTIONS(2265), + [anon_sym_TRUE] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_False] = ACTIONS(2265), + [anon_sym_FALSE] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), + [anon_sym_Null] = ACTIONS(2265), + [anon_sym_NULL] = ACTIONS(2265), + [sym_string] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_array] = ACTIONS(2265), + [anon_sym_varray] = ACTIONS(2265), + [anon_sym_darray] = ACTIONS(2265), + [anon_sym_vec] = ACTIONS(2265), + [anon_sym_dict] = ACTIONS(2265), + [anon_sym_keyset] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_list] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_abstract] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2267), + [sym_final_modifier] = ACTIONS(2265), + [sym_xhp_modifier] = ACTIONS(2265), + [sym_xhp_identifier] = ACTIONS(2265), + [sym_xhp_class_identifier] = ACTIONS(2267), [sym_comment] = ACTIONS(3), }, - [1500] = { - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2385), - [sym_variable] = ACTIONS(2387), - [sym_pipe_variable] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_newtype] = ACTIONS(2385), - [anon_sym_shape] = ACTIONS(2385), - [anon_sym_tuple] = ACTIONS(2385), - [anon_sym_clone] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_print] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_LT_LT] = ACTIONS(2385), - [anon_sym_LT_LT_LT] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_echo] = ACTIONS(2385), - [anon_sym_unset] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_concurrent] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_function] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_foreach] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [sym_float] = ACTIONS(2387), - [sym_integer] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_True] = ACTIONS(2385), - [anon_sym_TRUE] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_False] = ACTIONS(2385), - [anon_sym_FALSE] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2385), - [anon_sym_Null] = ACTIONS(2385), - [anon_sym_NULL] = ACTIONS(2385), - [sym_string] = ACTIONS(2387), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_array] = ACTIONS(2385), - [anon_sym_varray] = ACTIONS(2385), - [anon_sym_darray] = ACTIONS(2385), - [anon_sym_vec] = ACTIONS(2385), - [anon_sym_dict] = ACTIONS(2385), - [anon_sym_keyset] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_interface] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_abstract] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(2387), - [sym_final_modifier] = ACTIONS(2385), - [sym_xhp_modifier] = ACTIONS(2385), - [sym_xhp_identifier] = ACTIONS(2385), - [sym_xhp_class_identifier] = ACTIONS(2387), + [1476] = { + [sym_identifier] = ACTIONS(2269), + [sym_variable] = ACTIONS(2271), + [sym_pipe_variable] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_newtype] = ACTIONS(2269), + [anon_sym_shape] = ACTIONS(2269), + [anon_sym_tuple] = ACTIONS(2269), + [anon_sym_clone] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_print] = ACTIONS(2269), + [anon_sym_namespace] = ACTIONS(2269), + [anon_sym_include] = ACTIONS(2269), + [anon_sym_include_once] = ACTIONS(2269), + [anon_sym_require] = ACTIONS(2269), + [anon_sym_require_once] = ACTIONS(2269), + [anon_sym_BSLASH] = ACTIONS(2271), + [anon_sym_self] = ACTIONS(2269), + [anon_sym_parent] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_LT_LT_LT] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_echo] = ACTIONS(2269), + [anon_sym_unset] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_concurrent] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_foreach] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_using] = ACTIONS(2269), + [sym_float] = ACTIONS(2271), + [sym_integer] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_True] = ACTIONS(2269), + [anon_sym_TRUE] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_False] = ACTIONS(2269), + [anon_sym_FALSE] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), + [anon_sym_Null] = ACTIONS(2269), + [anon_sym_NULL] = ACTIONS(2269), + [sym_string] = ACTIONS(2271), + [anon_sym_AT] = ACTIONS(2271), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_array] = ACTIONS(2269), + [anon_sym_varray] = ACTIONS(2269), + [anon_sym_darray] = ACTIONS(2269), + [anon_sym_vec] = ACTIONS(2269), + [anon_sym_dict] = ACTIONS(2269), + [anon_sym_keyset] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_list] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_abstract] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2271), + [sym_final_modifier] = ACTIONS(2269), + [sym_xhp_modifier] = ACTIONS(2269), + [sym_xhp_identifier] = ACTIONS(2269), + [sym_xhp_class_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(3), }, - [1501] = { - [ts_builtin_sym_end] = ACTIONS(2275), + [1477] = { + [sym_identifier] = ACTIONS(2509), + [sym_variable] = ACTIONS(2511), + [sym_pipe_variable] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_newtype] = ACTIONS(2509), + [anon_sym_shape] = ACTIONS(2509), + [anon_sym_tuple] = ACTIONS(2509), + [anon_sym_clone] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_print] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_include] = ACTIONS(2509), + [anon_sym_include_once] = ACTIONS(2509), + [anon_sym_require] = ACTIONS(2509), + [anon_sym_require_once] = ACTIONS(2509), + [anon_sym_BSLASH] = ACTIONS(2511), + [anon_sym_self] = ACTIONS(2509), + [anon_sym_parent] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_LT_LT] = ACTIONS(2509), + [anon_sym_LT_LT_LT] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_echo] = ACTIONS(2509), + [anon_sym_unset] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_concurrent] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_foreach] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [sym_float] = ACTIONS(2511), + [sym_integer] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_True] = ACTIONS(2509), + [anon_sym_TRUE] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_False] = ACTIONS(2509), + [anon_sym_FALSE] = ACTIONS(2509), + [anon_sym_null] = ACTIONS(2509), + [anon_sym_Null] = ACTIONS(2509), + [anon_sym_NULL] = ACTIONS(2509), + [sym_string] = ACTIONS(2511), + [anon_sym_AT] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_array] = ACTIONS(2509), + [anon_sym_varray] = ACTIONS(2509), + [anon_sym_darray] = ACTIONS(2509), + [anon_sym_vec] = ACTIONS(2509), + [anon_sym_dict] = ACTIONS(2509), + [anon_sym_keyset] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_list] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2511), + [sym_final_modifier] = ACTIONS(2509), + [sym_xhp_modifier] = ACTIONS(2509), + [sym_xhp_identifier] = ACTIONS(2509), + [sym_xhp_class_identifier] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + }, + [1478] = { [sym_identifier] = ACTIONS(2273), [sym_variable] = ACTIONS(2275), [sym_pipe_variable] = ACTIONS(2275), @@ -174714,6 +166309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2273), [anon_sym_LT_LT] = ACTIONS(2273), [anon_sym_LT_LT_LT] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), [anon_sym_LBRACE] = ACTIONS(2275), [anon_sym_SEMI] = ACTIONS(2275), [anon_sym_return] = ACTIONS(2273), @@ -174777,2587 +166373,3103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), }, - [1502] = { - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2265), - [sym_variable] = ACTIONS(2267), - [sym_pipe_variable] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_newtype] = ACTIONS(2265), - [anon_sym_shape] = ACTIONS(2265), - [anon_sym_tuple] = ACTIONS(2265), - [anon_sym_clone] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_print] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_include] = ACTIONS(2265), - [anon_sym_include_once] = ACTIONS(2265), - [anon_sym_require] = ACTIONS(2265), - [anon_sym_require_once] = ACTIONS(2265), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_self] = ACTIONS(2265), - [anon_sym_parent] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_LT_LT_LT] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_echo] = ACTIONS(2265), - [anon_sym_unset] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_concurrent] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_using] = ACTIONS(2265), - [sym_float] = ACTIONS(2267), - [sym_integer] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_True] = ACTIONS(2265), - [anon_sym_TRUE] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_False] = ACTIONS(2265), - [anon_sym_FALSE] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_Null] = ACTIONS(2265), - [anon_sym_NULL] = ACTIONS(2265), - [sym_string] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_array] = ACTIONS(2265), - [anon_sym_varray] = ACTIONS(2265), - [anon_sym_darray] = ACTIONS(2265), - [anon_sym_vec] = ACTIONS(2265), - [anon_sym_dict] = ACTIONS(2265), - [anon_sym_keyset] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_list] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2267), - [sym_final_modifier] = ACTIONS(2265), - [sym_xhp_modifier] = ACTIONS(2265), - [sym_xhp_identifier] = ACTIONS(2265), - [sym_xhp_class_identifier] = ACTIONS(2267), + [1479] = { + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2201), + [sym_variable] = ACTIONS(2203), + [sym_pipe_variable] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_newtype] = ACTIONS(2201), + [anon_sym_shape] = ACTIONS(2201), + [anon_sym_tuple] = ACTIONS(2201), + [anon_sym_clone] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_namespace] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_include_once] = ACTIONS(2201), + [anon_sym_require] = ACTIONS(2201), + [anon_sym_require_once] = ACTIONS(2201), + [anon_sym_BSLASH] = ACTIONS(2203), + [anon_sym_self] = ACTIONS(2201), + [anon_sym_parent] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_LT_LT_LT] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_echo] = ACTIONS(2201), + [anon_sym_unset] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_concurrent] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_foreach] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_using] = ACTIONS(2201), + [sym_float] = ACTIONS(2203), + [sym_integer] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [sym_string] = ACTIONS(2203), + [anon_sym_AT] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_array] = ACTIONS(2201), + [anon_sym_varray] = ACTIONS(2201), + [anon_sym_darray] = ACTIONS(2201), + [anon_sym_vec] = ACTIONS(2201), + [anon_sym_dict] = ACTIONS(2201), + [anon_sym_keyset] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_list] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_class] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2203), + [sym_final_modifier] = ACTIONS(2201), + [sym_xhp_modifier] = ACTIONS(2201), + [sym_xhp_identifier] = ACTIONS(2201), + [sym_xhp_class_identifier] = ACTIONS(2203), [sym_comment] = ACTIONS(3), }, - [1503] = { - [ts_builtin_sym_end] = ACTIONS(2391), - [sym_identifier] = ACTIONS(2389), - [sym_variable] = ACTIONS(2391), - [sym_pipe_variable] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_newtype] = ACTIONS(2389), - [anon_sym_shape] = ACTIONS(2389), - [anon_sym_tuple] = ACTIONS(2389), - [anon_sym_clone] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_print] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2389), - [anon_sym_LT_LT_LT] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_echo] = ACTIONS(2389), - [anon_sym_unset] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_concurrent] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_foreach] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_using] = ACTIONS(2389), - [sym_float] = ACTIONS(2391), - [sym_integer] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_True] = ACTIONS(2389), - [anon_sym_TRUE] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [anon_sym_False] = ACTIONS(2389), - [anon_sym_FALSE] = ACTIONS(2389), - [anon_sym_null] = ACTIONS(2389), - [anon_sym_Null] = ACTIONS(2389), - [anon_sym_NULL] = ACTIONS(2389), - [sym_string] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_array] = ACTIONS(2389), - [anon_sym_varray] = ACTIONS(2389), - [anon_sym_darray] = ACTIONS(2389), - [anon_sym_vec] = ACTIONS(2389), - [anon_sym_dict] = ACTIONS(2389), - [anon_sym_keyset] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_class] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2391), - [sym_final_modifier] = ACTIONS(2389), - [sym_xhp_modifier] = ACTIONS(2389), - [sym_xhp_identifier] = ACTIONS(2389), - [sym_xhp_class_identifier] = ACTIONS(2391), + [1480] = { + [sym_identifier] = ACTIONS(2277), + [sym_variable] = ACTIONS(2279), + [sym_pipe_variable] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_newtype] = ACTIONS(2277), + [anon_sym_shape] = ACTIONS(2277), + [anon_sym_tuple] = ACTIONS(2277), + [anon_sym_clone] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2277), + [anon_sym_include] = ACTIONS(2277), + [anon_sym_include_once] = ACTIONS(2277), + [anon_sym_require] = ACTIONS(2277), + [anon_sym_require_once] = ACTIONS(2277), + [anon_sym_BSLASH] = ACTIONS(2279), + [anon_sym_self] = ACTIONS(2277), + [anon_sym_parent] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_LT_LT_LT] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_throw] = ACTIONS(2277), + [anon_sym_echo] = ACTIONS(2277), + [anon_sym_unset] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_concurrent] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_function] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_switch] = ACTIONS(2277), + [anon_sym_foreach] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_using] = ACTIONS(2277), + [sym_float] = ACTIONS(2279), + [sym_integer] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_True] = ACTIONS(2277), + [anon_sym_TRUE] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_False] = ACTIONS(2277), + [anon_sym_FALSE] = ACTIONS(2277), + [anon_sym_null] = ACTIONS(2277), + [anon_sym_Null] = ACTIONS(2277), + [anon_sym_NULL] = ACTIONS(2277), + [sym_string] = ACTIONS(2279), + [anon_sym_AT] = ACTIONS(2279), + [anon_sym_TILDE] = ACTIONS(2279), + [anon_sym_array] = ACTIONS(2277), + [anon_sym_varray] = ACTIONS(2277), + [anon_sym_darray] = ACTIONS(2277), + [anon_sym_vec] = ACTIONS(2277), + [anon_sym_dict] = ACTIONS(2277), + [anon_sym_keyset] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_PLUS_PLUS] = ACTIONS(2279), + [anon_sym_DASH_DASH] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_interface] = ACTIONS(2277), + [anon_sym_class] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_abstract] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(2279), + [sym_final_modifier] = ACTIONS(2277), + [sym_xhp_modifier] = ACTIONS(2277), + [sym_xhp_identifier] = ACTIONS(2277), + [sym_xhp_class_identifier] = ACTIONS(2279), + [sym_comment] = ACTIONS(3), + }, + [1481] = { + [sym_identifier] = ACTIONS(2281), + [sym_variable] = ACTIONS(2283), + [sym_pipe_variable] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_newtype] = ACTIONS(2281), + [anon_sym_shape] = ACTIONS(2281), + [anon_sym_tuple] = ACTIONS(2281), + [anon_sym_clone] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_print] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_include] = ACTIONS(2281), + [anon_sym_include_once] = ACTIONS(2281), + [anon_sym_require] = ACTIONS(2281), + [anon_sym_require_once] = ACTIONS(2281), + [anon_sym_BSLASH] = ACTIONS(2283), + [anon_sym_self] = ACTIONS(2281), + [anon_sym_parent] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_LT_LT] = ACTIONS(2281), + [anon_sym_LT_LT_LT] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_echo] = ACTIONS(2281), + [anon_sym_unset] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_concurrent] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_foreach] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [sym_float] = ACTIONS(2283), + [sym_integer] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_True] = ACTIONS(2281), + [anon_sym_TRUE] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_False] = ACTIONS(2281), + [anon_sym_FALSE] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [anon_sym_Null] = ACTIONS(2281), + [anon_sym_NULL] = ACTIONS(2281), + [sym_string] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_array] = ACTIONS(2281), + [anon_sym_varray] = ACTIONS(2281), + [anon_sym_darray] = ACTIONS(2281), + [anon_sym_vec] = ACTIONS(2281), + [anon_sym_dict] = ACTIONS(2281), + [anon_sym_keyset] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2283), + [sym_final_modifier] = ACTIONS(2281), + [sym_xhp_modifier] = ACTIONS(2281), + [sym_xhp_identifier] = ACTIONS(2281), + [sym_xhp_class_identifier] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + }, + [1482] = { + [sym_identifier] = ACTIONS(2285), + [sym_variable] = ACTIONS(2287), + [sym_pipe_variable] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_newtype] = ACTIONS(2285), + [anon_sym_shape] = ACTIONS(2285), + [anon_sym_tuple] = ACTIONS(2285), + [anon_sym_clone] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_print] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_include] = ACTIONS(2285), + [anon_sym_include_once] = ACTIONS(2285), + [anon_sym_require] = ACTIONS(2285), + [anon_sym_require_once] = ACTIONS(2285), + [anon_sym_BSLASH] = ACTIONS(2287), + [anon_sym_self] = ACTIONS(2285), + [anon_sym_parent] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_LT_LT_LT] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_echo] = ACTIONS(2285), + [anon_sym_unset] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_concurrent] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_foreach] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [sym_float] = ACTIONS(2287), + [sym_integer] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_True] = ACTIONS(2285), + [anon_sym_TRUE] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_False] = ACTIONS(2285), + [anon_sym_FALSE] = ACTIONS(2285), + [anon_sym_null] = ACTIONS(2285), + [anon_sym_Null] = ACTIONS(2285), + [anon_sym_NULL] = ACTIONS(2285), + [sym_string] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_array] = ACTIONS(2285), + [anon_sym_varray] = ACTIONS(2285), + [anon_sym_darray] = ACTIONS(2285), + [anon_sym_vec] = ACTIONS(2285), + [anon_sym_dict] = ACTIONS(2285), + [anon_sym_keyset] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_list] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2287), + [sym_final_modifier] = ACTIONS(2285), + [sym_xhp_modifier] = ACTIONS(2285), + [sym_xhp_identifier] = ACTIONS(2285), + [sym_xhp_class_identifier] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + }, + [1483] = { + [sym_identifier] = ACTIONS(2289), + [sym_variable] = ACTIONS(2291), + [sym_pipe_variable] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_newtype] = ACTIONS(2289), + [anon_sym_shape] = ACTIONS(2289), + [anon_sym_tuple] = ACTIONS(2289), + [anon_sym_clone] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_print] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_include] = ACTIONS(2289), + [anon_sym_include_once] = ACTIONS(2289), + [anon_sym_require] = ACTIONS(2289), + [anon_sym_require_once] = ACTIONS(2289), + [anon_sym_BSLASH] = ACTIONS(2291), + [anon_sym_self] = ACTIONS(2289), + [anon_sym_parent] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_LT_LT] = ACTIONS(2289), + [anon_sym_LT_LT_LT] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_echo] = ACTIONS(2289), + [anon_sym_unset] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_concurrent] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_foreach] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [sym_float] = ACTIONS(2291), + [sym_integer] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_True] = ACTIONS(2289), + [anon_sym_TRUE] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_False] = ACTIONS(2289), + [anon_sym_FALSE] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [anon_sym_Null] = ACTIONS(2289), + [anon_sym_NULL] = ACTIONS(2289), + [sym_string] = ACTIONS(2291), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_array] = ACTIONS(2289), + [anon_sym_varray] = ACTIONS(2289), + [anon_sym_darray] = ACTIONS(2289), + [anon_sym_vec] = ACTIONS(2289), + [anon_sym_dict] = ACTIONS(2289), + [anon_sym_keyset] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_list] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_PLUS_PLUS] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2291), + [sym_final_modifier] = ACTIONS(2289), + [sym_xhp_modifier] = ACTIONS(2289), + [sym_xhp_identifier] = ACTIONS(2289), + [sym_xhp_class_identifier] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + }, + [1484] = { + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2461), + [sym_variable] = ACTIONS(2463), + [sym_pipe_variable] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_newtype] = ACTIONS(2461), + [anon_sym_shape] = ACTIONS(2461), + [anon_sym_tuple] = ACTIONS(2461), + [anon_sym_clone] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_include] = ACTIONS(2461), + [anon_sym_include_once] = ACTIONS(2461), + [anon_sym_require] = ACTIONS(2461), + [anon_sym_require_once] = ACTIONS(2461), + [anon_sym_BSLASH] = ACTIONS(2463), + [anon_sym_self] = ACTIONS(2461), + [anon_sym_parent] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_LT_LT_LT] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_echo] = ACTIONS(2461), + [anon_sym_unset] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_concurrent] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_function] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_foreach] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_using] = ACTIONS(2461), + [sym_float] = ACTIONS(2463), + [sym_integer] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_True] = ACTIONS(2461), + [anon_sym_TRUE] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_False] = ACTIONS(2461), + [anon_sym_FALSE] = ACTIONS(2461), + [anon_sym_null] = ACTIONS(2461), + [anon_sym_Null] = ACTIONS(2461), + [anon_sym_NULL] = ACTIONS(2461), + [sym_string] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_array] = ACTIONS(2461), + [anon_sym_varray] = ACTIONS(2461), + [anon_sym_darray] = ACTIONS(2461), + [anon_sym_vec] = ACTIONS(2461), + [anon_sym_dict] = ACTIONS(2461), + [anon_sym_keyset] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_list] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_interface] = ACTIONS(2461), + [anon_sym_class] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_abstract] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2463), + [sym_final_modifier] = ACTIONS(2461), + [sym_xhp_modifier] = ACTIONS(2461), + [sym_xhp_identifier] = ACTIONS(2461), + [sym_xhp_class_identifier] = ACTIONS(2463), + [sym_comment] = ACTIONS(3), + }, + [1485] = { + [sym_identifier] = ACTIONS(2297), + [sym_variable] = ACTIONS(2299), + [sym_pipe_variable] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_newtype] = ACTIONS(2297), + [anon_sym_shape] = ACTIONS(2297), + [anon_sym_tuple] = ACTIONS(2297), + [anon_sym_clone] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_include] = ACTIONS(2297), + [anon_sym_include_once] = ACTIONS(2297), + [anon_sym_require] = ACTIONS(2297), + [anon_sym_require_once] = ACTIONS(2297), + [anon_sym_BSLASH] = ACTIONS(2299), + [anon_sym_self] = ACTIONS(2297), + [anon_sym_parent] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_echo] = ACTIONS(2297), + [anon_sym_unset] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_concurrent] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_foreach] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_using] = ACTIONS(2297), + [sym_float] = ACTIONS(2299), + [sym_integer] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_True] = ACTIONS(2297), + [anon_sym_TRUE] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_False] = ACTIONS(2297), + [anon_sym_FALSE] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [anon_sym_Null] = ACTIONS(2297), + [anon_sym_NULL] = ACTIONS(2297), + [sym_string] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_array] = ACTIONS(2297), + [anon_sym_varray] = ACTIONS(2297), + [anon_sym_darray] = ACTIONS(2297), + [anon_sym_vec] = ACTIONS(2297), + [anon_sym_dict] = ACTIONS(2297), + [anon_sym_keyset] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_list] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2299), + [sym_final_modifier] = ACTIONS(2297), + [sym_xhp_modifier] = ACTIONS(2297), + [sym_xhp_identifier] = ACTIONS(2297), + [sym_xhp_class_identifier] = ACTIONS(2299), [sym_comment] = ACTIONS(3), }, - [1504] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2261), - [sym_variable] = ACTIONS(2263), - [sym_pipe_variable] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_newtype] = ACTIONS(2261), - [anon_sym_shape] = ACTIONS(2261), - [anon_sym_tuple] = ACTIONS(2261), - [anon_sym_clone] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_print] = ACTIONS(2261), - [anon_sym_namespace] = ACTIONS(2261), - [anon_sym_include] = ACTIONS(2261), - [anon_sym_include_once] = ACTIONS(2261), - [anon_sym_require] = ACTIONS(2261), - [anon_sym_require_once] = ACTIONS(2261), - [anon_sym_BSLASH] = ACTIONS(2263), - [anon_sym_self] = ACTIONS(2261), - [anon_sym_parent] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_LT_LT_LT] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_throw] = ACTIONS(2261), - [anon_sym_echo] = ACTIONS(2261), - [anon_sym_unset] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_concurrent] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_function] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_switch] = ACTIONS(2261), - [anon_sym_foreach] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_do] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_using] = ACTIONS(2261), - [sym_float] = ACTIONS(2263), - [sym_integer] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_True] = ACTIONS(2261), - [anon_sym_TRUE] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_False] = ACTIONS(2261), - [anon_sym_FALSE] = ACTIONS(2261), - [anon_sym_null] = ACTIONS(2261), - [anon_sym_Null] = ACTIONS(2261), - [anon_sym_NULL] = ACTIONS(2261), - [sym_string] = ACTIONS(2263), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_array] = ACTIONS(2261), - [anon_sym_varray] = ACTIONS(2261), - [anon_sym_darray] = ACTIONS(2261), - [anon_sym_vec] = ACTIONS(2261), - [anon_sym_dict] = ACTIONS(2261), - [anon_sym_keyset] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_list] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_abstract] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2263), - [sym_final_modifier] = ACTIONS(2261), - [sym_xhp_modifier] = ACTIONS(2261), - [sym_xhp_identifier] = ACTIONS(2261), - [sym_xhp_class_identifier] = ACTIONS(2263), + [1486] = { + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2197), + [sym_variable] = ACTIONS(2199), + [sym_pipe_variable] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_newtype] = ACTIONS(2197), + [anon_sym_shape] = ACTIONS(2197), + [anon_sym_tuple] = ACTIONS(2197), + [anon_sym_clone] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_print] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_include] = ACTIONS(2197), + [anon_sym_include_once] = ACTIONS(2197), + [anon_sym_require] = ACTIONS(2197), + [anon_sym_require_once] = ACTIONS(2197), + [anon_sym_BSLASH] = ACTIONS(2199), + [anon_sym_self] = ACTIONS(2197), + [anon_sym_parent] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_LT_LT_LT] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_echo] = ACTIONS(2197), + [anon_sym_unset] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_concurrent] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_foreach] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [sym_float] = ACTIONS(2199), + [sym_integer] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_True] = ACTIONS(2197), + [anon_sym_TRUE] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_False] = ACTIONS(2197), + [anon_sym_FALSE] = ACTIONS(2197), + [anon_sym_null] = ACTIONS(2197), + [anon_sym_Null] = ACTIONS(2197), + [anon_sym_NULL] = ACTIONS(2197), + [sym_string] = ACTIONS(2199), + [anon_sym_AT] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_array] = ACTIONS(2197), + [anon_sym_varray] = ACTIONS(2197), + [anon_sym_darray] = ACTIONS(2197), + [anon_sym_vec] = ACTIONS(2197), + [anon_sym_dict] = ACTIONS(2197), + [anon_sym_keyset] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_list] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2199), + [sym_final_modifier] = ACTIONS(2197), + [sym_xhp_modifier] = ACTIONS(2197), + [sym_xhp_identifier] = ACTIONS(2197), + [sym_xhp_class_identifier] = ACTIONS(2199), [sym_comment] = ACTIONS(3), }, - [1505] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_identifier] = ACTIONS(2397), - [sym_variable] = ACTIONS(2399), - [sym_pipe_variable] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_newtype] = ACTIONS(2397), - [anon_sym_shape] = ACTIONS(2397), - [anon_sym_tuple] = ACTIONS(2397), - [anon_sym_clone] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_print] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LT_LT_LT] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_echo] = ACTIONS(2397), - [anon_sym_unset] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_concurrent] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_foreach] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [sym_float] = ACTIONS(2399), - [sym_integer] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_True] = ACTIONS(2397), - [anon_sym_TRUE] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [anon_sym_False] = ACTIONS(2397), - [anon_sym_FALSE] = ACTIONS(2397), - [anon_sym_null] = ACTIONS(2397), - [anon_sym_Null] = ACTIONS(2397), - [anon_sym_NULL] = ACTIONS(2397), - [sym_string] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_array] = ACTIONS(2397), - [anon_sym_varray] = ACTIONS(2397), - [anon_sym_darray] = ACTIONS(2397), - [anon_sym_vec] = ACTIONS(2397), - [anon_sym_dict] = ACTIONS(2397), - [anon_sym_keyset] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_interface] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_abstract] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(2399), - [sym_final_modifier] = ACTIONS(2397), - [sym_xhp_modifier] = ACTIONS(2397), - [sym_xhp_identifier] = ACTIONS(2397), - [sym_xhp_class_identifier] = ACTIONS(2399), + [1487] = { + [sym_identifier] = ACTIONS(2301), + [sym_variable] = ACTIONS(2303), + [sym_pipe_variable] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_newtype] = ACTIONS(2301), + [anon_sym_shape] = ACTIONS(2301), + [anon_sym_tuple] = ACTIONS(2301), + [anon_sym_clone] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_print] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_include] = ACTIONS(2301), + [anon_sym_include_once] = ACTIONS(2301), + [anon_sym_require] = ACTIONS(2301), + [anon_sym_require_once] = ACTIONS(2301), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_self] = ACTIONS(2301), + [anon_sym_parent] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_LT] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_throw] = ACTIONS(2301), + [anon_sym_echo] = ACTIONS(2301), + [anon_sym_unset] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_concurrent] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_function] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_switch] = ACTIONS(2301), + [anon_sym_foreach] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_using] = ACTIONS(2301), + [sym_float] = ACTIONS(2303), + [sym_integer] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_True] = ACTIONS(2301), + [anon_sym_TRUE] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_False] = ACTIONS(2301), + [anon_sym_FALSE] = ACTIONS(2301), + [anon_sym_null] = ACTIONS(2301), + [anon_sym_Null] = ACTIONS(2301), + [anon_sym_NULL] = ACTIONS(2301), + [sym_string] = ACTIONS(2303), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_array] = ACTIONS(2301), + [anon_sym_varray] = ACTIONS(2301), + [anon_sym_darray] = ACTIONS(2301), + [anon_sym_vec] = ACTIONS(2301), + [anon_sym_dict] = ACTIONS(2301), + [anon_sym_keyset] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_list] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2301), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_abstract] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2303), + [sym_final_modifier] = ACTIONS(2301), + [sym_xhp_modifier] = ACTIONS(2301), + [sym_xhp_identifier] = ACTIONS(2301), + [sym_xhp_class_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(3), }, - [1506] = { - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2257), - [sym_variable] = ACTIONS(2259), - [sym_pipe_variable] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_newtype] = ACTIONS(2257), - [anon_sym_shape] = ACTIONS(2257), - [anon_sym_tuple] = ACTIONS(2257), - [anon_sym_clone] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_print] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_include] = ACTIONS(2257), - [anon_sym_include_once] = ACTIONS(2257), - [anon_sym_require] = ACTIONS(2257), - [anon_sym_require_once] = ACTIONS(2257), - [anon_sym_BSLASH] = ACTIONS(2259), - [anon_sym_self] = ACTIONS(2257), - [anon_sym_parent] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_LT_LT_LT] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_echo] = ACTIONS(2257), - [anon_sym_unset] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_concurrent] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_foreach] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [sym_float] = ACTIONS(2259), - [sym_integer] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_True] = ACTIONS(2257), - [anon_sym_TRUE] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_False] = ACTIONS(2257), - [anon_sym_FALSE] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2257), - [anon_sym_Null] = ACTIONS(2257), - [anon_sym_NULL] = ACTIONS(2257), - [sym_string] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_array] = ACTIONS(2257), - [anon_sym_varray] = ACTIONS(2257), - [anon_sym_darray] = ACTIONS(2257), - [anon_sym_vec] = ACTIONS(2257), - [anon_sym_dict] = ACTIONS(2257), - [anon_sym_keyset] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_list] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2259), - [sym_final_modifier] = ACTIONS(2257), - [sym_xhp_modifier] = ACTIONS(2257), - [sym_xhp_identifier] = ACTIONS(2257), - [sym_xhp_class_identifier] = ACTIONS(2259), + [1488] = { + [sym_identifier] = ACTIONS(2305), + [sym_variable] = ACTIONS(2307), + [sym_pipe_variable] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_newtype] = ACTIONS(2305), + [anon_sym_shape] = ACTIONS(2305), + [anon_sym_tuple] = ACTIONS(2305), + [anon_sym_clone] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_print] = ACTIONS(2305), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_include] = ACTIONS(2305), + [anon_sym_include_once] = ACTIONS(2305), + [anon_sym_require] = ACTIONS(2305), + [anon_sym_require_once] = ACTIONS(2305), + [anon_sym_BSLASH] = ACTIONS(2307), + [anon_sym_self] = ACTIONS(2305), + [anon_sym_parent] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_LT_LT] = ACTIONS(2305), + [anon_sym_LT_LT_LT] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_throw] = ACTIONS(2305), + [anon_sym_echo] = ACTIONS(2305), + [anon_sym_unset] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_concurrent] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_function] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_switch] = ACTIONS(2305), + [anon_sym_foreach] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_using] = ACTIONS(2305), + [sym_float] = ACTIONS(2307), + [sym_integer] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_True] = ACTIONS(2305), + [anon_sym_TRUE] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_False] = ACTIONS(2305), + [anon_sym_FALSE] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [anon_sym_Null] = ACTIONS(2305), + [anon_sym_NULL] = ACTIONS(2305), + [sym_string] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_array] = ACTIONS(2305), + [anon_sym_varray] = ACTIONS(2305), + [anon_sym_darray] = ACTIONS(2305), + [anon_sym_vec] = ACTIONS(2305), + [anon_sym_dict] = ACTIONS(2305), + [anon_sym_keyset] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2307), + [sym_final_modifier] = ACTIONS(2305), + [sym_xhp_modifier] = ACTIONS(2305), + [sym_xhp_identifier] = ACTIONS(2305), + [sym_xhp_class_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(3), }, - [1507] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [sym_variable] = ACTIONS(2095), - [sym_pipe_variable] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_newtype] = ACTIONS(2093), - [anon_sym_shape] = ACTIONS(2093), - [anon_sym_tuple] = ACTIONS(2093), - [anon_sym_clone] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_print] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_include] = ACTIONS(2093), - [anon_sym_include_once] = ACTIONS(2093), - [anon_sym_require] = ACTIONS(2093), - [anon_sym_require_once] = ACTIONS(2093), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_self] = ACTIONS(2093), - [anon_sym_parent] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_LT_LT_LT] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_echo] = ACTIONS(2093), - [anon_sym_unset] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_concurrent] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_foreach] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [sym_float] = ACTIONS(2095), - [sym_integer] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_True] = ACTIONS(2093), - [anon_sym_TRUE] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [anon_sym_False] = ACTIONS(2093), - [anon_sym_FALSE] = ACTIONS(2093), - [anon_sym_null] = ACTIONS(2093), - [anon_sym_Null] = ACTIONS(2093), - [anon_sym_NULL] = ACTIONS(2093), - [sym_string] = ACTIONS(2095), - [anon_sym_AT] = ACTIONS(2095), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_array] = ACTIONS(2093), - [anon_sym_varray] = ACTIONS(2093), - [anon_sym_darray] = ACTIONS(2093), - [anon_sym_vec] = ACTIONS(2093), - [anon_sym_dict] = ACTIONS(2093), - [anon_sym_keyset] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_list] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2095), - [sym_final_modifier] = ACTIONS(2093), - [sym_xhp_modifier] = ACTIONS(2093), - [sym_xhp_identifier] = ACTIONS(2093), - [sym_xhp_class_identifier] = ACTIONS(2095), + [1489] = { + [sym_identifier] = ACTIONS(2513), + [sym_variable] = ACTIONS(2515), + [sym_pipe_variable] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_newtype] = ACTIONS(2513), + [anon_sym_shape] = ACTIONS(2513), + [anon_sym_tuple] = ACTIONS(2513), + [anon_sym_clone] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_include] = ACTIONS(2513), + [anon_sym_include_once] = ACTIONS(2513), + [anon_sym_require] = ACTIONS(2513), + [anon_sym_require_once] = ACTIONS(2513), + [anon_sym_BSLASH] = ACTIONS(2515), + [anon_sym_self] = ACTIONS(2513), + [anon_sym_parent] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_LT_LT_LT] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_echo] = ACTIONS(2513), + [anon_sym_unset] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_concurrent] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_foreach] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [sym_float] = ACTIONS(2515), + [sym_integer] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_True] = ACTIONS(2513), + [anon_sym_TRUE] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_False] = ACTIONS(2513), + [anon_sym_FALSE] = ACTIONS(2513), + [anon_sym_null] = ACTIONS(2513), + [anon_sym_Null] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2513), + [sym_string] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_array] = ACTIONS(2513), + [anon_sym_varray] = ACTIONS(2513), + [anon_sym_darray] = ACTIONS(2513), + [anon_sym_vec] = ACTIONS(2513), + [anon_sym_dict] = ACTIONS(2513), + [anon_sym_keyset] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2515), + [sym_final_modifier] = ACTIONS(2513), + [sym_xhp_modifier] = ACTIONS(2513), + [sym_xhp_identifier] = ACTIONS(2513), + [sym_xhp_class_identifier] = ACTIONS(2515), [sym_comment] = ACTIONS(3), }, - [1508] = { - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2249), - [sym_variable] = ACTIONS(2251), - [sym_pipe_variable] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_newtype] = ACTIONS(2249), - [anon_sym_shape] = ACTIONS(2249), - [anon_sym_tuple] = ACTIONS(2249), - [anon_sym_clone] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_print] = ACTIONS(2249), - [anon_sym_namespace] = ACTIONS(2249), - [anon_sym_include] = ACTIONS(2249), - [anon_sym_include_once] = ACTIONS(2249), - [anon_sym_require] = ACTIONS(2249), - [anon_sym_require_once] = ACTIONS(2249), - [anon_sym_BSLASH] = ACTIONS(2251), - [anon_sym_self] = ACTIONS(2249), - [anon_sym_parent] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_LT_LT_LT] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_throw] = ACTIONS(2249), - [anon_sym_echo] = ACTIONS(2249), - [anon_sym_unset] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_concurrent] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_function] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_switch] = ACTIONS(2249), - [anon_sym_foreach] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_do] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_using] = ACTIONS(2249), - [sym_float] = ACTIONS(2251), - [sym_integer] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_True] = ACTIONS(2249), - [anon_sym_TRUE] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [anon_sym_False] = ACTIONS(2249), - [anon_sym_FALSE] = ACTIONS(2249), - [anon_sym_null] = ACTIONS(2249), - [anon_sym_Null] = ACTIONS(2249), - [anon_sym_NULL] = ACTIONS(2249), - [sym_string] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_array] = ACTIONS(2249), - [anon_sym_varray] = ACTIONS(2249), - [anon_sym_darray] = ACTIONS(2249), - [anon_sym_vec] = ACTIONS(2249), - [anon_sym_dict] = ACTIONS(2249), - [anon_sym_keyset] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_list] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_abstract] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2251), - [sym_final_modifier] = ACTIONS(2249), - [sym_xhp_modifier] = ACTIONS(2249), - [sym_xhp_identifier] = ACTIONS(2249), - [sym_xhp_class_identifier] = ACTIONS(2251), + [1490] = { + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2469), + [sym_variable] = ACTIONS(2471), + [sym_pipe_variable] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_newtype] = ACTIONS(2469), + [anon_sym_shape] = ACTIONS(2469), + [anon_sym_tuple] = ACTIONS(2469), + [anon_sym_clone] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_include_once] = ACTIONS(2469), + [anon_sym_require] = ACTIONS(2469), + [anon_sym_require_once] = ACTIONS(2469), + [anon_sym_BSLASH] = ACTIONS(2471), + [anon_sym_self] = ACTIONS(2469), + [anon_sym_parent] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_LT_LT_LT] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_echo] = ACTIONS(2469), + [anon_sym_unset] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_concurrent] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_function] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_foreach] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [sym_integer] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_True] = ACTIONS(2469), + [anon_sym_TRUE] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_False] = ACTIONS(2469), + [anon_sym_FALSE] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [anon_sym_Null] = ACTIONS(2469), + [anon_sym_NULL] = ACTIONS(2469), + [sym_string] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_array] = ACTIONS(2469), + [anon_sym_varray] = ACTIONS(2469), + [anon_sym_darray] = ACTIONS(2469), + [anon_sym_vec] = ACTIONS(2469), + [anon_sym_dict] = ACTIONS(2469), + [anon_sym_keyset] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_abstract] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2471), + [sym_final_modifier] = ACTIONS(2469), + [sym_xhp_modifier] = ACTIONS(2469), + [sym_xhp_identifier] = ACTIONS(2469), + [sym_xhp_class_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(3), }, - [1509] = { - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2245), - [sym_variable] = ACTIONS(2247), - [sym_pipe_variable] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_newtype] = ACTIONS(2245), - [anon_sym_shape] = ACTIONS(2245), - [anon_sym_tuple] = ACTIONS(2245), - [anon_sym_clone] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_print] = ACTIONS(2245), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_include] = ACTIONS(2245), - [anon_sym_include_once] = ACTIONS(2245), - [anon_sym_require] = ACTIONS(2245), - [anon_sym_require_once] = ACTIONS(2245), - [anon_sym_BSLASH] = ACTIONS(2247), - [anon_sym_self] = ACTIONS(2245), - [anon_sym_parent] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_LT_LT_LT] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_throw] = ACTIONS(2245), - [anon_sym_echo] = ACTIONS(2245), - [anon_sym_unset] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_concurrent] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_switch] = ACTIONS(2245), - [anon_sym_foreach] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_using] = ACTIONS(2245), - [sym_float] = ACTIONS(2247), - [sym_integer] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_True] = ACTIONS(2245), - [anon_sym_TRUE] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_False] = ACTIONS(2245), - [anon_sym_FALSE] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_Null] = ACTIONS(2245), - [anon_sym_NULL] = ACTIONS(2245), - [sym_string] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_array] = ACTIONS(2245), - [anon_sym_varray] = ACTIONS(2245), - [anon_sym_darray] = ACTIONS(2245), - [anon_sym_vec] = ACTIONS(2245), - [anon_sym_dict] = ACTIONS(2245), - [anon_sym_keyset] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_abstract] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2247), - [sym_final_modifier] = ACTIONS(2245), - [sym_xhp_modifier] = ACTIONS(2245), - [sym_xhp_identifier] = ACTIONS(2245), - [sym_xhp_class_identifier] = ACTIONS(2247), + [1491] = { + [sym_identifier] = ACTIONS(2173), + [sym_variable] = ACTIONS(2175), + [sym_pipe_variable] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_newtype] = ACTIONS(2173), + [anon_sym_shape] = ACTIONS(2173), + [anon_sym_tuple] = ACTIONS(2173), + [anon_sym_clone] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_print] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_include] = ACTIONS(2173), + [anon_sym_include_once] = ACTIONS(2173), + [anon_sym_require] = ACTIONS(2173), + [anon_sym_require_once] = ACTIONS(2173), + [anon_sym_BSLASH] = ACTIONS(2175), + [anon_sym_self] = ACTIONS(2173), + [anon_sym_parent] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LT_LT_LT] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_echo] = ACTIONS(2173), + [anon_sym_unset] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_concurrent] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_foreach] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(2173), + [sym_float] = ACTIONS(2175), + [sym_integer] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_True] = ACTIONS(2173), + [anon_sym_TRUE] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_False] = ACTIONS(2173), + [anon_sym_FALSE] = ACTIONS(2173), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_Null] = ACTIONS(2173), + [anon_sym_NULL] = ACTIONS(2173), + [sym_string] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_array] = ACTIONS(2173), + [anon_sym_varray] = ACTIONS(2173), + [anon_sym_darray] = ACTIONS(2173), + [anon_sym_vec] = ACTIONS(2173), + [anon_sym_dict] = ACTIONS(2173), + [anon_sym_keyset] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_list] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2175), + [sym_final_modifier] = ACTIONS(2173), + [sym_xhp_modifier] = ACTIONS(2173), + [sym_xhp_identifier] = ACTIONS(2173), + [sym_xhp_class_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(3), }, - [1510] = { - [sym_identifier] = ACTIONS(2217), - [sym_variable] = ACTIONS(2219), - [sym_pipe_variable] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_newtype] = ACTIONS(2217), - [anon_sym_shape] = ACTIONS(2217), - [anon_sym_tuple] = ACTIONS(2217), - [anon_sym_clone] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_print] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_include_once] = ACTIONS(2217), - [anon_sym_require] = ACTIONS(2217), - [anon_sym_require_once] = ACTIONS(2217), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_self] = ACTIONS(2217), - [anon_sym_parent] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_LT_LT_LT] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_echo] = ACTIONS(2217), - [anon_sym_unset] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_concurrent] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_foreach] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_using] = ACTIONS(2217), - [sym_float] = ACTIONS(2219), - [sym_integer] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_True] = ACTIONS(2217), - [anon_sym_TRUE] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_False] = ACTIONS(2217), - [anon_sym_FALSE] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_Null] = ACTIONS(2217), - [anon_sym_NULL] = ACTIONS(2217), - [sym_string] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_array] = ACTIONS(2217), - [anon_sym_varray] = ACTIONS(2217), - [anon_sym_darray] = ACTIONS(2217), - [anon_sym_vec] = ACTIONS(2217), - [anon_sym_dict] = ACTIONS(2217), - [anon_sym_keyset] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_list] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_class] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2219), - [sym_final_modifier] = ACTIONS(2217), - [sym_xhp_modifier] = ACTIONS(2217), - [sym_xhp_identifier] = ACTIONS(2217), - [sym_xhp_class_identifier] = ACTIONS(2219), + [1492] = { + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2549), + [sym_variable] = ACTIONS(2551), + [sym_pipe_variable] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_newtype] = ACTIONS(2549), + [anon_sym_shape] = ACTIONS(2549), + [anon_sym_tuple] = ACTIONS(2549), + [anon_sym_clone] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_include] = ACTIONS(2549), + [anon_sym_include_once] = ACTIONS(2549), + [anon_sym_require] = ACTIONS(2549), + [anon_sym_require_once] = ACTIONS(2549), + [anon_sym_BSLASH] = ACTIONS(2551), + [anon_sym_self] = ACTIONS(2549), + [anon_sym_parent] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2549), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_echo] = ACTIONS(2549), + [anon_sym_unset] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_concurrent] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_function] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_foreach] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [sym_float] = ACTIONS(2551), + [sym_integer] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_True] = ACTIONS(2549), + [anon_sym_TRUE] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_False] = ACTIONS(2549), + [anon_sym_FALSE] = ACTIONS(2549), + [anon_sym_null] = ACTIONS(2549), + [anon_sym_Null] = ACTIONS(2549), + [anon_sym_NULL] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_array] = ACTIONS(2549), + [anon_sym_varray] = ACTIONS(2549), + [anon_sym_darray] = ACTIONS(2549), + [anon_sym_vec] = ACTIONS(2549), + [anon_sym_dict] = ACTIONS(2549), + [anon_sym_keyset] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_list] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_interface] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_abstract] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2551), + [sym_final_modifier] = ACTIONS(2549), + [sym_xhp_modifier] = ACTIONS(2549), + [sym_xhp_identifier] = ACTIONS(2549), + [sym_xhp_class_identifier] = ACTIONS(2551), [sym_comment] = ACTIONS(3), }, - [1511] = { - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2241), - [sym_variable] = ACTIONS(2243), - [sym_pipe_variable] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_newtype] = ACTIONS(2241), - [anon_sym_shape] = ACTIONS(2241), - [anon_sym_tuple] = ACTIONS(2241), - [anon_sym_clone] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_print] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_include] = ACTIONS(2241), - [anon_sym_include_once] = ACTIONS(2241), - [anon_sym_require] = ACTIONS(2241), - [anon_sym_require_once] = ACTIONS(2241), - [anon_sym_BSLASH] = ACTIONS(2243), - [anon_sym_self] = ACTIONS(2241), - [anon_sym_parent] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_LT_LT_LT] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_echo] = ACTIONS(2241), - [anon_sym_unset] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_concurrent] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_foreach] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_using] = ACTIONS(2241), - [sym_float] = ACTIONS(2243), - [sym_integer] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_True] = ACTIONS(2241), - [anon_sym_TRUE] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [anon_sym_False] = ACTIONS(2241), - [anon_sym_FALSE] = ACTIONS(2241), - [anon_sym_null] = ACTIONS(2241), - [anon_sym_Null] = ACTIONS(2241), - [anon_sym_NULL] = ACTIONS(2241), - [sym_string] = ACTIONS(2243), - [anon_sym_AT] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_array] = ACTIONS(2241), - [anon_sym_varray] = ACTIONS(2241), - [anon_sym_darray] = ACTIONS(2241), - [anon_sym_vec] = ACTIONS(2241), - [anon_sym_dict] = ACTIONS(2241), - [anon_sym_keyset] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2243), - [sym_final_modifier] = ACTIONS(2241), - [sym_xhp_modifier] = ACTIONS(2241), - [sym_xhp_identifier] = ACTIONS(2241), - [sym_xhp_class_identifier] = ACTIONS(2243), + [1493] = { + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2545), + [sym_variable] = ACTIONS(2547), + [sym_pipe_variable] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_newtype] = ACTIONS(2545), + [anon_sym_shape] = ACTIONS(2545), + [anon_sym_tuple] = ACTIONS(2545), + [anon_sym_clone] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_include] = ACTIONS(2545), + [anon_sym_include_once] = ACTIONS(2545), + [anon_sym_require] = ACTIONS(2545), + [anon_sym_require_once] = ACTIONS(2545), + [anon_sym_BSLASH] = ACTIONS(2547), + [anon_sym_self] = ACTIONS(2545), + [anon_sym_parent] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(2545), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_echo] = ACTIONS(2545), + [anon_sym_unset] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_concurrent] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_foreach] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [sym_float] = ACTIONS(2547), + [sym_integer] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_True] = ACTIONS(2545), + [anon_sym_TRUE] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_False] = ACTIONS(2545), + [anon_sym_FALSE] = ACTIONS(2545), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_Null] = ACTIONS(2545), + [anon_sym_NULL] = ACTIONS(2545), + [sym_string] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_array] = ACTIONS(2545), + [anon_sym_varray] = ACTIONS(2545), + [anon_sym_darray] = ACTIONS(2545), + [anon_sym_vec] = ACTIONS(2545), + [anon_sym_dict] = ACTIONS(2545), + [anon_sym_keyset] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_list] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_interface] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_abstract] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2547), + [sym_final_modifier] = ACTIONS(2545), + [sym_xhp_modifier] = ACTIONS(2545), + [sym_xhp_identifier] = ACTIONS(2545), + [sym_xhp_class_identifier] = ACTIONS(2547), [sym_comment] = ACTIONS(3), }, - [1512] = { - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2237), - [sym_variable] = ACTIONS(2239), - [sym_pipe_variable] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_newtype] = ACTIONS(2237), - [anon_sym_shape] = ACTIONS(2237), - [anon_sym_tuple] = ACTIONS(2237), - [anon_sym_clone] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_print] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_include] = ACTIONS(2237), - [anon_sym_include_once] = ACTIONS(2237), - [anon_sym_require] = ACTIONS(2237), - [anon_sym_require_once] = ACTIONS(2237), - [anon_sym_BSLASH] = ACTIONS(2239), - [anon_sym_self] = ACTIONS(2237), - [anon_sym_parent] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_LT_LT_LT] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_echo] = ACTIONS(2237), - [anon_sym_unset] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_concurrent] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_foreach] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [sym_float] = ACTIONS(2239), - [sym_integer] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_True] = ACTIONS(2237), - [anon_sym_TRUE] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_False] = ACTIONS(2237), - [anon_sym_FALSE] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [anon_sym_Null] = ACTIONS(2237), - [anon_sym_NULL] = ACTIONS(2237), - [sym_string] = ACTIONS(2239), - [anon_sym_AT] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_array] = ACTIONS(2237), - [anon_sym_varray] = ACTIONS(2237), - [anon_sym_darray] = ACTIONS(2237), - [anon_sym_vec] = ACTIONS(2237), - [anon_sym_dict] = ACTIONS(2237), - [anon_sym_keyset] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2239), - [sym_final_modifier] = ACTIONS(2237), - [sym_xhp_modifier] = ACTIONS(2237), - [sym_xhp_identifier] = ACTIONS(2237), - [sym_xhp_class_identifier] = ACTIONS(2239), + [1494] = { + [sym_identifier] = ACTIONS(2309), + [sym_variable] = ACTIONS(2311), + [sym_pipe_variable] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_newtype] = ACTIONS(2309), + [anon_sym_shape] = ACTIONS(2309), + [anon_sym_tuple] = ACTIONS(2309), + [anon_sym_clone] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_print] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_include] = ACTIONS(2309), + [anon_sym_include_once] = ACTIONS(2309), + [anon_sym_require] = ACTIONS(2309), + [anon_sym_require_once] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2311), + [anon_sym_self] = ACTIONS(2309), + [anon_sym_parent] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_LT_LT_LT] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_throw] = ACTIONS(2309), + [anon_sym_echo] = ACTIONS(2309), + [anon_sym_unset] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_concurrent] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_foreach] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_using] = ACTIONS(2309), + [sym_float] = ACTIONS(2311), + [sym_integer] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_True] = ACTIONS(2309), + [anon_sym_TRUE] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_False] = ACTIONS(2309), + [anon_sym_FALSE] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [anon_sym_Null] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2309), + [sym_string] = ACTIONS(2311), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_array] = ACTIONS(2309), + [anon_sym_varray] = ACTIONS(2309), + [anon_sym_darray] = ACTIONS(2309), + [anon_sym_vec] = ACTIONS(2309), + [anon_sym_dict] = ACTIONS(2309), + [anon_sym_keyset] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2309), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_abstract] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2311), + [sym_final_modifier] = ACTIONS(2309), + [sym_xhp_modifier] = ACTIONS(2309), + [sym_xhp_identifier] = ACTIONS(2309), + [sym_xhp_class_identifier] = ACTIONS(2311), [sym_comment] = ACTIONS(3), }, - [1513] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [sym_variable] = ACTIONS(2407), - [sym_pipe_variable] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_newtype] = ACTIONS(2405), - [anon_sym_shape] = ACTIONS(2405), - [anon_sym_tuple] = ACTIONS(2405), - [anon_sym_clone] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), - [anon_sym_LT_LT_LT] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_echo] = ACTIONS(2405), - [anon_sym_unset] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_concurrent] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_foreach] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [sym_float] = ACTIONS(2407), - [sym_integer] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_True] = ACTIONS(2405), - [anon_sym_TRUE] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [anon_sym_False] = ACTIONS(2405), - [anon_sym_FALSE] = ACTIONS(2405), - [anon_sym_null] = ACTIONS(2405), - [anon_sym_Null] = ACTIONS(2405), - [anon_sym_NULL] = ACTIONS(2405), - [sym_string] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_array] = ACTIONS(2405), - [anon_sym_varray] = ACTIONS(2405), - [anon_sym_darray] = ACTIONS(2405), - [anon_sym_vec] = ACTIONS(2405), - [anon_sym_dict] = ACTIONS(2405), - [anon_sym_keyset] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_trait] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_abstract] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2407), - [sym_final_modifier] = ACTIONS(2405), - [sym_xhp_modifier] = ACTIONS(2405), - [sym_xhp_identifier] = ACTIONS(2405), - [sym_xhp_class_identifier] = ACTIONS(2407), + [1495] = { + [sym_identifier] = ACTIONS(2317), + [sym_variable] = ACTIONS(2319), + [sym_pipe_variable] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_newtype] = ACTIONS(2317), + [anon_sym_shape] = ACTIONS(2317), + [anon_sym_tuple] = ACTIONS(2317), + [anon_sym_clone] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_print] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_include] = ACTIONS(2317), + [anon_sym_include_once] = ACTIONS(2317), + [anon_sym_require] = ACTIONS(2317), + [anon_sym_require_once] = ACTIONS(2317), + [anon_sym_BSLASH] = ACTIONS(2319), + [anon_sym_self] = ACTIONS(2317), + [anon_sym_parent] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_LT_LT] = ACTIONS(2317), + [anon_sym_LT_LT_LT] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_echo] = ACTIONS(2317), + [anon_sym_unset] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_concurrent] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_foreach] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [sym_float] = ACTIONS(2319), + [sym_integer] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_True] = ACTIONS(2317), + [anon_sym_TRUE] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_False] = ACTIONS(2317), + [anon_sym_FALSE] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [anon_sym_Null] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [sym_string] = ACTIONS(2319), + [anon_sym_AT] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_array] = ACTIONS(2317), + [anon_sym_varray] = ACTIONS(2317), + [anon_sym_darray] = ACTIONS(2317), + [anon_sym_vec] = ACTIONS(2317), + [anon_sym_dict] = ACTIONS(2317), + [anon_sym_keyset] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_list] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2319), + [sym_final_modifier] = ACTIONS(2317), + [sym_xhp_modifier] = ACTIONS(2317), + [sym_xhp_identifier] = ACTIONS(2317), + [sym_xhp_class_identifier] = ACTIONS(2319), [sym_comment] = ACTIONS(3), }, - [1514] = { - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2233), - [sym_variable] = ACTIONS(2235), - [sym_pipe_variable] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_newtype] = ACTIONS(2233), - [anon_sym_shape] = ACTIONS(2233), - [anon_sym_tuple] = ACTIONS(2233), - [anon_sym_clone] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_print] = ACTIONS(2233), - [anon_sym_namespace] = ACTIONS(2233), - [anon_sym_include] = ACTIONS(2233), - [anon_sym_include_once] = ACTIONS(2233), - [anon_sym_require] = ACTIONS(2233), - [anon_sym_require_once] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2235), - [anon_sym_self] = ACTIONS(2233), - [anon_sym_parent] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_LT_LT_LT] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_throw] = ACTIONS(2233), - [anon_sym_echo] = ACTIONS(2233), - [anon_sym_unset] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_concurrent] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_switch] = ACTIONS(2233), - [anon_sym_foreach] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_do] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_using] = ACTIONS(2233), - [sym_float] = ACTIONS(2235), - [sym_integer] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_True] = ACTIONS(2233), - [anon_sym_TRUE] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_False] = ACTIONS(2233), - [anon_sym_FALSE] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_Null] = ACTIONS(2233), - [anon_sym_NULL] = ACTIONS(2233), - [sym_string] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_array] = ACTIONS(2233), - [anon_sym_varray] = ACTIONS(2233), - [anon_sym_darray] = ACTIONS(2233), - [anon_sym_vec] = ACTIONS(2233), - [anon_sym_dict] = ACTIONS(2233), - [anon_sym_keyset] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_list] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_abstract] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2235), - [sym_final_modifier] = ACTIONS(2233), - [sym_xhp_modifier] = ACTIONS(2233), - [sym_xhp_identifier] = ACTIONS(2233), - [sym_xhp_class_identifier] = ACTIONS(2235), + [1496] = { + [sym_identifier] = ACTIONS(2321), + [sym_variable] = ACTIONS(2323), + [sym_pipe_variable] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_newtype] = ACTIONS(2321), + [anon_sym_shape] = ACTIONS(2321), + [anon_sym_tuple] = ACTIONS(2321), + [anon_sym_clone] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_include] = ACTIONS(2321), + [anon_sym_include_once] = ACTIONS(2321), + [anon_sym_require] = ACTIONS(2321), + [anon_sym_require_once] = ACTIONS(2321), + [anon_sym_BSLASH] = ACTIONS(2323), + [anon_sym_self] = ACTIONS(2321), + [anon_sym_parent] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_LT_LT_LT] = ACTIONS(2323), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_echo] = ACTIONS(2321), + [anon_sym_unset] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_concurrent] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [sym_float] = ACTIONS(2323), + [sym_integer] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_True] = ACTIONS(2321), + [anon_sym_TRUE] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_False] = ACTIONS(2321), + [anon_sym_FALSE] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [anon_sym_Null] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [sym_string] = ACTIONS(2323), + [anon_sym_AT] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_array] = ACTIONS(2321), + [anon_sym_varray] = ACTIONS(2321), + [anon_sym_darray] = ACTIONS(2321), + [anon_sym_vec] = ACTIONS(2321), + [anon_sym_dict] = ACTIONS(2321), + [anon_sym_keyset] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_list] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [sym_final_modifier] = ACTIONS(2321), + [sym_xhp_modifier] = ACTIONS(2321), + [sym_xhp_identifier] = ACTIONS(2321), + [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [1515] = { - [sym_identifier] = ACTIONS(2229), - [sym_variable] = ACTIONS(2231), - [sym_pipe_variable] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_newtype] = ACTIONS(2229), - [anon_sym_shape] = ACTIONS(2229), - [anon_sym_tuple] = ACTIONS(2229), - [anon_sym_clone] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_print] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_LT_LT_LT] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_echo] = ACTIONS(2229), - [anon_sym_unset] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_concurrent] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_foreach] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [sym_float] = ACTIONS(2231), - [sym_integer] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_True] = ACTIONS(2229), - [anon_sym_TRUE] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_False] = ACTIONS(2229), - [anon_sym_FALSE] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_Null] = ACTIONS(2229), - [anon_sym_NULL] = ACTIONS(2229), - [sym_string] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_array] = ACTIONS(2229), - [anon_sym_varray] = ACTIONS(2229), - [anon_sym_darray] = ACTIONS(2229), - [anon_sym_vec] = ACTIONS(2229), - [anon_sym_dict] = ACTIONS(2229), - [anon_sym_keyset] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2231), - [sym_final_modifier] = ACTIONS(2229), - [sym_xhp_modifier] = ACTIONS(2229), - [sym_xhp_identifier] = ACTIONS(2229), - [sym_xhp_class_identifier] = ACTIONS(2231), + [1497] = { + [sym_identifier] = ACTIONS(2325), + [sym_variable] = ACTIONS(2327), + [sym_pipe_variable] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_newtype] = ACTIONS(2325), + [anon_sym_shape] = ACTIONS(2325), + [anon_sym_tuple] = ACTIONS(2325), + [anon_sym_clone] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_print] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_include] = ACTIONS(2325), + [anon_sym_include_once] = ACTIONS(2325), + [anon_sym_require] = ACTIONS(2325), + [anon_sym_require_once] = ACTIONS(2325), + [anon_sym_BSLASH] = ACTIONS(2327), + [anon_sym_self] = ACTIONS(2325), + [anon_sym_parent] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_LT_LT] = ACTIONS(2325), + [anon_sym_LT_LT_LT] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_echo] = ACTIONS(2325), + [anon_sym_unset] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_concurrent] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_function] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_foreach] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [sym_float] = ACTIONS(2327), + [sym_integer] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_True] = ACTIONS(2325), + [anon_sym_TRUE] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_False] = ACTIONS(2325), + [anon_sym_FALSE] = ACTIONS(2325), + [anon_sym_null] = ACTIONS(2325), + [anon_sym_Null] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [sym_string] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_array] = ACTIONS(2325), + [anon_sym_varray] = ACTIONS(2325), + [anon_sym_darray] = ACTIONS(2325), + [anon_sym_vec] = ACTIONS(2325), + [anon_sym_dict] = ACTIONS(2325), + [anon_sym_keyset] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_list] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_interface] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2327), + [sym_final_modifier] = ACTIONS(2325), + [sym_xhp_modifier] = ACTIONS(2325), + [sym_xhp_identifier] = ACTIONS(2325), + [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [1516] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2229), - [sym_variable] = ACTIONS(2231), - [sym_pipe_variable] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_newtype] = ACTIONS(2229), - [anon_sym_shape] = ACTIONS(2229), - [anon_sym_tuple] = ACTIONS(2229), - [anon_sym_clone] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_print] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_include] = ACTIONS(2229), - [anon_sym_include_once] = ACTIONS(2229), - [anon_sym_require] = ACTIONS(2229), - [anon_sym_require_once] = ACTIONS(2229), - [anon_sym_BSLASH] = ACTIONS(2231), - [anon_sym_self] = ACTIONS(2229), - [anon_sym_parent] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_LT_LT_LT] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_echo] = ACTIONS(2229), - [anon_sym_unset] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_concurrent] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_foreach] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [sym_float] = ACTIONS(2231), - [sym_integer] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_True] = ACTIONS(2229), - [anon_sym_TRUE] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_False] = ACTIONS(2229), - [anon_sym_FALSE] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_Null] = ACTIONS(2229), - [anon_sym_NULL] = ACTIONS(2229), - [sym_string] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_array] = ACTIONS(2229), - [anon_sym_varray] = ACTIONS(2229), - [anon_sym_darray] = ACTIONS(2229), - [anon_sym_vec] = ACTIONS(2229), - [anon_sym_dict] = ACTIONS(2229), - [anon_sym_keyset] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2231), - [sym_final_modifier] = ACTIONS(2229), - [sym_xhp_modifier] = ACTIONS(2229), - [sym_xhp_identifier] = ACTIONS(2229), - [sym_xhp_class_identifier] = ACTIONS(2231), + [1498] = { + [sym_identifier] = ACTIONS(2329), + [sym_variable] = ACTIONS(2331), + [sym_pipe_variable] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_newtype] = ACTIONS(2329), + [anon_sym_shape] = ACTIONS(2329), + [anon_sym_tuple] = ACTIONS(2329), + [anon_sym_clone] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_print] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_include] = ACTIONS(2329), + [anon_sym_include_once] = ACTIONS(2329), + [anon_sym_require] = ACTIONS(2329), + [anon_sym_require_once] = ACTIONS(2329), + [anon_sym_BSLASH] = ACTIONS(2331), + [anon_sym_self] = ACTIONS(2329), + [anon_sym_parent] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_LT_LT_LT] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_echo] = ACTIONS(2329), + [anon_sym_unset] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_concurrent] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_foreach] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [sym_float] = ACTIONS(2331), + [sym_integer] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_True] = ACTIONS(2329), + [anon_sym_TRUE] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_False] = ACTIONS(2329), + [anon_sym_FALSE] = ACTIONS(2329), + [anon_sym_null] = ACTIONS(2329), + [anon_sym_Null] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [sym_string] = ACTIONS(2331), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_array] = ACTIONS(2329), + [anon_sym_varray] = ACTIONS(2329), + [anon_sym_darray] = ACTIONS(2329), + [anon_sym_vec] = ACTIONS(2329), + [anon_sym_dict] = ACTIONS(2329), + [anon_sym_keyset] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_list] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2331), + [sym_final_modifier] = ACTIONS(2329), + [sym_xhp_modifier] = ACTIONS(2329), + [sym_xhp_identifier] = ACTIONS(2329), + [sym_xhp_class_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(3), }, - [1517] = { - [ts_builtin_sym_end] = ACTIONS(2411), - [sym_identifier] = ACTIONS(2409), - [sym_variable] = ACTIONS(2411), - [sym_pipe_variable] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_newtype] = ACTIONS(2409), - [anon_sym_shape] = ACTIONS(2409), - [anon_sym_tuple] = ACTIONS(2409), - [anon_sym_clone] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_include] = ACTIONS(2409), - [anon_sym_include_once] = ACTIONS(2409), - [anon_sym_require] = ACTIONS(2409), - [anon_sym_require_once] = ACTIONS(2409), - [anon_sym_BSLASH] = ACTIONS(2411), - [anon_sym_self] = ACTIONS(2409), - [anon_sym_parent] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_LT_LT] = ACTIONS(2409), - [anon_sym_LT_LT_LT] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_echo] = ACTIONS(2409), - [anon_sym_unset] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_concurrent] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_function] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_foreach] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [sym_float] = ACTIONS(2411), - [sym_integer] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_True] = ACTIONS(2409), - [anon_sym_TRUE] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [anon_sym_False] = ACTIONS(2409), - [anon_sym_FALSE] = ACTIONS(2409), - [anon_sym_null] = ACTIONS(2409), - [anon_sym_Null] = ACTIONS(2409), - [anon_sym_NULL] = ACTIONS(2409), - [sym_string] = ACTIONS(2411), - [anon_sym_AT] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_array] = ACTIONS(2409), - [anon_sym_varray] = ACTIONS(2409), - [anon_sym_darray] = ACTIONS(2409), - [anon_sym_vec] = ACTIONS(2409), - [anon_sym_dict] = ACTIONS(2409), - [anon_sym_keyset] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2409), - [anon_sym_trait] = ACTIONS(2409), - [anon_sym_interface] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_abstract] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(2411), - [sym_final_modifier] = ACTIONS(2409), - [sym_xhp_modifier] = ACTIONS(2409), - [sym_xhp_identifier] = ACTIONS(2409), - [sym_xhp_class_identifier] = ACTIONS(2411), + [1499] = { + [sym_identifier] = ACTIONS(2337), + [sym_variable] = ACTIONS(2339), + [sym_pipe_variable] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_newtype] = ACTIONS(2337), + [anon_sym_shape] = ACTIONS(2337), + [anon_sym_tuple] = ACTIONS(2337), + [anon_sym_clone] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_print] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_include] = ACTIONS(2337), + [anon_sym_include_once] = ACTIONS(2337), + [anon_sym_require] = ACTIONS(2337), + [anon_sym_require_once] = ACTIONS(2337), + [anon_sym_BSLASH] = ACTIONS(2339), + [anon_sym_self] = ACTIONS(2337), + [anon_sym_parent] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_LT_LT_LT] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_echo] = ACTIONS(2337), + [anon_sym_unset] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_concurrent] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_function] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_foreach] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [sym_float] = ACTIONS(2339), + [sym_integer] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_True] = ACTIONS(2337), + [anon_sym_TRUE] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_False] = ACTIONS(2337), + [anon_sym_FALSE] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_Null] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [sym_string] = ACTIONS(2339), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_array] = ACTIONS(2337), + [anon_sym_varray] = ACTIONS(2337), + [anon_sym_darray] = ACTIONS(2337), + [anon_sym_vec] = ACTIONS(2337), + [anon_sym_dict] = ACTIONS(2337), + [anon_sym_keyset] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_list] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_abstract] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2339), + [sym_final_modifier] = ACTIONS(2337), + [sym_xhp_modifier] = ACTIONS(2337), + [sym_xhp_identifier] = ACTIONS(2337), + [sym_xhp_class_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(3), }, - [1518] = { - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2089), - [sym_variable] = ACTIONS(2091), - [sym_pipe_variable] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_newtype] = ACTIONS(2089), - [anon_sym_shape] = ACTIONS(2089), - [anon_sym_tuple] = ACTIONS(2089), - [anon_sym_clone] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_print] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_LT_LT_LT] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_echo] = ACTIONS(2089), - [anon_sym_unset] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_concurrent] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_foreach] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [sym_float] = ACTIONS(2091), - [sym_integer] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_True] = ACTIONS(2089), - [anon_sym_TRUE] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_False] = ACTIONS(2089), - [anon_sym_FALSE] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_Null] = ACTIONS(2089), - [anon_sym_NULL] = ACTIONS(2089), - [sym_string] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_array] = ACTIONS(2089), - [anon_sym_varray] = ACTIONS(2089), - [anon_sym_darray] = ACTIONS(2089), - [anon_sym_vec] = ACTIONS(2089), - [anon_sym_dict] = ACTIONS(2089), - [anon_sym_keyset] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2091), - [sym_final_modifier] = ACTIONS(2089), - [sym_xhp_modifier] = ACTIONS(2089), - [sym_xhp_identifier] = ACTIONS(2089), - [sym_xhp_class_identifier] = ACTIONS(2091), + [1500] = { + [sym_identifier] = ACTIONS(2345), + [sym_variable] = ACTIONS(2347), + [sym_pipe_variable] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_newtype] = ACTIONS(2345), + [anon_sym_shape] = ACTIONS(2345), + [anon_sym_tuple] = ACTIONS(2345), + [anon_sym_clone] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_print] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_include] = ACTIONS(2345), + [anon_sym_include_once] = ACTIONS(2345), + [anon_sym_require] = ACTIONS(2345), + [anon_sym_require_once] = ACTIONS(2345), + [anon_sym_BSLASH] = ACTIONS(2347), + [anon_sym_self] = ACTIONS(2345), + [anon_sym_parent] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_LT_LT_LT] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_echo] = ACTIONS(2345), + [anon_sym_unset] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_concurrent] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_function] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_foreach] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [sym_float] = ACTIONS(2347), + [sym_integer] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_True] = ACTIONS(2345), + [anon_sym_TRUE] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_False] = ACTIONS(2345), + [anon_sym_FALSE] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_Null] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [sym_string] = ACTIONS(2347), + [anon_sym_AT] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_array] = ACTIONS(2345), + [anon_sym_varray] = ACTIONS(2345), + [anon_sym_darray] = ACTIONS(2345), + [anon_sym_vec] = ACTIONS(2345), + [anon_sym_dict] = ACTIONS(2345), + [anon_sym_keyset] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_list] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_abstract] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2347), + [sym_final_modifier] = ACTIONS(2345), + [sym_xhp_modifier] = ACTIONS(2345), + [sym_xhp_identifier] = ACTIONS(2345), + [sym_xhp_class_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(3), }, - [1519] = { - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2225), - [sym_variable] = ACTIONS(2227), - [sym_pipe_variable] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_newtype] = ACTIONS(2225), - [anon_sym_shape] = ACTIONS(2225), - [anon_sym_tuple] = ACTIONS(2225), - [anon_sym_clone] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_print] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_LT_LT_LT] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_echo] = ACTIONS(2225), - [anon_sym_unset] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_concurrent] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_foreach] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [sym_float] = ACTIONS(2227), - [sym_integer] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_True] = ACTIONS(2225), - [anon_sym_TRUE] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [anon_sym_False] = ACTIONS(2225), - [anon_sym_FALSE] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2225), - [anon_sym_Null] = ACTIONS(2225), - [anon_sym_NULL] = ACTIONS(2225), - [sym_string] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_array] = ACTIONS(2225), - [anon_sym_varray] = ACTIONS(2225), - [anon_sym_darray] = ACTIONS(2225), - [anon_sym_vec] = ACTIONS(2225), - [anon_sym_dict] = ACTIONS(2225), - [anon_sym_keyset] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2227), - [sym_final_modifier] = ACTIONS(2225), - [sym_xhp_modifier] = ACTIONS(2225), - [sym_xhp_identifier] = ACTIONS(2225), - [sym_xhp_class_identifier] = ACTIONS(2227), + [1501] = { + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2257), + [sym_variable] = ACTIONS(2259), + [sym_pipe_variable] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_newtype] = ACTIONS(2257), + [anon_sym_shape] = ACTIONS(2257), + [anon_sym_tuple] = ACTIONS(2257), + [anon_sym_clone] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_include_once] = ACTIONS(2257), + [anon_sym_require] = ACTIONS(2257), + [anon_sym_require_once] = ACTIONS(2257), + [anon_sym_BSLASH] = ACTIONS(2259), + [anon_sym_self] = ACTIONS(2257), + [anon_sym_parent] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_LT_LT_LT] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_throw] = ACTIONS(2257), + [anon_sym_echo] = ACTIONS(2257), + [anon_sym_unset] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_concurrent] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_switch] = ACTIONS(2257), + [anon_sym_foreach] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_using] = ACTIONS(2257), + [sym_float] = ACTIONS(2259), + [sym_integer] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_True] = ACTIONS(2257), + [anon_sym_TRUE] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_False] = ACTIONS(2257), + [anon_sym_FALSE] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_Null] = ACTIONS(2257), + [anon_sym_NULL] = ACTIONS(2257), + [sym_string] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_array] = ACTIONS(2257), + [anon_sym_varray] = ACTIONS(2257), + [anon_sym_darray] = ACTIONS(2257), + [anon_sym_vec] = ACTIONS(2257), + [anon_sym_dict] = ACTIONS(2257), + [anon_sym_keyset] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_list] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_abstract] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2259), + [sym_final_modifier] = ACTIONS(2257), + [sym_xhp_modifier] = ACTIONS(2257), + [sym_xhp_identifier] = ACTIONS(2257), + [sym_xhp_class_identifier] = ACTIONS(2259), [sym_comment] = ACTIONS(3), }, - [1520] = { - [sym_identifier] = ACTIONS(2225), - [sym_variable] = ACTIONS(2227), - [sym_pipe_variable] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_newtype] = ACTIONS(2225), - [anon_sym_shape] = ACTIONS(2225), - [anon_sym_tuple] = ACTIONS(2225), - [anon_sym_clone] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_print] = ACTIONS(2225), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_include] = ACTIONS(2225), - [anon_sym_include_once] = ACTIONS(2225), - [anon_sym_require] = ACTIONS(2225), - [anon_sym_require_once] = ACTIONS(2225), - [anon_sym_BSLASH] = ACTIONS(2227), - [anon_sym_self] = ACTIONS(2225), - [anon_sym_parent] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_LT_LT_LT] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_throw] = ACTIONS(2225), - [anon_sym_echo] = ACTIONS(2225), - [anon_sym_unset] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_concurrent] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_function] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2225), - [anon_sym_foreach] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2225), - [sym_float] = ACTIONS(2227), - [sym_integer] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_True] = ACTIONS(2225), - [anon_sym_TRUE] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [anon_sym_False] = ACTIONS(2225), - [anon_sym_FALSE] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2225), - [anon_sym_Null] = ACTIONS(2225), - [anon_sym_NULL] = ACTIONS(2225), - [sym_string] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_array] = ACTIONS(2225), - [anon_sym_varray] = ACTIONS(2225), - [anon_sym_darray] = ACTIONS(2225), - [anon_sym_vec] = ACTIONS(2225), - [anon_sym_dict] = ACTIONS(2225), - [anon_sym_keyset] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_list] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_abstract] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2227), - [sym_final_modifier] = ACTIONS(2225), - [sym_xhp_modifier] = ACTIONS(2225), - [sym_xhp_identifier] = ACTIONS(2225), - [sym_xhp_class_identifier] = ACTIONS(2227), + [1502] = { + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2261), + [sym_variable] = ACTIONS(2263), + [sym_pipe_variable] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_newtype] = ACTIONS(2261), + [anon_sym_shape] = ACTIONS(2261), + [anon_sym_tuple] = ACTIONS(2261), + [anon_sym_clone] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_include] = ACTIONS(2261), + [anon_sym_include_once] = ACTIONS(2261), + [anon_sym_require] = ACTIONS(2261), + [anon_sym_require_once] = ACTIONS(2261), + [anon_sym_BSLASH] = ACTIONS(2263), + [anon_sym_self] = ACTIONS(2261), + [anon_sym_parent] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_LT_LT_LT] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_echo] = ACTIONS(2261), + [anon_sym_unset] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_concurrent] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_function] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2261), + [anon_sym_foreach] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_using] = ACTIONS(2261), + [sym_float] = ACTIONS(2263), + [sym_integer] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_True] = ACTIONS(2261), + [anon_sym_TRUE] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_False] = ACTIONS(2261), + [anon_sym_FALSE] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_Null] = ACTIONS(2261), + [anon_sym_NULL] = ACTIONS(2261), + [sym_string] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_array] = ACTIONS(2261), + [anon_sym_varray] = ACTIONS(2261), + [anon_sym_darray] = ACTIONS(2261), + [anon_sym_vec] = ACTIONS(2261), + [anon_sym_dict] = ACTIONS(2261), + [anon_sym_keyset] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_list] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_abstract] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2263), + [sym_final_modifier] = ACTIONS(2261), + [sym_xhp_modifier] = ACTIONS(2261), + [sym_xhp_identifier] = ACTIONS(2261), + [sym_xhp_class_identifier] = ACTIONS(2263), [sym_comment] = ACTIONS(3), }, - [1521] = { - [ts_builtin_sym_end] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2425), - [sym_variable] = ACTIONS(2427), - [sym_pipe_variable] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_newtype] = ACTIONS(2425), - [anon_sym_shape] = ACTIONS(2425), - [anon_sym_tuple] = ACTIONS(2425), - [anon_sym_clone] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_LT_LT] = ACTIONS(2425), - [anon_sym_LT_LT_LT] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_echo] = ACTIONS(2425), - [anon_sym_unset] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_concurrent] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_function] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_foreach] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [sym_float] = ACTIONS(2427), - [sym_integer] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_True] = ACTIONS(2425), - [anon_sym_TRUE] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [anon_sym_False] = ACTIONS(2425), - [anon_sym_FALSE] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(2425), - [anon_sym_Null] = ACTIONS(2425), - [anon_sym_NULL] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_array] = ACTIONS(2425), - [anon_sym_varray] = ACTIONS(2425), - [anon_sym_darray] = ACTIONS(2425), - [anon_sym_vec] = ACTIONS(2425), - [anon_sym_dict] = ACTIONS(2425), - [anon_sym_keyset] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_interface] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_abstract] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(2427), - [sym_final_modifier] = ACTIONS(2425), - [sym_xhp_modifier] = ACTIONS(2425), - [sym_xhp_identifier] = ACTIONS(2425), - [sym_xhp_class_identifier] = ACTIONS(2427), + [1503] = { + [sym_identifier] = ACTIONS(2349), + [sym_variable] = ACTIONS(2351), + [sym_pipe_variable] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_newtype] = ACTIONS(2349), + [anon_sym_shape] = ACTIONS(2349), + [anon_sym_tuple] = ACTIONS(2349), + [anon_sym_clone] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_print] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_include] = ACTIONS(2349), + [anon_sym_include_once] = ACTIONS(2349), + [anon_sym_require] = ACTIONS(2349), + [anon_sym_require_once] = ACTIONS(2349), + [anon_sym_BSLASH] = ACTIONS(2351), + [anon_sym_self] = ACTIONS(2349), + [anon_sym_parent] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_LT_LT] = ACTIONS(2349), + [anon_sym_LT_LT_LT] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_echo] = ACTIONS(2349), + [anon_sym_unset] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_concurrent] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_foreach] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [sym_float] = ACTIONS(2351), + [sym_integer] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_True] = ACTIONS(2349), + [anon_sym_TRUE] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_False] = ACTIONS(2349), + [anon_sym_FALSE] = ACTIONS(2349), + [anon_sym_null] = ACTIONS(2349), + [anon_sym_Null] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [sym_string] = ACTIONS(2351), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_array] = ACTIONS(2349), + [anon_sym_varray] = ACTIONS(2349), + [anon_sym_darray] = ACTIONS(2349), + [anon_sym_vec] = ACTIONS(2349), + [anon_sym_dict] = ACTIONS(2349), + [anon_sym_keyset] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_list] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_interface] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_abstract] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2351), + [sym_final_modifier] = ACTIONS(2349), + [sym_xhp_modifier] = ACTIONS(2349), + [sym_xhp_identifier] = ACTIONS(2349), + [sym_xhp_class_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(3), }, - [1522] = { - [sym_identifier] = ACTIONS(2613), - [sym_variable] = ACTIONS(2615), - [sym_pipe_variable] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2613), - [anon_sym_newtype] = ACTIONS(2613), - [anon_sym_shape] = ACTIONS(2613), - [anon_sym_tuple] = ACTIONS(2613), - [anon_sym_clone] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_print] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_include] = ACTIONS(2613), - [anon_sym_include_once] = ACTIONS(2613), - [anon_sym_require] = ACTIONS(2613), - [anon_sym_require_once] = ACTIONS(2613), - [anon_sym_BSLASH] = ACTIONS(2615), - [anon_sym_self] = ACTIONS(2613), - [anon_sym_parent] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_LT_LT] = ACTIONS(2613), - [anon_sym_LT_LT_LT] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_echo] = ACTIONS(2613), - [anon_sym_unset] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_concurrent] = ACTIONS(2613), - [anon_sym_use] = ACTIONS(2613), - [anon_sym_function] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_foreach] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [sym_float] = ACTIONS(2615), - [sym_integer] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_True] = ACTIONS(2613), - [anon_sym_TRUE] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_False] = ACTIONS(2613), - [anon_sym_FALSE] = ACTIONS(2613), - [anon_sym_null] = ACTIONS(2613), - [anon_sym_Null] = ACTIONS(2613), - [anon_sym_NULL] = ACTIONS(2613), - [sym_string] = ACTIONS(2615), - [anon_sym_AT] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_array] = ACTIONS(2613), - [anon_sym_varray] = ACTIONS(2613), - [anon_sym_darray] = ACTIONS(2613), - [anon_sym_vec] = ACTIONS(2613), - [anon_sym_dict] = ACTIONS(2613), - [anon_sym_keyset] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_list] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_await] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_trait] = ACTIONS(2613), - [anon_sym_interface] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_abstract] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2615), - [sym_final_modifier] = ACTIONS(2613), - [sym_xhp_modifier] = ACTIONS(2613), - [sym_xhp_identifier] = ACTIONS(2613), - [sym_xhp_class_identifier] = ACTIONS(2615), + [1504] = { + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2265), + [sym_variable] = ACTIONS(2267), + [sym_pipe_variable] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_newtype] = ACTIONS(2265), + [anon_sym_shape] = ACTIONS(2265), + [anon_sym_tuple] = ACTIONS(2265), + [anon_sym_clone] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_print] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2265), + [anon_sym_include] = ACTIONS(2265), + [anon_sym_include_once] = ACTIONS(2265), + [anon_sym_require] = ACTIONS(2265), + [anon_sym_require_once] = ACTIONS(2265), + [anon_sym_BSLASH] = ACTIONS(2267), + [anon_sym_self] = ACTIONS(2265), + [anon_sym_parent] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_LT_LT_LT] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_throw] = ACTIONS(2265), + [anon_sym_echo] = ACTIONS(2265), + [anon_sym_unset] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_concurrent] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_function] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_switch] = ACTIONS(2265), + [anon_sym_foreach] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_using] = ACTIONS(2265), + [sym_float] = ACTIONS(2267), + [sym_integer] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_True] = ACTIONS(2265), + [anon_sym_TRUE] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_False] = ACTIONS(2265), + [anon_sym_FALSE] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), + [anon_sym_Null] = ACTIONS(2265), + [anon_sym_NULL] = ACTIONS(2265), + [sym_string] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_array] = ACTIONS(2265), + [anon_sym_varray] = ACTIONS(2265), + [anon_sym_darray] = ACTIONS(2265), + [anon_sym_vec] = ACTIONS(2265), + [anon_sym_dict] = ACTIONS(2265), + [anon_sym_keyset] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_list] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_abstract] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2267), + [sym_final_modifier] = ACTIONS(2265), + [sym_xhp_modifier] = ACTIONS(2265), + [sym_xhp_identifier] = ACTIONS(2265), + [sym_xhp_class_identifier] = ACTIONS(2267), [sym_comment] = ACTIONS(3), }, - [1523] = { - [ts_builtin_sym_end] = ACTIONS(2383), - [sym_identifier] = ACTIONS(2381), - [sym_variable] = ACTIONS(2383), - [sym_pipe_variable] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_newtype] = ACTIONS(2381), - [anon_sym_shape] = ACTIONS(2381), - [anon_sym_tuple] = ACTIONS(2381), - [anon_sym_clone] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_print] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_LT_LT_LT] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_echo] = ACTIONS(2381), - [anon_sym_unset] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_concurrent] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_function] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_foreach] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [sym_float] = ACTIONS(2383), - [sym_integer] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_True] = ACTIONS(2381), - [anon_sym_TRUE] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_False] = ACTIONS(2381), - [anon_sym_FALSE] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [anon_sym_Null] = ACTIONS(2381), - [anon_sym_NULL] = ACTIONS(2381), - [sym_string] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_array] = ACTIONS(2381), - [anon_sym_varray] = ACTIONS(2381), - [anon_sym_darray] = ACTIONS(2381), - [anon_sym_vec] = ACTIONS(2381), - [anon_sym_dict] = ACTIONS(2381), - [anon_sym_keyset] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_abstract] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(2383), - [sym_final_modifier] = ACTIONS(2381), - [sym_xhp_modifier] = ACTIONS(2381), - [sym_xhp_identifier] = ACTIONS(2381), - [sym_xhp_class_identifier] = ACTIONS(2383), + [1505] = { + [sym_identifier] = ACTIONS(2353), + [sym_variable] = ACTIONS(2355), + [sym_pipe_variable] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_newtype] = ACTIONS(2353), + [anon_sym_shape] = ACTIONS(2353), + [anon_sym_tuple] = ACTIONS(2353), + [anon_sym_clone] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_print] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_include] = ACTIONS(2353), + [anon_sym_include_once] = ACTIONS(2353), + [anon_sym_require] = ACTIONS(2353), + [anon_sym_require_once] = ACTIONS(2353), + [anon_sym_BSLASH] = ACTIONS(2355), + [anon_sym_self] = ACTIONS(2353), + [anon_sym_parent] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_LT_LT] = ACTIONS(2353), + [anon_sym_LT_LT_LT] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_echo] = ACTIONS(2353), + [anon_sym_unset] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_concurrent] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_function] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_foreach] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [sym_float] = ACTIONS(2355), + [sym_integer] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_True] = ACTIONS(2353), + [anon_sym_TRUE] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_False] = ACTIONS(2353), + [anon_sym_FALSE] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_Null] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [sym_string] = ACTIONS(2355), + [anon_sym_AT] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_array] = ACTIONS(2353), + [anon_sym_varray] = ACTIONS(2353), + [anon_sym_darray] = ACTIONS(2353), + [anon_sym_vec] = ACTIONS(2353), + [anon_sym_dict] = ACTIONS(2353), + [anon_sym_keyset] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_list] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_interface] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_abstract] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2355), + [sym_final_modifier] = ACTIONS(2353), + [sym_xhp_modifier] = ACTIONS(2353), + [sym_xhp_identifier] = ACTIONS(2353), + [sym_xhp_class_identifier] = ACTIONS(2355), [sym_comment] = ACTIONS(3), }, - [1524] = { - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2429), - [sym_variable] = ACTIONS(2431), - [sym_pipe_variable] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_newtype] = ACTIONS(2429), - [anon_sym_shape] = ACTIONS(2429), - [anon_sym_tuple] = ACTIONS(2429), - [anon_sym_clone] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), - [anon_sym_LT_LT_LT] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_echo] = ACTIONS(2429), - [anon_sym_unset] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_concurrent] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_foreach] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [sym_float] = ACTIONS(2431), - [sym_integer] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_True] = ACTIONS(2429), - [anon_sym_TRUE] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [anon_sym_False] = ACTIONS(2429), - [anon_sym_FALSE] = ACTIONS(2429), - [anon_sym_null] = ACTIONS(2429), - [anon_sym_Null] = ACTIONS(2429), - [anon_sym_NULL] = ACTIONS(2429), - [sym_string] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_array] = ACTIONS(2429), - [anon_sym_varray] = ACTIONS(2429), - [anon_sym_darray] = ACTIONS(2429), - [anon_sym_vec] = ACTIONS(2429), - [anon_sym_dict] = ACTIONS(2429), - [anon_sym_keyset] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_interface] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_abstract] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2431), - [sym_final_modifier] = ACTIONS(2429), - [sym_xhp_modifier] = ACTIONS(2429), - [sym_xhp_identifier] = ACTIONS(2429), - [sym_xhp_class_identifier] = ACTIONS(2431), + [1506] = { + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2269), + [sym_variable] = ACTIONS(2271), + [sym_pipe_variable] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_newtype] = ACTIONS(2269), + [anon_sym_shape] = ACTIONS(2269), + [anon_sym_tuple] = ACTIONS(2269), + [anon_sym_clone] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_print] = ACTIONS(2269), + [anon_sym_namespace] = ACTIONS(2269), + [anon_sym_include] = ACTIONS(2269), + [anon_sym_include_once] = ACTIONS(2269), + [anon_sym_require] = ACTIONS(2269), + [anon_sym_require_once] = ACTIONS(2269), + [anon_sym_BSLASH] = ACTIONS(2271), + [anon_sym_self] = ACTIONS(2269), + [anon_sym_parent] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_LT_LT_LT] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_throw] = ACTIONS(2269), + [anon_sym_echo] = ACTIONS(2269), + [anon_sym_unset] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_concurrent] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_switch] = ACTIONS(2269), + [anon_sym_foreach] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_do] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_using] = ACTIONS(2269), + [sym_float] = ACTIONS(2271), + [sym_integer] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_True] = ACTIONS(2269), + [anon_sym_TRUE] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_False] = ACTIONS(2269), + [anon_sym_FALSE] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), + [anon_sym_Null] = ACTIONS(2269), + [anon_sym_NULL] = ACTIONS(2269), + [sym_string] = ACTIONS(2271), + [anon_sym_AT] = ACTIONS(2271), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_array] = ACTIONS(2269), + [anon_sym_varray] = ACTIONS(2269), + [anon_sym_darray] = ACTIONS(2269), + [anon_sym_vec] = ACTIONS(2269), + [anon_sym_dict] = ACTIONS(2269), + [anon_sym_keyset] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_list] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_abstract] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2271), + [sym_final_modifier] = ACTIONS(2269), + [sym_xhp_modifier] = ACTIONS(2269), + [sym_xhp_identifier] = ACTIONS(2269), + [sym_xhp_class_identifier] = ACTIONS(2271), [sym_comment] = ACTIONS(3), }, - [1525] = { - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2433), - [sym_variable] = ACTIONS(2435), - [sym_pipe_variable] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_newtype] = ACTIONS(2433), - [anon_sym_shape] = ACTIONS(2433), - [anon_sym_tuple] = ACTIONS(2433), - [anon_sym_clone] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_print] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_LT_LT_LT] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_echo] = ACTIONS(2433), - [anon_sym_unset] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_concurrent] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_foreach] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [sym_float] = ACTIONS(2435), - [sym_integer] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_True] = ACTIONS(2433), - [anon_sym_TRUE] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [anon_sym_False] = ACTIONS(2433), - [anon_sym_FALSE] = ACTIONS(2433), - [anon_sym_null] = ACTIONS(2433), - [anon_sym_Null] = ACTIONS(2433), - [anon_sym_NULL] = ACTIONS(2433), - [sym_string] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_array] = ACTIONS(2433), - [anon_sym_varray] = ACTIONS(2433), - [anon_sym_darray] = ACTIONS(2433), - [anon_sym_vec] = ACTIONS(2433), - [anon_sym_dict] = ACTIONS(2433), - [anon_sym_keyset] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_abstract] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2435), - [sym_final_modifier] = ACTIONS(2433), - [sym_xhp_modifier] = ACTIONS(2433), - [sym_xhp_identifier] = ACTIONS(2433), - [sym_xhp_class_identifier] = ACTIONS(2435), + [1507] = { + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2449), + [sym_variable] = ACTIONS(2451), + [sym_pipe_variable] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_newtype] = ACTIONS(2449), + [anon_sym_shape] = ACTIONS(2449), + [anon_sym_tuple] = ACTIONS(2449), + [anon_sym_clone] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_print] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_include] = ACTIONS(2449), + [anon_sym_include_once] = ACTIONS(2449), + [anon_sym_require] = ACTIONS(2449), + [anon_sym_require_once] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2451), + [anon_sym_self] = ACTIONS(2449), + [anon_sym_parent] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_LT_LT_LT] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_echo] = ACTIONS(2449), + [anon_sym_unset] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_concurrent] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_foreach] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [sym_float] = ACTIONS(2451), + [sym_integer] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_True] = ACTIONS(2449), + [anon_sym_TRUE] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_False] = ACTIONS(2449), + [anon_sym_FALSE] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [anon_sym_Null] = ACTIONS(2449), + [anon_sym_NULL] = ACTIONS(2449), + [sym_string] = ACTIONS(2451), + [anon_sym_AT] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_array] = ACTIONS(2449), + [anon_sym_varray] = ACTIONS(2449), + [anon_sym_darray] = ACTIONS(2449), + [anon_sym_vec] = ACTIONS(2449), + [anon_sym_dict] = ACTIONS(2449), + [anon_sym_keyset] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_await] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_abstract] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2451), + [sym_final_modifier] = ACTIONS(2449), + [sym_xhp_modifier] = ACTIONS(2449), + [sym_xhp_identifier] = ACTIONS(2449), + [sym_xhp_class_identifier] = ACTIONS(2451), [sym_comment] = ACTIONS(3), }, - [1526] = { - [sym_identifier] = ACTIONS(2221), - [sym_variable] = ACTIONS(2223), - [sym_pipe_variable] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_newtype] = ACTIONS(2221), - [anon_sym_shape] = ACTIONS(2221), - [anon_sym_tuple] = ACTIONS(2221), - [anon_sym_clone] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_print] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_LT_LT_LT] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_echo] = ACTIONS(2221), - [anon_sym_unset] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_concurrent] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_foreach] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [sym_float] = ACTIONS(2223), - [sym_integer] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_True] = ACTIONS(2221), - [anon_sym_TRUE] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_False] = ACTIONS(2221), - [anon_sym_FALSE] = ACTIONS(2221), - [anon_sym_null] = ACTIONS(2221), - [anon_sym_Null] = ACTIONS(2221), - [anon_sym_NULL] = ACTIONS(2221), - [sym_string] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_array] = ACTIONS(2221), - [anon_sym_varray] = ACTIONS(2221), - [anon_sym_darray] = ACTIONS(2221), - [anon_sym_vec] = ACTIONS(2221), - [anon_sym_dict] = ACTIONS(2221), - [anon_sym_keyset] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2223), - [sym_final_modifier] = ACTIONS(2221), - [sym_xhp_modifier] = ACTIONS(2221), - [sym_xhp_identifier] = ACTIONS(2221), - [sym_xhp_class_identifier] = ACTIONS(2223), + [1508] = { + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2273), + [sym_variable] = ACTIONS(2275), + [sym_pipe_variable] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_newtype] = ACTIONS(2273), + [anon_sym_shape] = ACTIONS(2273), + [anon_sym_tuple] = ACTIONS(2273), + [anon_sym_clone] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_print] = ACTIONS(2273), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_include] = ACTIONS(2273), + [anon_sym_include_once] = ACTIONS(2273), + [anon_sym_require] = ACTIONS(2273), + [anon_sym_require_once] = ACTIONS(2273), + [anon_sym_BSLASH] = ACTIONS(2275), + [anon_sym_self] = ACTIONS(2273), + [anon_sym_parent] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2273), + [anon_sym_LT_LT_LT] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_throw] = ACTIONS(2273), + [anon_sym_echo] = ACTIONS(2273), + [anon_sym_unset] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_concurrent] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_function] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_switch] = ACTIONS(2273), + [anon_sym_foreach] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_using] = ACTIONS(2273), + [sym_float] = ACTIONS(2275), + [sym_integer] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_True] = ACTIONS(2273), + [anon_sym_TRUE] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_False] = ACTIONS(2273), + [anon_sym_FALSE] = ACTIONS(2273), + [anon_sym_null] = ACTIONS(2273), + [anon_sym_Null] = ACTIONS(2273), + [anon_sym_NULL] = ACTIONS(2273), + [sym_string] = ACTIONS(2275), + [anon_sym_AT] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2275), + [anon_sym_array] = ACTIONS(2273), + [anon_sym_varray] = ACTIONS(2273), + [anon_sym_darray] = ACTIONS(2273), + [anon_sym_vec] = ACTIONS(2273), + [anon_sym_dict] = ACTIONS(2273), + [anon_sym_keyset] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_list] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_PLUS_PLUS] = ACTIONS(2275), + [anon_sym_DASH_DASH] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_abstract] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2275), + [sym_final_modifier] = ACTIONS(2273), + [sym_xhp_modifier] = ACTIONS(2273), + [sym_xhp_identifier] = ACTIONS(2273), + [sym_xhp_class_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), }, - [1527] = { - [sym_identifier] = ACTIONS(2321), - [sym_variable] = ACTIONS(2323), - [sym_pipe_variable] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_newtype] = ACTIONS(2321), - [anon_sym_shape] = ACTIONS(2321), - [anon_sym_tuple] = ACTIONS(2321), - [anon_sym_clone] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_print] = ACTIONS(2321), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_include] = ACTIONS(2321), - [anon_sym_include_once] = ACTIONS(2321), - [anon_sym_require] = ACTIONS(2321), - [anon_sym_require_once] = ACTIONS(2321), - [anon_sym_BSLASH] = ACTIONS(2323), - [anon_sym_self] = ACTIONS(2321), - [anon_sym_parent] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_LT_LT_LT] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_throw] = ACTIONS(2321), - [anon_sym_echo] = ACTIONS(2321), - [anon_sym_unset] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_concurrent] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_function] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_switch] = ACTIONS(2321), - [anon_sym_foreach] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_do] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_using] = ACTIONS(2321), - [sym_float] = ACTIONS(2323), - [sym_integer] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_True] = ACTIONS(2321), - [anon_sym_TRUE] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [anon_sym_False] = ACTIONS(2321), - [anon_sym_FALSE] = ACTIONS(2321), - [anon_sym_null] = ACTIONS(2321), - [anon_sym_Null] = ACTIONS(2321), - [anon_sym_NULL] = ACTIONS(2321), - [sym_string] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_array] = ACTIONS(2321), - [anon_sym_varray] = ACTIONS(2321), - [anon_sym_darray] = ACTIONS(2321), - [anon_sym_vec] = ACTIONS(2321), - [anon_sym_dict] = ACTIONS(2321), - [anon_sym_keyset] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_list] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2323), - [anon_sym_DASH_DASH] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_interface] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(2323), - [sym_final_modifier] = ACTIONS(2321), - [sym_xhp_modifier] = ACTIONS(2321), - [sym_xhp_identifier] = ACTIONS(2321), - [sym_xhp_class_identifier] = ACTIONS(2323), + [1509] = { + [ts_builtin_sym_end] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2277), + [sym_variable] = ACTIONS(2279), + [sym_pipe_variable] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_newtype] = ACTIONS(2277), + [anon_sym_shape] = ACTIONS(2277), + [anon_sym_tuple] = ACTIONS(2277), + [anon_sym_clone] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2277), + [anon_sym_include] = ACTIONS(2277), + [anon_sym_include_once] = ACTIONS(2277), + [anon_sym_require] = ACTIONS(2277), + [anon_sym_require_once] = ACTIONS(2277), + [anon_sym_BSLASH] = ACTIONS(2279), + [anon_sym_self] = ACTIONS(2277), + [anon_sym_parent] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_LT_LT] = ACTIONS(2277), + [anon_sym_LT_LT_LT] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_throw] = ACTIONS(2277), + [anon_sym_echo] = ACTIONS(2277), + [anon_sym_unset] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_concurrent] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_function] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_switch] = ACTIONS(2277), + [anon_sym_foreach] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_using] = ACTIONS(2277), + [sym_float] = ACTIONS(2279), + [sym_integer] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_True] = ACTIONS(2277), + [anon_sym_TRUE] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_False] = ACTIONS(2277), + [anon_sym_FALSE] = ACTIONS(2277), + [anon_sym_null] = ACTIONS(2277), + [anon_sym_Null] = ACTIONS(2277), + [anon_sym_NULL] = ACTIONS(2277), + [sym_string] = ACTIONS(2279), + [anon_sym_AT] = ACTIONS(2279), + [anon_sym_TILDE] = ACTIONS(2279), + [anon_sym_array] = ACTIONS(2277), + [anon_sym_varray] = ACTIONS(2277), + [anon_sym_darray] = ACTIONS(2277), + [anon_sym_vec] = ACTIONS(2277), + [anon_sym_dict] = ACTIONS(2277), + [anon_sym_keyset] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_PLUS_PLUS] = ACTIONS(2279), + [anon_sym_DASH_DASH] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_interface] = ACTIONS(2277), + [anon_sym_class] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_abstract] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(2279), + [sym_final_modifier] = ACTIONS(2277), + [sym_xhp_modifier] = ACTIONS(2277), + [sym_xhp_identifier] = ACTIONS(2277), + [sym_xhp_class_identifier] = ACTIONS(2279), + [sym_comment] = ACTIONS(3), + }, + [1510] = { + [sym_identifier] = ACTIONS(2361), + [sym_variable] = ACTIONS(2363), + [sym_pipe_variable] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_newtype] = ACTIONS(2361), + [anon_sym_shape] = ACTIONS(2361), + [anon_sym_tuple] = ACTIONS(2361), + [anon_sym_clone] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_print] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_include] = ACTIONS(2361), + [anon_sym_include_once] = ACTIONS(2361), + [anon_sym_require] = ACTIONS(2361), + [anon_sym_require_once] = ACTIONS(2361), + [anon_sym_BSLASH] = ACTIONS(2363), + [anon_sym_self] = ACTIONS(2361), + [anon_sym_parent] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_LT_LT] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_echo] = ACTIONS(2361), + [anon_sym_unset] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_concurrent] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_foreach] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [sym_float] = ACTIONS(2363), + [sym_integer] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_True] = ACTIONS(2361), + [anon_sym_TRUE] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_False] = ACTIONS(2361), + [anon_sym_FALSE] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_Null] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [sym_string] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_array] = ACTIONS(2361), + [anon_sym_varray] = ACTIONS(2361), + [anon_sym_darray] = ACTIONS(2361), + [anon_sym_vec] = ACTIONS(2361), + [anon_sym_dict] = ACTIONS(2361), + [anon_sym_keyset] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_list] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_interface] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2363), + [sym_final_modifier] = ACTIONS(2361), + [sym_xhp_modifier] = ACTIONS(2361), + [sym_xhp_identifier] = ACTIONS(2361), + [sym_xhp_class_identifier] = ACTIONS(2363), [sym_comment] = ACTIONS(3), }, - [1528] = { - [sym_identifier] = ACTIONS(2581), - [sym_variable] = ACTIONS(2583), - [sym_pipe_variable] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_newtype] = ACTIONS(2581), - [anon_sym_shape] = ACTIONS(2581), - [anon_sym_tuple] = ACTIONS(2581), - [anon_sym_clone] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_include] = ACTIONS(2581), - [anon_sym_include_once] = ACTIONS(2581), - [anon_sym_require] = ACTIONS(2581), - [anon_sym_require_once] = ACTIONS(2581), - [anon_sym_BSLASH] = ACTIONS(2583), - [anon_sym_self] = ACTIONS(2581), - [anon_sym_parent] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_LT_LT_LT] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_echo] = ACTIONS(2581), - [anon_sym_unset] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_concurrent] = ACTIONS(2581), - [anon_sym_use] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_foreach] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [sym_float] = ACTIONS(2583), - [sym_integer] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2581), - [anon_sym_True] = ACTIONS(2581), - [anon_sym_TRUE] = ACTIONS(2581), - [anon_sym_false] = ACTIONS(2581), - [anon_sym_False] = ACTIONS(2581), - [anon_sym_FALSE] = ACTIONS(2581), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_Null] = ACTIONS(2581), - [anon_sym_NULL] = ACTIONS(2581), - [sym_string] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_array] = ACTIONS(2581), - [anon_sym_varray] = ACTIONS(2581), - [anon_sym_darray] = ACTIONS(2581), - [anon_sym_vec] = ACTIONS(2581), - [anon_sym_dict] = ACTIONS(2581), - [anon_sym_keyset] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_list] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_trait] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2583), - [sym_final_modifier] = ACTIONS(2581), - [sym_xhp_modifier] = ACTIONS(2581), - [sym_xhp_identifier] = ACTIONS(2581), - [sym_xhp_class_identifier] = ACTIONS(2583), + [1511] = { + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2281), + [sym_variable] = ACTIONS(2283), + [sym_pipe_variable] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_newtype] = ACTIONS(2281), + [anon_sym_shape] = ACTIONS(2281), + [anon_sym_tuple] = ACTIONS(2281), + [anon_sym_clone] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_print] = ACTIONS(2281), + [anon_sym_namespace] = ACTIONS(2281), + [anon_sym_include] = ACTIONS(2281), + [anon_sym_include_once] = ACTIONS(2281), + [anon_sym_require] = ACTIONS(2281), + [anon_sym_require_once] = ACTIONS(2281), + [anon_sym_BSLASH] = ACTIONS(2283), + [anon_sym_self] = ACTIONS(2281), + [anon_sym_parent] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_LT_LT] = ACTIONS(2281), + [anon_sym_LT_LT_LT] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_throw] = ACTIONS(2281), + [anon_sym_echo] = ACTIONS(2281), + [anon_sym_unset] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_concurrent] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_switch] = ACTIONS(2281), + [anon_sym_foreach] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(2281), + [sym_float] = ACTIONS(2283), + [sym_integer] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_True] = ACTIONS(2281), + [anon_sym_TRUE] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_False] = ACTIONS(2281), + [anon_sym_FALSE] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [anon_sym_Null] = ACTIONS(2281), + [anon_sym_NULL] = ACTIONS(2281), + [sym_string] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_array] = ACTIONS(2281), + [anon_sym_varray] = ACTIONS(2281), + [anon_sym_darray] = ACTIONS(2281), + [anon_sym_vec] = ACTIONS(2281), + [anon_sym_dict] = ACTIONS(2281), + [anon_sym_keyset] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_PLUS_PLUS] = ACTIONS(2283), + [anon_sym_DASH_DASH] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_interface] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_abstract] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2283), + [sym_final_modifier] = ACTIONS(2281), + [sym_xhp_modifier] = ACTIONS(2281), + [sym_xhp_identifier] = ACTIONS(2281), + [sym_xhp_class_identifier] = ACTIONS(2283), [sym_comment] = ACTIONS(3), }, - [1529] = { - [sym_identifier] = ACTIONS(2497), - [sym_variable] = ACTIONS(2499), - [sym_pipe_variable] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_newtype] = ACTIONS(2497), - [anon_sym_shape] = ACTIONS(2497), - [anon_sym_tuple] = ACTIONS(2497), - [anon_sym_clone] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_print] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_include] = ACTIONS(2497), - [anon_sym_include_once] = ACTIONS(2497), - [anon_sym_require] = ACTIONS(2497), - [anon_sym_require_once] = ACTIONS(2497), - [anon_sym_BSLASH] = ACTIONS(2499), - [anon_sym_self] = ACTIONS(2497), - [anon_sym_parent] = ACTIONS(2497), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_LT_LT_LT] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_echo] = ACTIONS(2497), - [anon_sym_unset] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_concurrent] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_foreach] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_using] = ACTIONS(2497), - [sym_float] = ACTIONS(2499), - [sym_integer] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_True] = ACTIONS(2497), - [anon_sym_TRUE] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_False] = ACTIONS(2497), - [anon_sym_FALSE] = ACTIONS(2497), - [anon_sym_null] = ACTIONS(2497), - [anon_sym_Null] = ACTIONS(2497), - [anon_sym_NULL] = ACTIONS(2497), - [sym_string] = ACTIONS(2499), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_array] = ACTIONS(2497), - [anon_sym_varray] = ACTIONS(2497), - [anon_sym_darray] = ACTIONS(2497), - [anon_sym_vec] = ACTIONS(2497), - [anon_sym_dict] = ACTIONS(2497), - [anon_sym_keyset] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_trait] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2499), - [sym_final_modifier] = ACTIONS(2497), - [sym_xhp_modifier] = ACTIONS(2497), - [sym_xhp_identifier] = ACTIONS(2497), - [sym_xhp_class_identifier] = ACTIONS(2499), + [1512] = { + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2285), + [sym_variable] = ACTIONS(2287), + [sym_pipe_variable] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_newtype] = ACTIONS(2285), + [anon_sym_shape] = ACTIONS(2285), + [anon_sym_tuple] = ACTIONS(2285), + [anon_sym_clone] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_print] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_include] = ACTIONS(2285), + [anon_sym_include_once] = ACTIONS(2285), + [anon_sym_require] = ACTIONS(2285), + [anon_sym_require_once] = ACTIONS(2285), + [anon_sym_BSLASH] = ACTIONS(2287), + [anon_sym_self] = ACTIONS(2285), + [anon_sym_parent] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_LT_LT_LT] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_echo] = ACTIONS(2285), + [anon_sym_unset] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_concurrent] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_foreach] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [sym_float] = ACTIONS(2287), + [sym_integer] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_True] = ACTIONS(2285), + [anon_sym_TRUE] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_False] = ACTIONS(2285), + [anon_sym_FALSE] = ACTIONS(2285), + [anon_sym_null] = ACTIONS(2285), + [anon_sym_Null] = ACTIONS(2285), + [anon_sym_NULL] = ACTIONS(2285), + [sym_string] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_array] = ACTIONS(2285), + [anon_sym_varray] = ACTIONS(2285), + [anon_sym_darray] = ACTIONS(2285), + [anon_sym_vec] = ACTIONS(2285), + [anon_sym_dict] = ACTIONS(2285), + [anon_sym_keyset] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_list] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2287), + [sym_final_modifier] = ACTIONS(2285), + [sym_xhp_modifier] = ACTIONS(2285), + [sym_xhp_identifier] = ACTIONS(2285), + [sym_xhp_class_identifier] = ACTIONS(2287), [sym_comment] = ACTIONS(3), }, - [1530] = { - [ts_builtin_sym_end] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2137), - [sym_variable] = ACTIONS(2139), - [sym_pipe_variable] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_newtype] = ACTIONS(2137), - [anon_sym_shape] = ACTIONS(2137), - [anon_sym_tuple] = ACTIONS(2137), - [anon_sym_clone] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_print] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_LT_LT_LT] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_echo] = ACTIONS(2137), - [anon_sym_unset] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_concurrent] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_foreach] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [sym_float] = ACTIONS(2139), - [sym_integer] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_True] = ACTIONS(2137), - [anon_sym_TRUE] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [anon_sym_False] = ACTIONS(2137), - [anon_sym_FALSE] = ACTIONS(2137), - [anon_sym_null] = ACTIONS(2137), - [anon_sym_Null] = ACTIONS(2137), - [anon_sym_NULL] = ACTIONS(2137), - [sym_string] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_array] = ACTIONS(2137), - [anon_sym_varray] = ACTIONS(2137), - [anon_sym_darray] = ACTIONS(2137), - [anon_sym_vec] = ACTIONS(2137), - [anon_sym_dict] = ACTIONS(2137), - [anon_sym_keyset] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2139), - [sym_final_modifier] = ACTIONS(2137), - [sym_xhp_modifier] = ACTIONS(2137), - [sym_xhp_identifier] = ACTIONS(2137), - [sym_xhp_class_identifier] = ACTIONS(2139), + [1513] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2537), + [sym_variable] = ACTIONS(2539), + [sym_pipe_variable] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_newtype] = ACTIONS(2537), + [anon_sym_shape] = ACTIONS(2537), + [anon_sym_tuple] = ACTIONS(2537), + [anon_sym_clone] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_print] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_include] = ACTIONS(2537), + [anon_sym_include_once] = ACTIONS(2537), + [anon_sym_require] = ACTIONS(2537), + [anon_sym_require_once] = ACTIONS(2537), + [anon_sym_BSLASH] = ACTIONS(2539), + [anon_sym_self] = ACTIONS(2537), + [anon_sym_parent] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_LT_LT] = ACTIONS(2537), + [anon_sym_LT_LT_LT] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_echo] = ACTIONS(2537), + [anon_sym_unset] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_concurrent] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_function] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_foreach] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [sym_float] = ACTIONS(2539), + [sym_integer] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_True] = ACTIONS(2537), + [anon_sym_TRUE] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_False] = ACTIONS(2537), + [anon_sym_FALSE] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2537), + [anon_sym_Null] = ACTIONS(2537), + [anon_sym_NULL] = ACTIONS(2537), + [sym_string] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_array] = ACTIONS(2537), + [anon_sym_varray] = ACTIONS(2537), + [anon_sym_darray] = ACTIONS(2537), + [anon_sym_vec] = ACTIONS(2537), + [anon_sym_dict] = ACTIONS(2537), + [anon_sym_keyset] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_list] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_interface] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_abstract] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2539), + [sym_final_modifier] = ACTIONS(2537), + [sym_xhp_modifier] = ACTIONS(2537), + [sym_xhp_identifier] = ACTIONS(2537), + [sym_xhp_class_identifier] = ACTIONS(2539), [sym_comment] = ACTIONS(3), }, - [1531] = { - [ts_builtin_sym_end] = ACTIONS(2467), - [sym_identifier] = ACTIONS(2465), - [sym_variable] = ACTIONS(2467), - [sym_pipe_variable] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_newtype] = ACTIONS(2465), - [anon_sym_shape] = ACTIONS(2465), - [anon_sym_tuple] = ACTIONS(2465), - [anon_sym_clone] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_print] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_LT_LT_LT] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_echo] = ACTIONS(2465), - [anon_sym_unset] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_concurrent] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_foreach] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [sym_float] = ACTIONS(2467), - [sym_integer] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_True] = ACTIONS(2465), - [anon_sym_TRUE] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [anon_sym_False] = ACTIONS(2465), - [anon_sym_FALSE] = ACTIONS(2465), - [anon_sym_null] = ACTIONS(2465), - [anon_sym_Null] = ACTIONS(2465), - [anon_sym_NULL] = ACTIONS(2465), - [sym_string] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_array] = ACTIONS(2465), - [anon_sym_varray] = ACTIONS(2465), - [anon_sym_darray] = ACTIONS(2465), - [anon_sym_vec] = ACTIONS(2465), - [anon_sym_dict] = ACTIONS(2465), - [anon_sym_keyset] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_trait] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2467), - [sym_final_modifier] = ACTIONS(2465), - [sym_xhp_modifier] = ACTIONS(2465), - [sym_xhp_identifier] = ACTIONS(2465), - [sym_xhp_class_identifier] = ACTIONS(2467), + [1514] = { + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2289), + [sym_variable] = ACTIONS(2291), + [sym_pipe_variable] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_newtype] = ACTIONS(2289), + [anon_sym_shape] = ACTIONS(2289), + [anon_sym_tuple] = ACTIONS(2289), + [anon_sym_clone] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_print] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_include] = ACTIONS(2289), + [anon_sym_include_once] = ACTIONS(2289), + [anon_sym_require] = ACTIONS(2289), + [anon_sym_require_once] = ACTIONS(2289), + [anon_sym_BSLASH] = ACTIONS(2291), + [anon_sym_self] = ACTIONS(2289), + [anon_sym_parent] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_LT_LT] = ACTIONS(2289), + [anon_sym_LT_LT_LT] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_echo] = ACTIONS(2289), + [anon_sym_unset] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_concurrent] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_foreach] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(2289), + [sym_float] = ACTIONS(2291), + [sym_integer] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_True] = ACTIONS(2289), + [anon_sym_TRUE] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_False] = ACTIONS(2289), + [anon_sym_FALSE] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [anon_sym_Null] = ACTIONS(2289), + [anon_sym_NULL] = ACTIONS(2289), + [sym_string] = ACTIONS(2291), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_array] = ACTIONS(2289), + [anon_sym_varray] = ACTIONS(2289), + [anon_sym_darray] = ACTIONS(2289), + [anon_sym_vec] = ACTIONS(2289), + [anon_sym_dict] = ACTIONS(2289), + [anon_sym_keyset] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_list] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_PLUS_PLUS] = ACTIONS(2291), + [anon_sym_DASH_DASH] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2291), + [sym_final_modifier] = ACTIONS(2289), + [sym_xhp_modifier] = ACTIONS(2289), + [sym_xhp_identifier] = ACTIONS(2289), + [sym_xhp_class_identifier] = ACTIONS(2291), [sym_comment] = ACTIONS(3), }, - [1532] = { + [1515] = { [sym_identifier] = ACTIONS(2169), [sym_variable] = ACTIONS(2171), [sym_pipe_variable] = ACTIONS(2171), @@ -177443,1211 +169555,1641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2171), [sym_comment] = ACTIONS(3), }, - [1533] = { - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [1516] = { + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2297), + [sym_variable] = ACTIONS(2299), + [sym_pipe_variable] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_newtype] = ACTIONS(2297), + [anon_sym_shape] = ACTIONS(2297), + [anon_sym_tuple] = ACTIONS(2297), + [anon_sym_clone] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_include] = ACTIONS(2297), + [anon_sym_include_once] = ACTIONS(2297), + [anon_sym_require] = ACTIONS(2297), + [anon_sym_require_once] = ACTIONS(2297), + [anon_sym_BSLASH] = ACTIONS(2299), + [anon_sym_self] = ACTIONS(2297), + [anon_sym_parent] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_LT_LT] = ACTIONS(2297), + [anon_sym_LT_LT_LT] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_echo] = ACTIONS(2297), + [anon_sym_unset] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_concurrent] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_foreach] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_using] = ACTIONS(2297), + [sym_float] = ACTIONS(2299), + [sym_integer] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_True] = ACTIONS(2297), + [anon_sym_TRUE] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_False] = ACTIONS(2297), + [anon_sym_FALSE] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2297), + [anon_sym_Null] = ACTIONS(2297), + [anon_sym_NULL] = ACTIONS(2297), + [sym_string] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_array] = ACTIONS(2297), + [anon_sym_varray] = ACTIONS(2297), + [anon_sym_darray] = ACTIONS(2297), + [anon_sym_vec] = ACTIONS(2297), + [anon_sym_dict] = ACTIONS(2297), + [anon_sym_keyset] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_list] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2299), + [sym_final_modifier] = ACTIONS(2297), + [sym_xhp_modifier] = ACTIONS(2297), + [sym_xhp_identifier] = ACTIONS(2297), + [sym_xhp_class_identifier] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + }, + [1517] = { + [sym_identifier] = ACTIONS(2165), + [sym_variable] = ACTIONS(2167), + [sym_pipe_variable] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_newtype] = ACTIONS(2165), + [anon_sym_shape] = ACTIONS(2165), + [anon_sym_tuple] = ACTIONS(2165), + [anon_sym_clone] = ACTIONS(2165), + [anon_sym_new] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_namespace] = ACTIONS(2165), + [anon_sym_include] = ACTIONS(2165), + [anon_sym_include_once] = ACTIONS(2165), + [anon_sym_require] = ACTIONS(2165), + [anon_sym_require_once] = ACTIONS(2165), + [anon_sym_BSLASH] = ACTIONS(2167), + [anon_sym_self] = ACTIONS(2165), + [anon_sym_parent] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(2165), + [anon_sym_LT_LT_LT] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_throw] = ACTIONS(2165), + [anon_sym_echo] = ACTIONS(2165), + [anon_sym_unset] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_concurrent] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_function] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_switch] = ACTIONS(2165), + [anon_sym_foreach] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_using] = ACTIONS(2165), + [sym_float] = ACTIONS(2167), + [sym_integer] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_True] = ACTIONS(2165), + [anon_sym_TRUE] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_False] = ACTIONS(2165), + [anon_sym_FALSE] = ACTIONS(2165), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_Null] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2165), + [sym_string] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_array] = ACTIONS(2165), + [anon_sym_varray] = ACTIONS(2165), + [anon_sym_darray] = ACTIONS(2165), + [anon_sym_vec] = ACTIONS(2165), + [anon_sym_dict] = ACTIONS(2165), + [anon_sym_keyset] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_list] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_interface] = ACTIONS(2165), + [anon_sym_class] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2167), + [sym_final_modifier] = ACTIONS(2165), + [sym_xhp_modifier] = ACTIONS(2165), + [sym_xhp_identifier] = ACTIONS(2165), + [sym_xhp_class_identifier] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + }, + [1518] = { + [sym_identifier] = ACTIONS(2161), + [sym_variable] = ACTIONS(2163), + [sym_pipe_variable] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_newtype] = ACTIONS(2161), + [anon_sym_shape] = ACTIONS(2161), + [anon_sym_tuple] = ACTIONS(2161), + [anon_sym_clone] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_include] = ACTIONS(2161), + [anon_sym_include_once] = ACTIONS(2161), + [anon_sym_require] = ACTIONS(2161), + [anon_sym_require_once] = ACTIONS(2161), + [anon_sym_BSLASH] = ACTIONS(2163), + [anon_sym_self] = ACTIONS(2161), + [anon_sym_parent] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_LT_LT_LT] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_echo] = ACTIONS(2161), + [anon_sym_unset] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_concurrent] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_foreach] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [sym_float] = ACTIONS(2163), + [sym_integer] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_True] = ACTIONS(2161), + [anon_sym_TRUE] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_False] = ACTIONS(2161), + [anon_sym_FALSE] = ACTIONS(2161), + [anon_sym_null] = ACTIONS(2161), + [anon_sym_Null] = ACTIONS(2161), + [anon_sym_NULL] = ACTIONS(2161), + [sym_string] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_array] = ACTIONS(2161), + [anon_sym_varray] = ACTIONS(2161), + [anon_sym_darray] = ACTIONS(2161), + [anon_sym_vec] = ACTIONS(2161), + [anon_sym_dict] = ACTIONS(2161), + [anon_sym_keyset] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_list] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2163), + [sym_final_modifier] = ACTIONS(2161), + [sym_xhp_modifier] = ACTIONS(2161), + [sym_xhp_identifier] = ACTIONS(2161), + [sym_xhp_class_identifier] = ACTIONS(2163), + [sym_comment] = ACTIONS(3), + }, + [1519] = { + [sym_identifier] = ACTIONS(2157), + [sym_variable] = ACTIONS(2159), + [sym_pipe_variable] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_newtype] = ACTIONS(2157), + [anon_sym_shape] = ACTIONS(2157), + [anon_sym_tuple] = ACTIONS(2157), + [anon_sym_clone] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_print] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2157), + [anon_sym_include] = ACTIONS(2157), + [anon_sym_include_once] = ACTIONS(2157), + [anon_sym_require] = ACTIONS(2157), + [anon_sym_require_once] = ACTIONS(2157), + [anon_sym_BSLASH] = ACTIONS(2159), + [anon_sym_self] = ACTIONS(2157), + [anon_sym_parent] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_LT_LT] = ACTIONS(2157), + [anon_sym_LT_LT_LT] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_throw] = ACTIONS(2157), + [anon_sym_echo] = ACTIONS(2157), + [anon_sym_unset] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_concurrent] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_function] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(2157), + [anon_sym_foreach] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [sym_float] = ACTIONS(2159), + [sym_integer] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_True] = ACTIONS(2157), + [anon_sym_TRUE] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_False] = ACTIONS(2157), + [anon_sym_FALSE] = ACTIONS(2157), + [anon_sym_null] = ACTIONS(2157), + [anon_sym_Null] = ACTIONS(2157), + [anon_sym_NULL] = ACTIONS(2157), + [sym_string] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_array] = ACTIONS(2157), + [anon_sym_varray] = ACTIONS(2157), + [anon_sym_darray] = ACTIONS(2157), + [anon_sym_vec] = ACTIONS(2157), + [anon_sym_dict] = ACTIONS(2157), + [anon_sym_keyset] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_list] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_interface] = ACTIONS(2157), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_abstract] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2159), + [sym_final_modifier] = ACTIONS(2157), + [sym_xhp_modifier] = ACTIONS(2157), + [sym_xhp_identifier] = ACTIONS(2157), + [sym_xhp_class_identifier] = ACTIONS(2159), + [sym_comment] = ACTIONS(3), + }, + [1520] = { + [sym_identifier] = ACTIONS(2365), + [sym_variable] = ACTIONS(2367), + [sym_pipe_variable] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_newtype] = ACTIONS(2365), + [anon_sym_shape] = ACTIONS(2365), + [anon_sym_tuple] = ACTIONS(2365), + [anon_sym_clone] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_print] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_include] = ACTIONS(2365), + [anon_sym_include_once] = ACTIONS(2365), + [anon_sym_require] = ACTIONS(2365), + [anon_sym_require_once] = ACTIONS(2365), + [anon_sym_BSLASH] = ACTIONS(2367), + [anon_sym_self] = ACTIONS(2365), + [anon_sym_parent] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_LT_LT] = ACTIONS(2365), + [anon_sym_LT_LT_LT] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_echo] = ACTIONS(2365), + [anon_sym_unset] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_concurrent] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_foreach] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [sym_float] = ACTIONS(2367), + [sym_integer] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_True] = ACTIONS(2365), + [anon_sym_TRUE] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_False] = ACTIONS(2365), + [anon_sym_FALSE] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [anon_sym_Null] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [sym_string] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_array] = ACTIONS(2365), + [anon_sym_varray] = ACTIONS(2365), + [anon_sym_darray] = ACTIONS(2365), + [anon_sym_vec] = ACTIONS(2365), + [anon_sym_dict] = ACTIONS(2365), + [anon_sym_keyset] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_list] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2367), + [sym_final_modifier] = ACTIONS(2365), + [sym_xhp_modifier] = ACTIONS(2365), + [sym_xhp_identifier] = ACTIONS(2365), + [sym_xhp_class_identifier] = ACTIONS(2367), [sym_comment] = ACTIONS(3), }, - [1534] = { - [sym_identifier] = ACTIONS(2457), - [sym_variable] = ACTIONS(2459), - [sym_pipe_variable] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_newtype] = ACTIONS(2457), - [anon_sym_shape] = ACTIONS(2457), - [anon_sym_tuple] = ACTIONS(2457), - [anon_sym_clone] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_print] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), - [anon_sym_LT_LT_LT] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_echo] = ACTIONS(2457), - [anon_sym_unset] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_concurrent] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_foreach] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_integer] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_True] = ACTIONS(2457), - [anon_sym_TRUE] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [anon_sym_False] = ACTIONS(2457), - [anon_sym_FALSE] = ACTIONS(2457), - [anon_sym_null] = ACTIONS(2457), - [anon_sym_Null] = ACTIONS(2457), - [anon_sym_NULL] = ACTIONS(2457), - [sym_string] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_array] = ACTIONS(2457), - [anon_sym_varray] = ACTIONS(2457), - [anon_sym_darray] = ACTIONS(2457), - [anon_sym_vec] = ACTIONS(2457), - [anon_sym_dict] = ACTIONS(2457), - [anon_sym_keyset] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_trait] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2459), - [sym_final_modifier] = ACTIONS(2457), - [sym_xhp_modifier] = ACTIONS(2457), - [sym_xhp_identifier] = ACTIONS(2457), - [sym_xhp_class_identifier] = ACTIONS(2459), + [1521] = { + [sym_identifier] = ACTIONS(2517), + [sym_variable] = ACTIONS(2519), + [sym_pipe_variable] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_newtype] = ACTIONS(2517), + [anon_sym_shape] = ACTIONS(2517), + [anon_sym_tuple] = ACTIONS(2517), + [anon_sym_clone] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_include_once] = ACTIONS(2517), + [anon_sym_require] = ACTIONS(2517), + [anon_sym_require_once] = ACTIONS(2517), + [anon_sym_BSLASH] = ACTIONS(2519), + [anon_sym_self] = ACTIONS(2517), + [anon_sym_parent] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_LT_LT] = ACTIONS(2517), + [anon_sym_LT_LT_LT] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_echo] = ACTIONS(2517), + [anon_sym_unset] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_concurrent] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_foreach] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [sym_float] = ACTIONS(2519), + [sym_integer] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_True] = ACTIONS(2517), + [anon_sym_TRUE] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_False] = ACTIONS(2517), + [anon_sym_FALSE] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_Null] = ACTIONS(2517), + [anon_sym_NULL] = ACTIONS(2517), + [sym_string] = ACTIONS(2519), + [anon_sym_AT] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_array] = ACTIONS(2517), + [anon_sym_varray] = ACTIONS(2517), + [anon_sym_darray] = ACTIONS(2517), + [anon_sym_vec] = ACTIONS(2517), + [anon_sym_dict] = ACTIONS(2517), + [anon_sym_keyset] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2519), + [sym_final_modifier] = ACTIONS(2517), + [sym_xhp_modifier] = ACTIONS(2517), + [sym_xhp_identifier] = ACTIONS(2517), + [sym_xhp_class_identifier] = ACTIONS(2519), [sym_comment] = ACTIONS(3), }, - [1535] = { - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), + [1522] = { + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2193), + [sym_variable] = ACTIONS(2195), + [sym_pipe_variable] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_newtype] = ACTIONS(2193), + [anon_sym_shape] = ACTIONS(2193), + [anon_sym_tuple] = ACTIONS(2193), + [anon_sym_clone] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_print] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2193), + [anon_sym_include] = ACTIONS(2193), + [anon_sym_include_once] = ACTIONS(2193), + [anon_sym_require] = ACTIONS(2193), + [anon_sym_require_once] = ACTIONS(2193), + [anon_sym_BSLASH] = ACTIONS(2195), + [anon_sym_self] = ACTIONS(2193), + [anon_sym_parent] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_LT_LT_LT] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_echo] = ACTIONS(2193), + [anon_sym_unset] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_concurrent] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_foreach] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_using] = ACTIONS(2193), + [sym_float] = ACTIONS(2195), + [sym_integer] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_True] = ACTIONS(2193), + [anon_sym_TRUE] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_False] = ACTIONS(2193), + [anon_sym_FALSE] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [anon_sym_Null] = ACTIONS(2193), + [anon_sym_NULL] = ACTIONS(2193), + [sym_string] = ACTIONS(2195), + [anon_sym_AT] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_array] = ACTIONS(2193), + [anon_sym_varray] = ACTIONS(2193), + [anon_sym_darray] = ACTIONS(2193), + [anon_sym_vec] = ACTIONS(2193), + [anon_sym_dict] = ACTIONS(2193), + [anon_sym_keyset] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_list] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2195), + [sym_final_modifier] = ACTIONS(2193), + [sym_xhp_modifier] = ACTIONS(2193), + [sym_xhp_identifier] = ACTIONS(2193), + [sym_xhp_class_identifier] = ACTIONS(2195), [sym_comment] = ACTIONS(3), }, - [1536] = { - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [sym_variable] = ACTIONS(2223), - [sym_pipe_variable] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_newtype] = ACTIONS(2221), - [anon_sym_shape] = ACTIONS(2221), - [anon_sym_tuple] = ACTIONS(2221), - [anon_sym_clone] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_print] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_include] = ACTIONS(2221), - [anon_sym_include_once] = ACTIONS(2221), - [anon_sym_require] = ACTIONS(2221), - [anon_sym_require_once] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2223), - [anon_sym_self] = ACTIONS(2221), - [anon_sym_parent] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_LT_LT_LT] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_echo] = ACTIONS(2221), - [anon_sym_unset] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_concurrent] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_foreach] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [sym_float] = ACTIONS(2223), - [sym_integer] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_True] = ACTIONS(2221), - [anon_sym_TRUE] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_False] = ACTIONS(2221), - [anon_sym_FALSE] = ACTIONS(2221), - [anon_sym_null] = ACTIONS(2221), - [anon_sym_Null] = ACTIONS(2221), - [anon_sym_NULL] = ACTIONS(2221), - [sym_string] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_array] = ACTIONS(2221), - [anon_sym_varray] = ACTIONS(2221), - [anon_sym_darray] = ACTIONS(2221), - [anon_sym_vec] = ACTIONS(2221), - [anon_sym_dict] = ACTIONS(2221), - [anon_sym_keyset] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_list] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2223), - [sym_final_modifier] = ACTIONS(2221), - [sym_xhp_modifier] = ACTIONS(2221), - [sym_xhp_identifier] = ACTIONS(2221), - [sym_xhp_class_identifier] = ACTIONS(2223), + [1523] = { + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2189), + [sym_variable] = ACTIONS(2191), + [sym_pipe_variable] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_newtype] = ACTIONS(2189), + [anon_sym_shape] = ACTIONS(2189), + [anon_sym_tuple] = ACTIONS(2189), + [anon_sym_clone] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_include] = ACTIONS(2189), + [anon_sym_include_once] = ACTIONS(2189), + [anon_sym_require] = ACTIONS(2189), + [anon_sym_require_once] = ACTIONS(2189), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_self] = ACTIONS(2189), + [anon_sym_parent] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_LT_LT_LT] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_echo] = ACTIONS(2189), + [anon_sym_unset] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_concurrent] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_foreach] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [sym_float] = ACTIONS(2191), + [sym_integer] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_True] = ACTIONS(2189), + [anon_sym_TRUE] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_False] = ACTIONS(2189), + [anon_sym_FALSE] = ACTIONS(2189), + [anon_sym_null] = ACTIONS(2189), + [anon_sym_Null] = ACTIONS(2189), + [anon_sym_NULL] = ACTIONS(2189), + [sym_string] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_array] = ACTIONS(2189), + [anon_sym_varray] = ACTIONS(2189), + [anon_sym_darray] = ACTIONS(2189), + [anon_sym_vec] = ACTIONS(2189), + [anon_sym_dict] = ACTIONS(2189), + [anon_sym_keyset] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_list] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2191), + [sym_final_modifier] = ACTIONS(2189), + [sym_xhp_modifier] = ACTIONS(2189), + [sym_xhp_identifier] = ACTIONS(2189), + [sym_xhp_class_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(3), }, - [1537] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2609), - [sym_variable] = ACTIONS(2611), - [sym_pipe_variable] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_newtype] = ACTIONS(2609), - [anon_sym_shape] = ACTIONS(2609), - [anon_sym_tuple] = ACTIONS(2609), - [anon_sym_clone] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_print] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_include] = ACTIONS(2609), - [anon_sym_include_once] = ACTIONS(2609), - [anon_sym_require] = ACTIONS(2609), - [anon_sym_require_once] = ACTIONS(2609), - [anon_sym_BSLASH] = ACTIONS(2611), - [anon_sym_self] = ACTIONS(2609), - [anon_sym_parent] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2609), - [anon_sym_LT_LT_LT] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_echo] = ACTIONS(2609), - [anon_sym_unset] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_concurrent] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_foreach] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [sym_float] = ACTIONS(2611), - [sym_integer] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_True] = ACTIONS(2609), - [anon_sym_TRUE] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_False] = ACTIONS(2609), - [anon_sym_FALSE] = ACTIONS(2609), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_Null] = ACTIONS(2609), - [anon_sym_NULL] = ACTIONS(2609), - [sym_string] = ACTIONS(2611), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_array] = ACTIONS(2609), - [anon_sym_varray] = ACTIONS(2609), - [anon_sym_darray] = ACTIONS(2609), - [anon_sym_vec] = ACTIONS(2609), - [anon_sym_dict] = ACTIONS(2609), - [anon_sym_keyset] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_list] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_trait] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2611), - [sym_final_modifier] = ACTIONS(2609), - [sym_xhp_modifier] = ACTIONS(2609), - [sym_xhp_identifier] = ACTIONS(2609), - [sym_xhp_class_identifier] = ACTIONS(2611), + [1524] = { + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2185), + [sym_variable] = ACTIONS(2187), + [sym_pipe_variable] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_newtype] = ACTIONS(2185), + [anon_sym_shape] = ACTIONS(2185), + [anon_sym_tuple] = ACTIONS(2185), + [anon_sym_clone] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_print] = ACTIONS(2185), + [anon_sym_namespace] = ACTIONS(2185), + [anon_sym_include] = ACTIONS(2185), + [anon_sym_include_once] = ACTIONS(2185), + [anon_sym_require] = ACTIONS(2185), + [anon_sym_require_once] = ACTIONS(2185), + [anon_sym_BSLASH] = ACTIONS(2187), + [anon_sym_self] = ACTIONS(2185), + [anon_sym_parent] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_LT_LT_LT] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_throw] = ACTIONS(2185), + [anon_sym_echo] = ACTIONS(2185), + [anon_sym_unset] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_concurrent] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_foreach] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_using] = ACTIONS(2185), + [sym_float] = ACTIONS(2187), + [sym_integer] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_True] = ACTIONS(2185), + [anon_sym_TRUE] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_False] = ACTIONS(2185), + [anon_sym_FALSE] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_Null] = ACTIONS(2185), + [anon_sym_NULL] = ACTIONS(2185), + [sym_string] = ACTIONS(2187), + [anon_sym_AT] = ACTIONS(2187), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_array] = ACTIONS(2185), + [anon_sym_varray] = ACTIONS(2185), + [anon_sym_darray] = ACTIONS(2185), + [anon_sym_vec] = ACTIONS(2185), + [anon_sym_dict] = ACTIONS(2185), + [anon_sym_keyset] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_list] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_class] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_abstract] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2187), + [sym_final_modifier] = ACTIONS(2185), + [sym_xhp_modifier] = ACTIONS(2185), + [sym_xhp_identifier] = ACTIONS(2185), + [sym_xhp_class_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(3), }, - [1538] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2253), - [sym_variable] = ACTIONS(2255), - [sym_pipe_variable] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_newtype] = ACTIONS(2253), - [anon_sym_shape] = ACTIONS(2253), - [anon_sym_tuple] = ACTIONS(2253), - [anon_sym_clone] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_print] = ACTIONS(2253), - [anon_sym_namespace] = ACTIONS(2253), - [anon_sym_include] = ACTIONS(2253), - [anon_sym_include_once] = ACTIONS(2253), - [anon_sym_require] = ACTIONS(2253), - [anon_sym_require_once] = ACTIONS(2253), - [anon_sym_BSLASH] = ACTIONS(2255), - [anon_sym_self] = ACTIONS(2253), - [anon_sym_parent] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_LT_LT_LT] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_throw] = ACTIONS(2253), - [anon_sym_echo] = ACTIONS(2253), - [anon_sym_unset] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_concurrent] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_function] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_switch] = ACTIONS(2253), - [anon_sym_foreach] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_using] = ACTIONS(2253), - [sym_float] = ACTIONS(2255), - [sym_integer] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_True] = ACTIONS(2253), - [anon_sym_TRUE] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_False] = ACTIONS(2253), - [anon_sym_FALSE] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [anon_sym_Null] = ACTIONS(2253), - [anon_sym_NULL] = ACTIONS(2253), - [sym_string] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_array] = ACTIONS(2253), - [anon_sym_varray] = ACTIONS(2253), - [anon_sym_darray] = ACTIONS(2253), - [anon_sym_vec] = ACTIONS(2253), - [anon_sym_dict] = ACTIONS(2253), - [anon_sym_keyset] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_abstract] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2255), - [sym_final_modifier] = ACTIONS(2253), - [sym_xhp_modifier] = ACTIONS(2253), - [sym_xhp_identifier] = ACTIONS(2253), - [sym_xhp_class_identifier] = ACTIONS(2255), + [1525] = { + [ts_builtin_sym_end] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2473), + [sym_variable] = ACTIONS(2475), + [sym_pipe_variable] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_newtype] = ACTIONS(2473), + [anon_sym_shape] = ACTIONS(2473), + [anon_sym_tuple] = ACTIONS(2473), + [anon_sym_clone] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_include] = ACTIONS(2473), + [anon_sym_include_once] = ACTIONS(2473), + [anon_sym_require] = ACTIONS(2473), + [anon_sym_require_once] = ACTIONS(2473), + [anon_sym_BSLASH] = ACTIONS(2475), + [anon_sym_self] = ACTIONS(2473), + [anon_sym_parent] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_LT_LT_LT] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_throw] = ACTIONS(2473), + [anon_sym_echo] = ACTIONS(2473), + [anon_sym_unset] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_concurrent] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_switch] = ACTIONS(2473), + [anon_sym_foreach] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_using] = ACTIONS(2473), + [sym_float] = ACTIONS(2475), + [sym_integer] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_True] = ACTIONS(2473), + [anon_sym_TRUE] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_False] = ACTIONS(2473), + [anon_sym_FALSE] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2473), + [anon_sym_Null] = ACTIONS(2473), + [anon_sym_NULL] = ACTIONS(2473), + [sym_string] = ACTIONS(2475), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_array] = ACTIONS(2473), + [anon_sym_varray] = ACTIONS(2473), + [anon_sym_darray] = ACTIONS(2473), + [anon_sym_vec] = ACTIONS(2473), + [anon_sym_dict] = ACTIONS(2473), + [anon_sym_keyset] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_interface] = ACTIONS(2473), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_abstract] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2475), + [sym_final_modifier] = ACTIONS(2473), + [sym_xhp_modifier] = ACTIONS(2473), + [sym_xhp_identifier] = ACTIONS(2473), + [sym_xhp_class_identifier] = ACTIONS(2475), [sym_comment] = ACTIONS(3), }, - [1539] = { - [ts_builtin_sym_end] = ACTIONS(2403), - [sym_identifier] = ACTIONS(2401), - [sym_variable] = ACTIONS(2403), - [sym_pipe_variable] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_newtype] = ACTIONS(2401), - [anon_sym_shape] = ACTIONS(2401), - [anon_sym_tuple] = ACTIONS(2401), - [anon_sym_clone] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_print] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), - [anon_sym_LT_LT_LT] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_echo] = ACTIONS(2401), - [anon_sym_unset] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_concurrent] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_foreach] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [sym_float] = ACTIONS(2403), - [sym_integer] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_True] = ACTIONS(2401), - [anon_sym_TRUE] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [anon_sym_False] = ACTIONS(2401), - [anon_sym_FALSE] = ACTIONS(2401), - [anon_sym_null] = ACTIONS(2401), - [anon_sym_Null] = ACTIONS(2401), - [anon_sym_NULL] = ACTIONS(2401), - [sym_string] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_array] = ACTIONS(2401), - [anon_sym_varray] = ACTIONS(2401), - [anon_sym_darray] = ACTIONS(2401), - [anon_sym_vec] = ACTIONS(2401), - [anon_sym_dict] = ACTIONS(2401), - [anon_sym_keyset] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2403), - [sym_final_modifier] = ACTIONS(2401), - [sym_xhp_modifier] = ACTIONS(2401), - [sym_xhp_identifier] = ACTIONS(2401), - [sym_xhp_class_identifier] = ACTIONS(2403), + [1526] = { + [sym_identifier] = ACTIONS(2369), + [sym_variable] = ACTIONS(2371), + [sym_pipe_variable] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_newtype] = ACTIONS(2369), + [anon_sym_shape] = ACTIONS(2369), + [anon_sym_tuple] = ACTIONS(2369), + [anon_sym_clone] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_print] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_include] = ACTIONS(2369), + [anon_sym_include_once] = ACTIONS(2369), + [anon_sym_require] = ACTIONS(2369), + [anon_sym_require_once] = ACTIONS(2369), + [anon_sym_BSLASH] = ACTIONS(2371), + [anon_sym_self] = ACTIONS(2369), + [anon_sym_parent] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_LT_LT] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_echo] = ACTIONS(2369), + [anon_sym_unset] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_concurrent] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_function] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_foreach] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [sym_float] = ACTIONS(2371), + [sym_integer] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_True] = ACTIONS(2369), + [anon_sym_TRUE] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_False] = ACTIONS(2369), + [anon_sym_FALSE] = ACTIONS(2369), + [anon_sym_null] = ACTIONS(2369), + [anon_sym_Null] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [sym_string] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_array] = ACTIONS(2369), + [anon_sym_varray] = ACTIONS(2369), + [anon_sym_darray] = ACTIONS(2369), + [anon_sym_vec] = ACTIONS(2369), + [anon_sym_dict] = ACTIONS(2369), + [anon_sym_keyset] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_list] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_interface] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_abstract] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2371), + [sym_final_modifier] = ACTIONS(2369), + [sym_xhp_modifier] = ACTIONS(2369), + [sym_xhp_identifier] = ACTIONS(2369), + [sym_xhp_class_identifier] = ACTIONS(2371), [sym_comment] = ACTIONS(3), }, - [1540] = { - [ts_builtin_sym_end] = ACTIONS(2471), - [sym_identifier] = ACTIONS(2469), - [sym_variable] = ACTIONS(2471), - [sym_pipe_variable] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_newtype] = ACTIONS(2469), - [anon_sym_shape] = ACTIONS(2469), - [anon_sym_tuple] = ACTIONS(2469), - [anon_sym_clone] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_print] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_echo] = ACTIONS(2469), - [anon_sym_unset] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_concurrent] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_function] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_foreach] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [sym_float] = ACTIONS(2471), - [sym_integer] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_True] = ACTIONS(2469), - [anon_sym_TRUE] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [anon_sym_False] = ACTIONS(2469), - [anon_sym_FALSE] = ACTIONS(2469), - [anon_sym_null] = ACTIONS(2469), - [anon_sym_Null] = ACTIONS(2469), - [anon_sym_NULL] = ACTIONS(2469), - [sym_string] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_array] = ACTIONS(2469), - [anon_sym_varray] = ACTIONS(2469), - [anon_sym_darray] = ACTIONS(2469), - [anon_sym_vec] = ACTIONS(2469), - [anon_sym_dict] = ACTIONS(2469), - [anon_sym_keyset] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_trait] = ACTIONS(2469), - [anon_sym_interface] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_abstract] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2471), - [sym_final_modifier] = ACTIONS(2469), - [sym_xhp_modifier] = ACTIONS(2469), - [sym_xhp_identifier] = ACTIONS(2469), - [sym_xhp_class_identifier] = ACTIONS(2471), + [1527] = { + [sym_identifier] = ACTIONS(2521), + [sym_variable] = ACTIONS(2523), + [sym_pipe_variable] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_newtype] = ACTIONS(2521), + [anon_sym_shape] = ACTIONS(2521), + [anon_sym_tuple] = ACTIONS(2521), + [anon_sym_clone] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_include] = ACTIONS(2521), + [anon_sym_include_once] = ACTIONS(2521), + [anon_sym_require] = ACTIONS(2521), + [anon_sym_require_once] = ACTIONS(2521), + [anon_sym_BSLASH] = ACTIONS(2523), + [anon_sym_self] = ACTIONS(2521), + [anon_sym_parent] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_LT_LT] = ACTIONS(2521), + [anon_sym_LT_LT_LT] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_echo] = ACTIONS(2521), + [anon_sym_unset] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_concurrent] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_function] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_foreach] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [sym_float] = ACTIONS(2523), + [sym_integer] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_True] = ACTIONS(2521), + [anon_sym_TRUE] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_False] = ACTIONS(2521), + [anon_sym_FALSE] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [anon_sym_Null] = ACTIONS(2521), + [anon_sym_NULL] = ACTIONS(2521), + [sym_string] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_array] = ACTIONS(2521), + [anon_sym_varray] = ACTIONS(2521), + [anon_sym_darray] = ACTIONS(2521), + [anon_sym_vec] = ACTIONS(2521), + [anon_sym_dict] = ACTIONS(2521), + [anon_sym_keyset] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_await] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_interface] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_abstract] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2523), + [sym_final_modifier] = ACTIONS(2521), + [sym_xhp_modifier] = ACTIONS(2521), + [sym_xhp_identifier] = ACTIONS(2521), + [sym_xhp_class_identifier] = ACTIONS(2523), [sym_comment] = ACTIONS(3), }, - [1541] = { - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_identifier] = ACTIONS(2453), - [sym_variable] = ACTIONS(2455), - [sym_pipe_variable] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_newtype] = ACTIONS(2453), - [anon_sym_shape] = ACTIONS(2453), - [anon_sym_tuple] = ACTIONS(2453), - [anon_sym_clone] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_LT_LT_LT] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_echo] = ACTIONS(2453), - [anon_sym_unset] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_concurrent] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_foreach] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [sym_float] = ACTIONS(2455), - [sym_integer] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_True] = ACTIONS(2453), - [anon_sym_TRUE] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_False] = ACTIONS(2453), - [anon_sym_FALSE] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [anon_sym_Null] = ACTIONS(2453), - [anon_sym_NULL] = ACTIONS(2453), - [sym_string] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_array] = ACTIONS(2453), - [anon_sym_varray] = ACTIONS(2453), - [anon_sym_darray] = ACTIONS(2453), - [anon_sym_vec] = ACTIONS(2453), - [anon_sym_dict] = ACTIONS(2453), - [anon_sym_keyset] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_trait] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [anon_sym_abstract] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2455), - [sym_final_modifier] = ACTIONS(2453), - [sym_xhp_modifier] = ACTIONS(2453), - [sym_xhp_identifier] = ACTIONS(2453), - [sym_xhp_class_identifier] = ACTIONS(2455), + [1528] = { + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2477), + [sym_variable] = ACTIONS(2479), + [sym_pipe_variable] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_newtype] = ACTIONS(2477), + [anon_sym_shape] = ACTIONS(2477), + [anon_sym_tuple] = ACTIONS(2477), + [anon_sym_clone] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_include] = ACTIONS(2477), + [anon_sym_include_once] = ACTIONS(2477), + [anon_sym_require] = ACTIONS(2477), + [anon_sym_require_once] = ACTIONS(2477), + [anon_sym_BSLASH] = ACTIONS(2479), + [anon_sym_self] = ACTIONS(2477), + [anon_sym_parent] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT_LT_LT] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_throw] = ACTIONS(2477), + [anon_sym_echo] = ACTIONS(2477), + [anon_sym_unset] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_concurrent] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_foreach] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_using] = ACTIONS(2477), + [sym_float] = ACTIONS(2479), + [sym_integer] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_True] = ACTIONS(2477), + [anon_sym_TRUE] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_False] = ACTIONS(2477), + [anon_sym_FALSE] = ACTIONS(2477), + [anon_sym_null] = ACTIONS(2477), + [anon_sym_Null] = ACTIONS(2477), + [anon_sym_NULL] = ACTIONS(2477), + [sym_string] = ACTIONS(2479), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_array] = ACTIONS(2477), + [anon_sym_varray] = ACTIONS(2477), + [anon_sym_darray] = ACTIONS(2477), + [anon_sym_vec] = ACTIONS(2477), + [anon_sym_dict] = ACTIONS(2477), + [anon_sym_keyset] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_interface] = ACTIONS(2477), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_abstract] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2479), + [sym_final_modifier] = ACTIONS(2477), + [sym_xhp_modifier] = ACTIONS(2477), + [sym_xhp_identifier] = ACTIONS(2477), + [sym_xhp_class_identifier] = ACTIONS(2479), [sym_comment] = ACTIONS(3), }, - [1542] = { - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2101), - [sym_variable] = ACTIONS(2103), - [sym_pipe_variable] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_newtype] = ACTIONS(2101), - [anon_sym_shape] = ACTIONS(2101), - [anon_sym_tuple] = ACTIONS(2101), - [anon_sym_clone] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_print] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_LT_LT_LT] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_echo] = ACTIONS(2101), - [anon_sym_unset] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_concurrent] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_function] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_switch] = ACTIONS(2101), - [anon_sym_foreach] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_using] = ACTIONS(2101), - [sym_float] = ACTIONS(2103), - [sym_integer] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_True] = ACTIONS(2101), - [anon_sym_TRUE] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_False] = ACTIONS(2101), - [anon_sym_FALSE] = ACTIONS(2101), - [anon_sym_null] = ACTIONS(2101), - [anon_sym_Null] = ACTIONS(2101), - [anon_sym_NULL] = ACTIONS(2101), - [sym_string] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_array] = ACTIONS(2101), - [anon_sym_varray] = ACTIONS(2101), - [anon_sym_darray] = ACTIONS(2101), - [anon_sym_vec] = ACTIONS(2101), - [anon_sym_dict] = ACTIONS(2101), - [anon_sym_keyset] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2103), - [sym_final_modifier] = ACTIONS(2101), - [sym_xhp_modifier] = ACTIONS(2101), - [sym_xhp_identifier] = ACTIONS(2101), - [sym_xhp_class_identifier] = ACTIONS(2103), + [1529] = { + [sym_identifier] = ACTIONS(2501), + [sym_variable] = ACTIONS(2503), + [sym_pipe_variable] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_newtype] = ACTIONS(2501), + [anon_sym_shape] = ACTIONS(2501), + [anon_sym_tuple] = ACTIONS(2501), + [anon_sym_clone] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_print] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_include] = ACTIONS(2501), + [anon_sym_include_once] = ACTIONS(2501), + [anon_sym_require] = ACTIONS(2501), + [anon_sym_require_once] = ACTIONS(2501), + [anon_sym_BSLASH] = ACTIONS(2503), + [anon_sym_self] = ACTIONS(2501), + [anon_sym_parent] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_LT_LT_LT] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_echo] = ACTIONS(2501), + [anon_sym_unset] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_concurrent] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_foreach] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_using] = ACTIONS(2501), + [sym_float] = ACTIONS(2503), + [sym_integer] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_True] = ACTIONS(2501), + [anon_sym_TRUE] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_False] = ACTIONS(2501), + [anon_sym_FALSE] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), + [anon_sym_Null] = ACTIONS(2501), + [anon_sym_NULL] = ACTIONS(2501), + [sym_string] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_array] = ACTIONS(2501), + [anon_sym_varray] = ACTIONS(2501), + [anon_sym_darray] = ACTIONS(2501), + [anon_sym_vec] = ACTIONS(2501), + [anon_sym_dict] = ACTIONS(2501), + [anon_sym_keyset] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2503), + [sym_final_modifier] = ACTIONS(2501), + [sym_xhp_modifier] = ACTIONS(2501), + [sym_xhp_identifier] = ACTIONS(2501), + [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [1543] = { - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_identifier] = ACTIONS(2601), - [sym_variable] = ACTIONS(2603), - [sym_pipe_variable] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_newtype] = ACTIONS(2601), - [anon_sym_shape] = ACTIONS(2601), - [anon_sym_tuple] = ACTIONS(2601), - [anon_sym_clone] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_print] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_include] = ACTIONS(2601), - [anon_sym_include_once] = ACTIONS(2601), - [anon_sym_require] = ACTIONS(2601), - [anon_sym_require_once] = ACTIONS(2601), - [anon_sym_BSLASH] = ACTIONS(2603), - [anon_sym_self] = ACTIONS(2601), - [anon_sym_parent] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_LT_LT] = ACTIONS(2601), - [anon_sym_LT_LT_LT] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_echo] = ACTIONS(2601), - [anon_sym_unset] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_concurrent] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_foreach] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [sym_float] = ACTIONS(2603), - [sym_integer] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_True] = ACTIONS(2601), - [anon_sym_TRUE] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [anon_sym_False] = ACTIONS(2601), - [anon_sym_FALSE] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_Null] = ACTIONS(2601), - [anon_sym_NULL] = ACTIONS(2601), - [sym_string] = ACTIONS(2603), - [anon_sym_AT] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_array] = ACTIONS(2601), - [anon_sym_varray] = ACTIONS(2601), - [anon_sym_darray] = ACTIONS(2601), - [anon_sym_vec] = ACTIONS(2601), - [anon_sym_dict] = ACTIONS(2601), - [anon_sym_keyset] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_list] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_trait] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2603), - [sym_final_modifier] = ACTIONS(2601), - [sym_xhp_modifier] = ACTIONS(2601), - [sym_xhp_identifier] = ACTIONS(2601), - [sym_xhp_class_identifier] = ACTIONS(2603), + [1530] = { + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, - [1544] = { - [sym_identifier] = ACTIONS(2461), - [sym_variable] = ACTIONS(2463), - [sym_pipe_variable] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_newtype] = ACTIONS(2461), - [anon_sym_shape] = ACTIONS(2461), - [anon_sym_tuple] = ACTIONS(2461), - [anon_sym_clone] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_LT_LT_LT] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_echo] = ACTIONS(2461), - [anon_sym_unset] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_concurrent] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_foreach] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [sym_float] = ACTIONS(2463), - [sym_integer] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_True] = ACTIONS(2461), - [anon_sym_TRUE] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_False] = ACTIONS(2461), - [anon_sym_FALSE] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2461), - [anon_sym_Null] = ACTIONS(2461), - [anon_sym_NULL] = ACTIONS(2461), - [sym_string] = ACTIONS(2463), - [anon_sym_AT] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_array] = ACTIONS(2461), - [anon_sym_varray] = ACTIONS(2461), - [anon_sym_darray] = ACTIONS(2461), - [anon_sym_vec] = ACTIONS(2461), - [anon_sym_dict] = ACTIONS(2461), - [anon_sym_keyset] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_trait] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(2463), - [sym_final_modifier] = ACTIONS(2461), - [sym_xhp_modifier] = ACTIONS(2461), - [sym_xhp_identifier] = ACTIONS(2461), - [sym_xhp_class_identifier] = ACTIONS(2463), + [1531] = { + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2593), + [sym_variable] = ACTIONS(2595), + [sym_pipe_variable] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_newtype] = ACTIONS(2593), + [anon_sym_shape] = ACTIONS(2593), + [anon_sym_tuple] = ACTIONS(2593), + [anon_sym_clone] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_include] = ACTIONS(2593), + [anon_sym_include_once] = ACTIONS(2593), + [anon_sym_require] = ACTIONS(2593), + [anon_sym_require_once] = ACTIONS(2593), + [anon_sym_BSLASH] = ACTIONS(2595), + [anon_sym_self] = ACTIONS(2593), + [anon_sym_parent] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_LT_LT] = ACTIONS(2593), + [anon_sym_LT_LT_LT] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_echo] = ACTIONS(2593), + [anon_sym_unset] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_concurrent] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_function] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_foreach] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [sym_float] = ACTIONS(2595), + [sym_integer] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_True] = ACTIONS(2593), + [anon_sym_TRUE] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_False] = ACTIONS(2593), + [anon_sym_FALSE] = ACTIONS(2593), + [anon_sym_null] = ACTIONS(2593), + [anon_sym_Null] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [sym_string] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_array] = ACTIONS(2593), + [anon_sym_varray] = ACTIONS(2593), + [anon_sym_darray] = ACTIONS(2593), + [anon_sym_vec] = ACTIONS(2593), + [anon_sym_dict] = ACTIONS(2593), + [anon_sym_keyset] = ACTIONS(2593), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_list] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_await] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_interface] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(2595), + [sym_final_modifier] = ACTIONS(2593), + [sym_xhp_modifier] = ACTIONS(2593), + [sym_xhp_identifier] = ACTIONS(2593), + [sym_xhp_class_identifier] = ACTIONS(2595), [sym_comment] = ACTIONS(3), }, - [1545] = { - [sym_identifier] = ACTIONS(2141), - [sym_variable] = ACTIONS(2143), - [sym_pipe_variable] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_newtype] = ACTIONS(2141), - [anon_sym_shape] = ACTIONS(2141), - [anon_sym_tuple] = ACTIONS(2141), - [anon_sym_clone] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_print] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_include] = ACTIONS(2141), - [anon_sym_include_once] = ACTIONS(2141), - [anon_sym_require] = ACTIONS(2141), - [anon_sym_require_once] = ACTIONS(2141), - [anon_sym_BSLASH] = ACTIONS(2143), - [anon_sym_self] = ACTIONS(2141), - [anon_sym_parent] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_LT_LT_LT] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_echo] = ACTIONS(2141), - [anon_sym_unset] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_concurrent] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_function] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_switch] = ACTIONS(2141), - [anon_sym_foreach] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_using] = ACTIONS(2141), - [sym_float] = ACTIONS(2143), - [sym_integer] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_True] = ACTIONS(2141), - [anon_sym_TRUE] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_False] = ACTIONS(2141), - [anon_sym_FALSE] = ACTIONS(2141), - [anon_sym_null] = ACTIONS(2141), - [anon_sym_Null] = ACTIONS(2141), - [anon_sym_NULL] = ACTIONS(2141), - [sym_string] = ACTIONS(2143), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_array] = ACTIONS(2141), - [anon_sym_varray] = ACTIONS(2141), - [anon_sym_darray] = ACTIONS(2141), - [anon_sym_vec] = ACTIONS(2141), - [anon_sym_dict] = ACTIONS(2141), - [anon_sym_keyset] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2141), - [anon_sym_class] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_abstract] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(2143), - [sym_final_modifier] = ACTIONS(2141), - [sym_xhp_modifier] = ACTIONS(2141), - [sym_xhp_identifier] = ACTIONS(2141), - [sym_xhp_class_identifier] = ACTIONS(2143), + [1532] = { + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2305), + [sym_variable] = ACTIONS(2307), + [sym_pipe_variable] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_newtype] = ACTIONS(2305), + [anon_sym_shape] = ACTIONS(2305), + [anon_sym_tuple] = ACTIONS(2305), + [anon_sym_clone] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_print] = ACTIONS(2305), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_include] = ACTIONS(2305), + [anon_sym_include_once] = ACTIONS(2305), + [anon_sym_require] = ACTIONS(2305), + [anon_sym_require_once] = ACTIONS(2305), + [anon_sym_BSLASH] = ACTIONS(2307), + [anon_sym_self] = ACTIONS(2305), + [anon_sym_parent] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_LT_LT] = ACTIONS(2305), + [anon_sym_LT_LT_LT] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_throw] = ACTIONS(2305), + [anon_sym_echo] = ACTIONS(2305), + [anon_sym_unset] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_concurrent] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_function] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_switch] = ACTIONS(2305), + [anon_sym_foreach] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_using] = ACTIONS(2305), + [sym_float] = ACTIONS(2307), + [sym_integer] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_True] = ACTIONS(2305), + [anon_sym_TRUE] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_False] = ACTIONS(2305), + [anon_sym_FALSE] = ACTIONS(2305), + [anon_sym_null] = ACTIONS(2305), + [anon_sym_Null] = ACTIONS(2305), + [anon_sym_NULL] = ACTIONS(2305), + [sym_string] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_array] = ACTIONS(2305), + [anon_sym_varray] = ACTIONS(2305), + [anon_sym_darray] = ACTIONS(2305), + [anon_sym_vec] = ACTIONS(2305), + [anon_sym_dict] = ACTIONS(2305), + [anon_sym_keyset] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_list] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_interface] = ACTIONS(2305), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_abstract] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2307), + [sym_final_modifier] = ACTIONS(2305), + [sym_xhp_modifier] = ACTIONS(2305), + [sym_xhp_identifier] = ACTIONS(2305), + [sym_xhp_class_identifier] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + }, + [1533] = { + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2309), + [sym_variable] = ACTIONS(2311), + [sym_pipe_variable] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_newtype] = ACTIONS(2309), + [anon_sym_shape] = ACTIONS(2309), + [anon_sym_tuple] = ACTIONS(2309), + [anon_sym_clone] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_print] = ACTIONS(2309), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_include] = ACTIONS(2309), + [anon_sym_include_once] = ACTIONS(2309), + [anon_sym_require] = ACTIONS(2309), + [anon_sym_require_once] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2311), + [anon_sym_self] = ACTIONS(2309), + [anon_sym_parent] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_LT_LT_LT] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_throw] = ACTIONS(2309), + [anon_sym_echo] = ACTIONS(2309), + [anon_sym_unset] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_concurrent] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_foreach] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_using] = ACTIONS(2309), + [sym_float] = ACTIONS(2311), + [sym_integer] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_True] = ACTIONS(2309), + [anon_sym_TRUE] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_False] = ACTIONS(2309), + [anon_sym_FALSE] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [anon_sym_Null] = ACTIONS(2309), + [anon_sym_NULL] = ACTIONS(2309), + [sym_string] = ACTIONS(2311), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_array] = ACTIONS(2309), + [anon_sym_varray] = ACTIONS(2309), + [anon_sym_darray] = ACTIONS(2309), + [anon_sym_vec] = ACTIONS(2309), + [anon_sym_dict] = ACTIONS(2309), + [anon_sym_keyset] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(2311), + [anon_sym_DASH_DASH] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_interface] = ACTIONS(2309), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_abstract] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2311), + [sym_final_modifier] = ACTIONS(2309), + [sym_xhp_modifier] = ACTIONS(2309), + [sym_xhp_identifier] = ACTIONS(2309), + [sym_xhp_class_identifier] = ACTIONS(2311), [sym_comment] = ACTIONS(3), }, - [1546] = { - [sym_identifier] = ACTIONS(2325), - [sym_variable] = ACTIONS(2327), - [sym_pipe_variable] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_newtype] = ACTIONS(2325), - [anon_sym_shape] = ACTIONS(2325), - [anon_sym_tuple] = ACTIONS(2325), - [anon_sym_clone] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_print] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2325), - [anon_sym_include] = ACTIONS(2325), - [anon_sym_include_once] = ACTIONS(2325), - [anon_sym_require] = ACTIONS(2325), - [anon_sym_require_once] = ACTIONS(2325), - [anon_sym_BSLASH] = ACTIONS(2327), - [anon_sym_self] = ACTIONS(2325), - [anon_sym_parent] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_LT_LT_LT] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_throw] = ACTIONS(2325), - [anon_sym_echo] = ACTIONS(2325), - [anon_sym_unset] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_concurrent] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_function] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_switch] = ACTIONS(2325), - [anon_sym_foreach] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_do] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_using] = ACTIONS(2325), - [sym_float] = ACTIONS(2327), - [sym_integer] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_True] = ACTIONS(2325), - [anon_sym_TRUE] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [anon_sym_False] = ACTIONS(2325), - [anon_sym_FALSE] = ACTIONS(2325), - [anon_sym_null] = ACTIONS(2325), - [anon_sym_Null] = ACTIONS(2325), - [anon_sym_NULL] = ACTIONS(2325), - [sym_string] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_array] = ACTIONS(2325), - [anon_sym_varray] = ACTIONS(2325), - [anon_sym_darray] = ACTIONS(2325), - [anon_sym_vec] = ACTIONS(2325), - [anon_sym_dict] = ACTIONS(2325), - [anon_sym_keyset] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_list] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2327), - [anon_sym_DASH_DASH] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_interface] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_abstract] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(2327), - [sym_final_modifier] = ACTIONS(2325), - [sym_xhp_modifier] = ACTIONS(2325), - [sym_xhp_identifier] = ACTIONS(2325), - [sym_xhp_class_identifier] = ACTIONS(2327), + [1534] = { + [sym_identifier] = ACTIONS(2153), + [sym_variable] = ACTIONS(2155), + [sym_pipe_variable] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_newtype] = ACTIONS(2153), + [anon_sym_shape] = ACTIONS(2153), + [anon_sym_tuple] = ACTIONS(2153), + [anon_sym_clone] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_print] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2153), + [anon_sym_include] = ACTIONS(2153), + [anon_sym_include_once] = ACTIONS(2153), + [anon_sym_require] = ACTIONS(2153), + [anon_sym_require_once] = ACTIONS(2153), + [anon_sym_BSLASH] = ACTIONS(2155), + [anon_sym_self] = ACTIONS(2153), + [anon_sym_parent] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_LT_LT_LT] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_throw] = ACTIONS(2153), + [anon_sym_echo] = ACTIONS(2153), + [anon_sym_unset] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_concurrent] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_function] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_switch] = ACTIONS(2153), + [anon_sym_foreach] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_do] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_using] = ACTIONS(2153), + [sym_float] = ACTIONS(2155), + [sym_integer] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_True] = ACTIONS(2153), + [anon_sym_TRUE] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_False] = ACTIONS(2153), + [anon_sym_FALSE] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(2153), + [anon_sym_Null] = ACTIONS(2153), + [anon_sym_NULL] = ACTIONS(2153), + [sym_string] = ACTIONS(2155), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_array] = ACTIONS(2153), + [anon_sym_varray] = ACTIONS(2153), + [anon_sym_darray] = ACTIONS(2153), + [anon_sym_vec] = ACTIONS(2153), + [anon_sym_dict] = ACTIONS(2153), + [anon_sym_keyset] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_list] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2153), + [anon_sym_class] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_abstract] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2155), + [sym_final_modifier] = ACTIONS(2153), + [sym_xhp_modifier] = ACTIONS(2153), + [sym_xhp_identifier] = ACTIONS(2153), + [sym_xhp_class_identifier] = ACTIONS(2155), [sym_comment] = ACTIONS(3), }, - [1547] = { + [1535] = { [ts_builtin_sym_end] = ACTIONS(2591), [sym_identifier] = ACTIONS(2589), [sym_variable] = ACTIONS(2591), @@ -178733,523 +171275,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2591), [sym_comment] = ACTIONS(3), }, - [1548] = { - [sym_identifier] = ACTIONS(2349), - [sym_variable] = ACTIONS(2351), - [sym_pipe_variable] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_newtype] = ACTIONS(2349), - [anon_sym_shape] = ACTIONS(2349), - [anon_sym_tuple] = ACTIONS(2349), - [anon_sym_clone] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_print] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_include] = ACTIONS(2349), - [anon_sym_include_once] = ACTIONS(2349), - [anon_sym_require] = ACTIONS(2349), - [anon_sym_require_once] = ACTIONS(2349), - [anon_sym_BSLASH] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2349), - [anon_sym_parent] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_LT_LT_LT] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_echo] = ACTIONS(2349), - [anon_sym_unset] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_concurrent] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_foreach] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_using] = ACTIONS(2349), - [sym_float] = ACTIONS(2351), - [sym_integer] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_True] = ACTIONS(2349), - [anon_sym_TRUE] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_False] = ACTIONS(2349), - [anon_sym_FALSE] = ACTIONS(2349), - [anon_sym_null] = ACTIONS(2349), - [anon_sym_Null] = ACTIONS(2349), - [anon_sym_NULL] = ACTIONS(2349), - [sym_string] = ACTIONS(2351), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_array] = ACTIONS(2349), - [anon_sym_varray] = ACTIONS(2349), - [anon_sym_darray] = ACTIONS(2349), - [anon_sym_vec] = ACTIONS(2349), - [anon_sym_dict] = ACTIONS(2349), - [anon_sym_keyset] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(2351), - [sym_final_modifier] = ACTIONS(2349), - [sym_xhp_modifier] = ACTIONS(2349), - [sym_xhp_identifier] = ACTIONS(2349), - [sym_xhp_class_identifier] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - }, - [1549] = { - [sym_identifier] = ACTIONS(2593), - [sym_variable] = ACTIONS(2595), - [sym_pipe_variable] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_newtype] = ACTIONS(2593), - [anon_sym_shape] = ACTIONS(2593), - [anon_sym_tuple] = ACTIONS(2593), - [anon_sym_clone] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_print] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_include] = ACTIONS(2593), - [anon_sym_include_once] = ACTIONS(2593), - [anon_sym_require] = ACTIONS(2593), - [anon_sym_require_once] = ACTIONS(2593), - [anon_sym_BSLASH] = ACTIONS(2595), - [anon_sym_self] = ACTIONS(2593), - [anon_sym_parent] = ACTIONS(2593), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_LT_LT] = ACTIONS(2593), - [anon_sym_LT_LT_LT] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_echo] = ACTIONS(2593), - [anon_sym_unset] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_concurrent] = ACTIONS(2593), - [anon_sym_use] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_foreach] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [sym_float] = ACTIONS(2595), - [sym_integer] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_True] = ACTIONS(2593), - [anon_sym_TRUE] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_False] = ACTIONS(2593), - [anon_sym_FALSE] = ACTIONS(2593), - [anon_sym_null] = ACTIONS(2593), - [anon_sym_Null] = ACTIONS(2593), - [anon_sym_NULL] = ACTIONS(2593), - [sym_string] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_array] = ACTIONS(2593), - [anon_sym_varray] = ACTIONS(2593), - [anon_sym_darray] = ACTIONS(2593), - [anon_sym_vec] = ACTIONS(2593), - [anon_sym_dict] = ACTIONS(2593), - [anon_sym_keyset] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_list] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_trait] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2595), - [sym_final_modifier] = ACTIONS(2593), - [sym_xhp_modifier] = ACTIONS(2593), - [sym_xhp_identifier] = ACTIONS(2593), - [sym_xhp_class_identifier] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - }, - [1550] = { - [ts_builtin_sym_end] = ACTIONS(2395), - [sym_identifier] = ACTIONS(2393), - [sym_variable] = ACTIONS(2395), - [sym_pipe_variable] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_newtype] = ACTIONS(2393), - [anon_sym_shape] = ACTIONS(2393), - [anon_sym_tuple] = ACTIONS(2393), - [anon_sym_clone] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_print] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_LT_LT_LT] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_echo] = ACTIONS(2393), - [anon_sym_unset] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_concurrent] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_foreach] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [sym_float] = ACTIONS(2395), - [sym_integer] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_True] = ACTIONS(2393), - [anon_sym_TRUE] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_False] = ACTIONS(2393), - [anon_sym_FALSE] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2393), - [anon_sym_Null] = ACTIONS(2393), - [anon_sym_NULL] = ACTIONS(2393), - [sym_string] = ACTIONS(2395), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_array] = ACTIONS(2393), - [anon_sym_varray] = ACTIONS(2393), - [anon_sym_darray] = ACTIONS(2393), - [anon_sym_vec] = ACTIONS(2393), - [anon_sym_dict] = ACTIONS(2393), - [anon_sym_keyset] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2395), - [sym_final_modifier] = ACTIONS(2393), - [sym_xhp_modifier] = ACTIONS(2393), - [sym_xhp_identifier] = ACTIONS(2393), - [sym_xhp_class_identifier] = ACTIONS(2395), + [1536] = { + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2585), + [sym_variable] = ACTIONS(2587), + [sym_pipe_variable] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_newtype] = ACTIONS(2585), + [anon_sym_shape] = ACTIONS(2585), + [anon_sym_tuple] = ACTIONS(2585), + [anon_sym_clone] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_include] = ACTIONS(2585), + [anon_sym_include_once] = ACTIONS(2585), + [anon_sym_require] = ACTIONS(2585), + [anon_sym_require_once] = ACTIONS(2585), + [anon_sym_BSLASH] = ACTIONS(2587), + [anon_sym_self] = ACTIONS(2585), + [anon_sym_parent] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_LT_LT_LT] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_echo] = ACTIONS(2585), + [anon_sym_unset] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_concurrent] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_foreach] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_using] = ACTIONS(2585), + [sym_float] = ACTIONS(2587), + [sym_integer] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_True] = ACTIONS(2585), + [anon_sym_TRUE] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_False] = ACTIONS(2585), + [anon_sym_FALSE] = ACTIONS(2585), + [anon_sym_null] = ACTIONS(2585), + [anon_sym_Null] = ACTIONS(2585), + [anon_sym_NULL] = ACTIONS(2585), + [sym_string] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_array] = ACTIONS(2585), + [anon_sym_varray] = ACTIONS(2585), + [anon_sym_darray] = ACTIONS(2585), + [anon_sym_vec] = ACTIONS(2585), + [anon_sym_dict] = ACTIONS(2585), + [anon_sym_keyset] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_list] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_abstract] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2587), + [sym_final_modifier] = ACTIONS(2585), + [sym_xhp_modifier] = ACTIONS(2585), + [sym_xhp_identifier] = ACTIONS(2585), + [sym_xhp_class_identifier] = ACTIONS(2587), [sym_comment] = ACTIONS(3), }, - [1551] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1537] = { + [sym_identifier] = ACTIONS(2525), + [sym_variable] = ACTIONS(2527), + [sym_pipe_variable] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_newtype] = ACTIONS(2525), + [anon_sym_shape] = ACTIONS(2525), + [anon_sym_tuple] = ACTIONS(2525), + [anon_sym_clone] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_include] = ACTIONS(2525), + [anon_sym_include_once] = ACTIONS(2525), + [anon_sym_require] = ACTIONS(2525), + [anon_sym_require_once] = ACTIONS(2525), + [anon_sym_BSLASH] = ACTIONS(2527), + [anon_sym_self] = ACTIONS(2525), + [anon_sym_parent] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_LT_LT_LT] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_echo] = ACTIONS(2525), + [anon_sym_unset] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_concurrent] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_function] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_foreach] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [sym_float] = ACTIONS(2527), + [sym_integer] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_True] = ACTIONS(2525), + [anon_sym_TRUE] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_False] = ACTIONS(2525), + [anon_sym_FALSE] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2525), + [anon_sym_Null] = ACTIONS(2525), + [anon_sym_NULL] = ACTIONS(2525), + [sym_string] = ACTIONS(2527), + [anon_sym_AT] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_array] = ACTIONS(2525), + [anon_sym_varray] = ACTIONS(2525), + [anon_sym_darray] = ACTIONS(2525), + [anon_sym_vec] = ACTIONS(2525), + [anon_sym_dict] = ACTIONS(2525), + [anon_sym_keyset] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_await] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_interface] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2527), + [sym_final_modifier] = ACTIONS(2525), + [sym_xhp_modifier] = ACTIONS(2525), + [sym_xhp_identifier] = ACTIONS(2525), + [sym_xhp_class_identifier] = ACTIONS(2527), [sym_comment] = ACTIONS(3), }, - [1552] = { - [sym_identifier] = ACTIONS(2201), - [sym_variable] = ACTIONS(2203), - [sym_pipe_variable] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_newtype] = ACTIONS(2201), - [anon_sym_shape] = ACTIONS(2201), - [anon_sym_tuple] = ACTIONS(2201), - [anon_sym_clone] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_print] = ACTIONS(2201), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_LT_LT_LT] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_throw] = ACTIONS(2201), - [anon_sym_echo] = ACTIONS(2201), - [anon_sym_unset] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_concurrent] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_function] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_switch] = ACTIONS(2201), - [anon_sym_foreach] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_using] = ACTIONS(2201), - [sym_float] = ACTIONS(2203), - [sym_integer] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_True] = ACTIONS(2201), - [anon_sym_TRUE] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_False] = ACTIONS(2201), - [anon_sym_FALSE] = ACTIONS(2201), - [anon_sym_null] = ACTIONS(2201), - [anon_sym_Null] = ACTIONS(2201), - [anon_sym_NULL] = ACTIONS(2201), - [sym_string] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_array] = ACTIONS(2201), - [anon_sym_varray] = ACTIONS(2201), - [anon_sym_darray] = ACTIONS(2201), - [anon_sym_vec] = ACTIONS(2201), - [anon_sym_dict] = ACTIONS(2201), - [anon_sym_keyset] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_class] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2203), - [sym_final_modifier] = ACTIONS(2201), - [sym_xhp_modifier] = ACTIONS(2201), - [sym_xhp_identifier] = ACTIONS(2201), - [sym_xhp_class_identifier] = ACTIONS(2203), + [1538] = { + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2181), + [sym_variable] = ACTIONS(2183), + [sym_pipe_variable] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_newtype] = ACTIONS(2181), + [anon_sym_shape] = ACTIONS(2181), + [anon_sym_tuple] = ACTIONS(2181), + [anon_sym_clone] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(2181), + [anon_sym_namespace] = ACTIONS(2181), + [anon_sym_include] = ACTIONS(2181), + [anon_sym_include_once] = ACTIONS(2181), + [anon_sym_require] = ACTIONS(2181), + [anon_sym_require_once] = ACTIONS(2181), + [anon_sym_BSLASH] = ACTIONS(2183), + [anon_sym_self] = ACTIONS(2181), + [anon_sym_parent] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_LT_LT_LT] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_throw] = ACTIONS(2181), + [anon_sym_echo] = ACTIONS(2181), + [anon_sym_unset] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_concurrent] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_switch] = ACTIONS(2181), + [anon_sym_foreach] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_using] = ACTIONS(2181), + [sym_float] = ACTIONS(2183), + [sym_integer] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_True] = ACTIONS(2181), + [anon_sym_TRUE] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_False] = ACTIONS(2181), + [anon_sym_FALSE] = ACTIONS(2181), + [anon_sym_null] = ACTIONS(2181), + [anon_sym_Null] = ACTIONS(2181), + [anon_sym_NULL] = ACTIONS(2181), + [sym_string] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_array] = ACTIONS(2181), + [anon_sym_varray] = ACTIONS(2181), + [anon_sym_darray] = ACTIONS(2181), + [anon_sym_vec] = ACTIONS(2181), + [anon_sym_dict] = ACTIONS(2181), + [anon_sym_keyset] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_list] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_class] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_abstract] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2183), + [sym_final_modifier] = ACTIONS(2181), + [sym_xhp_modifier] = ACTIONS(2181), + [sym_xhp_identifier] = ACTIONS(2181), + [sym_xhp_class_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(3), }, - [1553] = { - [sym_identifier] = ACTIONS(2421), - [sym_variable] = ACTIONS(2423), - [sym_pipe_variable] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_newtype] = ACTIONS(2421), - [anon_sym_shape] = ACTIONS(2421), - [anon_sym_tuple] = ACTIONS(2421), - [anon_sym_clone] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LT_LT_LT] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_echo] = ACTIONS(2421), - [anon_sym_unset] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_concurrent] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_foreach] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [sym_float] = ACTIONS(2423), - [sym_integer] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_True] = ACTIONS(2421), - [anon_sym_TRUE] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [anon_sym_False] = ACTIONS(2421), - [anon_sym_FALSE] = ACTIONS(2421), - [anon_sym_null] = ACTIONS(2421), - [anon_sym_Null] = ACTIONS(2421), - [anon_sym_NULL] = ACTIONS(2421), - [sym_string] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_array] = ACTIONS(2421), - [anon_sym_varray] = ACTIONS(2421), - [anon_sym_darray] = ACTIONS(2421), - [anon_sym_vec] = ACTIONS(2421), - [anon_sym_dict] = ACTIONS(2421), - [anon_sym_keyset] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_interface] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_abstract] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2423), - [sym_final_modifier] = ACTIONS(2421), - [sym_xhp_modifier] = ACTIONS(2421), - [sym_xhp_identifier] = ACTIONS(2421), - [sym_xhp_class_identifier] = ACTIONS(2423), + [1539] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2581), + [sym_variable] = ACTIONS(2583), + [sym_pipe_variable] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_newtype] = ACTIONS(2581), + [anon_sym_shape] = ACTIONS(2581), + [anon_sym_tuple] = ACTIONS(2581), + [anon_sym_clone] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_include] = ACTIONS(2581), + [anon_sym_include_once] = ACTIONS(2581), + [anon_sym_require] = ACTIONS(2581), + [anon_sym_require_once] = ACTIONS(2581), + [anon_sym_BSLASH] = ACTIONS(2583), + [anon_sym_self] = ACTIONS(2581), + [anon_sym_parent] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_echo] = ACTIONS(2581), + [anon_sym_unset] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_concurrent] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_foreach] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [sym_float] = ACTIONS(2583), + [sym_integer] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_True] = ACTIONS(2581), + [anon_sym_TRUE] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_False] = ACTIONS(2581), + [anon_sym_FALSE] = ACTIONS(2581), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_Null] = ACTIONS(2581), + [anon_sym_NULL] = ACTIONS(2581), + [sym_string] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_array] = ACTIONS(2581), + [anon_sym_varray] = ACTIONS(2581), + [anon_sym_darray] = ACTIONS(2581), + [anon_sym_vec] = ACTIONS(2581), + [anon_sym_dict] = ACTIONS(2581), + [anon_sym_keyset] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_list] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(2583), + [sym_final_modifier] = ACTIONS(2581), + [sym_xhp_modifier] = ACTIONS(2581), + [sym_xhp_identifier] = ACTIONS(2581), + [sym_xhp_class_identifier] = ACTIONS(2583), [sym_comment] = ACTIONS(3), }, - [1554] = { + [1540] = { + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2577), + [sym_variable] = ACTIONS(2579), + [sym_pipe_variable] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_newtype] = ACTIONS(2577), + [anon_sym_shape] = ACTIONS(2577), + [anon_sym_tuple] = ACTIONS(2577), + [anon_sym_clone] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_include_once] = ACTIONS(2577), + [anon_sym_require] = ACTIONS(2577), + [anon_sym_require_once] = ACTIONS(2577), + [anon_sym_BSLASH] = ACTIONS(2579), + [anon_sym_self] = ACTIONS(2577), + [anon_sym_parent] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_echo] = ACTIONS(2577), + [anon_sym_unset] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_concurrent] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_foreach] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [sym_integer] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_True] = ACTIONS(2577), + [anon_sym_TRUE] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_False] = ACTIONS(2577), + [anon_sym_FALSE] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2577), + [anon_sym_Null] = ACTIONS(2577), + [anon_sym_NULL] = ACTIONS(2577), + [sym_string] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_array] = ACTIONS(2577), + [anon_sym_varray] = ACTIONS(2577), + [anon_sym_darray] = ACTIONS(2577), + [anon_sym_vec] = ACTIONS(2577), + [anon_sym_dict] = ACTIONS(2577), + [anon_sym_keyset] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_list] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2579), + [sym_final_modifier] = ACTIONS(2577), + [sym_xhp_modifier] = ACTIONS(2577), + [sym_xhp_identifier] = ACTIONS(2577), + [sym_xhp_class_identifier] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + }, + [1541] = { [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -179335,437 +171791,781 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [1555] = { - [sym_identifier] = ACTIONS(2413), - [sym_variable] = ACTIONS(2415), - [sym_pipe_variable] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_newtype] = ACTIONS(2413), - [anon_sym_shape] = ACTIONS(2413), - [anon_sym_tuple] = ACTIONS(2413), - [anon_sym_clone] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_print] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_LT_LT] = ACTIONS(2413), - [anon_sym_LT_LT_LT] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_echo] = ACTIONS(2413), - [anon_sym_unset] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_concurrent] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_foreach] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [sym_float] = ACTIONS(2415), - [sym_integer] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_True] = ACTIONS(2413), - [anon_sym_TRUE] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [anon_sym_False] = ACTIONS(2413), - [anon_sym_FALSE] = ACTIONS(2413), - [anon_sym_null] = ACTIONS(2413), - [anon_sym_Null] = ACTIONS(2413), - [anon_sym_NULL] = ACTIONS(2413), - [sym_string] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_array] = ACTIONS(2413), - [anon_sym_varray] = ACTIONS(2413), - [anon_sym_darray] = ACTIONS(2413), - [anon_sym_vec] = ACTIONS(2413), - [anon_sym_dict] = ACTIONS(2413), - [anon_sym_keyset] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_await] = ACTIONS(2413), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2413), - [anon_sym_trait] = ACTIONS(2413), - [anon_sym_interface] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_abstract] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2415), - [sym_final_modifier] = ACTIONS(2413), - [sym_xhp_modifier] = ACTIONS(2413), - [sym_xhp_identifier] = ACTIONS(2413), - [sym_xhp_class_identifier] = ACTIONS(2415), + [1542] = { + [sym_identifier] = ACTIONS(2533), + [sym_variable] = ACTIONS(2535), + [sym_pipe_variable] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_newtype] = ACTIONS(2533), + [anon_sym_shape] = ACTIONS(2533), + [anon_sym_tuple] = ACTIONS(2533), + [anon_sym_clone] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_include_once] = ACTIONS(2533), + [anon_sym_require] = ACTIONS(2533), + [anon_sym_require_once] = ACTIONS(2533), + [anon_sym_BSLASH] = ACTIONS(2535), + [anon_sym_self] = ACTIONS(2533), + [anon_sym_parent] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_LT_LT] = ACTIONS(2533), + [anon_sym_LT_LT_LT] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_echo] = ACTIONS(2533), + [anon_sym_unset] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_concurrent] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_foreach] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [sym_float] = ACTIONS(2535), + [sym_integer] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_True] = ACTIONS(2533), + [anon_sym_TRUE] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_False] = ACTIONS(2533), + [anon_sym_FALSE] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [anon_sym_Null] = ACTIONS(2533), + [anon_sym_NULL] = ACTIONS(2533), + [sym_string] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_array] = ACTIONS(2533), + [anon_sym_varray] = ACTIONS(2533), + [anon_sym_darray] = ACTIONS(2533), + [anon_sym_vec] = ACTIONS(2533), + [anon_sym_dict] = ACTIONS(2533), + [anon_sym_keyset] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_list] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_interface] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_abstract] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2535), + [sym_final_modifier] = ACTIONS(2533), + [sym_xhp_modifier] = ACTIONS(2533), + [sym_xhp_identifier] = ACTIONS(2533), + [sym_xhp_class_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(3), }, - [1556] = { - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_identifier] = ACTIONS(2473), - [sym_variable] = ACTIONS(2475), - [sym_pipe_variable] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_newtype] = ACTIONS(2473), - [anon_sym_shape] = ACTIONS(2473), - [anon_sym_tuple] = ACTIONS(2473), - [anon_sym_clone] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_print] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_LT_LT_LT] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_throw] = ACTIONS(2473), - [anon_sym_echo] = ACTIONS(2473), - [anon_sym_unset] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_concurrent] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_switch] = ACTIONS(2473), - [anon_sym_foreach] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_using] = ACTIONS(2473), - [sym_float] = ACTIONS(2475), - [sym_integer] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_True] = ACTIONS(2473), - [anon_sym_TRUE] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [anon_sym_False] = ACTIONS(2473), - [anon_sym_FALSE] = ACTIONS(2473), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_Null] = ACTIONS(2473), - [anon_sym_NULL] = ACTIONS(2473), - [sym_string] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_array] = ACTIONS(2473), - [anon_sym_varray] = ACTIONS(2473), - [anon_sym_darray] = ACTIONS(2473), - [anon_sym_vec] = ACTIONS(2473), - [anon_sym_dict] = ACTIONS(2473), - [anon_sym_keyset] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_trait] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2475), - [sym_final_modifier] = ACTIONS(2473), - [sym_xhp_modifier] = ACTIONS(2473), - [sym_xhp_identifier] = ACTIONS(2473), - [sym_xhp_class_identifier] = ACTIONS(2475), + [1543] = { + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2177), + [sym_variable] = ACTIONS(2179), + [sym_pipe_variable] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_newtype] = ACTIONS(2177), + [anon_sym_shape] = ACTIONS(2177), + [anon_sym_tuple] = ACTIONS(2177), + [anon_sym_clone] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2177), + [anon_sym_print] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2177), + [anon_sym_include] = ACTIONS(2177), + [anon_sym_include_once] = ACTIONS(2177), + [anon_sym_require] = ACTIONS(2177), + [anon_sym_require_once] = ACTIONS(2177), + [anon_sym_BSLASH] = ACTIONS(2179), + [anon_sym_self] = ACTIONS(2177), + [anon_sym_parent] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_LT_LT_LT] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_throw] = ACTIONS(2177), + [anon_sym_echo] = ACTIONS(2177), + [anon_sym_unset] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_concurrent] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_function] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_switch] = ACTIONS(2177), + [anon_sym_foreach] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_using] = ACTIONS(2177), + [sym_float] = ACTIONS(2179), + [sym_integer] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_True] = ACTIONS(2177), + [anon_sym_TRUE] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_False] = ACTIONS(2177), + [anon_sym_FALSE] = ACTIONS(2177), + [anon_sym_null] = ACTIONS(2177), + [anon_sym_Null] = ACTIONS(2177), + [anon_sym_NULL] = ACTIONS(2177), + [sym_string] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_array] = ACTIONS(2177), + [anon_sym_varray] = ACTIONS(2177), + [anon_sym_darray] = ACTIONS(2177), + [anon_sym_vec] = ACTIONS(2177), + [anon_sym_dict] = ACTIONS(2177), + [anon_sym_keyset] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_list] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_PLUS_PLUS] = ACTIONS(2179), + [anon_sym_DASH_DASH] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_interface] = ACTIONS(2177), + [anon_sym_class] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_abstract] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2179), + [sym_final_modifier] = ACTIONS(2177), + [sym_xhp_modifier] = ACTIONS(2177), + [sym_xhp_identifier] = ACTIONS(2177), + [sym_xhp_class_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(3), }, - [1557] = { - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2269), - [sym_variable] = ACTIONS(2271), - [sym_pipe_variable] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_newtype] = ACTIONS(2269), - [anon_sym_shape] = ACTIONS(2269), - [anon_sym_tuple] = ACTIONS(2269), - [anon_sym_clone] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_print] = ACTIONS(2269), - [anon_sym_namespace] = ACTIONS(2269), - [anon_sym_include] = ACTIONS(2269), - [anon_sym_include_once] = ACTIONS(2269), - [anon_sym_require] = ACTIONS(2269), - [anon_sym_require_once] = ACTIONS(2269), - [anon_sym_BSLASH] = ACTIONS(2271), - [anon_sym_self] = ACTIONS(2269), - [anon_sym_parent] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_LT_LT_LT] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_throw] = ACTIONS(2269), - [anon_sym_echo] = ACTIONS(2269), - [anon_sym_unset] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_concurrent] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_switch] = ACTIONS(2269), - [anon_sym_foreach] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_using] = ACTIONS(2269), - [sym_float] = ACTIONS(2271), - [sym_integer] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_True] = ACTIONS(2269), - [anon_sym_TRUE] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_False] = ACTIONS(2269), - [anon_sym_FALSE] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [anon_sym_Null] = ACTIONS(2269), - [anon_sym_NULL] = ACTIONS(2269), - [sym_string] = ACTIONS(2271), - [anon_sym_AT] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_array] = ACTIONS(2269), - [anon_sym_varray] = ACTIONS(2269), - [anon_sym_darray] = ACTIONS(2269), - [anon_sym_vec] = ACTIONS(2269), - [anon_sym_dict] = ACTIONS(2269), - [anon_sym_keyset] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_list] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2271), - [sym_final_modifier] = ACTIONS(2269), - [sym_xhp_modifier] = ACTIONS(2269), - [sym_xhp_identifier] = ACTIONS(2269), - [sym_xhp_class_identifier] = ACTIONS(2271), + [1544] = { + [ts_builtin_sym_end] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2173), + [sym_variable] = ACTIONS(2175), + [sym_pipe_variable] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_newtype] = ACTIONS(2173), + [anon_sym_shape] = ACTIONS(2173), + [anon_sym_tuple] = ACTIONS(2173), + [anon_sym_clone] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_print] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2173), + [anon_sym_include] = ACTIONS(2173), + [anon_sym_include_once] = ACTIONS(2173), + [anon_sym_require] = ACTIONS(2173), + [anon_sym_require_once] = ACTIONS(2173), + [anon_sym_BSLASH] = ACTIONS(2175), + [anon_sym_self] = ACTIONS(2173), + [anon_sym_parent] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_LT_LT_LT] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_throw] = ACTIONS(2173), + [anon_sym_echo] = ACTIONS(2173), + [anon_sym_unset] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_concurrent] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_function] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_switch] = ACTIONS(2173), + [anon_sym_foreach] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(2173), + [sym_float] = ACTIONS(2175), + [sym_integer] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_True] = ACTIONS(2173), + [anon_sym_TRUE] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_False] = ACTIONS(2173), + [anon_sym_FALSE] = ACTIONS(2173), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_Null] = ACTIONS(2173), + [anon_sym_NULL] = ACTIONS(2173), + [sym_string] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_array] = ACTIONS(2173), + [anon_sym_varray] = ACTIONS(2173), + [anon_sym_darray] = ACTIONS(2173), + [anon_sym_vec] = ACTIONS(2173), + [anon_sym_dict] = ACTIONS(2173), + [anon_sym_keyset] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_list] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2173), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_abstract] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2175), + [sym_final_modifier] = ACTIONS(2173), + [sym_xhp_modifier] = ACTIONS(2173), + [sym_xhp_identifier] = ACTIONS(2173), + [sym_xhp_class_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(3), }, - [1558] = { - [sym_identifier] = ACTIONS(2437), - [sym_variable] = ACTIONS(2439), - [sym_pipe_variable] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_newtype] = ACTIONS(2437), - [anon_sym_shape] = ACTIONS(2437), - [anon_sym_tuple] = ACTIONS(2437), - [anon_sym_clone] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_print] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), - [anon_sym_LT_LT_LT] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_echo] = ACTIONS(2437), - [anon_sym_unset] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_concurrent] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_foreach] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [sym_float] = ACTIONS(2439), - [sym_integer] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_True] = ACTIONS(2437), - [anon_sym_TRUE] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_False] = ACTIONS(2437), - [anon_sym_FALSE] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_Null] = ACTIONS(2437), - [anon_sym_NULL] = ACTIONS(2437), - [sym_string] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_array] = ACTIONS(2437), - [anon_sym_varray] = ACTIONS(2437), - [anon_sym_darray] = ACTIONS(2437), - [anon_sym_vec] = ACTIONS(2437), - [anon_sym_dict] = ACTIONS(2437), - [anon_sym_keyset] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_abstract] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2439), - [sym_final_modifier] = ACTIONS(2437), - [sym_xhp_modifier] = ACTIONS(2437), - [sym_xhp_identifier] = ACTIONS(2437), - [sym_xhp_class_identifier] = ACTIONS(2439), + [1545] = { + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2169), + [sym_variable] = ACTIONS(2171), + [sym_pipe_variable] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_newtype] = ACTIONS(2169), + [anon_sym_shape] = ACTIONS(2169), + [anon_sym_tuple] = ACTIONS(2169), + [anon_sym_clone] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_print] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2169), + [anon_sym_include] = ACTIONS(2169), + [anon_sym_include_once] = ACTIONS(2169), + [anon_sym_require] = ACTIONS(2169), + [anon_sym_require_once] = ACTIONS(2169), + [anon_sym_BSLASH] = ACTIONS(2171), + [anon_sym_self] = ACTIONS(2169), + [anon_sym_parent] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_LT_LT_LT] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_throw] = ACTIONS(2169), + [anon_sym_echo] = ACTIONS(2169), + [anon_sym_unset] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_concurrent] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_function] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_switch] = ACTIONS(2169), + [anon_sym_foreach] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_using] = ACTIONS(2169), + [sym_float] = ACTIONS(2171), + [sym_integer] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_True] = ACTIONS(2169), + [anon_sym_TRUE] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [anon_sym_False] = ACTIONS(2169), + [anon_sym_FALSE] = ACTIONS(2169), + [anon_sym_null] = ACTIONS(2169), + [anon_sym_Null] = ACTIONS(2169), + [anon_sym_NULL] = ACTIONS(2169), + [sym_string] = ACTIONS(2171), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_array] = ACTIONS(2169), + [anon_sym_varray] = ACTIONS(2169), + [anon_sym_darray] = ACTIONS(2169), + [anon_sym_vec] = ACTIONS(2169), + [anon_sym_dict] = ACTIONS(2169), + [anon_sym_keyset] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_list] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2169), + [anon_sym_class] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_abstract] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2171), + [sym_final_modifier] = ACTIONS(2169), + [sym_xhp_modifier] = ACTIONS(2169), + [sym_xhp_identifier] = ACTIONS(2169), + [sym_xhp_class_identifier] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + }, + [1546] = { + [ts_builtin_sym_end] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2165), + [sym_variable] = ACTIONS(2167), + [sym_pipe_variable] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_newtype] = ACTIONS(2165), + [anon_sym_shape] = ACTIONS(2165), + [anon_sym_tuple] = ACTIONS(2165), + [anon_sym_clone] = ACTIONS(2165), + [anon_sym_new] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_namespace] = ACTIONS(2165), + [anon_sym_include] = ACTIONS(2165), + [anon_sym_include_once] = ACTIONS(2165), + [anon_sym_require] = ACTIONS(2165), + [anon_sym_require_once] = ACTIONS(2165), + [anon_sym_BSLASH] = ACTIONS(2167), + [anon_sym_self] = ACTIONS(2165), + [anon_sym_parent] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(2165), + [anon_sym_LT_LT_LT] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_throw] = ACTIONS(2165), + [anon_sym_echo] = ACTIONS(2165), + [anon_sym_unset] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_concurrent] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_function] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_switch] = ACTIONS(2165), + [anon_sym_foreach] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_using] = ACTIONS(2165), + [sym_float] = ACTIONS(2167), + [sym_integer] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_True] = ACTIONS(2165), + [anon_sym_TRUE] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_False] = ACTIONS(2165), + [anon_sym_FALSE] = ACTIONS(2165), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_Null] = ACTIONS(2165), + [anon_sym_NULL] = ACTIONS(2165), + [sym_string] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_array] = ACTIONS(2165), + [anon_sym_varray] = ACTIONS(2165), + [anon_sym_darray] = ACTIONS(2165), + [anon_sym_vec] = ACTIONS(2165), + [anon_sym_dict] = ACTIONS(2165), + [anon_sym_keyset] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_list] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_interface] = ACTIONS(2165), + [anon_sym_class] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2167), + [sym_final_modifier] = ACTIONS(2165), + [sym_xhp_modifier] = ACTIONS(2165), + [sym_xhp_identifier] = ACTIONS(2165), + [sym_xhp_class_identifier] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + }, + [1547] = { + [ts_builtin_sym_end] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2393), + [sym_variable] = ACTIONS(2395), + [sym_pipe_variable] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_newtype] = ACTIONS(2393), + [anon_sym_shape] = ACTIONS(2393), + [anon_sym_tuple] = ACTIONS(2393), + [anon_sym_clone] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_print] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_include] = ACTIONS(2393), + [anon_sym_include_once] = ACTIONS(2393), + [anon_sym_require] = ACTIONS(2393), + [anon_sym_require_once] = ACTIONS(2393), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_self] = ACTIONS(2393), + [anon_sym_parent] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(2393), + [anon_sym_LT_LT_LT] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_throw] = ACTIONS(2393), + [anon_sym_echo] = ACTIONS(2393), + [anon_sym_unset] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_concurrent] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_foreach] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_using] = ACTIONS(2393), + [sym_float] = ACTIONS(2395), + [sym_integer] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_True] = ACTIONS(2393), + [anon_sym_TRUE] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_False] = ACTIONS(2393), + [anon_sym_FALSE] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2393), + [anon_sym_Null] = ACTIONS(2393), + [anon_sym_NULL] = ACTIONS(2393), + [sym_string] = ACTIONS(2395), + [anon_sym_AT] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_array] = ACTIONS(2393), + [anon_sym_varray] = ACTIONS(2393), + [anon_sym_darray] = ACTIONS(2393), + [anon_sym_vec] = ACTIONS(2393), + [anon_sym_dict] = ACTIONS(2393), + [anon_sym_keyset] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_interface] = ACTIONS(2393), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_abstract] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2395), + [sym_final_modifier] = ACTIONS(2393), + [sym_xhp_modifier] = ACTIONS(2393), + [sym_xhp_identifier] = ACTIONS(2393), + [sym_xhp_class_identifier] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + }, + [1548] = { + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2161), + [sym_variable] = ACTIONS(2163), + [sym_pipe_variable] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_newtype] = ACTIONS(2161), + [anon_sym_shape] = ACTIONS(2161), + [anon_sym_tuple] = ACTIONS(2161), + [anon_sym_clone] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2161), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_include] = ACTIONS(2161), + [anon_sym_include_once] = ACTIONS(2161), + [anon_sym_require] = ACTIONS(2161), + [anon_sym_require_once] = ACTIONS(2161), + [anon_sym_BSLASH] = ACTIONS(2163), + [anon_sym_self] = ACTIONS(2161), + [anon_sym_parent] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_LT_LT_LT] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_throw] = ACTIONS(2161), + [anon_sym_echo] = ACTIONS(2161), + [anon_sym_unset] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_concurrent] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_function] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_switch] = ACTIONS(2161), + [anon_sym_foreach] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_do] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_using] = ACTIONS(2161), + [sym_float] = ACTIONS(2163), + [sym_integer] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_True] = ACTIONS(2161), + [anon_sym_TRUE] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_False] = ACTIONS(2161), + [anon_sym_FALSE] = ACTIONS(2161), + [anon_sym_null] = ACTIONS(2161), + [anon_sym_Null] = ACTIONS(2161), + [anon_sym_NULL] = ACTIONS(2161), + [sym_string] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_array] = ACTIONS(2161), + [anon_sym_varray] = ACTIONS(2161), + [anon_sym_darray] = ACTIONS(2161), + [anon_sym_vec] = ACTIONS(2161), + [anon_sym_dict] = ACTIONS(2161), + [anon_sym_keyset] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_list] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_interface] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_abstract] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2163), + [sym_final_modifier] = ACTIONS(2161), + [sym_xhp_modifier] = ACTIONS(2161), + [sym_xhp_identifier] = ACTIONS(2161), + [sym_xhp_class_identifier] = ACTIONS(2163), [sym_comment] = ACTIONS(3), }, - [1559] = { - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2505), - [sym_variable] = ACTIONS(2507), - [sym_pipe_variable] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_newtype] = ACTIONS(2505), - [anon_sym_shape] = ACTIONS(2505), - [anon_sym_tuple] = ACTIONS(2505), - [anon_sym_clone] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_print] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_LT_LT_LT] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_echo] = ACTIONS(2505), - [anon_sym_unset] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_concurrent] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_foreach] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [sym_float] = ACTIONS(2507), - [sym_integer] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_True] = ACTIONS(2505), - [anon_sym_TRUE] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_False] = ACTIONS(2505), - [anon_sym_FALSE] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [anon_sym_Null] = ACTIONS(2505), - [anon_sym_NULL] = ACTIONS(2505), - [sym_string] = ACTIONS(2507), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_array] = ACTIONS(2505), - [anon_sym_varray] = ACTIONS(2505), - [anon_sym_darray] = ACTIONS(2505), - [anon_sym_vec] = ACTIONS(2505), - [anon_sym_dict] = ACTIONS(2505), - [anon_sym_keyset] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_trait] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2507), - [sym_final_modifier] = ACTIONS(2505), - [sym_xhp_modifier] = ACTIONS(2505), - [sym_xhp_identifier] = ACTIONS(2505), - [sym_xhp_class_identifier] = ACTIONS(2507), + [1549] = { + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2389), + [sym_variable] = ACTIONS(2391), + [sym_pipe_variable] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_newtype] = ACTIONS(2389), + [anon_sym_shape] = ACTIONS(2389), + [anon_sym_tuple] = ACTIONS(2389), + [anon_sym_clone] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_print] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_include] = ACTIONS(2389), + [anon_sym_include_once] = ACTIONS(2389), + [anon_sym_require] = ACTIONS(2389), + [anon_sym_require_once] = ACTIONS(2389), + [anon_sym_BSLASH] = ACTIONS(2391), + [anon_sym_self] = ACTIONS(2389), + [anon_sym_parent] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(2389), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_echo] = ACTIONS(2389), + [anon_sym_unset] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_concurrent] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_foreach] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [sym_float] = ACTIONS(2391), + [sym_integer] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_True] = ACTIONS(2389), + [anon_sym_TRUE] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_False] = ACTIONS(2389), + [anon_sym_FALSE] = ACTIONS(2389), + [anon_sym_null] = ACTIONS(2389), + [anon_sym_Null] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [sym_string] = ACTIONS(2391), + [anon_sym_AT] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_array] = ACTIONS(2389), + [anon_sym_varray] = ACTIONS(2389), + [anon_sym_darray] = ACTIONS(2389), + [anon_sym_vec] = ACTIONS(2389), + [anon_sym_dict] = ACTIONS(2389), + [anon_sym_keyset] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_interface] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_abstract] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2391), + [sym_final_modifier] = ACTIONS(2389), + [sym_xhp_modifier] = ACTIONS(2389), + [sym_xhp_identifier] = ACTIONS(2389), + [sym_xhp_class_identifier] = ACTIONS(2391), [sym_comment] = ACTIONS(3), }, - [1560] = { + [1550] = { + [sym_identifier] = ACTIONS(2537), + [sym_variable] = ACTIONS(2539), + [sym_pipe_variable] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_newtype] = ACTIONS(2537), + [anon_sym_shape] = ACTIONS(2537), + [anon_sym_tuple] = ACTIONS(2537), + [anon_sym_clone] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_print] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_include] = ACTIONS(2537), + [anon_sym_include_once] = ACTIONS(2537), + [anon_sym_require] = ACTIONS(2537), + [anon_sym_require_once] = ACTIONS(2537), + [anon_sym_BSLASH] = ACTIONS(2539), + [anon_sym_self] = ACTIONS(2537), + [anon_sym_parent] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_LT_LT] = ACTIONS(2537), + [anon_sym_LT_LT_LT] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_echo] = ACTIONS(2537), + [anon_sym_unset] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_concurrent] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_function] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_foreach] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [sym_float] = ACTIONS(2539), + [sym_integer] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_True] = ACTIONS(2537), + [anon_sym_TRUE] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_False] = ACTIONS(2537), + [anon_sym_FALSE] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2537), + [anon_sym_Null] = ACTIONS(2537), + [anon_sym_NULL] = ACTIONS(2537), + [sym_string] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_array] = ACTIONS(2537), + [anon_sym_varray] = ACTIONS(2537), + [anon_sym_darray] = ACTIONS(2537), + [anon_sym_vec] = ACTIONS(2537), + [anon_sym_dict] = ACTIONS(2537), + [anon_sym_keyset] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_list] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_interface] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_abstract] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2539), + [sym_final_modifier] = ACTIONS(2537), + [sym_xhp_modifier] = ACTIONS(2537), + [sym_xhp_identifier] = ACTIONS(2537), + [sym_xhp_class_identifier] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + }, + [1551] = { [ts_builtin_sym_end] = ACTIONS(2483), [sym_identifier] = ACTIONS(2481), [sym_variable] = ACTIONS(2483), @@ -179851,1212 +172651,1727 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2483), [sym_comment] = ACTIONS(3), }, - [1561] = { - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2441), - [sym_variable] = ACTIONS(2443), - [sym_pipe_variable] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_newtype] = ACTIONS(2441), - [anon_sym_shape] = ACTIONS(2441), - [anon_sym_tuple] = ACTIONS(2441), - [anon_sym_clone] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_LT] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2441), - [anon_sym_echo] = ACTIONS(2441), - [anon_sym_unset] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_concurrent] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2441), - [anon_sym_foreach] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_using] = ACTIONS(2441), - [sym_float] = ACTIONS(2443), - [sym_integer] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_True] = ACTIONS(2441), - [anon_sym_TRUE] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [anon_sym_False] = ACTIONS(2441), - [anon_sym_FALSE] = ACTIONS(2441), - [anon_sym_null] = ACTIONS(2441), - [anon_sym_Null] = ACTIONS(2441), - [anon_sym_NULL] = ACTIONS(2441), - [sym_string] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_array] = ACTIONS(2441), - [anon_sym_varray] = ACTIONS(2441), - [anon_sym_darray] = ACTIONS(2441), - [anon_sym_vec] = ACTIONS(2441), - [anon_sym_dict] = ACTIONS(2441), - [anon_sym_keyset] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_interface] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_abstract] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2443), - [sym_final_modifier] = ACTIONS(2441), - [sym_xhp_modifier] = ACTIONS(2441), - [sym_xhp_identifier] = ACTIONS(2441), - [sym_xhp_class_identifier] = ACTIONS(2443), + [1552] = { + [ts_builtin_sym_end] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2157), + [sym_variable] = ACTIONS(2159), + [sym_pipe_variable] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_newtype] = ACTIONS(2157), + [anon_sym_shape] = ACTIONS(2157), + [anon_sym_tuple] = ACTIONS(2157), + [anon_sym_clone] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_print] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2157), + [anon_sym_include] = ACTIONS(2157), + [anon_sym_include_once] = ACTIONS(2157), + [anon_sym_require] = ACTIONS(2157), + [anon_sym_require_once] = ACTIONS(2157), + [anon_sym_BSLASH] = ACTIONS(2159), + [anon_sym_self] = ACTIONS(2157), + [anon_sym_parent] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_LT_LT] = ACTIONS(2157), + [anon_sym_LT_LT_LT] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_throw] = ACTIONS(2157), + [anon_sym_echo] = ACTIONS(2157), + [anon_sym_unset] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_concurrent] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_function] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(2157), + [anon_sym_foreach] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [sym_float] = ACTIONS(2159), + [sym_integer] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_True] = ACTIONS(2157), + [anon_sym_TRUE] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_False] = ACTIONS(2157), + [anon_sym_FALSE] = ACTIONS(2157), + [anon_sym_null] = ACTIONS(2157), + [anon_sym_Null] = ACTIONS(2157), + [anon_sym_NULL] = ACTIONS(2157), + [sym_string] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_array] = ACTIONS(2157), + [anon_sym_varray] = ACTIONS(2157), + [anon_sym_darray] = ACTIONS(2157), + [anon_sym_vec] = ACTIONS(2157), + [anon_sym_dict] = ACTIONS(2157), + [anon_sym_keyset] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_list] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_interface] = ACTIONS(2157), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_abstract] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2159), + [sym_final_modifier] = ACTIONS(2157), + [sym_xhp_modifier] = ACTIONS(2157), + [sym_xhp_identifier] = ACTIONS(2157), + [sym_xhp_class_identifier] = ACTIONS(2159), [sym_comment] = ACTIONS(3), }, - [1562] = { - [ts_builtin_sym_end] = ACTIONS(2567), - [sym_identifier] = ACTIONS(2565), - [sym_variable] = ACTIONS(2567), - [sym_pipe_variable] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_newtype] = ACTIONS(2565), - [anon_sym_shape] = ACTIONS(2565), - [anon_sym_tuple] = ACTIONS(2565), - [anon_sym_clone] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_print] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_include] = ACTIONS(2565), - [anon_sym_include_once] = ACTIONS(2565), - [anon_sym_require] = ACTIONS(2565), - [anon_sym_require_once] = ACTIONS(2565), - [anon_sym_BSLASH] = ACTIONS(2567), - [anon_sym_self] = ACTIONS(2565), - [anon_sym_parent] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_LT_LT] = ACTIONS(2565), - [anon_sym_LT_LT_LT] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_echo] = ACTIONS(2565), - [anon_sym_unset] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_concurrent] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_foreach] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [sym_float] = ACTIONS(2567), - [sym_integer] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_True] = ACTIONS(2565), - [anon_sym_TRUE] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [anon_sym_False] = ACTIONS(2565), - [anon_sym_FALSE] = ACTIONS(2565), - [anon_sym_null] = ACTIONS(2565), - [anon_sym_Null] = ACTIONS(2565), - [anon_sym_NULL] = ACTIONS(2565), - [sym_string] = ACTIONS(2567), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_array] = ACTIONS(2565), - [anon_sym_varray] = ACTIONS(2565), - [anon_sym_darray] = ACTIONS(2565), - [anon_sym_vec] = ACTIONS(2565), - [anon_sym_dict] = ACTIONS(2565), - [anon_sym_keyset] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2567), - [sym_final_modifier] = ACTIONS(2565), - [sym_xhp_modifier] = ACTIONS(2565), - [sym_xhp_identifier] = ACTIONS(2565), - [sym_xhp_class_identifier] = ACTIONS(2567), + [1553] = { + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2153), + [sym_variable] = ACTIONS(2155), + [sym_pipe_variable] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_newtype] = ACTIONS(2153), + [anon_sym_shape] = ACTIONS(2153), + [anon_sym_tuple] = ACTIONS(2153), + [anon_sym_clone] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_print] = ACTIONS(2153), + [anon_sym_namespace] = ACTIONS(2153), + [anon_sym_include] = ACTIONS(2153), + [anon_sym_include_once] = ACTIONS(2153), + [anon_sym_require] = ACTIONS(2153), + [anon_sym_require_once] = ACTIONS(2153), + [anon_sym_BSLASH] = ACTIONS(2155), + [anon_sym_self] = ACTIONS(2153), + [anon_sym_parent] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_LT_LT_LT] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_throw] = ACTIONS(2153), + [anon_sym_echo] = ACTIONS(2153), + [anon_sym_unset] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_concurrent] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_function] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_switch] = ACTIONS(2153), + [anon_sym_foreach] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_do] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_using] = ACTIONS(2153), + [sym_float] = ACTIONS(2155), + [sym_integer] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_True] = ACTIONS(2153), + [anon_sym_TRUE] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_False] = ACTIONS(2153), + [anon_sym_FALSE] = ACTIONS(2153), + [anon_sym_null] = ACTIONS(2153), + [anon_sym_Null] = ACTIONS(2153), + [anon_sym_NULL] = ACTIONS(2153), + [sym_string] = ACTIONS(2155), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_array] = ACTIONS(2153), + [anon_sym_varray] = ACTIONS(2153), + [anon_sym_darray] = ACTIONS(2153), + [anon_sym_vec] = ACTIONS(2153), + [anon_sym_dict] = ACTIONS(2153), + [anon_sym_keyset] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_list] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_interface] = ACTIONS(2153), + [anon_sym_class] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_abstract] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2155), + [sym_final_modifier] = ACTIONS(2153), + [sym_xhp_modifier] = ACTIONS(2153), + [sym_xhp_identifier] = ACTIONS(2153), + [sym_xhp_class_identifier] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + }, + [1554] = { + [sym_identifier] = ACTIONS(2545), + [sym_variable] = ACTIONS(2547), + [sym_pipe_variable] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_newtype] = ACTIONS(2545), + [anon_sym_shape] = ACTIONS(2545), + [anon_sym_tuple] = ACTIONS(2545), + [anon_sym_clone] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_print] = ACTIONS(2545), + [anon_sym_namespace] = ACTIONS(2545), + [anon_sym_include] = ACTIONS(2545), + [anon_sym_include_once] = ACTIONS(2545), + [anon_sym_require] = ACTIONS(2545), + [anon_sym_require_once] = ACTIONS(2545), + [anon_sym_BSLASH] = ACTIONS(2547), + [anon_sym_self] = ACTIONS(2545), + [anon_sym_parent] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(2545), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_throw] = ACTIONS(2545), + [anon_sym_echo] = ACTIONS(2545), + [anon_sym_unset] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_concurrent] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_function] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2545), + [anon_sym_foreach] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [anon_sym_using] = ACTIONS(2545), + [sym_float] = ACTIONS(2547), + [sym_integer] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_True] = ACTIONS(2545), + [anon_sym_TRUE] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_False] = ACTIONS(2545), + [anon_sym_FALSE] = ACTIONS(2545), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_Null] = ACTIONS(2545), + [anon_sym_NULL] = ACTIONS(2545), + [sym_string] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_array] = ACTIONS(2545), + [anon_sym_varray] = ACTIONS(2545), + [anon_sym_darray] = ACTIONS(2545), + [anon_sym_vec] = ACTIONS(2545), + [anon_sym_dict] = ACTIONS(2545), + [anon_sym_keyset] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_list] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_interface] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_abstract] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2547), + [sym_final_modifier] = ACTIONS(2545), + [sym_xhp_modifier] = ACTIONS(2545), + [sym_xhp_identifier] = ACTIONS(2545), + [sym_xhp_class_identifier] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + }, + [1555] = { + [ts_builtin_sym_end] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2149), + [sym_variable] = ACTIONS(2151), + [sym_pipe_variable] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_newtype] = ACTIONS(2149), + [anon_sym_shape] = ACTIONS(2149), + [anon_sym_tuple] = ACTIONS(2149), + [anon_sym_clone] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_print] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_include] = ACTIONS(2149), + [anon_sym_include_once] = ACTIONS(2149), + [anon_sym_require] = ACTIONS(2149), + [anon_sym_require_once] = ACTIONS(2149), + [anon_sym_BSLASH] = ACTIONS(2151), + [anon_sym_self] = ACTIONS(2149), + [anon_sym_parent] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_echo] = ACTIONS(2149), + [anon_sym_unset] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_concurrent] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_foreach] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [sym_float] = ACTIONS(2151), + [sym_integer] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_True] = ACTIONS(2149), + [anon_sym_TRUE] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_False] = ACTIONS(2149), + [anon_sym_FALSE] = ACTIONS(2149), + [anon_sym_null] = ACTIONS(2149), + [anon_sym_Null] = ACTIONS(2149), + [anon_sym_NULL] = ACTIONS(2149), + [sym_string] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_array] = ACTIONS(2149), + [anon_sym_varray] = ACTIONS(2149), + [anon_sym_darray] = ACTIONS(2149), + [anon_sym_vec] = ACTIONS(2149), + [anon_sym_dict] = ACTIONS(2149), + [anon_sym_keyset] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_list] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_abstract] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2151), + [sym_final_modifier] = ACTIONS(2149), + [sym_xhp_modifier] = ACTIONS(2149), + [sym_xhp_identifier] = ACTIONS(2149), + [sym_xhp_class_identifier] = ACTIONS(2151), + [sym_comment] = ACTIONS(3), + }, + [1556] = { + [sym_identifier] = ACTIONS(2549), + [sym_variable] = ACTIONS(2551), + [sym_pipe_variable] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_newtype] = ACTIONS(2549), + [anon_sym_shape] = ACTIONS(2549), + [anon_sym_tuple] = ACTIONS(2549), + [anon_sym_clone] = ACTIONS(2549), + [anon_sym_new] = ACTIONS(2549), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2549), + [anon_sym_include] = ACTIONS(2549), + [anon_sym_include_once] = ACTIONS(2549), + [anon_sym_require] = ACTIONS(2549), + [anon_sym_require_once] = ACTIONS(2549), + [anon_sym_BSLASH] = ACTIONS(2551), + [anon_sym_self] = ACTIONS(2549), + [anon_sym_parent] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2549), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_throw] = ACTIONS(2549), + [anon_sym_echo] = ACTIONS(2549), + [anon_sym_unset] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_concurrent] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_function] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_switch] = ACTIONS(2549), + [anon_sym_foreach] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_do] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [anon_sym_using] = ACTIONS(2549), + [sym_float] = ACTIONS(2551), + [sym_integer] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_True] = ACTIONS(2549), + [anon_sym_TRUE] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_False] = ACTIONS(2549), + [anon_sym_FALSE] = ACTIONS(2549), + [anon_sym_null] = ACTIONS(2549), + [anon_sym_Null] = ACTIONS(2549), + [anon_sym_NULL] = ACTIONS(2549), + [sym_string] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_array] = ACTIONS(2549), + [anon_sym_varray] = ACTIONS(2549), + [anon_sym_darray] = ACTIONS(2549), + [anon_sym_vec] = ACTIONS(2549), + [anon_sym_dict] = ACTIONS(2549), + [anon_sym_keyset] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_list] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_await] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_interface] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_abstract] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2551), + [sym_final_modifier] = ACTIONS(2549), + [sym_xhp_modifier] = ACTIONS(2549), + [sym_xhp_identifier] = ACTIONS(2549), + [sym_xhp_class_identifier] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + }, + [1557] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2485), + [sym_variable] = ACTIONS(2487), + [sym_pipe_variable] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_newtype] = ACTIONS(2485), + [anon_sym_shape] = ACTIONS(2485), + [anon_sym_tuple] = ACTIONS(2485), + [anon_sym_clone] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_include] = ACTIONS(2485), + [anon_sym_include_once] = ACTIONS(2485), + [anon_sym_require] = ACTIONS(2485), + [anon_sym_require_once] = ACTIONS(2485), + [anon_sym_BSLASH] = ACTIONS(2487), + [anon_sym_self] = ACTIONS(2485), + [anon_sym_parent] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2485), + [anon_sym_LT_LT_LT] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_echo] = ACTIONS(2485), + [anon_sym_unset] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_concurrent] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_function] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_foreach] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [sym_float] = ACTIONS(2487), + [sym_integer] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_True] = ACTIONS(2485), + [anon_sym_TRUE] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_False] = ACTIONS(2485), + [anon_sym_FALSE] = ACTIONS(2485), + [anon_sym_null] = ACTIONS(2485), + [anon_sym_Null] = ACTIONS(2485), + [anon_sym_NULL] = ACTIONS(2485), + [sym_string] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_array] = ACTIONS(2485), + [anon_sym_varray] = ACTIONS(2485), + [anon_sym_darray] = ACTIONS(2485), + [anon_sym_vec] = ACTIONS(2485), + [anon_sym_dict] = ACTIONS(2485), + [anon_sym_keyset] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_await] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_interface] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_abstract] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2487), + [sym_final_modifier] = ACTIONS(2485), + [sym_xhp_modifier] = ACTIONS(2485), + [sym_xhp_identifier] = ACTIONS(2485), + [sym_xhp_class_identifier] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + }, + [1558] = { + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2385), + [sym_variable] = ACTIONS(2387), + [sym_pipe_variable] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_newtype] = ACTIONS(2385), + [anon_sym_shape] = ACTIONS(2385), + [anon_sym_tuple] = ACTIONS(2385), + [anon_sym_clone] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_print] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_include] = ACTIONS(2385), + [anon_sym_include_once] = ACTIONS(2385), + [anon_sym_require] = ACTIONS(2385), + [anon_sym_require_once] = ACTIONS(2385), + [anon_sym_BSLASH] = ACTIONS(2387), + [anon_sym_self] = ACTIONS(2385), + [anon_sym_parent] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_LT_LT] = ACTIONS(2385), + [anon_sym_LT_LT_LT] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_echo] = ACTIONS(2385), + [anon_sym_unset] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_concurrent] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_function] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_foreach] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [sym_float] = ACTIONS(2387), + [sym_integer] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_True] = ACTIONS(2385), + [anon_sym_TRUE] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_False] = ACTIONS(2385), + [anon_sym_FALSE] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2385), + [anon_sym_Null] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [sym_string] = ACTIONS(2387), + [anon_sym_AT] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_array] = ACTIONS(2385), + [anon_sym_varray] = ACTIONS(2385), + [anon_sym_darray] = ACTIONS(2385), + [anon_sym_vec] = ACTIONS(2385), + [anon_sym_dict] = ACTIONS(2385), + [anon_sym_keyset] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_list] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_interface] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_abstract] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2387), + [sym_final_modifier] = ACTIONS(2385), + [sym_xhp_modifier] = ACTIONS(2385), + [sym_xhp_identifier] = ACTIONS(2385), + [sym_xhp_class_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(3), }, - [1563] = { - [sym_identifier] = ACTIONS(2205), - [sym_variable] = ACTIONS(2207), - [sym_pipe_variable] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_newtype] = ACTIONS(2205), - [anon_sym_shape] = ACTIONS(2205), - [anon_sym_tuple] = ACTIONS(2205), - [anon_sym_clone] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_print] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_LT_LT_LT] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_echo] = ACTIONS(2205), - [anon_sym_unset] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_concurrent] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_foreach] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [sym_float] = ACTIONS(2207), - [sym_integer] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_True] = ACTIONS(2205), - [anon_sym_TRUE] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_False] = ACTIONS(2205), - [anon_sym_FALSE] = ACTIONS(2205), - [anon_sym_null] = ACTIONS(2205), - [anon_sym_Null] = ACTIONS(2205), - [anon_sym_NULL] = ACTIONS(2205), - [sym_string] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_array] = ACTIONS(2205), - [anon_sym_varray] = ACTIONS(2205), - [anon_sym_darray] = ACTIONS(2205), - [anon_sym_vec] = ACTIONS(2205), - [anon_sym_dict] = ACTIONS(2205), - [anon_sym_keyset] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2207), - [sym_final_modifier] = ACTIONS(2205), - [sym_xhp_modifier] = ACTIONS(2205), - [sym_xhp_identifier] = ACTIONS(2205), - [sym_xhp_class_identifier] = ACTIONS(2207), + [1559] = { + [ts_builtin_sym_end] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2497), + [sym_variable] = ACTIONS(2499), + [sym_pipe_variable] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_newtype] = ACTIONS(2497), + [anon_sym_shape] = ACTIONS(2497), + [anon_sym_tuple] = ACTIONS(2497), + [anon_sym_clone] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_print] = ACTIONS(2497), + [anon_sym_namespace] = ACTIONS(2497), + [anon_sym_include] = ACTIONS(2497), + [anon_sym_include_once] = ACTIONS(2497), + [anon_sym_require] = ACTIONS(2497), + [anon_sym_require_once] = ACTIONS(2497), + [anon_sym_BSLASH] = ACTIONS(2499), + [anon_sym_self] = ACTIONS(2497), + [anon_sym_parent] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_LT_LT] = ACTIONS(2497), + [anon_sym_LT_LT_LT] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_throw] = ACTIONS(2497), + [anon_sym_echo] = ACTIONS(2497), + [anon_sym_unset] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_concurrent] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_function] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2497), + [anon_sym_foreach] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_using] = ACTIONS(2497), + [sym_float] = ACTIONS(2499), + [sym_integer] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_True] = ACTIONS(2497), + [anon_sym_TRUE] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_False] = ACTIONS(2497), + [anon_sym_FALSE] = ACTIONS(2497), + [anon_sym_null] = ACTIONS(2497), + [anon_sym_Null] = ACTIONS(2497), + [anon_sym_NULL] = ACTIONS(2497), + [sym_string] = ACTIONS(2499), + [anon_sym_AT] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_array] = ACTIONS(2497), + [anon_sym_varray] = ACTIONS(2497), + [anon_sym_darray] = ACTIONS(2497), + [anon_sym_vec] = ACTIONS(2497), + [anon_sym_dict] = ACTIONS(2497), + [anon_sym_keyset] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_interface] = ACTIONS(2497), + [anon_sym_class] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_abstract] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2499), + [sym_final_modifier] = ACTIONS(2497), + [sym_xhp_modifier] = ACTIONS(2497), + [sym_xhp_identifier] = ACTIONS(2497), + [sym_xhp_class_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [1564] = { - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2201), - [sym_variable] = ACTIONS(2203), - [sym_pipe_variable] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_newtype] = ACTIONS(2201), - [anon_sym_shape] = ACTIONS(2201), - [anon_sym_tuple] = ACTIONS(2201), - [anon_sym_clone] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_print] = ACTIONS(2201), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_include_once] = ACTIONS(2201), - [anon_sym_require] = ACTIONS(2201), - [anon_sym_require_once] = ACTIONS(2201), - [anon_sym_BSLASH] = ACTIONS(2203), - [anon_sym_self] = ACTIONS(2201), - [anon_sym_parent] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_LT_LT_LT] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_throw] = ACTIONS(2201), - [anon_sym_echo] = ACTIONS(2201), - [anon_sym_unset] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_concurrent] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_function] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_switch] = ACTIONS(2201), - [anon_sym_foreach] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_using] = ACTIONS(2201), - [sym_float] = ACTIONS(2203), - [sym_integer] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_True] = ACTIONS(2201), - [anon_sym_TRUE] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_False] = ACTIONS(2201), - [anon_sym_FALSE] = ACTIONS(2201), - [anon_sym_null] = ACTIONS(2201), - [anon_sym_Null] = ACTIONS(2201), - [anon_sym_NULL] = ACTIONS(2201), - [sym_string] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_array] = ACTIONS(2201), - [anon_sym_varray] = ACTIONS(2201), - [anon_sym_darray] = ACTIONS(2201), - [anon_sym_vec] = ACTIONS(2201), - [anon_sym_dict] = ACTIONS(2201), - [anon_sym_keyset] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_list] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_class] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2203), - [sym_final_modifier] = ACTIONS(2201), - [sym_xhp_modifier] = ACTIONS(2201), - [sym_xhp_identifier] = ACTIONS(2201), - [sym_xhp_class_identifier] = ACTIONS(2203), + [1560] = { + [sym_identifier] = ACTIONS(2497), + [sym_variable] = ACTIONS(2499), + [sym_pipe_variable] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_newtype] = ACTIONS(2497), + [anon_sym_shape] = ACTIONS(2497), + [anon_sym_tuple] = ACTIONS(2497), + [anon_sym_clone] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_print] = ACTIONS(2497), + [anon_sym_namespace] = ACTIONS(2497), + [anon_sym_include] = ACTIONS(2497), + [anon_sym_include_once] = ACTIONS(2497), + [anon_sym_require] = ACTIONS(2497), + [anon_sym_require_once] = ACTIONS(2497), + [anon_sym_BSLASH] = ACTIONS(2499), + [anon_sym_self] = ACTIONS(2497), + [anon_sym_parent] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_LT_LT] = ACTIONS(2497), + [anon_sym_LT_LT_LT] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_throw] = ACTIONS(2497), + [anon_sym_echo] = ACTIONS(2497), + [anon_sym_unset] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_concurrent] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_function] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2497), + [anon_sym_foreach] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_using] = ACTIONS(2497), + [sym_float] = ACTIONS(2499), + [sym_integer] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_True] = ACTIONS(2497), + [anon_sym_TRUE] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_False] = ACTIONS(2497), + [anon_sym_FALSE] = ACTIONS(2497), + [anon_sym_null] = ACTIONS(2497), + [anon_sym_Null] = ACTIONS(2497), + [anon_sym_NULL] = ACTIONS(2497), + [sym_string] = ACTIONS(2499), + [anon_sym_AT] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_array] = ACTIONS(2497), + [anon_sym_varray] = ACTIONS(2497), + [anon_sym_darray] = ACTIONS(2497), + [anon_sym_vec] = ACTIONS(2497), + [anon_sym_dict] = ACTIONS(2497), + [anon_sym_keyset] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_interface] = ACTIONS(2497), + [anon_sym_class] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_abstract] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2499), + [sym_final_modifier] = ACTIONS(2497), + [sym_xhp_modifier] = ACTIONS(2497), + [sym_xhp_identifier] = ACTIONS(2497), + [sym_xhp_class_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(3), }, - [1565] = { - [ts_builtin_sym_end] = ACTIONS(2423), - [sym_identifier] = ACTIONS(2421), - [sym_variable] = ACTIONS(2423), - [sym_pipe_variable] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_newtype] = ACTIONS(2421), - [anon_sym_shape] = ACTIONS(2421), - [anon_sym_tuple] = ACTIONS(2421), - [anon_sym_clone] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_include] = ACTIONS(2421), - [anon_sym_include_once] = ACTIONS(2421), - [anon_sym_require] = ACTIONS(2421), - [anon_sym_require_once] = ACTIONS(2421), - [anon_sym_BSLASH] = ACTIONS(2423), - [anon_sym_self] = ACTIONS(2421), - [anon_sym_parent] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_LT_LT_LT] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_echo] = ACTIONS(2421), - [anon_sym_unset] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_concurrent] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_function] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_foreach] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [sym_float] = ACTIONS(2423), - [sym_integer] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_True] = ACTIONS(2421), - [anon_sym_TRUE] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [anon_sym_False] = ACTIONS(2421), - [anon_sym_FALSE] = ACTIONS(2421), - [anon_sym_null] = ACTIONS(2421), - [anon_sym_Null] = ACTIONS(2421), - [anon_sym_NULL] = ACTIONS(2421), - [sym_string] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_array] = ACTIONS(2421), - [anon_sym_varray] = ACTIONS(2421), - [anon_sym_darray] = ACTIONS(2421), - [anon_sym_vec] = ACTIONS(2421), - [anon_sym_dict] = ACTIONS(2421), - [anon_sym_keyset] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_interface] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_abstract] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2423), - [sym_final_modifier] = ACTIONS(2421), - [sym_xhp_modifier] = ACTIONS(2421), - [sym_xhp_identifier] = ACTIONS(2421), - [sym_xhp_class_identifier] = ACTIONS(2423), + [1561] = { + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2145), + [sym_variable] = ACTIONS(2147), + [sym_pipe_variable] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_newtype] = ACTIONS(2145), + [anon_sym_shape] = ACTIONS(2145), + [anon_sym_tuple] = ACTIONS(2145), + [anon_sym_clone] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_print] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_include] = ACTIONS(2145), + [anon_sym_include_once] = ACTIONS(2145), + [anon_sym_require] = ACTIONS(2145), + [anon_sym_require_once] = ACTIONS(2145), + [anon_sym_BSLASH] = ACTIONS(2147), + [anon_sym_self] = ACTIONS(2145), + [anon_sym_parent] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_LT_LT_LT] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_echo] = ACTIONS(2145), + [anon_sym_unset] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_concurrent] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_foreach] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [sym_float] = ACTIONS(2147), + [sym_integer] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_True] = ACTIONS(2145), + [anon_sym_TRUE] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_False] = ACTIONS(2145), + [anon_sym_FALSE] = ACTIONS(2145), + [anon_sym_null] = ACTIONS(2145), + [anon_sym_Null] = ACTIONS(2145), + [anon_sym_NULL] = ACTIONS(2145), + [sym_string] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_array] = ACTIONS(2145), + [anon_sym_varray] = ACTIONS(2145), + [anon_sym_darray] = ACTIONS(2145), + [anon_sym_vec] = ACTIONS(2145), + [anon_sym_dict] = ACTIONS(2145), + [anon_sym_keyset] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_list] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2147), + [sym_final_modifier] = ACTIONS(2145), + [sym_xhp_modifier] = ACTIONS(2145), + [sym_xhp_identifier] = ACTIONS(2145), + [sym_xhp_class_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(3), }, - [1566] = { - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_identifier] = ACTIONS(2413), - [sym_variable] = ACTIONS(2415), - [sym_pipe_variable] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_newtype] = ACTIONS(2413), - [anon_sym_shape] = ACTIONS(2413), - [anon_sym_tuple] = ACTIONS(2413), - [anon_sym_clone] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_print] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_include] = ACTIONS(2413), - [anon_sym_include_once] = ACTIONS(2413), - [anon_sym_require] = ACTIONS(2413), - [anon_sym_require_once] = ACTIONS(2413), - [anon_sym_BSLASH] = ACTIONS(2415), - [anon_sym_self] = ACTIONS(2413), - [anon_sym_parent] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_LT_LT] = ACTIONS(2413), - [anon_sym_LT_LT_LT] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_echo] = ACTIONS(2413), - [anon_sym_unset] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_concurrent] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_foreach] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [sym_float] = ACTIONS(2415), - [sym_integer] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_True] = ACTIONS(2413), - [anon_sym_TRUE] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [anon_sym_False] = ACTIONS(2413), - [anon_sym_FALSE] = ACTIONS(2413), - [anon_sym_null] = ACTIONS(2413), - [anon_sym_Null] = ACTIONS(2413), - [anon_sym_NULL] = ACTIONS(2413), - [sym_string] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_array] = ACTIONS(2413), - [anon_sym_varray] = ACTIONS(2413), - [anon_sym_darray] = ACTIONS(2413), - [anon_sym_vec] = ACTIONS(2413), - [anon_sym_dict] = ACTIONS(2413), - [anon_sym_keyset] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_await] = ACTIONS(2413), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2413), - [anon_sym_trait] = ACTIONS(2413), - [anon_sym_interface] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_abstract] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2415), - [sym_final_modifier] = ACTIONS(2413), - [sym_xhp_modifier] = ACTIONS(2413), - [sym_xhp_identifier] = ACTIONS(2413), - [sym_xhp_class_identifier] = ACTIONS(2415), + [1562] = { + [ts_builtin_sym_end] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2141), + [sym_variable] = ACTIONS(2143), + [sym_pipe_variable] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_newtype] = ACTIONS(2141), + [anon_sym_shape] = ACTIONS(2141), + [anon_sym_tuple] = ACTIONS(2141), + [anon_sym_clone] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_print] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_include_once] = ACTIONS(2141), + [anon_sym_require] = ACTIONS(2141), + [anon_sym_require_once] = ACTIONS(2141), + [anon_sym_BSLASH] = ACTIONS(2143), + [anon_sym_self] = ACTIONS(2141), + [anon_sym_parent] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2141), + [anon_sym_echo] = ACTIONS(2141), + [anon_sym_unset] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_concurrent] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_function] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_switch] = ACTIONS(2141), + [anon_sym_foreach] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_using] = ACTIONS(2141), + [sym_float] = ACTIONS(2143), + [sym_integer] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_True] = ACTIONS(2141), + [anon_sym_TRUE] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_False] = ACTIONS(2141), + [anon_sym_FALSE] = ACTIONS(2141), + [anon_sym_null] = ACTIONS(2141), + [anon_sym_Null] = ACTIONS(2141), + [anon_sym_NULL] = ACTIONS(2141), + [sym_string] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_array] = ACTIONS(2141), + [anon_sym_varray] = ACTIONS(2141), + [anon_sym_darray] = ACTIONS(2141), + [anon_sym_vec] = ACTIONS(2141), + [anon_sym_dict] = ACTIONS(2141), + [anon_sym_keyset] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_list] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2141), + [anon_sym_class] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2143), + [sym_final_modifier] = ACTIONS(2141), + [sym_xhp_modifier] = ACTIONS(2141), + [sym_xhp_identifier] = ACTIONS(2141), + [sym_xhp_class_identifier] = ACTIONS(2143), [sym_comment] = ACTIONS(3), }, - [1567] = { - [ts_builtin_sym_end] = ACTIONS(2439), - [sym_identifier] = ACTIONS(2437), - [sym_variable] = ACTIONS(2439), - [sym_pipe_variable] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_newtype] = ACTIONS(2437), - [anon_sym_shape] = ACTIONS(2437), - [anon_sym_tuple] = ACTIONS(2437), - [anon_sym_clone] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_print] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_include] = ACTIONS(2437), - [anon_sym_include_once] = ACTIONS(2437), - [anon_sym_require] = ACTIONS(2437), - [anon_sym_require_once] = ACTIONS(2437), - [anon_sym_BSLASH] = ACTIONS(2439), - [anon_sym_self] = ACTIONS(2437), - [anon_sym_parent] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), - [anon_sym_LT_LT_LT] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_echo] = ACTIONS(2437), - [anon_sym_unset] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_concurrent] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_foreach] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [sym_float] = ACTIONS(2439), - [sym_integer] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_True] = ACTIONS(2437), - [anon_sym_TRUE] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_False] = ACTIONS(2437), - [anon_sym_FALSE] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [anon_sym_Null] = ACTIONS(2437), - [anon_sym_NULL] = ACTIONS(2437), - [sym_string] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_array] = ACTIONS(2437), - [anon_sym_varray] = ACTIONS(2437), - [anon_sym_darray] = ACTIONS(2437), - [anon_sym_vec] = ACTIONS(2437), - [anon_sym_dict] = ACTIONS(2437), - [anon_sym_keyset] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_interface] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_abstract] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2439), - [sym_final_modifier] = ACTIONS(2437), - [sym_xhp_modifier] = ACTIONS(2437), - [sym_xhp_identifier] = ACTIONS(2437), - [sym_xhp_class_identifier] = ACTIONS(2439), + [1563] = { + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2501), + [sym_variable] = ACTIONS(2503), + [sym_pipe_variable] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_newtype] = ACTIONS(2501), + [anon_sym_shape] = ACTIONS(2501), + [anon_sym_tuple] = ACTIONS(2501), + [anon_sym_clone] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_print] = ACTIONS(2501), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_include] = ACTIONS(2501), + [anon_sym_include_once] = ACTIONS(2501), + [anon_sym_require] = ACTIONS(2501), + [anon_sym_require_once] = ACTIONS(2501), + [anon_sym_BSLASH] = ACTIONS(2503), + [anon_sym_self] = ACTIONS(2501), + [anon_sym_parent] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_LT_LT] = ACTIONS(2501), + [anon_sym_LT_LT_LT] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_throw] = ACTIONS(2501), + [anon_sym_echo] = ACTIONS(2501), + [anon_sym_unset] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_concurrent] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_function] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_foreach] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_using] = ACTIONS(2501), + [sym_float] = ACTIONS(2503), + [sym_integer] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_True] = ACTIONS(2501), + [anon_sym_TRUE] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_False] = ACTIONS(2501), + [anon_sym_FALSE] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), + [anon_sym_Null] = ACTIONS(2501), + [anon_sym_NULL] = ACTIONS(2501), + [sym_string] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_array] = ACTIONS(2501), + [anon_sym_varray] = ACTIONS(2501), + [anon_sym_darray] = ACTIONS(2501), + [anon_sym_vec] = ACTIONS(2501), + [anon_sym_dict] = ACTIONS(2501), + [anon_sym_keyset] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_await] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_interface] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_abstract] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2503), + [sym_final_modifier] = ACTIONS(2501), + [sym_xhp_modifier] = ACTIONS(2501), + [sym_xhp_identifier] = ACTIONS(2501), + [sym_xhp_class_identifier] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, - [1568] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2205), - [sym_variable] = ACTIONS(2207), - [sym_pipe_variable] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_newtype] = ACTIONS(2205), - [anon_sym_shape] = ACTIONS(2205), - [anon_sym_tuple] = ACTIONS(2205), - [anon_sym_clone] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_print] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2205), - [anon_sym_include] = ACTIONS(2205), - [anon_sym_include_once] = ACTIONS(2205), - [anon_sym_require] = ACTIONS(2205), - [anon_sym_require_once] = ACTIONS(2205), - [anon_sym_BSLASH] = ACTIONS(2207), - [anon_sym_self] = ACTIONS(2205), - [anon_sym_parent] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_LT_LT_LT] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_echo] = ACTIONS(2205), - [anon_sym_unset] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_concurrent] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_foreach] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(2205), - [sym_float] = ACTIONS(2207), - [sym_integer] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_True] = ACTIONS(2205), - [anon_sym_TRUE] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_False] = ACTIONS(2205), - [anon_sym_FALSE] = ACTIONS(2205), - [anon_sym_null] = ACTIONS(2205), - [anon_sym_Null] = ACTIONS(2205), - [anon_sym_NULL] = ACTIONS(2205), - [sym_string] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_array] = ACTIONS(2205), - [anon_sym_varray] = ACTIONS(2205), - [anon_sym_darray] = ACTIONS(2205), - [anon_sym_vec] = ACTIONS(2205), - [anon_sym_dict] = ACTIONS(2205), - [anon_sym_keyset] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_list] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2207), - [sym_final_modifier] = ACTIONS(2205), - [sym_xhp_modifier] = ACTIONS(2205), - [sym_xhp_identifier] = ACTIONS(2205), - [sym_xhp_class_identifier] = ACTIONS(2207), + [1564] = { + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2317), + [sym_variable] = ACTIONS(2319), + [sym_pipe_variable] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_newtype] = ACTIONS(2317), + [anon_sym_shape] = ACTIONS(2317), + [anon_sym_tuple] = ACTIONS(2317), + [anon_sym_clone] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_print] = ACTIONS(2317), + [anon_sym_namespace] = ACTIONS(2317), + [anon_sym_include] = ACTIONS(2317), + [anon_sym_include_once] = ACTIONS(2317), + [anon_sym_require] = ACTIONS(2317), + [anon_sym_require_once] = ACTIONS(2317), + [anon_sym_BSLASH] = ACTIONS(2319), + [anon_sym_self] = ACTIONS(2317), + [anon_sym_parent] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_LT_LT] = ACTIONS(2317), + [anon_sym_LT_LT_LT] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_throw] = ACTIONS(2317), + [anon_sym_echo] = ACTIONS(2317), + [anon_sym_unset] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_concurrent] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_function] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_switch] = ACTIONS(2317), + [anon_sym_foreach] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_do] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_using] = ACTIONS(2317), + [sym_float] = ACTIONS(2319), + [sym_integer] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_True] = ACTIONS(2317), + [anon_sym_TRUE] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_False] = ACTIONS(2317), + [anon_sym_FALSE] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [anon_sym_Null] = ACTIONS(2317), + [anon_sym_NULL] = ACTIONS(2317), + [sym_string] = ACTIONS(2319), + [anon_sym_AT] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_array] = ACTIONS(2317), + [anon_sym_varray] = ACTIONS(2317), + [anon_sym_darray] = ACTIONS(2317), + [anon_sym_vec] = ACTIONS(2317), + [anon_sym_dict] = ACTIONS(2317), + [anon_sym_keyset] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_list] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_interface] = ACTIONS(2317), + [anon_sym_class] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_abstract] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2319), + [sym_final_modifier] = ACTIONS(2317), + [sym_xhp_modifier] = ACTIONS(2317), + [sym_xhp_identifier] = ACTIONS(2317), + [sym_xhp_class_identifier] = ACTIONS(2319), [sym_comment] = ACTIONS(3), }, - [1569] = { - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_identifier] = ACTIONS(2377), - [sym_variable] = ACTIONS(2379), - [sym_pipe_variable] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_newtype] = ACTIONS(2377), - [anon_sym_shape] = ACTIONS(2377), - [anon_sym_tuple] = ACTIONS(2377), - [anon_sym_clone] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_print] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_LT_LT_LT] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_echo] = ACTIONS(2377), - [anon_sym_unset] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_concurrent] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_foreach] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_using] = ACTIONS(2377), - [sym_float] = ACTIONS(2379), - [sym_integer] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_True] = ACTIONS(2377), - [anon_sym_TRUE] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [anon_sym_False] = ACTIONS(2377), - [anon_sym_FALSE] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(2377), - [anon_sym_Null] = ACTIONS(2377), - [anon_sym_NULL] = ACTIONS(2377), - [sym_string] = ACTIONS(2379), - [anon_sym_AT] = ACTIONS(2379), - [anon_sym_TILDE] = ACTIONS(2379), - [anon_sym_array] = ACTIONS(2377), - [anon_sym_varray] = ACTIONS(2377), - [anon_sym_darray] = ACTIONS(2377), - [anon_sym_vec] = ACTIONS(2377), - [anon_sym_dict] = ACTIONS(2377), - [anon_sym_keyset] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(2379), - [sym_final_modifier] = ACTIONS(2377), - [sym_xhp_modifier] = ACTIONS(2377), - [sym_xhp_identifier] = ACTIONS(2377), - [sym_xhp_class_identifier] = ACTIONS(2379), + [1565] = { + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2321), + [sym_variable] = ACTIONS(2323), + [sym_pipe_variable] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_newtype] = ACTIONS(2321), + [anon_sym_shape] = ACTIONS(2321), + [anon_sym_tuple] = ACTIONS(2321), + [anon_sym_clone] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2321), + [anon_sym_namespace] = ACTIONS(2321), + [anon_sym_include] = ACTIONS(2321), + [anon_sym_include_once] = ACTIONS(2321), + [anon_sym_require] = ACTIONS(2321), + [anon_sym_require_once] = ACTIONS(2321), + [anon_sym_BSLASH] = ACTIONS(2323), + [anon_sym_self] = ACTIONS(2321), + [anon_sym_parent] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_LT_LT_LT] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_throw] = ACTIONS(2321), + [anon_sym_echo] = ACTIONS(2321), + [anon_sym_unset] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_concurrent] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_function] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_switch] = ACTIONS(2321), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_using] = ACTIONS(2321), + [sym_float] = ACTIONS(2323), + [sym_integer] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_True] = ACTIONS(2321), + [anon_sym_TRUE] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_False] = ACTIONS(2321), + [anon_sym_FALSE] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [anon_sym_Null] = ACTIONS(2321), + [anon_sym_NULL] = ACTIONS(2321), + [sym_string] = ACTIONS(2323), + [anon_sym_AT] = ACTIONS(2323), + [anon_sym_TILDE] = ACTIONS(2323), + [anon_sym_array] = ACTIONS(2321), + [anon_sym_varray] = ACTIONS(2321), + [anon_sym_darray] = ACTIONS(2321), + [anon_sym_vec] = ACTIONS(2321), + [anon_sym_dict] = ACTIONS(2321), + [anon_sym_keyset] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_list] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(2323), + [anon_sym_DASH_DASH] = ACTIONS(2323), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_yield] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_class] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_abstract] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [sym_final_modifier] = ACTIONS(2321), + [sym_xhp_modifier] = ACTIONS(2321), + [sym_xhp_identifier] = ACTIONS(2321), + [sym_xhp_class_identifier] = ACTIONS(2323), [sym_comment] = ACTIONS(3), }, - [1570] = { - [sym_identifier] = ACTIONS(2177), - [sym_variable] = ACTIONS(2179), - [sym_pipe_variable] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_newtype] = ACTIONS(2177), - [anon_sym_shape] = ACTIONS(2177), - [anon_sym_tuple] = ACTIONS(2177), - [anon_sym_clone] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_print] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_LT_LT_LT] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_throw] = ACTIONS(2177), - [anon_sym_echo] = ACTIONS(2177), - [anon_sym_unset] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_concurrent] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_function] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [anon_sym_foreach] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_using] = ACTIONS(2177), - [sym_float] = ACTIONS(2179), - [sym_integer] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_True] = ACTIONS(2177), - [anon_sym_TRUE] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [anon_sym_False] = ACTIONS(2177), - [anon_sym_FALSE] = ACTIONS(2177), - [anon_sym_null] = ACTIONS(2177), - [anon_sym_Null] = ACTIONS(2177), - [anon_sym_NULL] = ACTIONS(2177), - [sym_string] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_array] = ACTIONS(2177), - [anon_sym_varray] = ACTIONS(2177), - [anon_sym_darray] = ACTIONS(2177), - [anon_sym_vec] = ACTIONS(2177), - [anon_sym_dict] = ACTIONS(2177), - [anon_sym_keyset] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_class] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_abstract] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2179), - [sym_final_modifier] = ACTIONS(2177), - [sym_xhp_modifier] = ACTIONS(2177), - [sym_xhp_identifier] = ACTIONS(2177), - [sym_xhp_class_identifier] = ACTIONS(2179), + [1566] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2325), + [sym_variable] = ACTIONS(2327), + [sym_pipe_variable] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2325), + [anon_sym_newtype] = ACTIONS(2325), + [anon_sym_shape] = ACTIONS(2325), + [anon_sym_tuple] = ACTIONS(2325), + [anon_sym_clone] = ACTIONS(2325), + [anon_sym_new] = ACTIONS(2325), + [anon_sym_print] = ACTIONS(2325), + [anon_sym_namespace] = ACTIONS(2325), + [anon_sym_include] = ACTIONS(2325), + [anon_sym_include_once] = ACTIONS(2325), + [anon_sym_require] = ACTIONS(2325), + [anon_sym_require_once] = ACTIONS(2325), + [anon_sym_BSLASH] = ACTIONS(2327), + [anon_sym_self] = ACTIONS(2325), + [anon_sym_parent] = ACTIONS(2325), + [anon_sym_static] = ACTIONS(2325), + [anon_sym_LT_LT] = ACTIONS(2325), + [anon_sym_LT_LT_LT] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2325), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_throw] = ACTIONS(2325), + [anon_sym_echo] = ACTIONS(2325), + [anon_sym_unset] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_concurrent] = ACTIONS(2325), + [anon_sym_use] = ACTIONS(2325), + [anon_sym_function] = ACTIONS(2325), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2325), + [anon_sym_foreach] = ACTIONS(2325), + [anon_sym_while] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2325), + [anon_sym_try] = ACTIONS(2325), + [anon_sym_using] = ACTIONS(2325), + [sym_float] = ACTIONS(2327), + [sym_integer] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2325), + [anon_sym_True] = ACTIONS(2325), + [anon_sym_TRUE] = ACTIONS(2325), + [anon_sym_false] = ACTIONS(2325), + [anon_sym_False] = ACTIONS(2325), + [anon_sym_FALSE] = ACTIONS(2325), + [anon_sym_null] = ACTIONS(2325), + [anon_sym_Null] = ACTIONS(2325), + [anon_sym_NULL] = ACTIONS(2325), + [sym_string] = ACTIONS(2327), + [anon_sym_AT] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_array] = ACTIONS(2325), + [anon_sym_varray] = ACTIONS(2325), + [anon_sym_darray] = ACTIONS(2325), + [anon_sym_vec] = ACTIONS(2325), + [anon_sym_dict] = ACTIONS(2325), + [anon_sym_keyset] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_list] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_await] = ACTIONS(2325), + [anon_sym_async] = ACTIONS(2325), + [anon_sym_yield] = ACTIONS(2325), + [anon_sym_trait] = ACTIONS(2325), + [anon_sym_interface] = ACTIONS(2325), + [anon_sym_class] = ACTIONS(2325), + [anon_sym_enum] = ACTIONS(2325), + [anon_sym_abstract] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2327), + [sym_final_modifier] = ACTIONS(2325), + [sym_xhp_modifier] = ACTIONS(2325), + [sym_xhp_identifier] = ACTIONS(2325), + [sym_xhp_class_identifier] = ACTIONS(2327), [sym_comment] = ACTIONS(3), }, - [1571] = { - [ts_builtin_sym_end] = ACTIONS(2123), - [sym_identifier] = ACTIONS(2121), - [sym_variable] = ACTIONS(2123), - [sym_pipe_variable] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_newtype] = ACTIONS(2121), - [anon_sym_shape] = ACTIONS(2121), - [anon_sym_tuple] = ACTIONS(2121), - [anon_sym_clone] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_print] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_LT_LT_LT] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_echo] = ACTIONS(2121), - [anon_sym_unset] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_concurrent] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_foreach] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_using] = ACTIONS(2121), - [sym_float] = ACTIONS(2123), - [sym_integer] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_True] = ACTIONS(2121), - [anon_sym_TRUE] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_False] = ACTIONS(2121), - [anon_sym_FALSE] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2121), - [anon_sym_Null] = ACTIONS(2121), - [anon_sym_NULL] = ACTIONS(2121), - [sym_string] = ACTIONS(2123), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_array] = ACTIONS(2121), - [anon_sym_varray] = ACTIONS(2121), - [anon_sym_darray] = ACTIONS(2121), - [anon_sym_vec] = ACTIONS(2121), - [anon_sym_dict] = ACTIONS(2121), - [anon_sym_keyset] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_trait] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2123), - [sym_final_modifier] = ACTIONS(2121), - [sym_xhp_modifier] = ACTIONS(2121), - [sym_xhp_identifier] = ACTIONS(2121), - [sym_xhp_class_identifier] = ACTIONS(2123), + [1567] = { + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2329), + [sym_variable] = ACTIONS(2331), + [sym_pipe_variable] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2329), + [anon_sym_newtype] = ACTIONS(2329), + [anon_sym_shape] = ACTIONS(2329), + [anon_sym_tuple] = ACTIONS(2329), + [anon_sym_clone] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_print] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_include] = ACTIONS(2329), + [anon_sym_include_once] = ACTIONS(2329), + [anon_sym_require] = ACTIONS(2329), + [anon_sym_require_once] = ACTIONS(2329), + [anon_sym_BSLASH] = ACTIONS(2331), + [anon_sym_self] = ACTIONS(2329), + [anon_sym_parent] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_LT_LT_LT] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_echo] = ACTIONS(2329), + [anon_sym_unset] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_concurrent] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_function] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_foreach] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [sym_float] = ACTIONS(2331), + [sym_integer] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_True] = ACTIONS(2329), + [anon_sym_TRUE] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_False] = ACTIONS(2329), + [anon_sym_FALSE] = ACTIONS(2329), + [anon_sym_null] = ACTIONS(2329), + [anon_sym_Null] = ACTIONS(2329), + [anon_sym_NULL] = ACTIONS(2329), + [sym_string] = ACTIONS(2331), + [anon_sym_AT] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_array] = ACTIONS(2329), + [anon_sym_varray] = ACTIONS(2329), + [anon_sym_darray] = ACTIONS(2329), + [anon_sym_vec] = ACTIONS(2329), + [anon_sym_dict] = ACTIONS(2329), + [anon_sym_keyset] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_list] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(2329), + [anon_sym_yield] = ACTIONS(2329), + [anon_sym_trait] = ACTIONS(2329), + [anon_sym_interface] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_abstract] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2331), + [sym_final_modifier] = ACTIONS(2329), + [sym_xhp_modifier] = ACTIONS(2329), + [sym_xhp_identifier] = ACTIONS(2329), + [sym_xhp_class_identifier] = ACTIONS(2331), [sym_comment] = ACTIONS(3), }, - [1572] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1568] = { + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2337), + [sym_variable] = ACTIONS(2339), + [sym_pipe_variable] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_newtype] = ACTIONS(2337), + [anon_sym_shape] = ACTIONS(2337), + [anon_sym_tuple] = ACTIONS(2337), + [anon_sym_clone] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_print] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_include] = ACTIONS(2337), + [anon_sym_include_once] = ACTIONS(2337), + [anon_sym_require] = ACTIONS(2337), + [anon_sym_require_once] = ACTIONS(2337), + [anon_sym_BSLASH] = ACTIONS(2339), + [anon_sym_self] = ACTIONS(2337), + [anon_sym_parent] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_LT_LT_LT] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_echo] = ACTIONS(2337), + [anon_sym_unset] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_concurrent] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_function] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_foreach] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [sym_float] = ACTIONS(2339), + [sym_integer] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_True] = ACTIONS(2337), + [anon_sym_TRUE] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_False] = ACTIONS(2337), + [anon_sym_FALSE] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_Null] = ACTIONS(2337), + [anon_sym_NULL] = ACTIONS(2337), + [sym_string] = ACTIONS(2339), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_array] = ACTIONS(2337), + [anon_sym_varray] = ACTIONS(2337), + [anon_sym_darray] = ACTIONS(2337), + [anon_sym_vec] = ACTIONS(2337), + [anon_sym_dict] = ACTIONS(2337), + [anon_sym_keyset] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_list] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_trait] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_abstract] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2339), + [sym_final_modifier] = ACTIONS(2337), + [sym_xhp_modifier] = ACTIONS(2337), + [sym_xhp_identifier] = ACTIONS(2337), + [sym_xhp_class_identifier] = ACTIONS(2339), [sym_comment] = ACTIONS(3), }, - [1573] = { - [sym_identifier] = ACTIONS(2161), - [sym_variable] = ACTIONS(2163), - [sym_pipe_variable] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_newtype] = ACTIONS(2161), - [anon_sym_shape] = ACTIONS(2161), - [anon_sym_tuple] = ACTIONS(2161), - [anon_sym_clone] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2161), - [anon_sym_print] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2161), - [anon_sym_include] = ACTIONS(2161), - [anon_sym_include_once] = ACTIONS(2161), - [anon_sym_require] = ACTIONS(2161), - [anon_sym_require_once] = ACTIONS(2161), - [anon_sym_BSLASH] = ACTIONS(2163), - [anon_sym_self] = ACTIONS(2161), - [anon_sym_parent] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_LT_LT_LT] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_echo] = ACTIONS(2161), - [anon_sym_unset] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_concurrent] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_function] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [anon_sym_foreach] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_using] = ACTIONS(2161), - [sym_float] = ACTIONS(2163), - [sym_integer] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_True] = ACTIONS(2161), - [anon_sym_TRUE] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_False] = ACTIONS(2161), - [anon_sym_FALSE] = ACTIONS(2161), - [anon_sym_null] = ACTIONS(2161), - [anon_sym_Null] = ACTIONS(2161), - [anon_sym_NULL] = ACTIONS(2161), - [sym_string] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_array] = ACTIONS(2161), - [anon_sym_varray] = ACTIONS(2161), - [anon_sym_darray] = ACTIONS(2161), - [anon_sym_vec] = ACTIONS(2161), - [anon_sym_dict] = ACTIONS(2161), - [anon_sym_keyset] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_list] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2161), - [anon_sym_class] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_abstract] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2163), - [sym_final_modifier] = ACTIONS(2161), - [sym_xhp_modifier] = ACTIONS(2161), - [sym_xhp_identifier] = ACTIONS(2161), - [sym_xhp_class_identifier] = ACTIONS(2163), + [1569] = { + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2345), + [sym_variable] = ACTIONS(2347), + [sym_pipe_variable] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_newtype] = ACTIONS(2345), + [anon_sym_shape] = ACTIONS(2345), + [anon_sym_tuple] = ACTIONS(2345), + [anon_sym_clone] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_print] = ACTIONS(2345), + [anon_sym_namespace] = ACTIONS(2345), + [anon_sym_include] = ACTIONS(2345), + [anon_sym_include_once] = ACTIONS(2345), + [anon_sym_require] = ACTIONS(2345), + [anon_sym_require_once] = ACTIONS(2345), + [anon_sym_BSLASH] = ACTIONS(2347), + [anon_sym_self] = ACTIONS(2345), + [anon_sym_parent] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_LT_LT_LT] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_throw] = ACTIONS(2345), + [anon_sym_echo] = ACTIONS(2345), + [anon_sym_unset] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_concurrent] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_function] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_switch] = ACTIONS(2345), + [anon_sym_foreach] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_using] = ACTIONS(2345), + [sym_float] = ACTIONS(2347), + [sym_integer] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_True] = ACTIONS(2345), + [anon_sym_TRUE] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_False] = ACTIONS(2345), + [anon_sym_FALSE] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_Null] = ACTIONS(2345), + [anon_sym_NULL] = ACTIONS(2345), + [sym_string] = ACTIONS(2347), + [anon_sym_AT] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_array] = ACTIONS(2345), + [anon_sym_varray] = ACTIONS(2345), + [anon_sym_darray] = ACTIONS(2345), + [anon_sym_vec] = ACTIONS(2345), + [anon_sym_dict] = ACTIONS(2345), + [anon_sym_keyset] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_list] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(2347), + [anon_sym_DASH_DASH] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_abstract] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2347), + [sym_final_modifier] = ACTIONS(2345), + [sym_xhp_modifier] = ACTIONS(2345), + [sym_xhp_identifier] = ACTIONS(2345), + [sym_xhp_class_identifier] = ACTIONS(2347), [sym_comment] = ACTIONS(3), }, - [1574] = { - [ts_builtin_sym_end] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2449), - [sym_variable] = ACTIONS(2451), - [sym_pipe_variable] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_newtype] = ACTIONS(2449), - [anon_sym_shape] = ACTIONS(2449), - [anon_sym_tuple] = ACTIONS(2449), - [anon_sym_clone] = ACTIONS(2449), - [anon_sym_new] = ACTIONS(2449), - [anon_sym_print] = ACTIONS(2449), - [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_include] = ACTIONS(2449), - [anon_sym_include_once] = ACTIONS(2449), - [anon_sym_require] = ACTIONS(2449), - [anon_sym_require_once] = ACTIONS(2449), - [anon_sym_BSLASH] = ACTIONS(2451), - [anon_sym_self] = ACTIONS(2449), - [anon_sym_parent] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_LT_LT_LT] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_echo] = ACTIONS(2449), - [anon_sym_unset] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_concurrent] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_switch] = ACTIONS(2449), - [anon_sym_foreach] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_using] = ACTIONS(2449), - [sym_float] = ACTIONS(2451), - [sym_integer] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_True] = ACTIONS(2449), - [anon_sym_TRUE] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_False] = ACTIONS(2449), - [anon_sym_FALSE] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [anon_sym_Null] = ACTIONS(2449), - [anon_sym_NULL] = ACTIONS(2449), - [sym_string] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2451), - [anon_sym_TILDE] = ACTIONS(2451), - [anon_sym_array] = ACTIONS(2449), - [anon_sym_varray] = ACTIONS(2449), - [anon_sym_darray] = ACTIONS(2449), - [anon_sym_vec] = ACTIONS(2449), - [anon_sym_dict] = ACTIONS(2449), - [anon_sym_keyset] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_list] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2451), - [anon_sym_PLUS_PLUS] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2451), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_class] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_abstract] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2451), - [sym_final_modifier] = ACTIONS(2449), - [sym_xhp_modifier] = ACTIONS(2449), - [sym_xhp_identifier] = ACTIONS(2449), - [sym_xhp_class_identifier] = ACTIONS(2451), + [1570] = { + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2445), + [sym_variable] = ACTIONS(2447), + [sym_pipe_variable] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_newtype] = ACTIONS(2445), + [anon_sym_shape] = ACTIONS(2445), + [anon_sym_tuple] = ACTIONS(2445), + [anon_sym_clone] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_include] = ACTIONS(2445), + [anon_sym_include_once] = ACTIONS(2445), + [anon_sym_require] = ACTIONS(2445), + [anon_sym_require_once] = ACTIONS(2445), + [anon_sym_BSLASH] = ACTIONS(2447), + [anon_sym_self] = ACTIONS(2445), + [anon_sym_parent] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_LT_LT_LT] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_echo] = ACTIONS(2445), + [anon_sym_unset] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_concurrent] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_foreach] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [sym_float] = ACTIONS(2447), + [sym_integer] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_True] = ACTIONS(2445), + [anon_sym_TRUE] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_False] = ACTIONS(2445), + [anon_sym_FALSE] = ACTIONS(2445), + [anon_sym_null] = ACTIONS(2445), + [anon_sym_Null] = ACTIONS(2445), + [anon_sym_NULL] = ACTIONS(2445), + [sym_string] = ACTIONS(2447), + [anon_sym_AT] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_array] = ACTIONS(2445), + [anon_sym_varray] = ACTIONS(2445), + [anon_sym_darray] = ACTIONS(2445), + [anon_sym_vec] = ACTIONS(2445), + [anon_sym_dict] = ACTIONS(2445), + [anon_sym_keyset] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_list] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_abstract] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2447), + [sym_final_modifier] = ACTIONS(2445), + [sym_xhp_modifier] = ACTIONS(2445), + [sym_xhp_identifier] = ACTIONS(2445), + [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, - [1575] = { - [ts_builtin_sym_end] = ACTIONS(2487), + [1571] = { + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2349), + [sym_variable] = ACTIONS(2351), + [sym_pipe_variable] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_newtype] = ACTIONS(2349), + [anon_sym_shape] = ACTIONS(2349), + [anon_sym_tuple] = ACTIONS(2349), + [anon_sym_clone] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_print] = ACTIONS(2349), + [anon_sym_namespace] = ACTIONS(2349), + [anon_sym_include] = ACTIONS(2349), + [anon_sym_include_once] = ACTIONS(2349), + [anon_sym_require] = ACTIONS(2349), + [anon_sym_require_once] = ACTIONS(2349), + [anon_sym_BSLASH] = ACTIONS(2351), + [anon_sym_self] = ACTIONS(2349), + [anon_sym_parent] = ACTIONS(2349), + [anon_sym_static] = ACTIONS(2349), + [anon_sym_LT_LT] = ACTIONS(2349), + [anon_sym_LT_LT_LT] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_throw] = ACTIONS(2349), + [anon_sym_echo] = ACTIONS(2349), + [anon_sym_unset] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_concurrent] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_switch] = ACTIONS(2349), + [anon_sym_foreach] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_using] = ACTIONS(2349), + [sym_float] = ACTIONS(2351), + [sym_integer] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_True] = ACTIONS(2349), + [anon_sym_TRUE] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_False] = ACTIONS(2349), + [anon_sym_FALSE] = ACTIONS(2349), + [anon_sym_null] = ACTIONS(2349), + [anon_sym_Null] = ACTIONS(2349), + [anon_sym_NULL] = ACTIONS(2349), + [sym_string] = ACTIONS(2351), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_array] = ACTIONS(2349), + [anon_sym_varray] = ACTIONS(2349), + [anon_sym_darray] = ACTIONS(2349), + [anon_sym_vec] = ACTIONS(2349), + [anon_sym_dict] = ACTIONS(2349), + [anon_sym_keyset] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_list] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_trait] = ACTIONS(2349), + [anon_sym_interface] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_abstract] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2351), + [sym_final_modifier] = ACTIONS(2349), + [sym_xhp_modifier] = ACTIONS(2349), + [sym_xhp_identifier] = ACTIONS(2349), + [sym_xhp_class_identifier] = ACTIONS(2351), + [sym_comment] = ACTIONS(3), + }, + [1572] = { [sym_identifier] = ACTIONS(2485), [sym_variable] = ACTIONS(2487), [sym_pipe_variable] = ACTIONS(2487), @@ -181078,6 +174393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2485), [anon_sym_LT_LT] = ACTIONS(2485), [anon_sym_LT_LT_LT] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), [anon_sym_LBRACE] = ACTIONS(2487), [anon_sym_SEMI] = ACTIONS(2487), [anon_sym_return] = ACTIONS(2485), @@ -181141,2415 +174457,2158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2487), [sym_comment] = ACTIONS(3), }, - [1576] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1577] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1578] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1579] = { - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2501), - [sym_variable] = ACTIONS(2503), - [sym_pipe_variable] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_newtype] = ACTIONS(2501), - [anon_sym_shape] = ACTIONS(2501), - [anon_sym_tuple] = ACTIONS(2501), - [anon_sym_clone] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_print] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_include] = ACTIONS(2501), - [anon_sym_include_once] = ACTIONS(2501), - [anon_sym_require] = ACTIONS(2501), - [anon_sym_require_once] = ACTIONS(2501), - [anon_sym_BSLASH] = ACTIONS(2503), - [anon_sym_self] = ACTIONS(2501), - [anon_sym_parent] = ACTIONS(2501), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_LT_LT_LT] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_echo] = ACTIONS(2501), - [anon_sym_unset] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_concurrent] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_foreach] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [sym_float] = ACTIONS(2503), - [sym_integer] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_True] = ACTIONS(2501), - [anon_sym_TRUE] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_False] = ACTIONS(2501), - [anon_sym_FALSE] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [anon_sym_Null] = ACTIONS(2501), - [anon_sym_NULL] = ACTIONS(2501), - [sym_string] = ACTIONS(2503), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_array] = ACTIONS(2501), - [anon_sym_varray] = ACTIONS(2501), - [anon_sym_darray] = ACTIONS(2501), - [anon_sym_vec] = ACTIONS(2501), - [anon_sym_dict] = ACTIONS(2501), - [anon_sym_keyset] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_trait] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2503), - [sym_final_modifier] = ACTIONS(2501), - [sym_xhp_modifier] = ACTIONS(2501), - [sym_xhp_identifier] = ACTIONS(2501), - [sym_xhp_class_identifier] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - }, - [1580] = { - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2153), - [sym_variable] = ACTIONS(2155), - [sym_pipe_variable] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_newtype] = ACTIONS(2153), - [anon_sym_shape] = ACTIONS(2153), - [anon_sym_tuple] = ACTIONS(2153), - [anon_sym_clone] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_print] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_LT_LT_LT] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_throw] = ACTIONS(2153), - [anon_sym_echo] = ACTIONS(2153), - [anon_sym_unset] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_concurrent] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_function] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_switch] = ACTIONS(2153), - [anon_sym_foreach] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_using] = ACTIONS(2153), - [sym_float] = ACTIONS(2155), - [sym_integer] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_True] = ACTIONS(2153), - [anon_sym_TRUE] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_False] = ACTIONS(2153), - [anon_sym_FALSE] = ACTIONS(2153), - [anon_sym_null] = ACTIONS(2153), - [anon_sym_Null] = ACTIONS(2153), - [anon_sym_NULL] = ACTIONS(2153), - [sym_string] = ACTIONS(2155), - [anon_sym_AT] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_array] = ACTIONS(2153), - [anon_sym_varray] = ACTIONS(2153), - [anon_sym_darray] = ACTIONS(2153), - [anon_sym_vec] = ACTIONS(2153), - [anon_sym_dict] = ACTIONS(2153), - [anon_sym_keyset] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_class] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_abstract] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2155), - [sym_final_modifier] = ACTIONS(2153), - [sym_xhp_modifier] = ACTIONS(2153), - [sym_xhp_identifier] = ACTIONS(2153), - [sym_xhp_class_identifier] = ACTIONS(2155), + [1573] = { + [sym_identifier] = ACTIONS(2149), + [sym_variable] = ACTIONS(2151), + [sym_pipe_variable] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_newtype] = ACTIONS(2149), + [anon_sym_shape] = ACTIONS(2149), + [anon_sym_tuple] = ACTIONS(2149), + [anon_sym_clone] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_print] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_include] = ACTIONS(2149), + [anon_sym_include_once] = ACTIONS(2149), + [anon_sym_require] = ACTIONS(2149), + [anon_sym_require_once] = ACTIONS(2149), + [anon_sym_BSLASH] = ACTIONS(2151), + [anon_sym_self] = ACTIONS(2149), + [anon_sym_parent] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_LT_LT_LT] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_echo] = ACTIONS(2149), + [anon_sym_unset] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_concurrent] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_foreach] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [sym_float] = ACTIONS(2151), + [sym_integer] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_True] = ACTIONS(2149), + [anon_sym_TRUE] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_False] = ACTIONS(2149), + [anon_sym_FALSE] = ACTIONS(2149), + [anon_sym_null] = ACTIONS(2149), + [anon_sym_Null] = ACTIONS(2149), + [anon_sym_NULL] = ACTIONS(2149), + [sym_string] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_array] = ACTIONS(2149), + [anon_sym_varray] = ACTIONS(2149), + [anon_sym_darray] = ACTIONS(2149), + [anon_sym_vec] = ACTIONS(2149), + [anon_sym_dict] = ACTIONS(2149), + [anon_sym_keyset] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_list] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_abstract] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2151), + [sym_final_modifier] = ACTIONS(2149), + [sym_xhp_modifier] = ACTIONS(2149), + [sym_xhp_identifier] = ACTIONS(2149), + [sym_xhp_class_identifier] = ACTIONS(2151), [sym_comment] = ACTIONS(3), }, - [1581] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1574] = { + [sym_identifier] = ACTIONS(2481), + [sym_variable] = ACTIONS(2483), + [sym_pipe_variable] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_newtype] = ACTIONS(2481), + [anon_sym_shape] = ACTIONS(2481), + [anon_sym_tuple] = ACTIONS(2481), + [anon_sym_clone] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_print] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_include] = ACTIONS(2481), + [anon_sym_include_once] = ACTIONS(2481), + [anon_sym_require] = ACTIONS(2481), + [anon_sym_require_once] = ACTIONS(2481), + [anon_sym_BSLASH] = ACTIONS(2483), + [anon_sym_self] = ACTIONS(2481), + [anon_sym_parent] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_LT_LT] = ACTIONS(2481), + [anon_sym_LT_LT_LT] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_echo] = ACTIONS(2481), + [anon_sym_unset] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_concurrent] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_foreach] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [sym_float] = ACTIONS(2483), + [sym_integer] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_True] = ACTIONS(2481), + [anon_sym_TRUE] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_False] = ACTIONS(2481), + [anon_sym_FALSE] = ACTIONS(2481), + [anon_sym_null] = ACTIONS(2481), + [anon_sym_Null] = ACTIONS(2481), + [anon_sym_NULL] = ACTIONS(2481), + [sym_string] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(2483), + [anon_sym_TILDE] = ACTIONS(2483), + [anon_sym_array] = ACTIONS(2481), + [anon_sym_varray] = ACTIONS(2481), + [anon_sym_darray] = ACTIONS(2481), + [anon_sym_vec] = ACTIONS(2481), + [anon_sym_dict] = ACTIONS(2481), + [anon_sym_keyset] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_list] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_PLUS_PLUS] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2483), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2483), + [sym_final_modifier] = ACTIONS(2481), + [sym_xhp_modifier] = ACTIONS(2481), + [sym_xhp_identifier] = ACTIONS(2481), + [sym_xhp_class_identifier] = ACTIONS(2483), [sym_comment] = ACTIONS(3), }, - [1582] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1575] = { + [sym_identifier] = ACTIONS(2089), + [sym_variable] = ACTIONS(2091), + [sym_pipe_variable] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_newtype] = ACTIONS(2089), + [anon_sym_shape] = ACTIONS(2089), + [anon_sym_tuple] = ACTIONS(2089), + [anon_sym_clone] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_print] = ACTIONS(2089), + [anon_sym_namespace] = ACTIONS(2089), + [anon_sym_include] = ACTIONS(2089), + [anon_sym_include_once] = ACTIONS(2089), + [anon_sym_require] = ACTIONS(2089), + [anon_sym_require_once] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2091), + [anon_sym_self] = ACTIONS(2089), + [anon_sym_parent] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_LT_LT_LT] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_throw] = ACTIONS(2089), + [anon_sym_echo] = ACTIONS(2089), + [anon_sym_unset] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_concurrent] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_foreach] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_do] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_using] = ACTIONS(2089), + [sym_float] = ACTIONS(2091), + [sym_integer] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_True] = ACTIONS(2089), + [anon_sym_TRUE] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_False] = ACTIONS(2089), + [anon_sym_FALSE] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [anon_sym_Null] = ACTIONS(2089), + [anon_sym_NULL] = ACTIONS(2089), + [sym_string] = ACTIONS(2091), + [anon_sym_AT] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2091), + [anon_sym_array] = ACTIONS(2089), + [anon_sym_varray] = ACTIONS(2089), + [anon_sym_darray] = ACTIONS(2089), + [anon_sym_vec] = ACTIONS(2089), + [anon_sym_dict] = ACTIONS(2089), + [anon_sym_keyset] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_list] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2091), + [sym_final_modifier] = ACTIONS(2089), + [sym_xhp_modifier] = ACTIONS(2089), + [sym_xhp_identifier] = ACTIONS(2089), + [sym_xhp_class_identifier] = ACTIONS(2091), [sym_comment] = ACTIONS(3), }, - [1583] = { - [sym_identifier] = ACTIONS(2585), - [sym_variable] = ACTIONS(2587), - [sym_pipe_variable] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_newtype] = ACTIONS(2585), - [anon_sym_shape] = ACTIONS(2585), - [anon_sym_tuple] = ACTIONS(2585), - [anon_sym_clone] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_print] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_include] = ACTIONS(2585), - [anon_sym_include_once] = ACTIONS(2585), - [anon_sym_require] = ACTIONS(2585), - [anon_sym_require_once] = ACTIONS(2585), - [anon_sym_BSLASH] = ACTIONS(2587), - [anon_sym_self] = ACTIONS(2585), - [anon_sym_parent] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_LT_LT_LT] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_echo] = ACTIONS(2585), - [anon_sym_unset] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_concurrent] = ACTIONS(2585), - [anon_sym_use] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_foreach] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [sym_float] = ACTIONS(2587), - [sym_integer] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2585), - [anon_sym_True] = ACTIONS(2585), - [anon_sym_TRUE] = ACTIONS(2585), - [anon_sym_false] = ACTIONS(2585), - [anon_sym_False] = ACTIONS(2585), - [anon_sym_FALSE] = ACTIONS(2585), - [anon_sym_null] = ACTIONS(2585), - [anon_sym_Null] = ACTIONS(2585), - [anon_sym_NULL] = ACTIONS(2585), - [sym_string] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_array] = ACTIONS(2585), - [anon_sym_varray] = ACTIONS(2585), - [anon_sym_darray] = ACTIONS(2585), - [anon_sym_vec] = ACTIONS(2585), - [anon_sym_dict] = ACTIONS(2585), - [anon_sym_keyset] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_list] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_trait] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2587), - [sym_final_modifier] = ACTIONS(2585), - [sym_xhp_modifier] = ACTIONS(2585), - [sym_xhp_identifier] = ACTIONS(2585), - [sym_xhp_class_identifier] = ACTIONS(2587), + [1576] = { + [sym_identifier] = ACTIONS(2145), + [sym_variable] = ACTIONS(2147), + [sym_pipe_variable] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_newtype] = ACTIONS(2145), + [anon_sym_shape] = ACTIONS(2145), + [anon_sym_tuple] = ACTIONS(2145), + [anon_sym_clone] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_print] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_include] = ACTIONS(2145), + [anon_sym_include_once] = ACTIONS(2145), + [anon_sym_require] = ACTIONS(2145), + [anon_sym_require_once] = ACTIONS(2145), + [anon_sym_BSLASH] = ACTIONS(2147), + [anon_sym_self] = ACTIONS(2145), + [anon_sym_parent] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_LT_LT_LT] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_echo] = ACTIONS(2145), + [anon_sym_unset] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_concurrent] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_foreach] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [sym_float] = ACTIONS(2147), + [sym_integer] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_True] = ACTIONS(2145), + [anon_sym_TRUE] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_False] = ACTIONS(2145), + [anon_sym_FALSE] = ACTIONS(2145), + [anon_sym_null] = ACTIONS(2145), + [anon_sym_Null] = ACTIONS(2145), + [anon_sym_NULL] = ACTIONS(2145), + [sym_string] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_array] = ACTIONS(2145), + [anon_sym_varray] = ACTIONS(2145), + [anon_sym_darray] = ACTIONS(2145), + [anon_sym_vec] = ACTIONS(2145), + [anon_sym_dict] = ACTIONS(2145), + [anon_sym_keyset] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_list] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2147), + [sym_final_modifier] = ACTIONS(2145), + [sym_xhp_modifier] = ACTIONS(2145), + [sym_xhp_identifier] = ACTIONS(2145), + [sym_xhp_class_identifier] = ACTIONS(2147), [sym_comment] = ACTIONS(3), }, - [1584] = { - [sym_identifier] = ACTIONS(2133), - [sym_variable] = ACTIONS(2135), - [sym_pipe_variable] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_newtype] = ACTIONS(2133), - [anon_sym_shape] = ACTIONS(2133), - [anon_sym_tuple] = ACTIONS(2133), - [anon_sym_clone] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_print] = ACTIONS(2133), - [anon_sym_namespace] = ACTIONS(2133), - [anon_sym_include] = ACTIONS(2133), - [anon_sym_include_once] = ACTIONS(2133), - [anon_sym_require] = ACTIONS(2133), - [anon_sym_require_once] = ACTIONS(2133), - [anon_sym_BSLASH] = ACTIONS(2135), - [anon_sym_self] = ACTIONS(2133), - [anon_sym_parent] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_LT_LT_LT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_throw] = ACTIONS(2133), - [anon_sym_echo] = ACTIONS(2133), - [anon_sym_unset] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_concurrent] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_foreach] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(2133), - [sym_float] = ACTIONS(2135), - [sym_integer] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_True] = ACTIONS(2133), - [anon_sym_TRUE] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_False] = ACTIONS(2133), - [anon_sym_FALSE] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [anon_sym_Null] = ACTIONS(2133), - [anon_sym_NULL] = ACTIONS(2133), - [sym_string] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_array] = ACTIONS(2133), - [anon_sym_varray] = ACTIONS(2133), - [anon_sym_darray] = ACTIONS(2133), - [anon_sym_vec] = ACTIONS(2133), - [anon_sym_dict] = ACTIONS(2133), - [anon_sym_keyset] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_list] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_trait] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_class] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_abstract] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2135), - [sym_final_modifier] = ACTIONS(2133), - [sym_xhp_modifier] = ACTIONS(2133), - [sym_xhp_identifier] = ACTIONS(2133), - [sym_xhp_class_identifier] = ACTIONS(2135), + [1577] = { + [sym_identifier] = ACTIONS(2553), + [sym_variable] = ACTIONS(2555), + [sym_pipe_variable] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_newtype] = ACTIONS(2553), + [anon_sym_shape] = ACTIONS(2553), + [anon_sym_tuple] = ACTIONS(2553), + [anon_sym_clone] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_namespace] = ACTIONS(2553), + [anon_sym_include] = ACTIONS(2553), + [anon_sym_include_once] = ACTIONS(2553), + [anon_sym_require] = ACTIONS(2553), + [anon_sym_require_once] = ACTIONS(2553), + [anon_sym_BSLASH] = ACTIONS(2555), + [anon_sym_self] = ACTIONS(2553), + [anon_sym_parent] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_LT_LT] = ACTIONS(2553), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_throw] = ACTIONS(2553), + [anon_sym_echo] = ACTIONS(2553), + [anon_sym_unset] = ACTIONS(2553), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_concurrent] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_function] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_switch] = ACTIONS(2553), + [anon_sym_foreach] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_do] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [anon_sym_using] = ACTIONS(2553), + [sym_float] = ACTIONS(2555), + [sym_integer] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_True] = ACTIONS(2553), + [anon_sym_TRUE] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_False] = ACTIONS(2553), + [anon_sym_FALSE] = ACTIONS(2553), + [anon_sym_null] = ACTIONS(2553), + [anon_sym_Null] = ACTIONS(2553), + [anon_sym_NULL] = ACTIONS(2553), + [sym_string] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_array] = ACTIONS(2553), + [anon_sym_varray] = ACTIONS(2553), + [anon_sym_darray] = ACTIONS(2553), + [anon_sym_vec] = ACTIONS(2553), + [anon_sym_dict] = ACTIONS(2553), + [anon_sym_keyset] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_list] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_await] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_interface] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(2555), + [sym_final_modifier] = ACTIONS(2553), + [sym_xhp_modifier] = ACTIONS(2553), + [sym_xhp_identifier] = ACTIONS(2553), + [sym_xhp_class_identifier] = ACTIONS(2555), [sym_comment] = ACTIONS(3), }, - [1585] = { - [sym_identifier] = ACTIONS(2149), - [sym_variable] = ACTIONS(2151), - [sym_pipe_variable] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_newtype] = ACTIONS(2149), - [anon_sym_shape] = ACTIONS(2149), - [anon_sym_tuple] = ACTIONS(2149), - [anon_sym_clone] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_print] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_include] = ACTIONS(2149), - [anon_sym_include_once] = ACTIONS(2149), - [anon_sym_require] = ACTIONS(2149), - [anon_sym_require_once] = ACTIONS(2149), - [anon_sym_BSLASH] = ACTIONS(2151), - [anon_sym_self] = ACTIONS(2149), - [anon_sym_parent] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_LT_LT_LT] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_echo] = ACTIONS(2149), - [anon_sym_unset] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_concurrent] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_foreach] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [sym_float] = ACTIONS(2151), - [sym_integer] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_True] = ACTIONS(2149), - [anon_sym_TRUE] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_False] = ACTIONS(2149), - [anon_sym_FALSE] = ACTIONS(2149), - [anon_sym_null] = ACTIONS(2149), - [anon_sym_Null] = ACTIONS(2149), - [anon_sym_NULL] = ACTIONS(2149), - [sym_string] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_array] = ACTIONS(2149), - [anon_sym_varray] = ACTIONS(2149), - [anon_sym_darray] = ACTIONS(2149), - [anon_sym_vec] = ACTIONS(2149), - [anon_sym_dict] = ACTIONS(2149), - [anon_sym_keyset] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_list] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_abstract] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2151), - [sym_final_modifier] = ACTIONS(2149), - [sym_xhp_modifier] = ACTIONS(2149), - [sym_xhp_identifier] = ACTIONS(2149), - [sym_xhp_class_identifier] = ACTIONS(2151), + [1578] = { + [ts_builtin_sym_end] = ACTIONS(2383), + [sym_identifier] = ACTIONS(2381), + [sym_variable] = ACTIONS(2383), + [sym_pipe_variable] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_newtype] = ACTIONS(2381), + [anon_sym_shape] = ACTIONS(2381), + [anon_sym_tuple] = ACTIONS(2381), + [anon_sym_clone] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_include] = ACTIONS(2381), + [anon_sym_include_once] = ACTIONS(2381), + [anon_sym_require] = ACTIONS(2381), + [anon_sym_require_once] = ACTIONS(2381), + [anon_sym_BSLASH] = ACTIONS(2383), + [anon_sym_self] = ACTIONS(2381), + [anon_sym_parent] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_LT_LT_LT] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_echo] = ACTIONS(2381), + [anon_sym_unset] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_concurrent] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_foreach] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [sym_float] = ACTIONS(2383), + [sym_integer] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_True] = ACTIONS(2381), + [anon_sym_TRUE] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_False] = ACTIONS(2381), + [anon_sym_FALSE] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [anon_sym_Null] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [sym_string] = ACTIONS(2383), + [anon_sym_AT] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_array] = ACTIONS(2381), + [anon_sym_varray] = ACTIONS(2381), + [anon_sym_darray] = ACTIONS(2381), + [anon_sym_vec] = ACTIONS(2381), + [anon_sym_dict] = ACTIONS(2381), + [anon_sym_keyset] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_list] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2383), + [sym_final_modifier] = ACTIONS(2381), + [sym_xhp_modifier] = ACTIONS(2381), + [sym_xhp_identifier] = ACTIONS(2381), + [sym_xhp_class_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(3), }, - [1586] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2177), - [sym_variable] = ACTIONS(2179), - [sym_pipe_variable] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_newtype] = ACTIONS(2177), - [anon_sym_shape] = ACTIONS(2177), - [anon_sym_tuple] = ACTIONS(2177), - [anon_sym_clone] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_print] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_include] = ACTIONS(2177), - [anon_sym_include_once] = ACTIONS(2177), - [anon_sym_require] = ACTIONS(2177), - [anon_sym_require_once] = ACTIONS(2177), - [anon_sym_BSLASH] = ACTIONS(2179), - [anon_sym_self] = ACTIONS(2177), - [anon_sym_parent] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_LT_LT_LT] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_throw] = ACTIONS(2177), - [anon_sym_echo] = ACTIONS(2177), - [anon_sym_unset] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_concurrent] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_function] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [anon_sym_foreach] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_using] = ACTIONS(2177), - [sym_float] = ACTIONS(2179), - [sym_integer] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_True] = ACTIONS(2177), - [anon_sym_TRUE] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [anon_sym_False] = ACTIONS(2177), - [anon_sym_FALSE] = ACTIONS(2177), - [anon_sym_null] = ACTIONS(2177), - [anon_sym_Null] = ACTIONS(2177), - [anon_sym_NULL] = ACTIONS(2177), - [sym_string] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_array] = ACTIONS(2177), - [anon_sym_varray] = ACTIONS(2177), - [anon_sym_darray] = ACTIONS(2177), - [anon_sym_vec] = ACTIONS(2177), - [anon_sym_dict] = ACTIONS(2177), - [anon_sym_keyset] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_list] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_class] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_abstract] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2179), - [sym_final_modifier] = ACTIONS(2177), - [sym_xhp_modifier] = ACTIONS(2177), - [sym_xhp_identifier] = ACTIONS(2177), - [sym_xhp_class_identifier] = ACTIONS(2179), + [1579] = { + [sym_identifier] = ACTIONS(2557), + [sym_variable] = ACTIONS(2559), + [sym_pipe_variable] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_newtype] = ACTIONS(2557), + [anon_sym_shape] = ACTIONS(2557), + [anon_sym_tuple] = ACTIONS(2557), + [anon_sym_clone] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_print] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_include] = ACTIONS(2557), + [anon_sym_include_once] = ACTIONS(2557), + [anon_sym_require] = ACTIONS(2557), + [anon_sym_require_once] = ACTIONS(2557), + [anon_sym_BSLASH] = ACTIONS(2559), + [anon_sym_self] = ACTIONS(2557), + [anon_sym_parent] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2557), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_echo] = ACTIONS(2557), + [anon_sym_unset] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_concurrent] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_function] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_foreach] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [sym_float] = ACTIONS(2559), + [sym_integer] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_True] = ACTIONS(2557), + [anon_sym_TRUE] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_False] = ACTIONS(2557), + [anon_sym_FALSE] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2557), + [anon_sym_Null] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2557), + [sym_string] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_array] = ACTIONS(2557), + [anon_sym_varray] = ACTIONS(2557), + [anon_sym_darray] = ACTIONS(2557), + [anon_sym_vec] = ACTIONS(2557), + [anon_sym_dict] = ACTIONS(2557), + [anon_sym_keyset] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_await] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_interface] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_abstract] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(2559), + [sym_final_modifier] = ACTIONS(2557), + [sym_xhp_modifier] = ACTIONS(2557), + [sym_xhp_identifier] = ACTIONS(2557), + [sym_xhp_class_identifier] = ACTIONS(2559), [sym_comment] = ACTIONS(3), }, - [1587] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1580] = { + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2353), + [sym_variable] = ACTIONS(2355), + [sym_pipe_variable] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_newtype] = ACTIONS(2353), + [anon_sym_shape] = ACTIONS(2353), + [anon_sym_tuple] = ACTIONS(2353), + [anon_sym_clone] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_print] = ACTIONS(2353), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_include] = ACTIONS(2353), + [anon_sym_include_once] = ACTIONS(2353), + [anon_sym_require] = ACTIONS(2353), + [anon_sym_require_once] = ACTIONS(2353), + [anon_sym_BSLASH] = ACTIONS(2355), + [anon_sym_self] = ACTIONS(2353), + [anon_sym_parent] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_LT_LT] = ACTIONS(2353), + [anon_sym_LT_LT_LT] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_throw] = ACTIONS(2353), + [anon_sym_echo] = ACTIONS(2353), + [anon_sym_unset] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_concurrent] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_function] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_switch] = ACTIONS(2353), + [anon_sym_foreach] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_using] = ACTIONS(2353), + [sym_float] = ACTIONS(2355), + [sym_integer] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_True] = ACTIONS(2353), + [anon_sym_TRUE] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_False] = ACTIONS(2353), + [anon_sym_FALSE] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_Null] = ACTIONS(2353), + [anon_sym_NULL] = ACTIONS(2353), + [sym_string] = ACTIONS(2355), + [anon_sym_AT] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_array] = ACTIONS(2353), + [anon_sym_varray] = ACTIONS(2353), + [anon_sym_darray] = ACTIONS(2353), + [anon_sym_vec] = ACTIONS(2353), + [anon_sym_dict] = ACTIONS(2353), + [anon_sym_keyset] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_list] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_interface] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_abstract] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2355), + [sym_final_modifier] = ACTIONS(2353), + [sym_xhp_modifier] = ACTIONS(2353), + [sym_xhp_identifier] = ACTIONS(2353), + [sym_xhp_class_identifier] = ACTIONS(2355), [sym_comment] = ACTIONS(3), }, - [1588] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1581] = { + [sym_identifier] = ACTIONS(2141), + [sym_variable] = ACTIONS(2143), + [sym_pipe_variable] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_newtype] = ACTIONS(2141), + [anon_sym_shape] = ACTIONS(2141), + [anon_sym_tuple] = ACTIONS(2141), + [anon_sym_clone] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_print] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_include_once] = ACTIONS(2141), + [anon_sym_require] = ACTIONS(2141), + [anon_sym_require_once] = ACTIONS(2141), + [anon_sym_BSLASH] = ACTIONS(2143), + [anon_sym_self] = ACTIONS(2141), + [anon_sym_parent] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_LT_LT] = ACTIONS(2141), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2141), + [anon_sym_echo] = ACTIONS(2141), + [anon_sym_unset] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_concurrent] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_function] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_switch] = ACTIONS(2141), + [anon_sym_foreach] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_using] = ACTIONS(2141), + [sym_float] = ACTIONS(2143), + [sym_integer] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_True] = ACTIONS(2141), + [anon_sym_TRUE] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_False] = ACTIONS(2141), + [anon_sym_FALSE] = ACTIONS(2141), + [anon_sym_null] = ACTIONS(2141), + [anon_sym_Null] = ACTIONS(2141), + [anon_sym_NULL] = ACTIONS(2141), + [sym_string] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_array] = ACTIONS(2141), + [anon_sym_varray] = ACTIONS(2141), + [anon_sym_darray] = ACTIONS(2141), + [anon_sym_vec] = ACTIONS(2141), + [anon_sym_dict] = ACTIONS(2141), + [anon_sym_keyset] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_list] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(2143), + [anon_sym_DASH_DASH] = ACTIONS(2143), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_interface] = ACTIONS(2141), + [anon_sym_class] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2143), + [sym_final_modifier] = ACTIONS(2141), + [sym_xhp_modifier] = ACTIONS(2141), + [sym_xhp_identifier] = ACTIONS(2141), + [sym_xhp_class_identifier] = ACTIONS(2143), [sym_comment] = ACTIONS(3), }, - [1589] = { - [ts_builtin_sym_end] = ACTIONS(2539), - [sym_identifier] = ACTIONS(2537), - [sym_variable] = ACTIONS(2539), - [sym_pipe_variable] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2537), - [anon_sym_newtype] = ACTIONS(2537), - [anon_sym_shape] = ACTIONS(2537), - [anon_sym_tuple] = ACTIONS(2537), - [anon_sym_clone] = ACTIONS(2537), - [anon_sym_new] = ACTIONS(2537), - [anon_sym_print] = ACTIONS(2537), - [anon_sym_namespace] = ACTIONS(2537), - [anon_sym_include] = ACTIONS(2537), - [anon_sym_include_once] = ACTIONS(2537), - [anon_sym_require] = ACTIONS(2537), - [anon_sym_require_once] = ACTIONS(2537), - [anon_sym_BSLASH] = ACTIONS(2539), - [anon_sym_self] = ACTIONS(2537), - [anon_sym_parent] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2537), - [anon_sym_LT_LT] = ACTIONS(2537), - [anon_sym_LT_LT_LT] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_throw] = ACTIONS(2537), - [anon_sym_echo] = ACTIONS(2537), - [anon_sym_unset] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_concurrent] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_function] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_switch] = ACTIONS(2537), - [anon_sym_foreach] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_do] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [anon_sym_using] = ACTIONS(2537), - [sym_float] = ACTIONS(2539), - [sym_integer] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_True] = ACTIONS(2537), - [anon_sym_TRUE] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_False] = ACTIONS(2537), - [anon_sym_FALSE] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2537), - [anon_sym_Null] = ACTIONS(2537), - [anon_sym_NULL] = ACTIONS(2537), - [sym_string] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_TILDE] = ACTIONS(2539), - [anon_sym_array] = ACTIONS(2537), - [anon_sym_varray] = ACTIONS(2537), - [anon_sym_darray] = ACTIONS(2537), - [anon_sym_vec] = ACTIONS(2537), - [anon_sym_dict] = ACTIONS(2537), - [anon_sym_keyset] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_list] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_await] = ACTIONS(2537), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_trait] = ACTIONS(2537), - [anon_sym_interface] = ACTIONS(2537), - [anon_sym_class] = ACTIONS(2537), - [anon_sym_enum] = ACTIONS(2537), - [anon_sym_abstract] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2539), - [sym_final_modifier] = ACTIONS(2537), - [sym_xhp_modifier] = ACTIONS(2537), - [sym_xhp_identifier] = ACTIONS(2537), - [sym_xhp_class_identifier] = ACTIONS(2539), + [1582] = { + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2533), + [sym_variable] = ACTIONS(2535), + [sym_pipe_variable] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_newtype] = ACTIONS(2533), + [anon_sym_shape] = ACTIONS(2533), + [anon_sym_tuple] = ACTIONS(2533), + [anon_sym_clone] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_include] = ACTIONS(2533), + [anon_sym_include_once] = ACTIONS(2533), + [anon_sym_require] = ACTIONS(2533), + [anon_sym_require_once] = ACTIONS(2533), + [anon_sym_BSLASH] = ACTIONS(2535), + [anon_sym_self] = ACTIONS(2533), + [anon_sym_parent] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_LT_LT] = ACTIONS(2533), + [anon_sym_LT_LT_LT] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_echo] = ACTIONS(2533), + [anon_sym_unset] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_concurrent] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_foreach] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [sym_float] = ACTIONS(2535), + [sym_integer] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_True] = ACTIONS(2533), + [anon_sym_TRUE] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_False] = ACTIONS(2533), + [anon_sym_FALSE] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [anon_sym_Null] = ACTIONS(2533), + [anon_sym_NULL] = ACTIONS(2533), + [sym_string] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_array] = ACTIONS(2533), + [anon_sym_varray] = ACTIONS(2533), + [anon_sym_darray] = ACTIONS(2533), + [anon_sym_vec] = ACTIONS(2533), + [anon_sym_dict] = ACTIONS(2533), + [anon_sym_keyset] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_list] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_interface] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_abstract] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2535), + [sym_final_modifier] = ACTIONS(2533), + [sym_xhp_modifier] = ACTIONS(2533), + [sym_xhp_identifier] = ACTIONS(2533), + [sym_xhp_class_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(3), }, - [1590] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1583] = { + [sym_identifier] = ACTIONS(2477), + [sym_variable] = ACTIONS(2479), + [sym_pipe_variable] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_newtype] = ACTIONS(2477), + [anon_sym_shape] = ACTIONS(2477), + [anon_sym_tuple] = ACTIONS(2477), + [anon_sym_clone] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_print] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_include] = ACTIONS(2477), + [anon_sym_include_once] = ACTIONS(2477), + [anon_sym_require] = ACTIONS(2477), + [anon_sym_require_once] = ACTIONS(2477), + [anon_sym_BSLASH] = ACTIONS(2479), + [anon_sym_self] = ACTIONS(2477), + [anon_sym_parent] = ACTIONS(2477), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_LT_LT_LT] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_throw] = ACTIONS(2477), + [anon_sym_echo] = ACTIONS(2477), + [anon_sym_unset] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_concurrent] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_switch] = ACTIONS(2477), + [anon_sym_foreach] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_using] = ACTIONS(2477), + [sym_float] = ACTIONS(2479), + [sym_integer] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_True] = ACTIONS(2477), + [anon_sym_TRUE] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_False] = ACTIONS(2477), + [anon_sym_FALSE] = ACTIONS(2477), + [anon_sym_null] = ACTIONS(2477), + [anon_sym_Null] = ACTIONS(2477), + [anon_sym_NULL] = ACTIONS(2477), + [sym_string] = ACTIONS(2479), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_array] = ACTIONS(2477), + [anon_sym_varray] = ACTIONS(2477), + [anon_sym_darray] = ACTIONS(2477), + [anon_sym_vec] = ACTIONS(2477), + [anon_sym_dict] = ACTIONS(2477), + [anon_sym_keyset] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_trait] = ACTIONS(2477), + [anon_sym_interface] = ACTIONS(2477), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_abstract] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2479), + [sym_final_modifier] = ACTIONS(2477), + [sym_xhp_modifier] = ACTIONS(2477), + [sym_xhp_identifier] = ACTIONS(2477), + [sym_xhp_class_identifier] = ACTIONS(2479), [sym_comment] = ACTIONS(3), }, - [1591] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1584] = { + [sym_identifier] = ACTIONS(2473), + [sym_variable] = ACTIONS(2475), + [sym_pipe_variable] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_newtype] = ACTIONS(2473), + [anon_sym_shape] = ACTIONS(2473), + [anon_sym_tuple] = ACTIONS(2473), + [anon_sym_clone] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_include] = ACTIONS(2473), + [anon_sym_include_once] = ACTIONS(2473), + [anon_sym_require] = ACTIONS(2473), + [anon_sym_require_once] = ACTIONS(2473), + [anon_sym_BSLASH] = ACTIONS(2475), + [anon_sym_self] = ACTIONS(2473), + [anon_sym_parent] = ACTIONS(2473), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_LT_LT_LT] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_throw] = ACTIONS(2473), + [anon_sym_echo] = ACTIONS(2473), + [anon_sym_unset] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_concurrent] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_switch] = ACTIONS(2473), + [anon_sym_foreach] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_using] = ACTIONS(2473), + [sym_float] = ACTIONS(2475), + [sym_integer] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_True] = ACTIONS(2473), + [anon_sym_TRUE] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_False] = ACTIONS(2473), + [anon_sym_FALSE] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2473), + [anon_sym_Null] = ACTIONS(2473), + [anon_sym_NULL] = ACTIONS(2473), + [sym_string] = ACTIONS(2475), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_array] = ACTIONS(2473), + [anon_sym_varray] = ACTIONS(2473), + [anon_sym_darray] = ACTIONS(2473), + [anon_sym_vec] = ACTIONS(2473), + [anon_sym_dict] = ACTIONS(2473), + [anon_sym_keyset] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_trait] = ACTIONS(2473), + [anon_sym_interface] = ACTIONS(2473), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_abstract] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2475), + [sym_final_modifier] = ACTIONS(2473), + [sym_xhp_modifier] = ACTIONS(2473), + [sym_xhp_identifier] = ACTIONS(2473), + [sym_xhp_class_identifier] = ACTIONS(2475), [sym_comment] = ACTIONS(3), }, - [1592] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1585] = { + [ts_builtin_sym_end] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2557), + [sym_variable] = ACTIONS(2559), + [sym_pipe_variable] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_newtype] = ACTIONS(2557), + [anon_sym_shape] = ACTIONS(2557), + [anon_sym_tuple] = ACTIONS(2557), + [anon_sym_clone] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_print] = ACTIONS(2557), + [anon_sym_namespace] = ACTIONS(2557), + [anon_sym_include] = ACTIONS(2557), + [anon_sym_include_once] = ACTIONS(2557), + [anon_sym_require] = ACTIONS(2557), + [anon_sym_require_once] = ACTIONS(2557), + [anon_sym_BSLASH] = ACTIONS(2559), + [anon_sym_self] = ACTIONS(2557), + [anon_sym_parent] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_LT_LT] = ACTIONS(2557), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_echo] = ACTIONS(2557), + [anon_sym_unset] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_concurrent] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_function] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_switch] = ACTIONS(2557), + [anon_sym_foreach] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_using] = ACTIONS(2557), + [sym_float] = ACTIONS(2559), + [sym_integer] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_True] = ACTIONS(2557), + [anon_sym_TRUE] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_False] = ACTIONS(2557), + [anon_sym_FALSE] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2557), + [anon_sym_Null] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2557), + [sym_string] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_array] = ACTIONS(2557), + [anon_sym_varray] = ACTIONS(2557), + [anon_sym_darray] = ACTIONS(2557), + [anon_sym_vec] = ACTIONS(2557), + [anon_sym_dict] = ACTIONS(2557), + [anon_sym_keyset] = ACTIONS(2557), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_await] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_interface] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_abstract] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(2559), + [sym_final_modifier] = ACTIONS(2557), + [sym_xhp_modifier] = ACTIONS(2557), + [sym_xhp_identifier] = ACTIONS(2557), + [sym_xhp_class_identifier] = ACTIONS(2559), [sym_comment] = ACTIONS(3), }, - [1593] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1586] = { + [sym_identifier] = ACTIONS(2469), + [sym_variable] = ACTIONS(2471), + [sym_pipe_variable] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_newtype] = ACTIONS(2469), + [anon_sym_shape] = ACTIONS(2469), + [anon_sym_tuple] = ACTIONS(2469), + [anon_sym_clone] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_include_once] = ACTIONS(2469), + [anon_sym_require] = ACTIONS(2469), + [anon_sym_require_once] = ACTIONS(2469), + [anon_sym_BSLASH] = ACTIONS(2471), + [anon_sym_self] = ACTIONS(2469), + [anon_sym_parent] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_LT_LT_LT] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_echo] = ACTIONS(2469), + [anon_sym_unset] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_concurrent] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_function] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_foreach] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [sym_integer] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_True] = ACTIONS(2469), + [anon_sym_TRUE] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_False] = ACTIONS(2469), + [anon_sym_FALSE] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [anon_sym_Null] = ACTIONS(2469), + [anon_sym_NULL] = ACTIONS(2469), + [sym_string] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_array] = ACTIONS(2469), + [anon_sym_varray] = ACTIONS(2469), + [anon_sym_darray] = ACTIONS(2469), + [anon_sym_vec] = ACTIONS(2469), + [anon_sym_dict] = ACTIONS(2469), + [anon_sym_keyset] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_trait] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_abstract] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2471), + [sym_final_modifier] = ACTIONS(2469), + [sym_xhp_modifier] = ACTIONS(2469), + [sym_xhp_identifier] = ACTIONS(2469), + [sym_xhp_class_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(3), }, - [1594] = { - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2097), - [sym_variable] = ACTIONS(2099), - [sym_pipe_variable] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_newtype] = ACTIONS(2097), - [anon_sym_shape] = ACTIONS(2097), - [anon_sym_tuple] = ACTIONS(2097), - [anon_sym_clone] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_print] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2097), - [anon_sym_include] = ACTIONS(2097), - [anon_sym_include_once] = ACTIONS(2097), - [anon_sym_require] = ACTIONS(2097), - [anon_sym_require_once] = ACTIONS(2097), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_self] = ACTIONS(2097), - [anon_sym_parent] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_LT_LT_LT] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_throw] = ACTIONS(2097), - [anon_sym_echo] = ACTIONS(2097), - [anon_sym_unset] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_concurrent] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_function] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_foreach] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_using] = ACTIONS(2097), - [sym_float] = ACTIONS(2099), - [sym_integer] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_True] = ACTIONS(2097), - [anon_sym_TRUE] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_False] = ACTIONS(2097), - [anon_sym_FALSE] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [anon_sym_Null] = ACTIONS(2097), - [anon_sym_NULL] = ACTIONS(2097), - [sym_string] = ACTIONS(2099), - [anon_sym_AT] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_array] = ACTIONS(2097), - [anon_sym_varray] = ACTIONS(2097), - [anon_sym_darray] = ACTIONS(2097), - [anon_sym_vec] = ACTIONS(2097), - [anon_sym_dict] = ACTIONS(2097), - [anon_sym_keyset] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_abstract] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2099), - [sym_final_modifier] = ACTIONS(2097), - [sym_xhp_modifier] = ACTIONS(2097), - [sym_xhp_identifier] = ACTIONS(2097), - [sym_xhp_class_identifier] = ACTIONS(2099), + [1587] = { + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [1595] = { - [ts_builtin_sym_end] = ACTIONS(2447), - [sym_identifier] = ACTIONS(2445), - [sym_variable] = ACTIONS(2447), - [sym_pipe_variable] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_newtype] = ACTIONS(2445), - [anon_sym_shape] = ACTIONS(2445), - [anon_sym_tuple] = ACTIONS(2445), - [anon_sym_clone] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_print] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_LT_LT_LT] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_echo] = ACTIONS(2445), - [anon_sym_unset] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_concurrent] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_foreach] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [sym_float] = ACTIONS(2447), - [sym_integer] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_True] = ACTIONS(2445), - [anon_sym_TRUE] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [anon_sym_False] = ACTIONS(2445), - [anon_sym_FALSE] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(2445), - [anon_sym_Null] = ACTIONS(2445), - [anon_sym_NULL] = ACTIONS(2445), - [sym_string] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_array] = ACTIONS(2445), - [anon_sym_varray] = ACTIONS(2445), - [anon_sym_darray] = ACTIONS(2445), - [anon_sym_vec] = ACTIONS(2445), - [anon_sym_dict] = ACTIONS(2445), - [anon_sym_keyset] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_abstract] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2447), - [sym_final_modifier] = ACTIONS(2445), - [sym_xhp_modifier] = ACTIONS(2445), - [sym_xhp_identifier] = ACTIONS(2445), - [sym_xhp_class_identifier] = ACTIONS(2447), + [1588] = { + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2301), + [sym_variable] = ACTIONS(2303), + [sym_pipe_variable] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_newtype] = ACTIONS(2301), + [anon_sym_shape] = ACTIONS(2301), + [anon_sym_tuple] = ACTIONS(2301), + [anon_sym_clone] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_print] = ACTIONS(2301), + [anon_sym_namespace] = ACTIONS(2301), + [anon_sym_include] = ACTIONS(2301), + [anon_sym_include_once] = ACTIONS(2301), + [anon_sym_require] = ACTIONS(2301), + [anon_sym_require_once] = ACTIONS(2301), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_self] = ACTIONS(2301), + [anon_sym_parent] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_LT_LT_LT] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_throw] = ACTIONS(2301), + [anon_sym_echo] = ACTIONS(2301), + [anon_sym_unset] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_concurrent] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_function] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_switch] = ACTIONS(2301), + [anon_sym_foreach] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_do] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_using] = ACTIONS(2301), + [sym_float] = ACTIONS(2303), + [sym_integer] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_True] = ACTIONS(2301), + [anon_sym_TRUE] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_False] = ACTIONS(2301), + [anon_sym_FALSE] = ACTIONS(2301), + [anon_sym_null] = ACTIONS(2301), + [anon_sym_Null] = ACTIONS(2301), + [anon_sym_NULL] = ACTIONS(2301), + [sym_string] = ACTIONS(2303), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_array] = ACTIONS(2301), + [anon_sym_varray] = ACTIONS(2301), + [anon_sym_darray] = ACTIONS(2301), + [anon_sym_vec] = ACTIONS(2301), + [anon_sym_dict] = ACTIONS(2301), + [anon_sym_keyset] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_list] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_interface] = ACTIONS(2301), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_abstract] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2303), + [sym_final_modifier] = ACTIONS(2301), + [sym_xhp_modifier] = ACTIONS(2301), + [sym_xhp_identifier] = ACTIONS(2301), + [sym_xhp_class_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(3), }, - [1596] = { - [ts_builtin_sym_end] = ACTIONS(2491), - [sym_identifier] = ACTIONS(2489), - [sym_variable] = ACTIONS(2491), - [sym_pipe_variable] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_newtype] = ACTIONS(2489), - [anon_sym_shape] = ACTIONS(2489), - [anon_sym_tuple] = ACTIONS(2489), - [anon_sym_clone] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_print] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), - [anon_sym_LT_LT_LT] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_echo] = ACTIONS(2489), - [anon_sym_unset] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_concurrent] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_foreach] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [sym_float] = ACTIONS(2491), - [sym_integer] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_True] = ACTIONS(2489), - [anon_sym_TRUE] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_False] = ACTIONS(2489), - [anon_sym_FALSE] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [anon_sym_Null] = ACTIONS(2489), - [anon_sym_NULL] = ACTIONS(2489), - [sym_string] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_array] = ACTIONS(2489), - [anon_sym_varray] = ACTIONS(2489), - [anon_sym_darray] = ACTIONS(2489), - [anon_sym_vec] = ACTIONS(2489), - [anon_sym_dict] = ACTIONS(2489), - [anon_sym_keyset] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2491), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_trait] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2491), - [sym_final_modifier] = ACTIONS(2489), - [sym_xhp_modifier] = ACTIONS(2489), - [sym_xhp_identifier] = ACTIONS(2489), - [sym_xhp_class_identifier] = ACTIONS(2491), + [1589] = { + [ts_builtin_sym_end] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2137), + [sym_variable] = ACTIONS(2139), + [sym_pipe_variable] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_newtype] = ACTIONS(2137), + [anon_sym_shape] = ACTIONS(2137), + [anon_sym_tuple] = ACTIONS(2137), + [anon_sym_clone] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_include] = ACTIONS(2137), + [anon_sym_include_once] = ACTIONS(2137), + [anon_sym_require] = ACTIONS(2137), + [anon_sym_require_once] = ACTIONS(2137), + [anon_sym_BSLASH] = ACTIONS(2139), + [anon_sym_self] = ACTIONS(2137), + [anon_sym_parent] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2137), + [anon_sym_LT_LT_LT] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_echo] = ACTIONS(2137), + [anon_sym_unset] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_concurrent] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_foreach] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [sym_float] = ACTIONS(2139), + [sym_integer] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_True] = ACTIONS(2137), + [anon_sym_TRUE] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_False] = ACTIONS(2137), + [anon_sym_FALSE] = ACTIONS(2137), + [anon_sym_null] = ACTIONS(2137), + [anon_sym_Null] = ACTIONS(2137), + [anon_sym_NULL] = ACTIONS(2137), + [sym_string] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_array] = ACTIONS(2137), + [anon_sym_varray] = ACTIONS(2137), + [anon_sym_darray] = ACTIONS(2137), + [anon_sym_vec] = ACTIONS(2137), + [anon_sym_dict] = ACTIONS(2137), + [anon_sym_keyset] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_list] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2139), + [sym_final_modifier] = ACTIONS(2137), + [sym_xhp_modifier] = ACTIONS(2137), + [sym_xhp_identifier] = ACTIONS(2137), + [sym_xhp_class_identifier] = ACTIONS(2139), [sym_comment] = ACTIONS(3), }, - [1597] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1590] = { + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2133), + [sym_variable] = ACTIONS(2135), + [sym_pipe_variable] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_newtype] = ACTIONS(2133), + [anon_sym_shape] = ACTIONS(2133), + [anon_sym_tuple] = ACTIONS(2133), + [anon_sym_clone] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_namespace] = ACTIONS(2133), + [anon_sym_include] = ACTIONS(2133), + [anon_sym_include_once] = ACTIONS(2133), + [anon_sym_require] = ACTIONS(2133), + [anon_sym_require_once] = ACTIONS(2133), + [anon_sym_BSLASH] = ACTIONS(2135), + [anon_sym_self] = ACTIONS(2133), + [anon_sym_parent] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_LT_LT_LT] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_throw] = ACTIONS(2133), + [anon_sym_echo] = ACTIONS(2133), + [anon_sym_unset] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_concurrent] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_function] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_foreach] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(2133), + [sym_float] = ACTIONS(2135), + [sym_integer] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_True] = ACTIONS(2133), + [anon_sym_TRUE] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_False] = ACTIONS(2133), + [anon_sym_FALSE] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [anon_sym_Null] = ACTIONS(2133), + [anon_sym_NULL] = ACTIONS(2133), + [sym_string] = ACTIONS(2135), + [anon_sym_AT] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_array] = ACTIONS(2133), + [anon_sym_varray] = ACTIONS(2133), + [anon_sym_darray] = ACTIONS(2133), + [anon_sym_vec] = ACTIONS(2133), + [anon_sym_dict] = ACTIONS(2133), + [anon_sym_keyset] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_class] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_abstract] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2135), + [sym_final_modifier] = ACTIONS(2133), + [sym_xhp_modifier] = ACTIONS(2133), + [sym_xhp_identifier] = ACTIONS(2133), + [sym_xhp_class_identifier] = ACTIONS(2135), [sym_comment] = ACTIONS(3), }, - [1598] = { - [ts_builtin_sym_end] = ACTIONS(2515), - [sym_identifier] = ACTIONS(2513), - [sym_variable] = ACTIONS(2515), - [sym_pipe_variable] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_newtype] = ACTIONS(2513), - [anon_sym_shape] = ACTIONS(2513), - [anon_sym_tuple] = ACTIONS(2513), - [anon_sym_clone] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_LT_LT_LT] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_echo] = ACTIONS(2513), - [anon_sym_unset] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_concurrent] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_foreach] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [sym_float] = ACTIONS(2515), - [sym_integer] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_True] = ACTIONS(2513), - [anon_sym_TRUE] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [anon_sym_False] = ACTIONS(2513), - [anon_sym_FALSE] = ACTIONS(2513), - [anon_sym_null] = ACTIONS(2513), - [anon_sym_Null] = ACTIONS(2513), - [anon_sym_NULL] = ACTIONS(2513), - [sym_string] = ACTIONS(2515), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_array] = ACTIONS(2513), - [anon_sym_varray] = ACTIONS(2513), - [anon_sym_darray] = ACTIONS(2513), - [anon_sym_vec] = ACTIONS(2513), - [anon_sym_dict] = ACTIONS(2513), - [anon_sym_keyset] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_trait] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2515), - [sym_final_modifier] = ACTIONS(2513), - [sym_xhp_modifier] = ACTIONS(2513), - [sym_xhp_identifier] = ACTIONS(2513), - [sym_xhp_class_identifier] = ACTIONS(2515), + [1591] = { + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2505), + [sym_variable] = ACTIONS(2507), + [sym_pipe_variable] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_newtype] = ACTIONS(2505), + [anon_sym_shape] = ACTIONS(2505), + [anon_sym_tuple] = ACTIONS(2505), + [anon_sym_clone] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_namespace] = ACTIONS(2505), + [anon_sym_include] = ACTIONS(2505), + [anon_sym_include_once] = ACTIONS(2505), + [anon_sym_require] = ACTIONS(2505), + [anon_sym_require_once] = ACTIONS(2505), + [anon_sym_BSLASH] = ACTIONS(2507), + [anon_sym_self] = ACTIONS(2505), + [anon_sym_parent] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_LT_LT_LT] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_throw] = ACTIONS(2505), + [anon_sym_echo] = ACTIONS(2505), + [anon_sym_unset] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_concurrent] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_function] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_switch] = ACTIONS(2505), + [anon_sym_foreach] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(2505), + [sym_float] = ACTIONS(2507), + [sym_integer] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_True] = ACTIONS(2505), + [anon_sym_TRUE] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_False] = ACTIONS(2505), + [anon_sym_FALSE] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [anon_sym_Null] = ACTIONS(2505), + [anon_sym_NULL] = ACTIONS(2505), + [sym_string] = ACTIONS(2507), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_array] = ACTIONS(2505), + [anon_sym_varray] = ACTIONS(2505), + [anon_sym_darray] = ACTIONS(2505), + [anon_sym_vec] = ACTIONS(2505), + [anon_sym_dict] = ACTIONS(2505), + [anon_sym_keyset] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_list] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_class] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_abstract] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2507), + [sym_final_modifier] = ACTIONS(2505), + [sym_xhp_modifier] = ACTIONS(2505), + [sym_xhp_identifier] = ACTIONS(2505), + [sym_xhp_class_identifier] = ACTIONS(2507), [sym_comment] = ACTIONS(3), }, - [1599] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2313), - [sym_variable] = ACTIONS(2315), - [sym_pipe_variable] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_newtype] = ACTIONS(2313), - [anon_sym_shape] = ACTIONS(2313), - [anon_sym_tuple] = ACTIONS(2313), - [anon_sym_clone] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_print] = ACTIONS(2313), - [anon_sym_namespace] = ACTIONS(2313), - [anon_sym_include] = ACTIONS(2313), - [anon_sym_include_once] = ACTIONS(2313), - [anon_sym_require] = ACTIONS(2313), - [anon_sym_require_once] = ACTIONS(2313), - [anon_sym_BSLASH] = ACTIONS(2315), - [anon_sym_self] = ACTIONS(2313), - [anon_sym_parent] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_LT_LT_LT] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_throw] = ACTIONS(2313), - [anon_sym_echo] = ACTIONS(2313), - [anon_sym_unset] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_concurrent] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_function] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_switch] = ACTIONS(2313), - [anon_sym_foreach] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_using] = ACTIONS(2313), - [sym_float] = ACTIONS(2315), - [sym_integer] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_True] = ACTIONS(2313), - [anon_sym_TRUE] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_False] = ACTIONS(2313), - [anon_sym_FALSE] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [anon_sym_Null] = ACTIONS(2313), - [anon_sym_NULL] = ACTIONS(2313), - [sym_string] = ACTIONS(2315), - [anon_sym_AT] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_array] = ACTIONS(2313), - [anon_sym_varray] = ACTIONS(2313), - [anon_sym_darray] = ACTIONS(2313), - [anon_sym_vec] = ACTIONS(2313), - [anon_sym_dict] = ACTIONS(2313), - [anon_sym_keyset] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_interface] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_abstract] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(2315), - [sym_final_modifier] = ACTIONS(2313), - [sym_xhp_modifier] = ACTIONS(2313), - [sym_xhp_identifier] = ACTIONS(2313), - [sym_xhp_class_identifier] = ACTIONS(2315), + [1592] = { + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2129), + [sym_variable] = ACTIONS(2131), + [sym_pipe_variable] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_newtype] = ACTIONS(2129), + [anon_sym_shape] = ACTIONS(2129), + [anon_sym_tuple] = ACTIONS(2129), + [anon_sym_clone] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_print] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_include] = ACTIONS(2129), + [anon_sym_include_once] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2129), + [anon_sym_require_once] = ACTIONS(2129), + [anon_sym_BSLASH] = ACTIONS(2131), + [anon_sym_self] = ACTIONS(2129), + [anon_sym_parent] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2129), + [anon_sym_LT_LT_LT] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_echo] = ACTIONS(2129), + [anon_sym_unset] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_concurrent] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_foreach] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [sym_float] = ACTIONS(2131), + [sym_integer] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_True] = ACTIONS(2129), + [anon_sym_TRUE] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_False] = ACTIONS(2129), + [anon_sym_FALSE] = ACTIONS(2129), + [anon_sym_null] = ACTIONS(2129), + [anon_sym_Null] = ACTIONS(2129), + [anon_sym_NULL] = ACTIONS(2129), + [sym_string] = ACTIONS(2131), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_array] = ACTIONS(2129), + [anon_sym_varray] = ACTIONS(2129), + [anon_sym_darray] = ACTIONS(2129), + [anon_sym_vec] = ACTIONS(2129), + [anon_sym_dict] = ACTIONS(2129), + [anon_sym_keyset] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_list] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2131), + [sym_final_modifier] = ACTIONS(2129), + [sym_xhp_modifier] = ACTIONS(2129), + [sym_xhp_identifier] = ACTIONS(2129), + [sym_xhp_class_identifier] = ACTIONS(2131), [sym_comment] = ACTIONS(3), }, - [1600] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2189), - [sym_variable] = ACTIONS(2191), - [sym_pipe_variable] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_newtype] = ACTIONS(2189), - [anon_sym_shape] = ACTIONS(2189), - [anon_sym_tuple] = ACTIONS(2189), - [anon_sym_clone] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_print] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_LT_LT_LT] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_echo] = ACTIONS(2189), - [anon_sym_unset] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_concurrent] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_foreach] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [sym_float] = ACTIONS(2191), - [sym_integer] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_True] = ACTIONS(2189), - [anon_sym_TRUE] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_False] = ACTIONS(2189), - [anon_sym_FALSE] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_Null] = ACTIONS(2189), - [anon_sym_NULL] = ACTIONS(2189), - [sym_string] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_array] = ACTIONS(2189), - [anon_sym_varray] = ACTIONS(2189), - [anon_sym_darray] = ACTIONS(2189), - [anon_sym_vec] = ACTIONS(2189), - [anon_sym_dict] = ACTIONS(2189), - [anon_sym_keyset] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2191), - [sym_final_modifier] = ACTIONS(2189), - [sym_xhp_modifier] = ACTIONS(2189), - [sym_xhp_identifier] = ACTIONS(2189), - [sym_xhp_class_identifier] = ACTIONS(2191), + [1593] = { + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2541), + [sym_variable] = ACTIONS(2543), + [sym_pipe_variable] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_newtype] = ACTIONS(2541), + [anon_sym_shape] = ACTIONS(2541), + [anon_sym_tuple] = ACTIONS(2541), + [anon_sym_clone] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_include] = ACTIONS(2541), + [anon_sym_include_once] = ACTIONS(2541), + [anon_sym_require] = ACTIONS(2541), + [anon_sym_require_once] = ACTIONS(2541), + [anon_sym_BSLASH] = ACTIONS(2543), + [anon_sym_self] = ACTIONS(2541), + [anon_sym_parent] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_LT_LT] = ACTIONS(2541), + [anon_sym_LT_LT_LT] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_echo] = ACTIONS(2541), + [anon_sym_unset] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_concurrent] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_foreach] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [sym_float] = ACTIONS(2543), + [sym_integer] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_True] = ACTIONS(2541), + [anon_sym_TRUE] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_False] = ACTIONS(2541), + [anon_sym_FALSE] = ACTIONS(2541), + [anon_sym_null] = ACTIONS(2541), + [anon_sym_Null] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [sym_string] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_array] = ACTIONS(2541), + [anon_sym_varray] = ACTIONS(2541), + [anon_sym_darray] = ACTIONS(2541), + [anon_sym_vec] = ACTIONS(2541), + [anon_sym_dict] = ACTIONS(2541), + [anon_sym_keyset] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_list] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2543), + [sym_final_modifier] = ACTIONS(2541), + [sym_xhp_modifier] = ACTIONS(2541), + [sym_xhp_identifier] = ACTIONS(2541), + [sym_xhp_class_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(3), }, - [1601] = { - [sym_identifier] = ACTIONS(2165), - [sym_variable] = ACTIONS(2167), - [sym_pipe_variable] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_newtype] = ACTIONS(2165), - [anon_sym_shape] = ACTIONS(2165), - [anon_sym_tuple] = ACTIONS(2165), - [anon_sym_clone] = ACTIONS(2165), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_print] = ACTIONS(2165), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_include] = ACTIONS(2165), - [anon_sym_include_once] = ACTIONS(2165), - [anon_sym_require] = ACTIONS(2165), - [anon_sym_require_once] = ACTIONS(2165), - [anon_sym_BSLASH] = ACTIONS(2167), - [anon_sym_self] = ACTIONS(2165), - [anon_sym_parent] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_LT_LT_LT] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_throw] = ACTIONS(2165), - [anon_sym_echo] = ACTIONS(2165), - [anon_sym_unset] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_concurrent] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_function] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [anon_sym_foreach] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_using] = ACTIONS(2165), - [sym_float] = ACTIONS(2167), - [sym_integer] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_True] = ACTIONS(2165), - [anon_sym_TRUE] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_False] = ACTIONS(2165), - [anon_sym_FALSE] = ACTIONS(2165), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_Null] = ACTIONS(2165), - [anon_sym_NULL] = ACTIONS(2165), - [sym_string] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_array] = ACTIONS(2165), - [anon_sym_varray] = ACTIONS(2165), - [anon_sym_darray] = ACTIONS(2165), - [anon_sym_vec] = ACTIONS(2165), - [anon_sym_dict] = ACTIONS(2165), - [anon_sym_keyset] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_list] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_interface] = ACTIONS(2165), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2167), - [sym_final_modifier] = ACTIONS(2165), - [sym_xhp_modifier] = ACTIONS(2165), - [sym_xhp_identifier] = ACTIONS(2165), - [sym_xhp_class_identifier] = ACTIONS(2167), + [1594] = { + [sym_identifier] = ACTIONS(2561), + [sym_variable] = ACTIONS(2563), + [sym_pipe_variable] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_newtype] = ACTIONS(2561), + [anon_sym_shape] = ACTIONS(2561), + [anon_sym_tuple] = ACTIONS(2561), + [anon_sym_clone] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_print] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_include] = ACTIONS(2561), + [anon_sym_include_once] = ACTIONS(2561), + [anon_sym_require] = ACTIONS(2561), + [anon_sym_require_once] = ACTIONS(2561), + [anon_sym_BSLASH] = ACTIONS(2563), + [anon_sym_self] = ACTIONS(2561), + [anon_sym_parent] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_LT_LT] = ACTIONS(2561), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_echo] = ACTIONS(2561), + [anon_sym_unset] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_concurrent] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_function] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_foreach] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [sym_float] = ACTIONS(2563), + [sym_integer] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_True] = ACTIONS(2561), + [anon_sym_TRUE] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_False] = ACTIONS(2561), + [anon_sym_FALSE] = ACTIONS(2561), + [anon_sym_null] = ACTIONS(2561), + [anon_sym_Null] = ACTIONS(2561), + [anon_sym_NULL] = ACTIONS(2561), + [sym_string] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_array] = ACTIONS(2561), + [anon_sym_varray] = ACTIONS(2561), + [anon_sym_darray] = ACTIONS(2561), + [anon_sym_vec] = ACTIONS(2561), + [anon_sym_dict] = ACTIONS(2561), + [anon_sym_keyset] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_list] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_interface] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_abstract] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(2563), + [sym_final_modifier] = ACTIONS(2561), + [sym_xhp_modifier] = ACTIONS(2561), + [sym_xhp_identifier] = ACTIONS(2561), + [sym_xhp_class_identifier] = ACTIONS(2563), [sym_comment] = ACTIONS(3), }, - [1602] = { - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2181), - [sym_variable] = ACTIONS(2183), - [sym_pipe_variable] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_newtype] = ACTIONS(2181), - [anon_sym_shape] = ACTIONS(2181), - [anon_sym_tuple] = ACTIONS(2181), - [anon_sym_clone] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_print] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_LT_LT_LT] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_echo] = ACTIONS(2181), - [anon_sym_unset] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_concurrent] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_foreach] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [sym_float] = ACTIONS(2183), - [sym_integer] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_True] = ACTIONS(2181), - [anon_sym_TRUE] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [anon_sym_False] = ACTIONS(2181), - [anon_sym_FALSE] = ACTIONS(2181), - [anon_sym_null] = ACTIONS(2181), - [anon_sym_Null] = ACTIONS(2181), - [anon_sym_NULL] = ACTIONS(2181), - [sym_string] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_array] = ACTIONS(2181), - [anon_sym_varray] = ACTIONS(2181), - [anon_sym_darray] = ACTIONS(2181), - [anon_sym_vec] = ACTIONS(2181), - [anon_sym_dict] = ACTIONS(2181), - [anon_sym_keyset] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2183), - [sym_final_modifier] = ACTIONS(2181), - [sym_xhp_modifier] = ACTIONS(2181), - [sym_xhp_identifier] = ACTIONS(2181), - [sym_xhp_class_identifier] = ACTIONS(2183), + [1595] = { + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [sym_variable] = ACTIONS(2127), + [sym_pipe_variable] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_newtype] = ACTIONS(2125), + [anon_sym_shape] = ACTIONS(2125), + [anon_sym_tuple] = ACTIONS(2125), + [anon_sym_clone] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_print] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_include] = ACTIONS(2125), + [anon_sym_include_once] = ACTIONS(2125), + [anon_sym_require] = ACTIONS(2125), + [anon_sym_require_once] = ACTIONS(2125), + [anon_sym_BSLASH] = ACTIONS(2127), + [anon_sym_self] = ACTIONS(2125), + [anon_sym_parent] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_LT_LT_LT] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_echo] = ACTIONS(2125), + [anon_sym_unset] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_concurrent] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_foreach] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [sym_float] = ACTIONS(2127), + [sym_integer] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_True] = ACTIONS(2125), + [anon_sym_TRUE] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_False] = ACTIONS(2125), + [anon_sym_FALSE] = ACTIONS(2125), + [anon_sym_null] = ACTIONS(2125), + [anon_sym_Null] = ACTIONS(2125), + [anon_sym_NULL] = ACTIONS(2125), + [sym_string] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_array] = ACTIONS(2125), + [anon_sym_varray] = ACTIONS(2125), + [anon_sym_darray] = ACTIONS(2125), + [anon_sym_vec] = ACTIONS(2125), + [anon_sym_dict] = ACTIONS(2125), + [anon_sym_keyset] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_list] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2127), + [sym_final_modifier] = ACTIONS(2125), + [sym_xhp_modifier] = ACTIONS(2125), + [sym_xhp_identifier] = ACTIONS(2125), + [sym_xhp_class_identifier] = ACTIONS(2127), [sym_comment] = ACTIONS(3), }, - [1603] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2193), - [sym_variable] = ACTIONS(2195), - [sym_pipe_variable] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_newtype] = ACTIONS(2193), - [anon_sym_shape] = ACTIONS(2193), - [anon_sym_tuple] = ACTIONS(2193), - [anon_sym_clone] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_print] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_LT_LT_LT] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_echo] = ACTIONS(2193), - [anon_sym_unset] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_concurrent] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_foreach] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [sym_float] = ACTIONS(2195), - [sym_integer] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_True] = ACTIONS(2193), - [anon_sym_TRUE] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_False] = ACTIONS(2193), - [anon_sym_FALSE] = ACTIONS(2193), - [anon_sym_null] = ACTIONS(2193), - [anon_sym_Null] = ACTIONS(2193), - [anon_sym_NULL] = ACTIONS(2193), - [sym_string] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_array] = ACTIONS(2193), - [anon_sym_varray] = ACTIONS(2193), - [anon_sym_darray] = ACTIONS(2193), - [anon_sym_vec] = ACTIONS(2193), - [anon_sym_dict] = ACTIONS(2193), - [anon_sym_keyset] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2195), - [sym_final_modifier] = ACTIONS(2193), - [sym_xhp_modifier] = ACTIONS(2193), - [sym_xhp_identifier] = ACTIONS(2193), - [sym_xhp_class_identifier] = ACTIONS(2195), + [1596] = { + [sym_identifier] = ACTIONS(2137), + [sym_variable] = ACTIONS(2139), + [sym_pipe_variable] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_newtype] = ACTIONS(2137), + [anon_sym_shape] = ACTIONS(2137), + [anon_sym_tuple] = ACTIONS(2137), + [anon_sym_clone] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_include] = ACTIONS(2137), + [anon_sym_include_once] = ACTIONS(2137), + [anon_sym_require] = ACTIONS(2137), + [anon_sym_require_once] = ACTIONS(2137), + [anon_sym_BSLASH] = ACTIONS(2139), + [anon_sym_self] = ACTIONS(2137), + [anon_sym_parent] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2137), + [anon_sym_LT_LT_LT] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_echo] = ACTIONS(2137), + [anon_sym_unset] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_concurrent] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_foreach] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [sym_float] = ACTIONS(2139), + [sym_integer] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_True] = ACTIONS(2137), + [anon_sym_TRUE] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_False] = ACTIONS(2137), + [anon_sym_FALSE] = ACTIONS(2137), + [anon_sym_null] = ACTIONS(2137), + [anon_sym_Null] = ACTIONS(2137), + [anon_sym_NULL] = ACTIONS(2137), + [sym_string] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_array] = ACTIONS(2137), + [anon_sym_varray] = ACTIONS(2137), + [anon_sym_darray] = ACTIONS(2137), + [anon_sym_vec] = ACTIONS(2137), + [anon_sym_dict] = ACTIONS(2137), + [anon_sym_keyset] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_list] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2139), + [sym_final_modifier] = ACTIONS(2137), + [sym_xhp_modifier] = ACTIONS(2137), + [sym_xhp_identifier] = ACTIONS(2137), + [sym_xhp_class_identifier] = ACTIONS(2139), [sym_comment] = ACTIONS(3), }, - [1604] = { + [1597] = { + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2421), + [sym_variable] = ACTIONS(2423), + [sym_pipe_variable] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_newtype] = ACTIONS(2421), + [anon_sym_shape] = ACTIONS(2421), + [anon_sym_tuple] = ACTIONS(2421), + [anon_sym_clone] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_print] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_include] = ACTIONS(2421), + [anon_sym_include_once] = ACTIONS(2421), + [anon_sym_require] = ACTIONS(2421), + [anon_sym_require_once] = ACTIONS(2421), + [anon_sym_BSLASH] = ACTIONS(2423), + [anon_sym_self] = ACTIONS(2421), + [anon_sym_parent] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_LT_LT_LT] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_throw] = ACTIONS(2421), + [anon_sym_echo] = ACTIONS(2421), + [anon_sym_unset] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_concurrent] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_switch] = ACTIONS(2421), + [anon_sym_foreach] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_using] = ACTIONS(2421), + [sym_float] = ACTIONS(2423), + [sym_integer] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_True] = ACTIONS(2421), + [anon_sym_TRUE] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_False] = ACTIONS(2421), + [anon_sym_FALSE] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2421), + [anon_sym_Null] = ACTIONS(2421), + [anon_sym_NULL] = ACTIONS(2421), + [sym_string] = ACTIONS(2423), + [anon_sym_AT] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_array] = ACTIONS(2421), + [anon_sym_varray] = ACTIONS(2421), + [anon_sym_darray] = ACTIONS(2421), + [anon_sym_vec] = ACTIONS(2421), + [anon_sym_dict] = ACTIONS(2421), + [anon_sym_keyset] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_class] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_abstract] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2423), + [sym_final_modifier] = ACTIONS(2421), + [sym_xhp_modifier] = ACTIONS(2421), + [sym_xhp_identifier] = ACTIONS(2421), + [sym_xhp_class_identifier] = ACTIONS(2423), + [sym_comment] = ACTIONS(3), + }, + [1598] = { + [ts_builtin_sym_end] = ACTIONS(2531), [sym_identifier] = ACTIONS(2529), [sym_variable] = ACTIONS(2531), [sym_pipe_variable] = ACTIONS(2531), @@ -183571,7 +176630,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2529), [anon_sym_LT_LT] = ACTIONS(2529), [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), [anon_sym_LBRACE] = ACTIONS(2531), [anon_sym_SEMI] = ACTIONS(2531), [anon_sym_return] = ACTIONS(2529), @@ -183635,609 +176693,1469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2531), [sym_comment] = ACTIONS(3), }, - [1605] = { - [sym_identifier] = ACTIONS(2377), - [sym_variable] = ACTIONS(2379), - [sym_pipe_variable] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_newtype] = ACTIONS(2377), - [anon_sym_shape] = ACTIONS(2377), - [anon_sym_tuple] = ACTIONS(2377), - [anon_sym_clone] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_print] = ACTIONS(2377), - [anon_sym_namespace] = ACTIONS(2377), - [anon_sym_include] = ACTIONS(2377), - [anon_sym_include_once] = ACTIONS(2377), - [anon_sym_require] = ACTIONS(2377), - [anon_sym_require_once] = ACTIONS(2377), - [anon_sym_BSLASH] = ACTIONS(2379), - [anon_sym_self] = ACTIONS(2377), - [anon_sym_parent] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_LT_LT_LT] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_throw] = ACTIONS(2377), - [anon_sym_echo] = ACTIONS(2377), - [anon_sym_unset] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_concurrent] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_function] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_switch] = ACTIONS(2377), - [anon_sym_foreach] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_using] = ACTIONS(2377), - [sym_float] = ACTIONS(2379), - [sym_integer] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_True] = ACTIONS(2377), - [anon_sym_TRUE] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [anon_sym_False] = ACTIONS(2377), - [anon_sym_FALSE] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(2377), - [anon_sym_Null] = ACTIONS(2377), - [anon_sym_NULL] = ACTIONS(2377), - [sym_string] = ACTIONS(2379), - [anon_sym_AT] = ACTIONS(2379), - [anon_sym_TILDE] = ACTIONS(2379), - [anon_sym_array] = ACTIONS(2377), - [anon_sym_varray] = ACTIONS(2377), - [anon_sym_darray] = ACTIONS(2377), - [anon_sym_vec] = ACTIONS(2377), - [anon_sym_dict] = ACTIONS(2377), - [anon_sym_keyset] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_list] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2379), - [anon_sym_PLUS_PLUS] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_interface] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(2379), - [sym_final_modifier] = ACTIONS(2377), - [sym_xhp_modifier] = ACTIONS(2377), - [sym_xhp_identifier] = ACTIONS(2377), - [sym_xhp_class_identifier] = ACTIONS(2379), + [1599] = { + [sym_identifier] = ACTIONS(2569), + [sym_variable] = ACTIONS(2571), + [sym_pipe_variable] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_newtype] = ACTIONS(2569), + [anon_sym_shape] = ACTIONS(2569), + [anon_sym_tuple] = ACTIONS(2569), + [anon_sym_clone] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_include_once] = ACTIONS(2569), + [anon_sym_require] = ACTIONS(2569), + [anon_sym_require_once] = ACTIONS(2569), + [anon_sym_BSLASH] = ACTIONS(2571), + [anon_sym_self] = ACTIONS(2569), + [anon_sym_parent] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_throw] = ACTIONS(2569), + [anon_sym_echo] = ACTIONS(2569), + [anon_sym_unset] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_concurrent] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_function] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_switch] = ACTIONS(2569), + [anon_sym_foreach] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_using] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [sym_integer] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_True] = ACTIONS(2569), + [anon_sym_TRUE] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_False] = ACTIONS(2569), + [anon_sym_FALSE] = ACTIONS(2569), + [anon_sym_null] = ACTIONS(2569), + [anon_sym_Null] = ACTIONS(2569), + [anon_sym_NULL] = ACTIONS(2569), + [sym_string] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_array] = ACTIONS(2569), + [anon_sym_varray] = ACTIONS(2569), + [anon_sym_darray] = ACTIONS(2569), + [anon_sym_vec] = ACTIONS(2569), + [anon_sym_dict] = ACTIONS(2569), + [anon_sym_keyset] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_interface] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_abstract] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(2571), + [sym_final_modifier] = ACTIONS(2569), + [sym_xhp_modifier] = ACTIONS(2569), + [sym_xhp_identifier] = ACTIONS(2569), + [sym_xhp_class_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + }, + [1600] = { + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2121), + [sym_variable] = ACTIONS(2123), + [sym_pipe_variable] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_newtype] = ACTIONS(2121), + [anon_sym_shape] = ACTIONS(2121), + [anon_sym_tuple] = ACTIONS(2121), + [anon_sym_clone] = ACTIONS(2121), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_print] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_include] = ACTIONS(2121), + [anon_sym_include_once] = ACTIONS(2121), + [anon_sym_require] = ACTIONS(2121), + [anon_sym_require_once] = ACTIONS(2121), + [anon_sym_BSLASH] = ACTIONS(2123), + [anon_sym_self] = ACTIONS(2121), + [anon_sym_parent] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(2121), + [anon_sym_LT_LT_LT] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_echo] = ACTIONS(2121), + [anon_sym_unset] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_concurrent] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_foreach] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_using] = ACTIONS(2121), + [sym_float] = ACTIONS(2123), + [sym_integer] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_True] = ACTIONS(2121), + [anon_sym_TRUE] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_False] = ACTIONS(2121), + [anon_sym_FALSE] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_Null] = ACTIONS(2121), + [anon_sym_NULL] = ACTIONS(2121), + [sym_string] = ACTIONS(2123), + [anon_sym_AT] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_array] = ACTIONS(2121), + [anon_sym_varray] = ACTIONS(2121), + [anon_sym_darray] = ACTIONS(2121), + [anon_sym_vec] = ACTIONS(2121), + [anon_sym_dict] = ACTIONS(2121), + [anon_sym_keyset] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_list] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_await] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2123), + [sym_final_modifier] = ACTIONS(2121), + [sym_xhp_modifier] = ACTIONS(2121), + [sym_xhp_identifier] = ACTIONS(2121), + [sym_xhp_class_identifier] = ACTIONS(2123), + [sym_comment] = ACTIONS(3), + }, + [1601] = { + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2573), + [sym_variable] = ACTIONS(2575), + [sym_pipe_variable] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_newtype] = ACTIONS(2573), + [anon_sym_shape] = ACTIONS(2573), + [anon_sym_tuple] = ACTIONS(2573), + [anon_sym_clone] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_include_once] = ACTIONS(2573), + [anon_sym_require] = ACTIONS(2573), + [anon_sym_require_once] = ACTIONS(2573), + [anon_sym_BSLASH] = ACTIONS(2575), + [anon_sym_self] = ACTIONS(2573), + [anon_sym_parent] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_LT_LT] = ACTIONS(2573), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_echo] = ACTIONS(2573), + [anon_sym_unset] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_concurrent] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_foreach] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [sym_float] = ACTIONS(2575), + [sym_integer] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_True] = ACTIONS(2573), + [anon_sym_TRUE] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_False] = ACTIONS(2573), + [anon_sym_FALSE] = ACTIONS(2573), + [anon_sym_null] = ACTIONS(2573), + [anon_sym_Null] = ACTIONS(2573), + [anon_sym_NULL] = ACTIONS(2573), + [sym_string] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_array] = ACTIONS(2573), + [anon_sym_varray] = ACTIONS(2573), + [anon_sym_darray] = ACTIONS(2573), + [anon_sym_vec] = ACTIONS(2573), + [anon_sym_dict] = ACTIONS(2573), + [anon_sym_keyset] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_list] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_interface] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_abstract] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(2575), + [sym_final_modifier] = ACTIONS(2573), + [sym_xhp_modifier] = ACTIONS(2573), + [sym_xhp_identifier] = ACTIONS(2573), + [sym_xhp_class_identifier] = ACTIONS(2575), + [sym_comment] = ACTIONS(3), + }, + [1602] = { + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2361), + [sym_variable] = ACTIONS(2363), + [sym_pipe_variable] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_newtype] = ACTIONS(2361), + [anon_sym_shape] = ACTIONS(2361), + [anon_sym_tuple] = ACTIONS(2361), + [anon_sym_clone] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_print] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_include] = ACTIONS(2361), + [anon_sym_include_once] = ACTIONS(2361), + [anon_sym_require] = ACTIONS(2361), + [anon_sym_require_once] = ACTIONS(2361), + [anon_sym_BSLASH] = ACTIONS(2363), + [anon_sym_self] = ACTIONS(2361), + [anon_sym_parent] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_LT_LT] = ACTIONS(2361), + [anon_sym_LT_LT_LT] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_echo] = ACTIONS(2361), + [anon_sym_unset] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_concurrent] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_function] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_foreach] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [sym_float] = ACTIONS(2363), + [sym_integer] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_True] = ACTIONS(2361), + [anon_sym_TRUE] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [anon_sym_False] = ACTIONS(2361), + [anon_sym_FALSE] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_Null] = ACTIONS(2361), + [anon_sym_NULL] = ACTIONS(2361), + [sym_string] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_array] = ACTIONS(2361), + [anon_sym_varray] = ACTIONS(2361), + [anon_sym_darray] = ACTIONS(2361), + [anon_sym_vec] = ACTIONS(2361), + [anon_sym_dict] = ACTIONS(2361), + [anon_sym_keyset] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_list] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_interface] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_abstract] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2363), + [sym_final_modifier] = ACTIONS(2361), + [sym_xhp_modifier] = ACTIONS(2361), + [sym_xhp_identifier] = ACTIONS(2361), + [sym_xhp_class_identifier] = ACTIONS(2363), + [sym_comment] = ACTIONS(3), + }, + [1603] = { + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2365), + [sym_variable] = ACTIONS(2367), + [sym_pipe_variable] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_newtype] = ACTIONS(2365), + [anon_sym_shape] = ACTIONS(2365), + [anon_sym_tuple] = ACTIONS(2365), + [anon_sym_clone] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_print] = ACTIONS(2365), + [anon_sym_namespace] = ACTIONS(2365), + [anon_sym_include] = ACTIONS(2365), + [anon_sym_include_once] = ACTIONS(2365), + [anon_sym_require] = ACTIONS(2365), + [anon_sym_require_once] = ACTIONS(2365), + [anon_sym_BSLASH] = ACTIONS(2367), + [anon_sym_self] = ACTIONS(2365), + [anon_sym_parent] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_LT_LT] = ACTIONS(2365), + [anon_sym_LT_LT_LT] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_throw] = ACTIONS(2365), + [anon_sym_echo] = ACTIONS(2365), + [anon_sym_unset] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_concurrent] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_function] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_switch] = ACTIONS(2365), + [anon_sym_foreach] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_do] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_using] = ACTIONS(2365), + [sym_float] = ACTIONS(2367), + [sym_integer] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_True] = ACTIONS(2365), + [anon_sym_TRUE] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_False] = ACTIONS(2365), + [anon_sym_FALSE] = ACTIONS(2365), + [anon_sym_null] = ACTIONS(2365), + [anon_sym_Null] = ACTIONS(2365), + [anon_sym_NULL] = ACTIONS(2365), + [sym_string] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_array] = ACTIONS(2365), + [anon_sym_varray] = ACTIONS(2365), + [anon_sym_darray] = ACTIONS(2365), + [anon_sym_vec] = ACTIONS(2365), + [anon_sym_dict] = ACTIONS(2365), + [anon_sym_keyset] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_list] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_interface] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_abstract] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2367), + [sym_final_modifier] = ACTIONS(2365), + [sym_xhp_modifier] = ACTIONS(2365), + [sym_xhp_identifier] = ACTIONS(2365), + [sym_xhp_class_identifier] = ACTIONS(2367), + [sym_comment] = ACTIONS(3), + }, + [1604] = { + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2117), + [sym_variable] = ACTIONS(2119), + [sym_pipe_variable] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_newtype] = ACTIONS(2117), + [anon_sym_shape] = ACTIONS(2117), + [anon_sym_tuple] = ACTIONS(2117), + [anon_sym_clone] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_print] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_include] = ACTIONS(2117), + [anon_sym_include_once] = ACTIONS(2117), + [anon_sym_require] = ACTIONS(2117), + [anon_sym_require_once] = ACTIONS(2117), + [anon_sym_BSLASH] = ACTIONS(2119), + [anon_sym_self] = ACTIONS(2117), + [anon_sym_parent] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_LT_LT] = ACTIONS(2117), + [anon_sym_LT_LT_LT] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_echo] = ACTIONS(2117), + [anon_sym_unset] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_concurrent] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_foreach] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_using] = ACTIONS(2117), + [sym_float] = ACTIONS(2119), + [sym_integer] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_True] = ACTIONS(2117), + [anon_sym_TRUE] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_False] = ACTIONS(2117), + [anon_sym_FALSE] = ACTIONS(2117), + [anon_sym_null] = ACTIONS(2117), + [anon_sym_Null] = ACTIONS(2117), + [anon_sym_NULL] = ACTIONS(2117), + [sym_string] = ACTIONS(2119), + [anon_sym_AT] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_array] = ACTIONS(2117), + [anon_sym_varray] = ACTIONS(2117), + [anon_sym_darray] = ACTIONS(2117), + [anon_sym_vec] = ACTIONS(2117), + [anon_sym_dict] = ACTIONS(2117), + [anon_sym_keyset] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_list] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2119), + [sym_final_modifier] = ACTIONS(2117), + [sym_xhp_modifier] = ACTIONS(2117), + [sym_xhp_identifier] = ACTIONS(2117), + [sym_xhp_class_identifier] = ACTIONS(2119), + [sym_comment] = ACTIONS(3), + }, + [1605] = { + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2113), + [sym_variable] = ACTIONS(2115), + [sym_pipe_variable] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_newtype] = ACTIONS(2113), + [anon_sym_shape] = ACTIONS(2113), + [anon_sym_tuple] = ACTIONS(2113), + [anon_sym_clone] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_print] = ACTIONS(2113), + [anon_sym_namespace] = ACTIONS(2113), + [anon_sym_include] = ACTIONS(2113), + [anon_sym_include_once] = ACTIONS(2113), + [anon_sym_require] = ACTIONS(2113), + [anon_sym_require_once] = ACTIONS(2113), + [anon_sym_BSLASH] = ACTIONS(2115), + [anon_sym_self] = ACTIONS(2113), + [anon_sym_parent] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_LT_LT] = ACTIONS(2113), + [anon_sym_LT_LT_LT] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_throw] = ACTIONS(2113), + [anon_sym_echo] = ACTIONS(2113), + [anon_sym_unset] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_concurrent] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_switch] = ACTIONS(2113), + [anon_sym_foreach] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_using] = ACTIONS(2113), + [sym_float] = ACTIONS(2115), + [sym_integer] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_True] = ACTIONS(2113), + [anon_sym_TRUE] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_False] = ACTIONS(2113), + [anon_sym_FALSE] = ACTIONS(2113), + [anon_sym_null] = ACTIONS(2113), + [anon_sym_Null] = ACTIONS(2113), + [anon_sym_NULL] = ACTIONS(2113), + [sym_string] = ACTIONS(2115), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_array] = ACTIONS(2113), + [anon_sym_varray] = ACTIONS(2113), + [anon_sym_darray] = ACTIONS(2113), + [anon_sym_vec] = ACTIONS(2113), + [anon_sym_dict] = ACTIONS(2113), + [anon_sym_keyset] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_interface] = ACTIONS(2113), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_abstract] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2115), + [sym_final_modifier] = ACTIONS(2113), + [sym_xhp_modifier] = ACTIONS(2113), + [sym_xhp_identifier] = ACTIONS(2113), + [sym_xhp_class_identifier] = ACTIONS(2115), [sym_comment] = ACTIONS(3), }, [1606] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2109), + [sym_variable] = ACTIONS(2111), + [sym_pipe_variable] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_newtype] = ACTIONS(2109), + [anon_sym_shape] = ACTIONS(2109), + [anon_sym_tuple] = ACTIONS(2109), + [anon_sym_clone] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_include] = ACTIONS(2109), + [anon_sym_include_once] = ACTIONS(2109), + [anon_sym_require] = ACTIONS(2109), + [anon_sym_require_once] = ACTIONS(2109), + [anon_sym_BSLASH] = ACTIONS(2111), + [anon_sym_self] = ACTIONS(2109), + [anon_sym_parent] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_LT_LT_LT] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_echo] = ACTIONS(2109), + [anon_sym_unset] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_concurrent] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_foreach] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [sym_float] = ACTIONS(2111), + [sym_integer] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_True] = ACTIONS(2109), + [anon_sym_TRUE] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_False] = ACTIONS(2109), + [anon_sym_FALSE] = ACTIONS(2109), + [anon_sym_null] = ACTIONS(2109), + [anon_sym_Null] = ACTIONS(2109), + [anon_sym_NULL] = ACTIONS(2109), + [sym_string] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_array] = ACTIONS(2109), + [anon_sym_varray] = ACTIONS(2109), + [anon_sym_darray] = ACTIONS(2109), + [anon_sym_vec] = ACTIONS(2109), + [anon_sym_dict] = ACTIONS(2109), + [anon_sym_keyset] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_list] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2111), + [sym_final_modifier] = ACTIONS(2109), + [sym_xhp_modifier] = ACTIONS(2109), + [sym_xhp_identifier] = ACTIONS(2109), + [sym_xhp_class_identifier] = ACTIONS(2111), [sym_comment] = ACTIONS(3), }, [1607] = { - [sym_identifier] = ACTIONS(2121), - [sym_variable] = ACTIONS(2123), - [sym_pipe_variable] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_newtype] = ACTIONS(2121), - [anon_sym_shape] = ACTIONS(2121), - [anon_sym_tuple] = ACTIONS(2121), - [anon_sym_clone] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_print] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_include] = ACTIONS(2121), - [anon_sym_include_once] = ACTIONS(2121), - [anon_sym_require] = ACTIONS(2121), - [anon_sym_require_once] = ACTIONS(2121), - [anon_sym_BSLASH] = ACTIONS(2123), - [anon_sym_self] = ACTIONS(2121), - [anon_sym_parent] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_LT_LT_LT] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_echo] = ACTIONS(2121), - [anon_sym_unset] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_concurrent] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_foreach] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_using] = ACTIONS(2121), - [sym_float] = ACTIONS(2123), - [sym_integer] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_True] = ACTIONS(2121), - [anon_sym_TRUE] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_False] = ACTIONS(2121), - [anon_sym_FALSE] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2121), - [anon_sym_Null] = ACTIONS(2121), - [anon_sym_NULL] = ACTIONS(2121), - [sym_string] = ACTIONS(2123), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_array] = ACTIONS(2121), - [anon_sym_varray] = ACTIONS(2121), - [anon_sym_darray] = ACTIONS(2121), - [anon_sym_vec] = ACTIONS(2121), - [anon_sym_dict] = ACTIONS(2121), - [anon_sym_keyset] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_list] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_trait] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2123), - [sym_final_modifier] = ACTIONS(2121), - [sym_xhp_modifier] = ACTIONS(2121), - [sym_xhp_identifier] = ACTIONS(2121), - [sym_xhp_class_identifier] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2461), + [sym_variable] = ACTIONS(2463), + [sym_pipe_variable] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_newtype] = ACTIONS(2461), + [anon_sym_shape] = ACTIONS(2461), + [anon_sym_tuple] = ACTIONS(2461), + [anon_sym_clone] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_print] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_include] = ACTIONS(2461), + [anon_sym_include_once] = ACTIONS(2461), + [anon_sym_require] = ACTIONS(2461), + [anon_sym_require_once] = ACTIONS(2461), + [anon_sym_BSLASH] = ACTIONS(2463), + [anon_sym_self] = ACTIONS(2461), + [anon_sym_parent] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_LT_LT_LT] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_echo] = ACTIONS(2461), + [anon_sym_unset] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_concurrent] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_function] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_foreach] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_using] = ACTIONS(2461), + [sym_float] = ACTIONS(2463), + [sym_integer] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_True] = ACTIONS(2461), + [anon_sym_TRUE] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_False] = ACTIONS(2461), + [anon_sym_FALSE] = ACTIONS(2461), + [anon_sym_null] = ACTIONS(2461), + [anon_sym_Null] = ACTIONS(2461), + [anon_sym_NULL] = ACTIONS(2461), + [sym_string] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_array] = ACTIONS(2461), + [anon_sym_varray] = ACTIONS(2461), + [anon_sym_darray] = ACTIONS(2461), + [anon_sym_vec] = ACTIONS(2461), + [anon_sym_dict] = ACTIONS(2461), + [anon_sym_keyset] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_list] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_interface] = ACTIONS(2461), + [anon_sym_class] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_abstract] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2463), + [sym_final_modifier] = ACTIONS(2461), + [sym_xhp_modifier] = ACTIONS(2461), + [sym_xhp_identifier] = ACTIONS(2461), + [sym_xhp_class_identifier] = ACTIONS(2463), [sym_comment] = ACTIONS(3), }, [1608] = { - [sym_identifier] = ACTIONS(2153), - [sym_variable] = ACTIONS(2155), - [sym_pipe_variable] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_newtype] = ACTIONS(2153), - [anon_sym_shape] = ACTIONS(2153), - [anon_sym_tuple] = ACTIONS(2153), - [anon_sym_clone] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_print] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_include] = ACTIONS(2153), - [anon_sym_include_once] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2153), - [anon_sym_require_once] = ACTIONS(2153), - [anon_sym_BSLASH] = ACTIONS(2155), - [anon_sym_self] = ACTIONS(2153), - [anon_sym_parent] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_LT_LT_LT] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_throw] = ACTIONS(2153), - [anon_sym_echo] = ACTIONS(2153), - [anon_sym_unset] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_concurrent] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_function] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_switch] = ACTIONS(2153), - [anon_sym_foreach] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_using] = ACTIONS(2153), - [sym_float] = ACTIONS(2155), - [sym_integer] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_True] = ACTIONS(2153), - [anon_sym_TRUE] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_False] = ACTIONS(2153), - [anon_sym_FALSE] = ACTIONS(2153), - [anon_sym_null] = ACTIONS(2153), - [anon_sym_Null] = ACTIONS(2153), - [anon_sym_NULL] = ACTIONS(2153), - [sym_string] = ACTIONS(2155), - [anon_sym_AT] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_array] = ACTIONS(2153), - [anon_sym_varray] = ACTIONS(2153), - [anon_sym_darray] = ACTIONS(2153), - [anon_sym_vec] = ACTIONS(2153), - [anon_sym_dict] = ACTIONS(2153), - [anon_sym_keyset] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_list] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_interface] = ACTIONS(2153), - [anon_sym_class] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_abstract] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2155), - [sym_final_modifier] = ACTIONS(2153), - [sym_xhp_modifier] = ACTIONS(2153), - [sym_xhp_identifier] = ACTIONS(2153), - [sym_xhp_class_identifier] = ACTIONS(2155), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2105), + [sym_variable] = ACTIONS(2107), + [sym_pipe_variable] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_newtype] = ACTIONS(2105), + [anon_sym_shape] = ACTIONS(2105), + [anon_sym_tuple] = ACTIONS(2105), + [anon_sym_clone] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_print] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_include] = ACTIONS(2105), + [anon_sym_include_once] = ACTIONS(2105), + [anon_sym_require] = ACTIONS(2105), + [anon_sym_require_once] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2107), + [anon_sym_self] = ACTIONS(2105), + [anon_sym_parent] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_LT_LT_LT] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_echo] = ACTIONS(2105), + [anon_sym_unset] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_concurrent] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_foreach] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [sym_float] = ACTIONS(2107), + [sym_integer] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_True] = ACTIONS(2105), + [anon_sym_TRUE] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_False] = ACTIONS(2105), + [anon_sym_FALSE] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [anon_sym_Null] = ACTIONS(2105), + [anon_sym_NULL] = ACTIONS(2105), + [sym_string] = ACTIONS(2107), + [anon_sym_AT] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_array] = ACTIONS(2105), + [anon_sym_varray] = ACTIONS(2105), + [anon_sym_darray] = ACTIONS(2105), + [anon_sym_vec] = ACTIONS(2105), + [anon_sym_dict] = ACTIONS(2105), + [anon_sym_keyset] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2107), + [sym_final_modifier] = ACTIONS(2105), + [sym_xhp_modifier] = ACTIONS(2105), + [sym_xhp_identifier] = ACTIONS(2105), + [sym_xhp_class_identifier] = ACTIONS(2107), [sym_comment] = ACTIONS(3), }, [1609] = { - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2197), - [sym_variable] = ACTIONS(2199), - [sym_pipe_variable] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_newtype] = ACTIONS(2197), - [anon_sym_shape] = ACTIONS(2197), - [anon_sym_tuple] = ACTIONS(2197), - [anon_sym_clone] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_print] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_LT_LT_LT] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_echo] = ACTIONS(2197), - [anon_sym_unset] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_concurrent] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_foreach] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [sym_float] = ACTIONS(2199), - [sym_integer] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_True] = ACTIONS(2197), - [anon_sym_TRUE] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_False] = ACTIONS(2197), - [anon_sym_FALSE] = ACTIONS(2197), - [anon_sym_null] = ACTIONS(2197), - [anon_sym_Null] = ACTIONS(2197), - [anon_sym_NULL] = ACTIONS(2197), - [sym_string] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_array] = ACTIONS(2197), - [anon_sym_varray] = ACTIONS(2197), - [anon_sym_darray] = ACTIONS(2197), - [anon_sym_vec] = ACTIONS(2197), - [anon_sym_dict] = ACTIONS(2197), - [anon_sym_keyset] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2199), - [sym_final_modifier] = ACTIONS(2197), - [sym_xhp_modifier] = ACTIONS(2197), - [sym_xhp_identifier] = ACTIONS(2197), - [sym_xhp_class_identifier] = ACTIONS(2199), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2369), + [sym_variable] = ACTIONS(2371), + [sym_pipe_variable] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_newtype] = ACTIONS(2369), + [anon_sym_shape] = ACTIONS(2369), + [anon_sym_tuple] = ACTIONS(2369), + [anon_sym_clone] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_print] = ACTIONS(2369), + [anon_sym_namespace] = ACTIONS(2369), + [anon_sym_include] = ACTIONS(2369), + [anon_sym_include_once] = ACTIONS(2369), + [anon_sym_require] = ACTIONS(2369), + [anon_sym_require_once] = ACTIONS(2369), + [anon_sym_BSLASH] = ACTIONS(2371), + [anon_sym_self] = ACTIONS(2369), + [anon_sym_parent] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_LT_LT] = ACTIONS(2369), + [anon_sym_LT_LT_LT] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_throw] = ACTIONS(2369), + [anon_sym_echo] = ACTIONS(2369), + [anon_sym_unset] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_concurrent] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_function] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2369), + [anon_sym_foreach] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_using] = ACTIONS(2369), + [sym_float] = ACTIONS(2371), + [sym_integer] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_True] = ACTIONS(2369), + [anon_sym_TRUE] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [anon_sym_False] = ACTIONS(2369), + [anon_sym_FALSE] = ACTIONS(2369), + [anon_sym_null] = ACTIONS(2369), + [anon_sym_Null] = ACTIONS(2369), + [anon_sym_NULL] = ACTIONS(2369), + [sym_string] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_array] = ACTIONS(2369), + [anon_sym_varray] = ACTIONS(2369), + [anon_sym_darray] = ACTIONS(2369), + [anon_sym_vec] = ACTIONS(2369), + [anon_sym_dict] = ACTIONS(2369), + [anon_sym_keyset] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_list] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_interface] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_abstract] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2371), + [sym_final_modifier] = ACTIONS(2369), + [sym_xhp_modifier] = ACTIONS(2369), + [sym_xhp_identifier] = ACTIONS(2369), + [sym_xhp_class_identifier] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + }, + [1610] = { + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2101), + [sym_variable] = ACTIONS(2103), + [sym_pipe_variable] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_newtype] = ACTIONS(2101), + [anon_sym_shape] = ACTIONS(2101), + [anon_sym_tuple] = ACTIONS(2101), + [anon_sym_clone] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2101), + [anon_sym_namespace] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_include_once] = ACTIONS(2101), + [anon_sym_require] = ACTIONS(2101), + [anon_sym_require_once] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2103), + [anon_sym_self] = ACTIONS(2101), + [anon_sym_parent] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_LT_LT_LT] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(2101), + [anon_sym_echo] = ACTIONS(2101), + [anon_sym_unset] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_concurrent] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_function] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_switch] = ACTIONS(2101), + [anon_sym_foreach] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_using] = ACTIONS(2101), + [sym_float] = ACTIONS(2103), + [sym_integer] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_True] = ACTIONS(2101), + [anon_sym_TRUE] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_False] = ACTIONS(2101), + [anon_sym_FALSE] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [anon_sym_Null] = ACTIONS(2101), + [anon_sym_NULL] = ACTIONS(2101), + [sym_string] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_array] = ACTIONS(2101), + [anon_sym_varray] = ACTIONS(2101), + [anon_sym_darray] = ACTIONS(2101), + [anon_sym_vec] = ACTIONS(2101), + [anon_sym_dict] = ACTIONS(2101), + [anon_sym_keyset] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_list] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_interface] = ACTIONS(2101), + [anon_sym_class] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_abstract] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2103), + [sym_final_modifier] = ACTIONS(2101), + [sym_xhp_modifier] = ACTIONS(2101), + [sym_xhp_identifier] = ACTIONS(2101), + [sym_xhp_class_identifier] = ACTIONS(2103), + [sym_comment] = ACTIONS(3), + }, + [1611] = { + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2097), + [sym_variable] = ACTIONS(2099), + [sym_pipe_variable] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_newtype] = ACTIONS(2097), + [anon_sym_shape] = ACTIONS(2097), + [anon_sym_tuple] = ACTIONS(2097), + [anon_sym_clone] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_print] = ACTIONS(2097), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_include] = ACTIONS(2097), + [anon_sym_include_once] = ACTIONS(2097), + [anon_sym_require] = ACTIONS(2097), + [anon_sym_require_once] = ACTIONS(2097), + [anon_sym_BSLASH] = ACTIONS(2099), + [anon_sym_self] = ACTIONS(2097), + [anon_sym_parent] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2097), + [anon_sym_LT_LT_LT] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_throw] = ACTIONS(2097), + [anon_sym_echo] = ACTIONS(2097), + [anon_sym_unset] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_concurrent] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_function] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_foreach] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_using] = ACTIONS(2097), + [sym_float] = ACTIONS(2099), + [sym_integer] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_True] = ACTIONS(2097), + [anon_sym_TRUE] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_False] = ACTIONS(2097), + [anon_sym_FALSE] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [anon_sym_Null] = ACTIONS(2097), + [anon_sym_NULL] = ACTIONS(2097), + [sym_string] = ACTIONS(2099), + [anon_sym_AT] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_array] = ACTIONS(2097), + [anon_sym_varray] = ACTIONS(2097), + [anon_sym_darray] = ACTIONS(2097), + [anon_sym_vec] = ACTIONS(2097), + [anon_sym_dict] = ACTIONS(2097), + [anon_sym_keyset] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_list] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_abstract] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2099), + [sym_final_modifier] = ACTIONS(2097), + [sym_xhp_modifier] = ACTIONS(2097), + [sym_xhp_identifier] = ACTIONS(2097), + [sym_xhp_class_identifier] = ACTIONS(2099), + [sym_comment] = ACTIONS(3), + }, + [1612] = { + [ts_builtin_sym_end] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2373), + [sym_variable] = ACTIONS(2375), + [sym_pipe_variable] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_newtype] = ACTIONS(2373), + [anon_sym_shape] = ACTIONS(2373), + [anon_sym_tuple] = ACTIONS(2373), + [anon_sym_clone] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_print] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_include] = ACTIONS(2373), + [anon_sym_include_once] = ACTIONS(2373), + [anon_sym_require] = ACTIONS(2373), + [anon_sym_require_once] = ACTIONS(2373), + [anon_sym_BSLASH] = ACTIONS(2375), + [anon_sym_self] = ACTIONS(2373), + [anon_sym_parent] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_LT_LT_LT] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_echo] = ACTIONS(2373), + [anon_sym_unset] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_concurrent] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_foreach] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [sym_float] = ACTIONS(2375), + [sym_integer] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_True] = ACTIONS(2373), + [anon_sym_TRUE] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_False] = ACTIONS(2373), + [anon_sym_FALSE] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_Null] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [sym_string] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_array] = ACTIONS(2373), + [anon_sym_varray] = ACTIONS(2373), + [anon_sym_darray] = ACTIONS(2373), + [anon_sym_vec] = ACTIONS(2373), + [anon_sym_dict] = ACTIONS(2373), + [anon_sym_keyset] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_list] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_abstract] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2375), + [sym_final_modifier] = ACTIONS(2373), + [sym_xhp_modifier] = ACTIONS(2373), + [sym_xhp_identifier] = ACTIONS(2373), + [sym_xhp_class_identifier] = ACTIONS(2375), [sym_comment] = ACTIONS(3), }, - [1610] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1613] = { + [sym_identifier] = ACTIONS(2573), + [sym_variable] = ACTIONS(2575), + [sym_pipe_variable] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_newtype] = ACTIONS(2573), + [anon_sym_shape] = ACTIONS(2573), + [anon_sym_tuple] = ACTIONS(2573), + [anon_sym_clone] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_include] = ACTIONS(2573), + [anon_sym_include_once] = ACTIONS(2573), + [anon_sym_require] = ACTIONS(2573), + [anon_sym_require_once] = ACTIONS(2573), + [anon_sym_BSLASH] = ACTIONS(2575), + [anon_sym_self] = ACTIONS(2573), + [anon_sym_parent] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_LT_LT] = ACTIONS(2573), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_echo] = ACTIONS(2573), + [anon_sym_unset] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_concurrent] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_function] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_foreach] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [sym_float] = ACTIONS(2575), + [sym_integer] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_True] = ACTIONS(2573), + [anon_sym_TRUE] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_False] = ACTIONS(2573), + [anon_sym_FALSE] = ACTIONS(2573), + [anon_sym_null] = ACTIONS(2573), + [anon_sym_Null] = ACTIONS(2573), + [anon_sym_NULL] = ACTIONS(2573), + [sym_string] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_array] = ACTIONS(2573), + [anon_sym_varray] = ACTIONS(2573), + [anon_sym_darray] = ACTIONS(2573), + [anon_sym_vec] = ACTIONS(2573), + [anon_sym_dict] = ACTIONS(2573), + [anon_sym_keyset] = ACTIONS(2573), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_list] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_interface] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_abstract] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(2575), + [sym_final_modifier] = ACTIONS(2573), + [sym_xhp_modifier] = ACTIONS(2573), + [sym_xhp_identifier] = ACTIONS(2573), + [sym_xhp_class_identifier] = ACTIONS(2575), [sym_comment] = ACTIONS(3), }, - [1611] = { - [sym_identifier] = ACTIONS(2181), - [sym_variable] = ACTIONS(2183), - [sym_pipe_variable] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_newtype] = ACTIONS(2181), - [anon_sym_shape] = ACTIONS(2181), - [anon_sym_tuple] = ACTIONS(2181), - [anon_sym_clone] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_print] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_include] = ACTIONS(2181), - [anon_sym_include_once] = ACTIONS(2181), - [anon_sym_require] = ACTIONS(2181), - [anon_sym_require_once] = ACTIONS(2181), - [anon_sym_BSLASH] = ACTIONS(2183), - [anon_sym_self] = ACTIONS(2181), - [anon_sym_parent] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_LT_LT_LT] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_echo] = ACTIONS(2181), - [anon_sym_unset] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_concurrent] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_foreach] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [sym_float] = ACTIONS(2183), - [sym_integer] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_True] = ACTIONS(2181), - [anon_sym_TRUE] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [anon_sym_False] = ACTIONS(2181), - [anon_sym_FALSE] = ACTIONS(2181), - [anon_sym_null] = ACTIONS(2181), - [anon_sym_Null] = ACTIONS(2181), - [anon_sym_NULL] = ACTIONS(2181), - [sym_string] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_array] = ACTIONS(2181), - [anon_sym_varray] = ACTIONS(2181), - [anon_sym_darray] = ACTIONS(2181), - [anon_sym_vec] = ACTIONS(2181), - [anon_sym_dict] = ACTIONS(2181), - [anon_sym_keyset] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_list] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2183), - [sym_final_modifier] = ACTIONS(2181), - [sym_xhp_modifier] = ACTIONS(2181), - [sym_xhp_identifier] = ACTIONS(2181), - [sym_xhp_class_identifier] = ACTIONS(2183), + [1614] = { + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2293), + [sym_variable] = ACTIONS(2295), + [sym_pipe_variable] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_newtype] = ACTIONS(2293), + [anon_sym_shape] = ACTIONS(2293), + [anon_sym_tuple] = ACTIONS(2293), + [anon_sym_clone] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_include] = ACTIONS(2293), + [anon_sym_include_once] = ACTIONS(2293), + [anon_sym_require] = ACTIONS(2293), + [anon_sym_require_once] = ACTIONS(2293), + [anon_sym_BSLASH] = ACTIONS(2295), + [anon_sym_self] = ACTIONS(2293), + [anon_sym_parent] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_LT_LT] = ACTIONS(2293), + [anon_sym_LT_LT_LT] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_echo] = ACTIONS(2293), + [anon_sym_unset] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_concurrent] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_foreach] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_using] = ACTIONS(2293), + [sym_float] = ACTIONS(2295), + [sym_integer] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_True] = ACTIONS(2293), + [anon_sym_TRUE] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_False] = ACTIONS(2293), + [anon_sym_FALSE] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [anon_sym_Null] = ACTIONS(2293), + [anon_sym_NULL] = ACTIONS(2293), + [sym_string] = ACTIONS(2295), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_array] = ACTIONS(2293), + [anon_sym_varray] = ACTIONS(2293), + [anon_sym_darray] = ACTIONS(2293), + [anon_sym_vec] = ACTIONS(2293), + [anon_sym_dict] = ACTIONS(2293), + [anon_sym_keyset] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2295), + [sym_final_modifier] = ACTIONS(2293), + [sym_xhp_modifier] = ACTIONS(2293), + [sym_xhp_identifier] = ACTIONS(2293), + [sym_xhp_class_identifier] = ACTIONS(2295), [sym_comment] = ACTIONS(3), }, - [1612] = { + [1615] = { + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2313), + [sym_variable] = ACTIONS(2315), + [sym_pipe_variable] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_newtype] = ACTIONS(2313), + [anon_sym_shape] = ACTIONS(2313), + [anon_sym_tuple] = ACTIONS(2313), + [anon_sym_clone] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_print] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_include] = ACTIONS(2313), + [anon_sym_include_once] = ACTIONS(2313), + [anon_sym_require] = ACTIONS(2313), + [anon_sym_require_once] = ACTIONS(2313), + [anon_sym_BSLASH] = ACTIONS(2315), + [anon_sym_self] = ACTIONS(2313), + [anon_sym_parent] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_LT_LT] = ACTIONS(2313), + [anon_sym_LT_LT_LT] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_echo] = ACTIONS(2313), + [anon_sym_unset] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_concurrent] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [sym_float] = ACTIONS(2315), + [sym_integer] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_True] = ACTIONS(2313), + [anon_sym_TRUE] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_False] = ACTIONS(2313), + [anon_sym_FALSE] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [anon_sym_Null] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [sym_string] = ACTIONS(2315), + [anon_sym_AT] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_array] = ACTIONS(2313), + [anon_sym_varray] = ACTIONS(2313), + [anon_sym_darray] = ACTIONS(2313), + [anon_sym_vec] = ACTIONS(2313), + [anon_sym_dict] = ACTIONS(2313), + [anon_sym_keyset] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2315), + [sym_final_modifier] = ACTIONS(2313), + [sym_xhp_modifier] = ACTIONS(2313), + [sym_xhp_identifier] = ACTIONS(2313), + [sym_xhp_class_identifier] = ACTIONS(2315), + [sym_comment] = ACTIONS(3), + }, + [1616] = { [sym_identifier] = ACTIONS(2357), [sym_variable] = ACTIONS(2359), [sym_pipe_variable] = ACTIONS(2359), @@ -184323,351 +178241,609 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2359), [sym_comment] = ACTIONS(3), }, - [1613] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1617] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1614] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [1618] = { + [ts_builtin_sym_end] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2401), + [sym_variable] = ACTIONS(2403), + [sym_pipe_variable] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_newtype] = ACTIONS(2401), + [anon_sym_shape] = ACTIONS(2401), + [anon_sym_tuple] = ACTIONS(2401), + [anon_sym_clone] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_print] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_include] = ACTIONS(2401), + [anon_sym_include_once] = ACTIONS(2401), + [anon_sym_require] = ACTIONS(2401), + [anon_sym_require_once] = ACTIONS(2401), + [anon_sym_BSLASH] = ACTIONS(2403), + [anon_sym_self] = ACTIONS(2401), + [anon_sym_parent] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LT_LT_LT] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_echo] = ACTIONS(2401), + [anon_sym_unset] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_concurrent] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_foreach] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_using] = ACTIONS(2401), + [sym_float] = ACTIONS(2403), + [sym_integer] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_True] = ACTIONS(2401), + [anon_sym_TRUE] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_False] = ACTIONS(2401), + [anon_sym_FALSE] = ACTIONS(2401), + [anon_sym_null] = ACTIONS(2401), + [anon_sym_Null] = ACTIONS(2401), + [anon_sym_NULL] = ACTIONS(2401), + [sym_string] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_array] = ACTIONS(2401), + [anon_sym_varray] = ACTIONS(2401), + [anon_sym_darray] = ACTIONS(2401), + [anon_sym_vec] = ACTIONS(2401), + [anon_sym_dict] = ACTIONS(2401), + [anon_sym_keyset] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2403), + [sym_final_modifier] = ACTIONS(2401), + [sym_xhp_modifier] = ACTIONS(2401), + [sym_xhp_identifier] = ACTIONS(2401), + [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, - [1615] = { - [sym_identifier] = ACTIONS(2041), - [sym_variable] = ACTIONS(2043), - [sym_pipe_variable] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_newtype] = ACTIONS(2041), - [anon_sym_shape] = ACTIONS(2041), - [anon_sym_tuple] = ACTIONS(2041), - [anon_sym_clone] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(2041), - [anon_sym_print] = ACTIONS(2041), - [anon_sym_namespace] = ACTIONS(2041), - [anon_sym_include] = ACTIONS(2041), - [anon_sym_include_once] = ACTIONS(2041), - [anon_sym_require] = ACTIONS(2041), - [anon_sym_require_once] = ACTIONS(2041), - [anon_sym_BSLASH] = ACTIONS(2043), - [anon_sym_self] = ACTIONS(2041), - [anon_sym_parent] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_LT_LT_LT] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_throw] = ACTIONS(2041), - [anon_sym_echo] = ACTIONS(2041), - [anon_sym_unset] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_concurrent] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_function] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [anon_sym_foreach] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_using] = ACTIONS(2041), - [sym_float] = ACTIONS(2043), - [sym_integer] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_True] = ACTIONS(2041), - [anon_sym_TRUE] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_False] = ACTIONS(2041), - [anon_sym_FALSE] = ACTIONS(2041), - [anon_sym_null] = ACTIONS(2041), - [anon_sym_Null] = ACTIONS(2041), - [anon_sym_NULL] = ACTIONS(2041), - [sym_string] = ACTIONS(2043), - [anon_sym_AT] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_array] = ACTIONS(2041), - [anon_sym_varray] = ACTIONS(2041), - [anon_sym_darray] = ACTIONS(2041), - [anon_sym_vec] = ACTIONS(2041), - [anon_sym_dict] = ACTIONS(2041), - [anon_sym_keyset] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_list] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_class] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_abstract] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2043), - [sym_final_modifier] = ACTIONS(2041), - [sym_xhp_modifier] = ACTIONS(2041), - [sym_xhp_identifier] = ACTIONS(2041), - [sym_xhp_class_identifier] = ACTIONS(2043), + [1619] = { + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2229), + [sym_variable] = ACTIONS(2231), + [sym_pipe_variable] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_newtype] = ACTIONS(2229), + [anon_sym_shape] = ACTIONS(2229), + [anon_sym_tuple] = ACTIONS(2229), + [anon_sym_clone] = ACTIONS(2229), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_print] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2229), + [anon_sym_include] = ACTIONS(2229), + [anon_sym_include_once] = ACTIONS(2229), + [anon_sym_require] = ACTIONS(2229), + [anon_sym_require_once] = ACTIONS(2229), + [anon_sym_BSLASH] = ACTIONS(2231), + [anon_sym_self] = ACTIONS(2229), + [anon_sym_parent] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_LT_LT_LT] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_throw] = ACTIONS(2229), + [anon_sym_echo] = ACTIONS(2229), + [anon_sym_unset] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_concurrent] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_function] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_switch] = ACTIONS(2229), + [anon_sym_foreach] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_do] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(2229), + [sym_float] = ACTIONS(2231), + [sym_integer] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_True] = ACTIONS(2229), + [anon_sym_TRUE] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_False] = ACTIONS(2229), + [anon_sym_FALSE] = ACTIONS(2229), + [anon_sym_null] = ACTIONS(2229), + [anon_sym_Null] = ACTIONS(2229), + [anon_sym_NULL] = ACTIONS(2229), + [sym_string] = ACTIONS(2231), + [anon_sym_AT] = ACTIONS(2231), + [anon_sym_TILDE] = ACTIONS(2231), + [anon_sym_array] = ACTIONS(2229), + [anon_sym_varray] = ACTIONS(2229), + [anon_sym_darray] = ACTIONS(2229), + [anon_sym_vec] = ACTIONS(2229), + [anon_sym_dict] = ACTIONS(2229), + [anon_sym_keyset] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_list] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_PLUS_PLUS] = ACTIONS(2231), + [anon_sym_DASH_DASH] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_class] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_abstract] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2231), + [sym_final_modifier] = ACTIONS(2229), + [sym_xhp_modifier] = ACTIONS(2229), + [sym_xhp_identifier] = ACTIONS(2229), + [sym_xhp_class_identifier] = ACTIONS(2231), + [sym_comment] = ACTIONS(3), + }, + [1620] = { + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2417), + [sym_variable] = ACTIONS(2419), + [sym_pipe_variable] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_newtype] = ACTIONS(2417), + [anon_sym_shape] = ACTIONS(2417), + [anon_sym_tuple] = ACTIONS(2417), + [anon_sym_clone] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_include] = ACTIONS(2417), + [anon_sym_include_once] = ACTIONS(2417), + [anon_sym_require] = ACTIONS(2417), + [anon_sym_require_once] = ACTIONS(2417), + [anon_sym_BSLASH] = ACTIONS(2419), + [anon_sym_self] = ACTIONS(2417), + [anon_sym_parent] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_LT_LT] = ACTIONS(2417), + [anon_sym_LT_LT_LT] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_echo] = ACTIONS(2417), + [anon_sym_unset] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_concurrent] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_switch] = ACTIONS(2417), + [anon_sym_foreach] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_using] = ACTIONS(2417), + [sym_float] = ACTIONS(2419), + [sym_integer] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_True] = ACTIONS(2417), + [anon_sym_TRUE] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_False] = ACTIONS(2417), + [anon_sym_FALSE] = ACTIONS(2417), + [anon_sym_null] = ACTIONS(2417), + [anon_sym_Null] = ACTIONS(2417), + [anon_sym_NULL] = ACTIONS(2417), + [sym_string] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_array] = ACTIONS(2417), + [anon_sym_varray] = ACTIONS(2417), + [anon_sym_darray] = ACTIONS(2417), + [anon_sym_vec] = ACTIONS(2417), + [anon_sym_dict] = ACTIONS(2417), + [anon_sym_keyset] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_interface] = ACTIONS(2417), + [anon_sym_class] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_abstract] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2419), + [sym_final_modifier] = ACTIONS(2417), + [sym_xhp_modifier] = ACTIONS(2417), + [sym_xhp_identifier] = ACTIONS(2417), + [sym_xhp_class_identifier] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + }, + [1621] = { + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2047), + [sym_variable] = ACTIONS(2049), + [sym_pipe_variable] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_newtype] = ACTIONS(2047), + [anon_sym_shape] = ACTIONS(2047), + [anon_sym_tuple] = ACTIONS(2047), + [anon_sym_clone] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_namespace] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_include_once] = ACTIONS(2047), + [anon_sym_require] = ACTIONS(2047), + [anon_sym_require_once] = ACTIONS(2047), + [anon_sym_BSLASH] = ACTIONS(2049), + [anon_sym_self] = ACTIONS(2047), + [anon_sym_parent] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_LT_LT] = ACTIONS(2047), + [anon_sym_LT_LT_LT] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_throw] = ACTIONS(2047), + [anon_sym_echo] = ACTIONS(2047), + [anon_sym_unset] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_concurrent] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_function] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(2047), + [anon_sym_foreach] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_using] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [sym_integer] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_True] = ACTIONS(2047), + [anon_sym_TRUE] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_False] = ACTIONS(2047), + [anon_sym_FALSE] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [anon_sym_Null] = ACTIONS(2047), + [anon_sym_NULL] = ACTIONS(2047), + [sym_string] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_array] = ACTIONS(2047), + [anon_sym_varray] = ACTIONS(2047), + [anon_sym_darray] = ACTIONS(2047), + [anon_sym_vec] = ACTIONS(2047), + [anon_sym_dict] = ACTIONS(2047), + [anon_sym_keyset] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_interface] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_abstract] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2049), + [sym_final_modifier] = ACTIONS(2047), + [sym_xhp_modifier] = ACTIONS(2047), + [sym_xhp_identifier] = ACTIONS(2047), + [sym_xhp_class_identifier] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + }, + [1622] = { + [ts_builtin_sym_end] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2377), + [sym_variable] = ACTIONS(2379), + [sym_pipe_variable] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_newtype] = ACTIONS(2377), + [anon_sym_shape] = ACTIONS(2377), + [anon_sym_tuple] = ACTIONS(2377), + [anon_sym_clone] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_print] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_include] = ACTIONS(2377), + [anon_sym_include_once] = ACTIONS(2377), + [anon_sym_require] = ACTIONS(2377), + [anon_sym_require_once] = ACTIONS(2377), + [anon_sym_BSLASH] = ACTIONS(2379), + [anon_sym_self] = ACTIONS(2377), + [anon_sym_parent] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_LT_LT_LT] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_echo] = ACTIONS(2377), + [anon_sym_unset] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_concurrent] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_function] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_foreach] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [sym_float] = ACTIONS(2379), + [sym_integer] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_True] = ACTIONS(2377), + [anon_sym_TRUE] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_False] = ACTIONS(2377), + [anon_sym_FALSE] = ACTIONS(2377), + [anon_sym_null] = ACTIONS(2377), + [anon_sym_Null] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [sym_string] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_array] = ACTIONS(2377), + [anon_sym_varray] = ACTIONS(2377), + [anon_sym_darray] = ACTIONS(2377), + [anon_sym_vec] = ACTIONS(2377), + [anon_sym_dict] = ACTIONS(2377), + [anon_sym_keyset] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_list] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_abstract] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2379), + [sym_final_modifier] = ACTIONS(2377), + [sym_xhp_modifier] = ACTIONS(2377), + [sym_xhp_identifier] = ACTIONS(2377), + [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, - [1616] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2213), - [sym_variable] = ACTIONS(2215), - [sym_pipe_variable] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_newtype] = ACTIONS(2213), - [anon_sym_shape] = ACTIONS(2213), - [anon_sym_tuple] = ACTIONS(2213), - [anon_sym_clone] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_print] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_LT_LT_LT] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_echo] = ACTIONS(2213), - [anon_sym_unset] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_concurrent] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_foreach] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [sym_float] = ACTIONS(2215), - [sym_integer] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_True] = ACTIONS(2213), - [anon_sym_TRUE] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_False] = ACTIONS(2213), - [anon_sym_FALSE] = ACTIONS(2213), - [anon_sym_null] = ACTIONS(2213), - [anon_sym_Null] = ACTIONS(2213), - [anon_sym_NULL] = ACTIONS(2213), - [sym_string] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_array] = ACTIONS(2213), - [anon_sym_varray] = ACTIONS(2213), - [anon_sym_darray] = ACTIONS(2213), - [anon_sym_vec] = ACTIONS(2213), - [anon_sym_dict] = ACTIONS(2213), - [anon_sym_keyset] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2215), - [sym_final_modifier] = ACTIONS(2213), - [sym_xhp_modifier] = ACTIONS(2213), - [sym_xhp_identifier] = ACTIONS(2213), - [sym_xhp_class_identifier] = ACTIONS(2215), + [1623] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [sym_variable] = ACTIONS(2407), + [sym_pipe_variable] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_newtype] = ACTIONS(2405), + [anon_sym_shape] = ACTIONS(2405), + [anon_sym_tuple] = ACTIONS(2405), + [anon_sym_clone] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_print] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_include] = ACTIONS(2405), + [anon_sym_include_once] = ACTIONS(2405), + [anon_sym_require] = ACTIONS(2405), + [anon_sym_require_once] = ACTIONS(2405), + [anon_sym_BSLASH] = ACTIONS(2407), + [anon_sym_self] = ACTIONS(2405), + [anon_sym_parent] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_LT_LT] = ACTIONS(2405), + [anon_sym_LT_LT_LT] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_echo] = ACTIONS(2405), + [anon_sym_unset] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_concurrent] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_foreach] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [sym_float] = ACTIONS(2407), + [sym_integer] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_True] = ACTIONS(2405), + [anon_sym_TRUE] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_False] = ACTIONS(2405), + [anon_sym_FALSE] = ACTIONS(2405), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_Null] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2405), + [sym_string] = ACTIONS(2407), + [anon_sym_AT] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_array] = ACTIONS(2405), + [anon_sym_varray] = ACTIONS(2405), + [anon_sym_darray] = ACTIONS(2405), + [anon_sym_vec] = ACTIONS(2405), + [anon_sym_dict] = ACTIONS(2405), + [anon_sym_keyset] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_abstract] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2407), + [sym_final_modifier] = ACTIONS(2405), + [sym_xhp_modifier] = ACTIONS(2405), + [sym_xhp_identifier] = ACTIONS(2405), + [sym_xhp_class_identifier] = ACTIONS(2407), [sym_comment] = ACTIONS(3), }, - [1617] = { + [1624] = { [ts_builtin_sym_end] = ACTIONS(2511), [sym_identifier] = ACTIONS(2509), [sym_variable] = ACTIONS(2511), @@ -184753,1208 +178929,606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2511), [sym_comment] = ACTIONS(3), }, - [1618] = { - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [sym_variable] = ACTIONS(2107), - [sym_pipe_variable] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_newtype] = ACTIONS(2105), - [anon_sym_shape] = ACTIONS(2105), - [anon_sym_tuple] = ACTIONS(2105), - [anon_sym_clone] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_print] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_LT_LT_LT] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_echo] = ACTIONS(2105), - [anon_sym_unset] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_concurrent] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_foreach] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [sym_float] = ACTIONS(2107), - [sym_integer] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_True] = ACTIONS(2105), - [anon_sym_TRUE] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_False] = ACTIONS(2105), - [anon_sym_FALSE] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_Null] = ACTIONS(2105), - [anon_sym_NULL] = ACTIONS(2105), - [sym_string] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_array] = ACTIONS(2105), - [anon_sym_varray] = ACTIONS(2105), - [anon_sym_darray] = ACTIONS(2105), - [anon_sym_vec] = ACTIONS(2105), - [anon_sym_dict] = ACTIONS(2105), - [anon_sym_keyset] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(2107), - [sym_final_modifier] = ACTIONS(2105), - [sym_xhp_modifier] = ACTIONS(2105), - [sym_xhp_identifier] = ACTIONS(2105), - [sym_xhp_class_identifier] = ACTIONS(2107), - [sym_comment] = ACTIONS(3), - }, - [1619] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1620] = { - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2109), - [sym_variable] = ACTIONS(2111), - [sym_pipe_variable] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_newtype] = ACTIONS(2109), - [anon_sym_shape] = ACTIONS(2109), - [anon_sym_tuple] = ACTIONS(2109), - [anon_sym_clone] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_print] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_LT_LT_LT] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_echo] = ACTIONS(2109), - [anon_sym_unset] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_concurrent] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_foreach] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [sym_float] = ACTIONS(2111), - [sym_integer] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_True] = ACTIONS(2109), - [anon_sym_TRUE] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [anon_sym_False] = ACTIONS(2109), - [anon_sym_FALSE] = ACTIONS(2109), - [anon_sym_null] = ACTIONS(2109), - [anon_sym_Null] = ACTIONS(2109), - [anon_sym_NULL] = ACTIONS(2109), - [sym_string] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_array] = ACTIONS(2109), - [anon_sym_varray] = ACTIONS(2109), - [anon_sym_darray] = ACTIONS(2109), - [anon_sym_vec] = ACTIONS(2109), - [anon_sym_dict] = ACTIONS(2109), - [anon_sym_keyset] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(2111), - [sym_final_modifier] = ACTIONS(2109), - [sym_xhp_modifier] = ACTIONS(2109), - [sym_xhp_identifier] = ACTIONS(2109), - [sym_xhp_class_identifier] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - }, - [1621] = { - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2113), - [sym_variable] = ACTIONS(2115), - [sym_pipe_variable] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_newtype] = ACTIONS(2113), - [anon_sym_shape] = ACTIONS(2113), - [anon_sym_tuple] = ACTIONS(2113), - [anon_sym_clone] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_print] = ACTIONS(2113), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(2113), - [anon_sym_LT_LT_LT] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_throw] = ACTIONS(2113), - [anon_sym_echo] = ACTIONS(2113), - [anon_sym_unset] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_concurrent] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_function] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_switch] = ACTIONS(2113), - [anon_sym_foreach] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_using] = ACTIONS(2113), - [sym_float] = ACTIONS(2115), - [sym_integer] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_True] = ACTIONS(2113), - [anon_sym_TRUE] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_False] = ACTIONS(2113), - [anon_sym_FALSE] = ACTIONS(2113), - [anon_sym_null] = ACTIONS(2113), - [anon_sym_Null] = ACTIONS(2113), - [anon_sym_NULL] = ACTIONS(2113), - [sym_string] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_array] = ACTIONS(2113), - [anon_sym_varray] = ACTIONS(2113), - [anon_sym_darray] = ACTIONS(2113), - [anon_sym_vec] = ACTIONS(2113), - [anon_sym_dict] = ACTIONS(2113), - [anon_sym_keyset] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_interface] = ACTIONS(2113), - [anon_sym_class] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_abstract] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(2115), - [sym_final_modifier] = ACTIONS(2113), - [sym_xhp_modifier] = ACTIONS(2113), - [sym_xhp_identifier] = ACTIONS(2113), - [sym_xhp_class_identifier] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - }, - [1622] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1623] = { - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2521), - [sym_variable] = ACTIONS(2523), - [sym_pipe_variable] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_newtype] = ACTIONS(2521), - [anon_sym_shape] = ACTIONS(2521), - [anon_sym_tuple] = ACTIONS(2521), - [anon_sym_clone] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_print] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_LT_LT_LT] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_echo] = ACTIONS(2521), - [anon_sym_unset] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_concurrent] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_foreach] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [sym_float] = ACTIONS(2523), - [sym_integer] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_True] = ACTIONS(2521), - [anon_sym_TRUE] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_False] = ACTIONS(2521), - [anon_sym_FALSE] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [anon_sym_Null] = ACTIONS(2521), - [anon_sym_NULL] = ACTIONS(2521), - [sym_string] = ACTIONS(2523), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_array] = ACTIONS(2521), - [anon_sym_varray] = ACTIONS(2521), - [anon_sym_darray] = ACTIONS(2521), - [anon_sym_vec] = ACTIONS(2521), - [anon_sym_dict] = ACTIONS(2521), - [anon_sym_keyset] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_trait] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2523), - [sym_final_modifier] = ACTIONS(2521), - [sym_xhp_modifier] = ACTIONS(2521), - [sym_xhp_identifier] = ACTIONS(2521), - [sym_xhp_class_identifier] = ACTIONS(2523), - [sym_comment] = ACTIONS(3), - }, - [1624] = { - [ts_builtin_sym_end] = ACTIONS(2527), - [sym_identifier] = ACTIONS(2525), - [sym_variable] = ACTIONS(2527), - [sym_pipe_variable] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_newtype] = ACTIONS(2525), - [anon_sym_shape] = ACTIONS(2525), - [anon_sym_tuple] = ACTIONS(2525), - [anon_sym_clone] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_LT_LT_LT] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_echo] = ACTIONS(2525), - [anon_sym_unset] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_concurrent] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_foreach] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [sym_float] = ACTIONS(2527), - [sym_integer] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_True] = ACTIONS(2525), - [anon_sym_TRUE] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_False] = ACTIONS(2525), - [anon_sym_FALSE] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2525), - [anon_sym_Null] = ACTIONS(2525), - [anon_sym_NULL] = ACTIONS(2525), - [sym_string] = ACTIONS(2527), - [anon_sym_AT] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_array] = ACTIONS(2525), - [anon_sym_varray] = ACTIONS(2525), - [anon_sym_darray] = ACTIONS(2525), - [anon_sym_vec] = ACTIONS(2525), - [anon_sym_dict] = ACTIONS(2525), - [anon_sym_keyset] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_trait] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2527), - [sym_final_modifier] = ACTIONS(2525), - [sym_xhp_modifier] = ACTIONS(2525), - [sym_xhp_identifier] = ACTIONS(2525), - [sym_xhp_class_identifier] = ACTIONS(2527), - [sym_comment] = ACTIONS(3), - }, [1625] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1626] = { - [ts_builtin_sym_end] = ACTIONS(2543), - [sym_identifier] = ACTIONS(2541), - [sym_variable] = ACTIONS(2543), - [sym_pipe_variable] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_newtype] = ACTIONS(2541), - [anon_sym_shape] = ACTIONS(2541), - [anon_sym_tuple] = ACTIONS(2541), - [anon_sym_clone] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), - [anon_sym_LT_LT_LT] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_echo] = ACTIONS(2541), - [anon_sym_unset] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_concurrent] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_foreach] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [sym_float] = ACTIONS(2543), - [sym_integer] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_True] = ACTIONS(2541), - [anon_sym_TRUE] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_False] = ACTIONS(2541), - [anon_sym_FALSE] = ACTIONS(2541), - [anon_sym_null] = ACTIONS(2541), - [anon_sym_Null] = ACTIONS(2541), - [anon_sym_NULL] = ACTIONS(2541), - [sym_string] = ACTIONS(2543), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_array] = ACTIONS(2541), - [anon_sym_varray] = ACTIONS(2541), - [anon_sym_darray] = ACTIONS(2541), - [anon_sym_vec] = ACTIONS(2541), - [anon_sym_dict] = ACTIONS(2541), - [anon_sym_keyset] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2543), - [sym_final_modifier] = ACTIONS(2541), - [sym_xhp_modifier] = ACTIONS(2541), - [sym_xhp_identifier] = ACTIONS(2541), - [sym_xhp_class_identifier] = ACTIONS(2543), + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2569), + [sym_variable] = ACTIONS(2571), + [sym_pipe_variable] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_newtype] = ACTIONS(2569), + [anon_sym_shape] = ACTIONS(2569), + [anon_sym_tuple] = ACTIONS(2569), + [anon_sym_clone] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_print] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2569), + [anon_sym_include] = ACTIONS(2569), + [anon_sym_include_once] = ACTIONS(2569), + [anon_sym_require] = ACTIONS(2569), + [anon_sym_require_once] = ACTIONS(2569), + [anon_sym_BSLASH] = ACTIONS(2571), + [anon_sym_self] = ACTIONS(2569), + [anon_sym_parent] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_LT_LT] = ACTIONS(2569), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_throw] = ACTIONS(2569), + [anon_sym_echo] = ACTIONS(2569), + [anon_sym_unset] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_concurrent] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_function] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_switch] = ACTIONS(2569), + [anon_sym_foreach] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_using] = ACTIONS(2569), + [sym_float] = ACTIONS(2571), + [sym_integer] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_True] = ACTIONS(2569), + [anon_sym_TRUE] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_False] = ACTIONS(2569), + [anon_sym_FALSE] = ACTIONS(2569), + [anon_sym_null] = ACTIONS(2569), + [anon_sym_Null] = ACTIONS(2569), + [anon_sym_NULL] = ACTIONS(2569), + [sym_string] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_array] = ACTIONS(2569), + [anon_sym_varray] = ACTIONS(2569), + [anon_sym_darray] = ACTIONS(2569), + [anon_sym_vec] = ACTIONS(2569), + [anon_sym_dict] = ACTIONS(2569), + [anon_sym_keyset] = ACTIONS(2569), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_interface] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_abstract] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(2571), + [sym_final_modifier] = ACTIONS(2569), + [sym_xhp_modifier] = ACTIONS(2569), + [sym_xhp_identifier] = ACTIONS(2569), + [sym_xhp_class_identifier] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + }, + [1626] = { + [ts_builtin_sym_end] = ACTIONS(2415), + [sym_identifier] = ACTIONS(2413), + [sym_variable] = ACTIONS(2415), + [sym_pipe_variable] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_newtype] = ACTIONS(2413), + [anon_sym_shape] = ACTIONS(2413), + [anon_sym_tuple] = ACTIONS(2413), + [anon_sym_clone] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_print] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_include] = ACTIONS(2413), + [anon_sym_include_once] = ACTIONS(2413), + [anon_sym_require] = ACTIONS(2413), + [anon_sym_require_once] = ACTIONS(2413), + [anon_sym_BSLASH] = ACTIONS(2415), + [anon_sym_self] = ACTIONS(2413), + [anon_sym_parent] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_LT_LT] = ACTIONS(2413), + [anon_sym_LT_LT_LT] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_throw] = ACTIONS(2413), + [anon_sym_echo] = ACTIONS(2413), + [anon_sym_unset] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_concurrent] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(2413), + [anon_sym_foreach] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_using] = ACTIONS(2413), + [sym_float] = ACTIONS(2415), + [sym_integer] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_True] = ACTIONS(2413), + [anon_sym_TRUE] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_False] = ACTIONS(2413), + [anon_sym_FALSE] = ACTIONS(2413), + [anon_sym_null] = ACTIONS(2413), + [anon_sym_Null] = ACTIONS(2413), + [anon_sym_NULL] = ACTIONS(2413), + [sym_string] = ACTIONS(2415), + [anon_sym_AT] = ACTIONS(2415), + [anon_sym_TILDE] = ACTIONS(2415), + [anon_sym_array] = ACTIONS(2413), + [anon_sym_varray] = ACTIONS(2413), + [anon_sym_darray] = ACTIONS(2413), + [anon_sym_vec] = ACTIONS(2413), + [anon_sym_dict] = ACTIONS(2413), + [anon_sym_keyset] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_PLUS_PLUS] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_interface] = ACTIONS(2413), + [anon_sym_class] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_abstract] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2415), + [sym_final_modifier] = ACTIONS(2413), + [sym_xhp_modifier] = ACTIONS(2413), + [sym_xhp_identifier] = ACTIONS(2413), + [sym_xhp_class_identifier] = ACTIONS(2415), [sym_comment] = ACTIONS(3), }, [1627] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2453), + [sym_variable] = ACTIONS(2455), + [sym_pipe_variable] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_newtype] = ACTIONS(2453), + [anon_sym_shape] = ACTIONS(2453), + [anon_sym_tuple] = ACTIONS(2453), + [anon_sym_clone] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_include] = ACTIONS(2453), + [anon_sym_include_once] = ACTIONS(2453), + [anon_sym_require] = ACTIONS(2453), + [anon_sym_require_once] = ACTIONS(2453), + [anon_sym_BSLASH] = ACTIONS(2455), + [anon_sym_self] = ACTIONS(2453), + [anon_sym_parent] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_LT_LT_LT] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_throw] = ACTIONS(2453), + [anon_sym_echo] = ACTIONS(2453), + [anon_sym_unset] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_concurrent] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2453), + [anon_sym_foreach] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_using] = ACTIONS(2453), + [sym_float] = ACTIONS(2455), + [sym_integer] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_True] = ACTIONS(2453), + [anon_sym_TRUE] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_False] = ACTIONS(2453), + [anon_sym_FALSE] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [anon_sym_Null] = ACTIONS(2453), + [anon_sym_NULL] = ACTIONS(2453), + [sym_string] = ACTIONS(2455), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_array] = ACTIONS(2453), + [anon_sym_varray] = ACTIONS(2453), + [anon_sym_darray] = ACTIONS(2453), + [anon_sym_vec] = ACTIONS(2453), + [anon_sym_dict] = ACTIONS(2453), + [anon_sym_keyset] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_yield] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_class] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_abstract] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2455), + [sym_final_modifier] = ACTIONS(2453), + [sym_xhp_modifier] = ACTIONS(2453), + [sym_xhp_identifier] = ACTIONS(2453), + [sym_xhp_class_identifier] = ACTIONS(2455), [sym_comment] = ACTIONS(3), }, [1628] = { - [sym_identifier] = ACTIONS(2609), - [sym_variable] = ACTIONS(2611), - [sym_pipe_variable] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_newtype] = ACTIONS(2609), - [anon_sym_shape] = ACTIONS(2609), - [anon_sym_tuple] = ACTIONS(2609), - [anon_sym_clone] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_print] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_include] = ACTIONS(2609), - [anon_sym_include_once] = ACTIONS(2609), - [anon_sym_require] = ACTIONS(2609), - [anon_sym_require_once] = ACTIONS(2609), - [anon_sym_BSLASH] = ACTIONS(2611), - [anon_sym_self] = ACTIONS(2609), - [anon_sym_parent] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2609), - [anon_sym_LT_LT_LT] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_echo] = ACTIONS(2609), - [anon_sym_unset] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_concurrent] = ACTIONS(2609), - [anon_sym_use] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_foreach] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [sym_float] = ACTIONS(2611), - [sym_integer] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_True] = ACTIONS(2609), - [anon_sym_TRUE] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_False] = ACTIONS(2609), - [anon_sym_FALSE] = ACTIONS(2609), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_Null] = ACTIONS(2609), - [anon_sym_NULL] = ACTIONS(2609), - [sym_string] = ACTIONS(2611), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_array] = ACTIONS(2609), - [anon_sym_varray] = ACTIONS(2609), - [anon_sym_darray] = ACTIONS(2609), - [anon_sym_vec] = ACTIONS(2609), - [anon_sym_dict] = ACTIONS(2609), - [anon_sym_keyset] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_list] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_trait] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2611), - [sym_final_modifier] = ACTIONS(2609), - [sym_xhp_modifier] = ACTIONS(2609), - [sym_xhp_identifier] = ACTIONS(2609), - [sym_xhp_class_identifier] = ACTIONS(2611), + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_identifier] = ACTIONS(2409), + [sym_variable] = ACTIONS(2411), + [sym_pipe_variable] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_newtype] = ACTIONS(2409), + [anon_sym_shape] = ACTIONS(2409), + [anon_sym_tuple] = ACTIONS(2409), + [anon_sym_clone] = ACTIONS(2409), + [anon_sym_new] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_namespace] = ACTIONS(2409), + [anon_sym_include] = ACTIONS(2409), + [anon_sym_include_once] = ACTIONS(2409), + [anon_sym_require] = ACTIONS(2409), + [anon_sym_require_once] = ACTIONS(2409), + [anon_sym_BSLASH] = ACTIONS(2411), + [anon_sym_self] = ACTIONS(2409), + [anon_sym_parent] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_LT_LT] = ACTIONS(2409), + [anon_sym_LT_LT_LT] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_throw] = ACTIONS(2409), + [anon_sym_echo] = ACTIONS(2409), + [anon_sym_unset] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_concurrent] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_function] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_switch] = ACTIONS(2409), + [anon_sym_foreach] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_using] = ACTIONS(2409), + [sym_float] = ACTIONS(2411), + [sym_integer] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_True] = ACTIONS(2409), + [anon_sym_TRUE] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [anon_sym_False] = ACTIONS(2409), + [anon_sym_FALSE] = ACTIONS(2409), + [anon_sym_null] = ACTIONS(2409), + [anon_sym_Null] = ACTIONS(2409), + [anon_sym_NULL] = ACTIONS(2409), + [sym_string] = ACTIONS(2411), + [anon_sym_AT] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2411), + [anon_sym_array] = ACTIONS(2409), + [anon_sym_varray] = ACTIONS(2409), + [anon_sym_darray] = ACTIONS(2409), + [anon_sym_vec] = ACTIONS(2409), + [anon_sym_dict] = ACTIONS(2409), + [anon_sym_keyset] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_list] = ACTIONS(2409), + [anon_sym_BANG] = ACTIONS(2411), + [anon_sym_PLUS_PLUS] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_yield] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_interface] = ACTIONS(2409), + [anon_sym_class] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_abstract] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(2411), + [sym_final_modifier] = ACTIONS(2409), + [sym_xhp_modifier] = ACTIONS(2409), + [sym_xhp_identifier] = ACTIONS(2409), + [sym_xhp_class_identifier] = ACTIONS(2411), [sym_comment] = ACTIONS(3), }, [1629] = { - [sym_identifier] = ACTIONS(2601), - [sym_variable] = ACTIONS(2603), - [sym_pipe_variable] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_newtype] = ACTIONS(2601), - [anon_sym_shape] = ACTIONS(2601), - [anon_sym_tuple] = ACTIONS(2601), - [anon_sym_clone] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_print] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_include] = ACTIONS(2601), - [anon_sym_include_once] = ACTIONS(2601), - [anon_sym_require] = ACTIONS(2601), - [anon_sym_require_once] = ACTIONS(2601), - [anon_sym_BSLASH] = ACTIONS(2603), - [anon_sym_self] = ACTIONS(2601), - [anon_sym_parent] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_LT_LT] = ACTIONS(2601), - [anon_sym_LT_LT_LT] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_echo] = ACTIONS(2601), - [anon_sym_unset] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_concurrent] = ACTIONS(2601), - [anon_sym_use] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_foreach] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [sym_float] = ACTIONS(2603), - [sym_integer] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_True] = ACTIONS(2601), - [anon_sym_TRUE] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [anon_sym_False] = ACTIONS(2601), - [anon_sym_FALSE] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(2601), - [anon_sym_Null] = ACTIONS(2601), - [anon_sym_NULL] = ACTIONS(2601), - [sym_string] = ACTIONS(2603), - [anon_sym_AT] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_array] = ACTIONS(2601), - [anon_sym_varray] = ACTIONS(2601), - [anon_sym_darray] = ACTIONS(2601), - [anon_sym_vec] = ACTIONS(2601), - [anon_sym_dict] = ACTIONS(2601), - [anon_sym_keyset] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_list] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_trait] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2603), - [sym_final_modifier] = ACTIONS(2601), - [sym_xhp_modifier] = ACTIONS(2601), - [sym_xhp_identifier] = ACTIONS(2601), - [sym_xhp_class_identifier] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2577), + [sym_variable] = ACTIONS(2579), + [sym_pipe_variable] = ACTIONS(2579), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_newtype] = ACTIONS(2577), + [anon_sym_shape] = ACTIONS(2577), + [anon_sym_tuple] = ACTIONS(2577), + [anon_sym_clone] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_print] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_include] = ACTIONS(2577), + [anon_sym_include_once] = ACTIONS(2577), + [anon_sym_require] = ACTIONS(2577), + [anon_sym_require_once] = ACTIONS(2577), + [anon_sym_BSLASH] = ACTIONS(2579), + [anon_sym_self] = ACTIONS(2577), + [anon_sym_parent] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_echo] = ACTIONS(2577), + [anon_sym_unset] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_concurrent] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_foreach] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [sym_float] = ACTIONS(2579), + [sym_integer] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_True] = ACTIONS(2577), + [anon_sym_TRUE] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_False] = ACTIONS(2577), + [anon_sym_FALSE] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2577), + [anon_sym_Null] = ACTIONS(2577), + [anon_sym_NULL] = ACTIONS(2577), + [sym_string] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_array] = ACTIONS(2577), + [anon_sym_varray] = ACTIONS(2577), + [anon_sym_darray] = ACTIONS(2577), + [anon_sym_vec] = ACTIONS(2577), + [anon_sym_dict] = ACTIONS(2577), + [anon_sym_keyset] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_list] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2579), + [sym_final_modifier] = ACTIONS(2577), + [sym_xhp_modifier] = ACTIONS(2577), + [sym_xhp_identifier] = ACTIONS(2577), + [sym_xhp_class_identifier] = ACTIONS(2579), [sym_comment] = ACTIONS(3), }, [1630] = { - [sym_identifier] = ACTIONS(2185), - [sym_variable] = ACTIONS(2187), - [sym_pipe_variable] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_newtype] = ACTIONS(2185), - [anon_sym_shape] = ACTIONS(2185), - [anon_sym_tuple] = ACTIONS(2185), - [anon_sym_clone] = ACTIONS(2185), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_print] = ACTIONS(2185), - [anon_sym_namespace] = ACTIONS(2185), - [anon_sym_include] = ACTIONS(2185), - [anon_sym_include_once] = ACTIONS(2185), - [anon_sym_require] = ACTIONS(2185), - [anon_sym_require_once] = ACTIONS(2185), - [anon_sym_BSLASH] = ACTIONS(2187), - [anon_sym_self] = ACTIONS(2185), - [anon_sym_parent] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_LT_LT_LT] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_throw] = ACTIONS(2185), - [anon_sym_echo] = ACTIONS(2185), - [anon_sym_unset] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_concurrent] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_function] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_switch] = ACTIONS(2185), - [anon_sym_foreach] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_do] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_using] = ACTIONS(2185), - [sym_float] = ACTIONS(2187), - [sym_integer] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_True] = ACTIONS(2185), - [anon_sym_TRUE] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [anon_sym_False] = ACTIONS(2185), - [anon_sym_FALSE] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_Null] = ACTIONS(2185), - [anon_sym_NULL] = ACTIONS(2185), - [sym_string] = ACTIONS(2187), - [anon_sym_AT] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [anon_sym_array] = ACTIONS(2185), - [anon_sym_varray] = ACTIONS(2185), - [anon_sym_darray] = ACTIONS(2185), - [anon_sym_vec] = ACTIONS(2185), - [anon_sym_dict] = ACTIONS(2185), - [anon_sym_keyset] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_list] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_class] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_abstract] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2187), - [sym_final_modifier] = ACTIONS(2185), - [sym_xhp_modifier] = ACTIONS(2185), - [sym_xhp_identifier] = ACTIONS(2185), - [sym_xhp_class_identifier] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2561), + [sym_variable] = ACTIONS(2563), + [sym_pipe_variable] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_newtype] = ACTIONS(2561), + [anon_sym_shape] = ACTIONS(2561), + [anon_sym_tuple] = ACTIONS(2561), + [anon_sym_clone] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_print] = ACTIONS(2561), + [anon_sym_namespace] = ACTIONS(2561), + [anon_sym_include] = ACTIONS(2561), + [anon_sym_include_once] = ACTIONS(2561), + [anon_sym_require] = ACTIONS(2561), + [anon_sym_require_once] = ACTIONS(2561), + [anon_sym_BSLASH] = ACTIONS(2563), + [anon_sym_self] = ACTIONS(2561), + [anon_sym_parent] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_LT_LT] = ACTIONS(2561), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_throw] = ACTIONS(2561), + [anon_sym_echo] = ACTIONS(2561), + [anon_sym_unset] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_concurrent] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_function] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_switch] = ACTIONS(2561), + [anon_sym_foreach] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(2561), + [sym_float] = ACTIONS(2563), + [sym_integer] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_True] = ACTIONS(2561), + [anon_sym_TRUE] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_False] = ACTIONS(2561), + [anon_sym_FALSE] = ACTIONS(2561), + [anon_sym_null] = ACTIONS(2561), + [anon_sym_Null] = ACTIONS(2561), + [anon_sym_NULL] = ACTIONS(2561), + [sym_string] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_array] = ACTIONS(2561), + [anon_sym_varray] = ACTIONS(2561), + [anon_sym_darray] = ACTIONS(2561), + [anon_sym_vec] = ACTIONS(2561), + [anon_sym_dict] = ACTIONS(2561), + [anon_sym_keyset] = ACTIONS(2561), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_list] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_interface] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_abstract] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(2563), + [sym_final_modifier] = ACTIONS(2561), + [sym_xhp_modifier] = ACTIONS(2561), + [sym_xhp_identifier] = ACTIONS(2561), + [sym_xhp_class_identifier] = ACTIONS(2563), [sym_comment] = ACTIONS(3), }, [1631] = { - [ts_builtin_sym_end] = ACTIONS(2547), - [sym_identifier] = ACTIONS(2545), - [sym_variable] = ACTIONS(2547), - [sym_pipe_variable] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_newtype] = ACTIONS(2545), - [anon_sym_shape] = ACTIONS(2545), - [anon_sym_tuple] = ACTIONS(2545), - [anon_sym_clone] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_print] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), - [anon_sym_LT_LT_LT] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_echo] = ACTIONS(2545), - [anon_sym_unset] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_concurrent] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_foreach] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [sym_float] = ACTIONS(2547), - [sym_integer] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_True] = ACTIONS(2545), - [anon_sym_TRUE] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_False] = ACTIONS(2545), - [anon_sym_FALSE] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_Null] = ACTIONS(2545), - [anon_sym_NULL] = ACTIONS(2545), - [sym_string] = ACTIONS(2547), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_array] = ACTIONS(2545), - [anon_sym_varray] = ACTIONS(2545), - [anon_sym_darray] = ACTIONS(2545), - [anon_sym_vec] = ACTIONS(2545), - [anon_sym_dict] = ACTIONS(2545), - [anon_sym_keyset] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2547), - [sym_final_modifier] = ACTIONS(2545), - [sym_xhp_modifier] = ACTIONS(2545), - [sym_xhp_identifier] = ACTIONS(2545), - [sym_xhp_class_identifier] = ACTIONS(2547), + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2513), + [sym_variable] = ACTIONS(2515), + [sym_pipe_variable] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_newtype] = ACTIONS(2513), + [anon_sym_shape] = ACTIONS(2513), + [anon_sym_tuple] = ACTIONS(2513), + [anon_sym_clone] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_include] = ACTIONS(2513), + [anon_sym_include_once] = ACTIONS(2513), + [anon_sym_require] = ACTIONS(2513), + [anon_sym_require_once] = ACTIONS(2513), + [anon_sym_BSLASH] = ACTIONS(2515), + [anon_sym_self] = ACTIONS(2513), + [anon_sym_parent] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_LT_LT] = ACTIONS(2513), + [anon_sym_LT_LT_LT] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_echo] = ACTIONS(2513), + [anon_sym_unset] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_concurrent] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_foreach] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [sym_float] = ACTIONS(2515), + [sym_integer] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_True] = ACTIONS(2513), + [anon_sym_TRUE] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_False] = ACTIONS(2513), + [anon_sym_FALSE] = ACTIONS(2513), + [anon_sym_null] = ACTIONS(2513), + [anon_sym_Null] = ACTIONS(2513), + [anon_sym_NULL] = ACTIONS(2513), + [sym_string] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_array] = ACTIONS(2513), + [anon_sym_varray] = ACTIONS(2513), + [anon_sym_darray] = ACTIONS(2513), + [anon_sym_vec] = ACTIONS(2513), + [anon_sym_dict] = ACTIONS(2513), + [anon_sym_keyset] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_list] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(2515), + [sym_final_modifier] = ACTIONS(2513), + [sym_xhp_modifier] = ACTIONS(2513), + [sym_xhp_identifier] = ACTIONS(2513), + [sym_xhp_class_identifier] = ACTIONS(2515), [sym_comment] = ACTIONS(3), }, [1632] = { @@ -186034,1306 +179608,1220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_trait] = ACTIONS(2553), [anon_sym_interface] = ACTIONS(2553), [anon_sym_class] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2555), - [sym_final_modifier] = ACTIONS(2553), - [sym_xhp_modifier] = ACTIONS(2553), - [sym_xhp_identifier] = ACTIONS(2553), - [sym_xhp_class_identifier] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - }, - [1633] = { - [ts_builtin_sym_end] = ACTIONS(2559), - [sym_identifier] = ACTIONS(2557), - [sym_variable] = ACTIONS(2559), - [sym_pipe_variable] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_newtype] = ACTIONS(2557), - [anon_sym_shape] = ACTIONS(2557), - [anon_sym_tuple] = ACTIONS(2557), - [anon_sym_clone] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_print] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_LT_LT] = ACTIONS(2557), - [anon_sym_LT_LT_LT] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_echo] = ACTIONS(2557), - [anon_sym_unset] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_concurrent] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_foreach] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [sym_float] = ACTIONS(2559), - [sym_integer] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_True] = ACTIONS(2557), - [anon_sym_TRUE] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_False] = ACTIONS(2557), - [anon_sym_FALSE] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2557), - [anon_sym_Null] = ACTIONS(2557), - [anon_sym_NULL] = ACTIONS(2557), - [sym_string] = ACTIONS(2559), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_array] = ACTIONS(2557), - [anon_sym_varray] = ACTIONS(2557), - [anon_sym_darray] = ACTIONS(2557), - [anon_sym_vec] = ACTIONS(2557), - [anon_sym_dict] = ACTIONS(2557), - [anon_sym_keyset] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_trait] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2559), - [sym_final_modifier] = ACTIONS(2557), - [sym_xhp_modifier] = ACTIONS(2557), - [sym_xhp_identifier] = ACTIONS(2557), - [sym_xhp_class_identifier] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_abstract] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(2555), + [sym_final_modifier] = ACTIONS(2553), + [sym_xhp_modifier] = ACTIONS(2553), + [sym_xhp_identifier] = ACTIONS(2553), + [sym_xhp_class_identifier] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + }, + [1633] = { + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2609), + [sym_variable] = ACTIONS(2611), + [sym_pipe_variable] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_newtype] = ACTIONS(2609), + [anon_sym_shape] = ACTIONS(2609), + [anon_sym_tuple] = ACTIONS(2609), + [anon_sym_clone] = ACTIONS(2609), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_print] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_include] = ACTIONS(2609), + [anon_sym_include_once] = ACTIONS(2609), + [anon_sym_require] = ACTIONS(2609), + [anon_sym_require_once] = ACTIONS(2609), + [anon_sym_BSLASH] = ACTIONS(2611), + [anon_sym_self] = ACTIONS(2609), + [anon_sym_parent] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_throw] = ACTIONS(2609), + [anon_sym_echo] = ACTIONS(2609), + [anon_sym_unset] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_concurrent] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_function] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2609), + [anon_sym_foreach] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_using] = ACTIONS(2609), + [sym_float] = ACTIONS(2611), + [sym_integer] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_True] = ACTIONS(2609), + [anon_sym_TRUE] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_False] = ACTIONS(2609), + [anon_sym_FALSE] = ACTIONS(2609), + [anon_sym_null] = ACTIONS(2609), + [anon_sym_Null] = ACTIONS(2609), + [anon_sym_NULL] = ACTIONS(2609), + [sym_string] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_array] = ACTIONS(2609), + [anon_sym_varray] = ACTIONS(2609), + [anon_sym_darray] = ACTIONS(2609), + [anon_sym_vec] = ACTIONS(2609), + [anon_sym_dict] = ACTIONS(2609), + [anon_sym_keyset] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_list] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_await] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_interface] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2609), + [anon_sym_POUND] = ACTIONS(2611), + [sym_final_modifier] = ACTIONS(2609), + [sym_xhp_modifier] = ACTIONS(2609), + [sym_xhp_identifier] = ACTIONS(2609), + [sym_xhp_class_identifier] = ACTIONS(2611), [sym_comment] = ACTIONS(3), }, [1634] = { - [ts_builtin_sym_end] = ACTIONS(2571), - [sym_identifier] = ACTIONS(2569), - [sym_variable] = ACTIONS(2571), - [sym_pipe_variable] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_newtype] = ACTIONS(2569), - [anon_sym_shape] = ACTIONS(2569), - [anon_sym_tuple] = ACTIONS(2569), - [anon_sym_clone] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_print] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_include] = ACTIONS(2569), - [anon_sym_include_once] = ACTIONS(2569), - [anon_sym_require] = ACTIONS(2569), - [anon_sym_require_once] = ACTIONS(2569), - [anon_sym_BSLASH] = ACTIONS(2571), - [anon_sym_self] = ACTIONS(2569), - [anon_sym_parent] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2569), - [anon_sym_LT_LT_LT] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_echo] = ACTIONS(2569), - [anon_sym_unset] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_concurrent] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_foreach] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [sym_float] = ACTIONS(2571), - [sym_integer] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_True] = ACTIONS(2569), - [anon_sym_TRUE] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [anon_sym_False] = ACTIONS(2569), - [anon_sym_FALSE] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2569), - [anon_sym_Null] = ACTIONS(2569), - [anon_sym_NULL] = ACTIONS(2569), - [sym_string] = ACTIONS(2571), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_array] = ACTIONS(2569), - [anon_sym_varray] = ACTIONS(2569), - [anon_sym_darray] = ACTIONS(2569), - [anon_sym_vec] = ACTIONS(2569), - [anon_sym_dict] = ACTIONS(2569), - [anon_sym_keyset] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_trait] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2571), - [sym_final_modifier] = ACTIONS(2569), - [sym_xhp_modifier] = ACTIONS(2569), - [sym_xhp_identifier] = ACTIONS(2569), - [sym_xhp_class_identifier] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2581), + [sym_variable] = ACTIONS(2583), + [sym_pipe_variable] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_newtype] = ACTIONS(2581), + [anon_sym_shape] = ACTIONS(2581), + [anon_sym_tuple] = ACTIONS(2581), + [anon_sym_clone] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_include] = ACTIONS(2581), + [anon_sym_include_once] = ACTIONS(2581), + [anon_sym_require] = ACTIONS(2581), + [anon_sym_require_once] = ACTIONS(2581), + [anon_sym_BSLASH] = ACTIONS(2583), + [anon_sym_self] = ACTIONS(2581), + [anon_sym_parent] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_LT_LT] = ACTIONS(2581), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_echo] = ACTIONS(2581), + [anon_sym_unset] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_concurrent] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_foreach] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [sym_float] = ACTIONS(2583), + [sym_integer] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_True] = ACTIONS(2581), + [anon_sym_TRUE] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_False] = ACTIONS(2581), + [anon_sym_FALSE] = ACTIONS(2581), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_Null] = ACTIONS(2581), + [anon_sym_NULL] = ACTIONS(2581), + [sym_string] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_array] = ACTIONS(2581), + [anon_sym_varray] = ACTIONS(2581), + [anon_sym_darray] = ACTIONS(2581), + [anon_sym_vec] = ACTIONS(2581), + [anon_sym_dict] = ACTIONS(2581), + [anon_sym_keyset] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_list] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(2583), + [sym_final_modifier] = ACTIONS(2581), + [sym_xhp_modifier] = ACTIONS(2581), + [sym_xhp_identifier] = ACTIONS(2581), + [sym_xhp_class_identifier] = ACTIONS(2583), [sym_comment] = ACTIONS(3), }, [1635] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [ts_builtin_sym_end] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2517), + [sym_variable] = ACTIONS(2519), + [sym_pipe_variable] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_newtype] = ACTIONS(2517), + [anon_sym_shape] = ACTIONS(2517), + [anon_sym_tuple] = ACTIONS(2517), + [anon_sym_clone] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_print] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_include] = ACTIONS(2517), + [anon_sym_include_once] = ACTIONS(2517), + [anon_sym_require] = ACTIONS(2517), + [anon_sym_require_once] = ACTIONS(2517), + [anon_sym_BSLASH] = ACTIONS(2519), + [anon_sym_self] = ACTIONS(2517), + [anon_sym_parent] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_LT_LT] = ACTIONS(2517), + [anon_sym_LT_LT_LT] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_echo] = ACTIONS(2517), + [anon_sym_unset] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_concurrent] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_function] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_foreach] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [sym_float] = ACTIONS(2519), + [sym_integer] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_True] = ACTIONS(2517), + [anon_sym_TRUE] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_False] = ACTIONS(2517), + [anon_sym_FALSE] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [anon_sym_Null] = ACTIONS(2517), + [anon_sym_NULL] = ACTIONS(2517), + [sym_string] = ACTIONS(2519), + [anon_sym_AT] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_array] = ACTIONS(2517), + [anon_sym_varray] = ACTIONS(2517), + [anon_sym_darray] = ACTIONS(2517), + [anon_sym_vec] = ACTIONS(2517), + [anon_sym_dict] = ACTIONS(2517), + [anon_sym_keyset] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_list] = ACTIONS(2517), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_await] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_interface] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_abstract] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(2519), + [sym_final_modifier] = ACTIONS(2517), + [sym_xhp_modifier] = ACTIONS(2517), + [sym_xhp_identifier] = ACTIONS(2517), + [sym_xhp_class_identifier] = ACTIONS(2519), [sym_comment] = ACTIONS(3), }, [1636] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2129), + [sym_variable] = ACTIONS(2131), + [sym_pipe_variable] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_newtype] = ACTIONS(2129), + [anon_sym_shape] = ACTIONS(2129), + [anon_sym_tuple] = ACTIONS(2129), + [anon_sym_clone] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_print] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_include] = ACTIONS(2129), + [anon_sym_include_once] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2129), + [anon_sym_require_once] = ACTIONS(2129), + [anon_sym_BSLASH] = ACTIONS(2131), + [anon_sym_self] = ACTIONS(2129), + [anon_sym_parent] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_LT_LT] = ACTIONS(2129), + [anon_sym_LT_LT_LT] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_echo] = ACTIONS(2129), + [anon_sym_unset] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_concurrent] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_foreach] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [sym_float] = ACTIONS(2131), + [sym_integer] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_True] = ACTIONS(2129), + [anon_sym_TRUE] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_False] = ACTIONS(2129), + [anon_sym_FALSE] = ACTIONS(2129), + [anon_sym_null] = ACTIONS(2129), + [anon_sym_Null] = ACTIONS(2129), + [anon_sym_NULL] = ACTIONS(2129), + [sym_string] = ACTIONS(2131), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_array] = ACTIONS(2129), + [anon_sym_varray] = ACTIONS(2129), + [anon_sym_darray] = ACTIONS(2129), + [anon_sym_vec] = ACTIONS(2129), + [anon_sym_dict] = ACTIONS(2129), + [anon_sym_keyset] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_list] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2131), + [sym_final_modifier] = ACTIONS(2129), + [sym_xhp_modifier] = ACTIONS(2129), + [sym_xhp_identifier] = ACTIONS(2129), + [sym_xhp_class_identifier] = ACTIONS(2131), [sym_comment] = ACTIONS(3), }, [1637] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2125), + [sym_variable] = ACTIONS(2127), + [sym_pipe_variable] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_newtype] = ACTIONS(2125), + [anon_sym_shape] = ACTIONS(2125), + [anon_sym_tuple] = ACTIONS(2125), + [anon_sym_clone] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_print] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_include] = ACTIONS(2125), + [anon_sym_include_once] = ACTIONS(2125), + [anon_sym_require] = ACTIONS(2125), + [anon_sym_require_once] = ACTIONS(2125), + [anon_sym_BSLASH] = ACTIONS(2127), + [anon_sym_self] = ACTIONS(2125), + [anon_sym_parent] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_LT_LT_LT] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_echo] = ACTIONS(2125), + [anon_sym_unset] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_concurrent] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_foreach] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [sym_float] = ACTIONS(2127), + [sym_integer] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_True] = ACTIONS(2125), + [anon_sym_TRUE] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_False] = ACTIONS(2125), + [anon_sym_FALSE] = ACTIONS(2125), + [anon_sym_null] = ACTIONS(2125), + [anon_sym_Null] = ACTIONS(2125), + [anon_sym_NULL] = ACTIONS(2125), + [sym_string] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_array] = ACTIONS(2125), + [anon_sym_varray] = ACTIONS(2125), + [anon_sym_darray] = ACTIONS(2125), + [anon_sym_vec] = ACTIONS(2125), + [anon_sym_dict] = ACTIONS(2125), + [anon_sym_keyset] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_list] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2127), + [sym_final_modifier] = ACTIONS(2125), + [sym_xhp_modifier] = ACTIONS(2125), + [sym_xhp_identifier] = ACTIONS(2125), + [sym_xhp_class_identifier] = ACTIONS(2127), [sym_comment] = ACTIONS(3), }, [1638] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2121), + [sym_variable] = ACTIONS(2123), + [sym_pipe_variable] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_newtype] = ACTIONS(2121), + [anon_sym_shape] = ACTIONS(2121), + [anon_sym_tuple] = ACTIONS(2121), + [anon_sym_clone] = ACTIONS(2121), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_print] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_include] = ACTIONS(2121), + [anon_sym_include_once] = ACTIONS(2121), + [anon_sym_require] = ACTIONS(2121), + [anon_sym_require_once] = ACTIONS(2121), + [anon_sym_BSLASH] = ACTIONS(2123), + [anon_sym_self] = ACTIONS(2121), + [anon_sym_parent] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(2121), + [anon_sym_LT_LT_LT] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_echo] = ACTIONS(2121), + [anon_sym_unset] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_concurrent] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_foreach] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_using] = ACTIONS(2121), + [sym_float] = ACTIONS(2123), + [sym_integer] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_True] = ACTIONS(2121), + [anon_sym_TRUE] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_False] = ACTIONS(2121), + [anon_sym_FALSE] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_Null] = ACTIONS(2121), + [anon_sym_NULL] = ACTIONS(2121), + [sym_string] = ACTIONS(2123), + [anon_sym_AT] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_array] = ACTIONS(2121), + [anon_sym_varray] = ACTIONS(2121), + [anon_sym_darray] = ACTIONS(2121), + [anon_sym_vec] = ACTIONS(2121), + [anon_sym_dict] = ACTIONS(2121), + [anon_sym_keyset] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_list] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_await] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2123), + [sym_final_modifier] = ACTIONS(2121), + [sym_xhp_modifier] = ACTIONS(2121), + [sym_xhp_identifier] = ACTIONS(2121), + [sym_xhp_class_identifier] = ACTIONS(2123), [sym_comment] = ACTIONS(3), }, [1639] = { - [sym_identifier] = ACTIONS(2369), - [sym_variable] = ACTIONS(2371), - [sym_pipe_variable] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_newtype] = ACTIONS(2369), - [anon_sym_shape] = ACTIONS(2369), - [anon_sym_tuple] = ACTIONS(2369), - [anon_sym_clone] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_print] = ACTIONS(2369), - [anon_sym_namespace] = ACTIONS(2369), - [anon_sym_include] = ACTIONS(2369), - [anon_sym_include_once] = ACTIONS(2369), - [anon_sym_require] = ACTIONS(2369), - [anon_sym_require_once] = ACTIONS(2369), - [anon_sym_BSLASH] = ACTIONS(2371), - [anon_sym_self] = ACTIONS(2369), - [anon_sym_parent] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_LT_LT] = ACTIONS(2369), - [anon_sym_LT_LT_LT] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_throw] = ACTIONS(2369), - [anon_sym_echo] = ACTIONS(2369), - [anon_sym_unset] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_concurrent] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_switch] = ACTIONS(2369), - [anon_sym_foreach] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_using] = ACTIONS(2369), - [sym_float] = ACTIONS(2371), - [sym_integer] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_True] = ACTIONS(2369), - [anon_sym_TRUE] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_False] = ACTIONS(2369), - [anon_sym_FALSE] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [anon_sym_Null] = ACTIONS(2369), - [anon_sym_NULL] = ACTIONS(2369), - [sym_string] = ACTIONS(2371), - [anon_sym_AT] = ACTIONS(2371), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_array] = ACTIONS(2369), - [anon_sym_varray] = ACTIONS(2369), - [anon_sym_darray] = ACTIONS(2369), - [anon_sym_vec] = ACTIONS(2369), - [anon_sym_dict] = ACTIONS(2369), - [anon_sym_keyset] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_list] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2371), - [anon_sym_PLUS_PLUS] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2371), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_interface] = ACTIONS(2369), - [anon_sym_class] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_abstract] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(2371), - [sym_final_modifier] = ACTIONS(2369), - [sym_xhp_modifier] = ACTIONS(2369), - [sym_xhp_identifier] = ACTIONS(2369), - [sym_xhp_class_identifier] = ACTIONS(2371), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2605), + [sym_variable] = ACTIONS(2607), + [sym_pipe_variable] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_newtype] = ACTIONS(2605), + [anon_sym_shape] = ACTIONS(2605), + [anon_sym_tuple] = ACTIONS(2605), + [anon_sym_clone] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_include] = ACTIONS(2605), + [anon_sym_include_once] = ACTIONS(2605), + [anon_sym_require] = ACTIONS(2605), + [anon_sym_require_once] = ACTIONS(2605), + [anon_sym_BSLASH] = ACTIONS(2607), + [anon_sym_self] = ACTIONS(2605), + [anon_sym_parent] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_LT_LT] = ACTIONS(2605), + [anon_sym_LT_LT_LT] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_echo] = ACTIONS(2605), + [anon_sym_unset] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_concurrent] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_foreach] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [sym_float] = ACTIONS(2607), + [sym_integer] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_True] = ACTIONS(2605), + [anon_sym_TRUE] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_False] = ACTIONS(2605), + [anon_sym_FALSE] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2605), + [anon_sym_Null] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [sym_string] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_array] = ACTIONS(2605), + [anon_sym_varray] = ACTIONS(2605), + [anon_sym_darray] = ACTIONS(2605), + [anon_sym_vec] = ACTIONS(2605), + [anon_sym_dict] = ACTIONS(2605), + [anon_sym_keyset] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_list] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_await] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_interface] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_abstract] = ACTIONS(2605), + [anon_sym_POUND] = ACTIONS(2607), + [sym_final_modifier] = ACTIONS(2605), + [sym_xhp_modifier] = ACTIONS(2605), + [sym_xhp_identifier] = ACTIONS(2605), + [sym_xhp_class_identifier] = ACTIONS(2607), [sym_comment] = ACTIONS(3), }, [1640] = { - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2521), + [sym_variable] = ACTIONS(2523), + [sym_pipe_variable] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_newtype] = ACTIONS(2521), + [anon_sym_shape] = ACTIONS(2521), + [anon_sym_tuple] = ACTIONS(2521), + [anon_sym_clone] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_include] = ACTIONS(2521), + [anon_sym_include_once] = ACTIONS(2521), + [anon_sym_require] = ACTIONS(2521), + [anon_sym_require_once] = ACTIONS(2521), + [anon_sym_BSLASH] = ACTIONS(2523), + [anon_sym_self] = ACTIONS(2521), + [anon_sym_parent] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_LT_LT] = ACTIONS(2521), + [anon_sym_LT_LT_LT] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_echo] = ACTIONS(2521), + [anon_sym_unset] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_concurrent] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_function] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_foreach] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [sym_float] = ACTIONS(2523), + [sym_integer] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_True] = ACTIONS(2521), + [anon_sym_TRUE] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_False] = ACTIONS(2521), + [anon_sym_FALSE] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [anon_sym_Null] = ACTIONS(2521), + [anon_sym_NULL] = ACTIONS(2521), + [sym_string] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_array] = ACTIONS(2521), + [anon_sym_varray] = ACTIONS(2521), + [anon_sym_darray] = ACTIONS(2521), + [anon_sym_vec] = ACTIONS(2521), + [anon_sym_dict] = ACTIONS(2521), + [anon_sym_keyset] = ACTIONS(2521), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_await] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_interface] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_abstract] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(2523), + [sym_final_modifier] = ACTIONS(2521), + [sym_xhp_modifier] = ACTIONS(2521), + [sym_xhp_identifier] = ACTIONS(2521), + [sym_xhp_class_identifier] = ACTIONS(2523), [sym_comment] = ACTIONS(3), }, [1641] = { - [sym_identifier] = ACTIONS(2577), - [sym_variable] = ACTIONS(2579), - [sym_pipe_variable] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_newtype] = ACTIONS(2577), - [anon_sym_shape] = ACTIONS(2577), - [anon_sym_tuple] = ACTIONS(2577), - [anon_sym_clone] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_include] = ACTIONS(2577), - [anon_sym_include_once] = ACTIONS(2577), - [anon_sym_require] = ACTIONS(2577), - [anon_sym_require_once] = ACTIONS(2577), - [anon_sym_BSLASH] = ACTIONS(2579), - [anon_sym_self] = ACTIONS(2577), - [anon_sym_parent] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_LT_LT_LT] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_echo] = ACTIONS(2577), - [anon_sym_unset] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_concurrent] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_foreach] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [sym_float] = ACTIONS(2579), - [sym_integer] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_True] = ACTIONS(2577), - [anon_sym_TRUE] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_False] = ACTIONS(2577), - [anon_sym_FALSE] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2577), - [anon_sym_Null] = ACTIONS(2577), - [anon_sym_NULL] = ACTIONS(2577), - [sym_string] = ACTIONS(2579), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_array] = ACTIONS(2577), - [anon_sym_varray] = ACTIONS(2577), - [anon_sym_darray] = ACTIONS(2577), - [anon_sym_vec] = ACTIONS(2577), - [anon_sym_dict] = ACTIONS(2577), - [anon_sym_keyset] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_list] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_trait] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2579), - [sym_final_modifier] = ACTIONS(2577), - [sym_xhp_modifier] = ACTIONS(2577), - [sym_xhp_identifier] = ACTIONS(2577), - [sym_xhp_class_identifier] = ACTIONS(2579), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2341), + [sym_variable] = ACTIONS(2343), + [sym_pipe_variable] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_newtype] = ACTIONS(2341), + [anon_sym_shape] = ACTIONS(2341), + [anon_sym_tuple] = ACTIONS(2341), + [anon_sym_clone] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_print] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_include] = ACTIONS(2341), + [anon_sym_include_once] = ACTIONS(2341), + [anon_sym_require] = ACTIONS(2341), + [anon_sym_require_once] = ACTIONS(2341), + [anon_sym_BSLASH] = ACTIONS(2343), + [anon_sym_self] = ACTIONS(2341), + [anon_sym_parent] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_LT_LT_LT] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_echo] = ACTIONS(2341), + [anon_sym_unset] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_concurrent] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_function] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_foreach] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [sym_float] = ACTIONS(2343), + [sym_integer] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_True] = ACTIONS(2341), + [anon_sym_TRUE] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_False] = ACTIONS(2341), + [anon_sym_FALSE] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [anon_sym_Null] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [sym_string] = ACTIONS(2343), + [anon_sym_AT] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_array] = ACTIONS(2341), + [anon_sym_varray] = ACTIONS(2341), + [anon_sym_darray] = ACTIONS(2341), + [anon_sym_vec] = ACTIONS(2341), + [anon_sym_dict] = ACTIONS(2341), + [anon_sym_keyset] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_abstract] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2343), + [sym_final_modifier] = ACTIONS(2341), + [sym_xhp_modifier] = ACTIONS(2341), + [sym_xhp_identifier] = ACTIONS(2341), + [sym_xhp_class_identifier] = ACTIONS(2343), [sym_comment] = ACTIONS(3), }, [1642] = { - [sym_identifier] = ACTIONS(2573), - [sym_variable] = ACTIONS(2575), - [sym_pipe_variable] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_newtype] = ACTIONS(2573), - [anon_sym_shape] = ACTIONS(2573), - [anon_sym_tuple] = ACTIONS(2573), - [anon_sym_clone] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_print] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_include] = ACTIONS(2573), - [anon_sym_include_once] = ACTIONS(2573), - [anon_sym_require] = ACTIONS(2573), - [anon_sym_require_once] = ACTIONS(2573), - [anon_sym_BSLASH] = ACTIONS(2575), - [anon_sym_self] = ACTIONS(2573), - [anon_sym_parent] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_LT_LT_LT] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_echo] = ACTIONS(2573), - [anon_sym_unset] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_concurrent] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_foreach] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [sym_float] = ACTIONS(2575), - [sym_integer] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2573), - [anon_sym_True] = ACTIONS(2573), - [anon_sym_TRUE] = ACTIONS(2573), - [anon_sym_false] = ACTIONS(2573), - [anon_sym_False] = ACTIONS(2573), - [anon_sym_FALSE] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2573), - [anon_sym_Null] = ACTIONS(2573), - [anon_sym_NULL] = ACTIONS(2573), - [sym_string] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_array] = ACTIONS(2573), - [anon_sym_varray] = ACTIONS(2573), - [anon_sym_darray] = ACTIONS(2573), - [anon_sym_vec] = ACTIONS(2573), - [anon_sym_dict] = ACTIONS(2573), - [anon_sym_keyset] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_list] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_trait] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2575), - [sym_final_modifier] = ACTIONS(2573), - [sym_xhp_modifier] = ACTIONS(2573), - [sym_xhp_identifier] = ACTIONS(2573), - [sym_xhp_class_identifier] = ACTIONS(2575), + [ts_builtin_sym_end] = ACTIONS(2615), + [sym_identifier] = ACTIONS(2613), + [sym_variable] = ACTIONS(2615), + [sym_pipe_variable] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_newtype] = ACTIONS(2613), + [anon_sym_shape] = ACTIONS(2613), + [anon_sym_tuple] = ACTIONS(2613), + [anon_sym_clone] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2613), + [anon_sym_print] = ACTIONS(2613), + [anon_sym_namespace] = ACTIONS(2613), + [anon_sym_include] = ACTIONS(2613), + [anon_sym_include_once] = ACTIONS(2613), + [anon_sym_require] = ACTIONS(2613), + [anon_sym_require_once] = ACTIONS(2613), + [anon_sym_BSLASH] = ACTIONS(2615), + [anon_sym_self] = ACTIONS(2613), + [anon_sym_parent] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_throw] = ACTIONS(2613), + [anon_sym_echo] = ACTIONS(2613), + [anon_sym_unset] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_concurrent] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_function] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_switch] = ACTIONS(2613), + [anon_sym_foreach] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [anon_sym_using] = ACTIONS(2613), + [sym_float] = ACTIONS(2615), + [sym_integer] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_True] = ACTIONS(2613), + [anon_sym_TRUE] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_False] = ACTIONS(2613), + [anon_sym_FALSE] = ACTIONS(2613), + [anon_sym_null] = ACTIONS(2613), + [anon_sym_Null] = ACTIONS(2613), + [anon_sym_NULL] = ACTIONS(2613), + [sym_string] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_array] = ACTIONS(2613), + [anon_sym_varray] = ACTIONS(2613), + [anon_sym_darray] = ACTIONS(2613), + [anon_sym_vec] = ACTIONS(2613), + [anon_sym_dict] = ACTIONS(2613), + [anon_sym_keyset] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_list] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_await] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_interface] = ACTIONS(2613), + [anon_sym_class] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_abstract] = ACTIONS(2613), + [anon_sym_POUND] = ACTIONS(2615), + [sym_final_modifier] = ACTIONS(2613), + [sym_xhp_modifier] = ACTIONS(2613), + [sym_xhp_identifier] = ACTIONS(2613), + [sym_xhp_class_identifier] = ACTIONS(2615), [sym_comment] = ACTIONS(3), }, [1643] = { - [sym_identifier] = ACTIONS(2193), - [sym_variable] = ACTIONS(2195), - [sym_pipe_variable] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_newtype] = ACTIONS(2193), - [anon_sym_shape] = ACTIONS(2193), - [anon_sym_tuple] = ACTIONS(2193), - [anon_sym_clone] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_print] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2193), - [anon_sym_include] = ACTIONS(2193), - [anon_sym_include_once] = ACTIONS(2193), - [anon_sym_require] = ACTIONS(2193), - [anon_sym_require_once] = ACTIONS(2193), - [anon_sym_BSLASH] = ACTIONS(2195), - [anon_sym_self] = ACTIONS(2193), - [anon_sym_parent] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_LT_LT_LT] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_echo] = ACTIONS(2193), - [anon_sym_unset] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_concurrent] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_foreach] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(2193), - [sym_float] = ACTIONS(2195), - [sym_integer] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_True] = ACTIONS(2193), - [anon_sym_TRUE] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_False] = ACTIONS(2193), - [anon_sym_FALSE] = ACTIONS(2193), - [anon_sym_null] = ACTIONS(2193), - [anon_sym_Null] = ACTIONS(2193), - [anon_sym_NULL] = ACTIONS(2193), - [sym_string] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_array] = ACTIONS(2193), - [anon_sym_varray] = ACTIONS(2193), - [anon_sym_darray] = ACTIONS(2193), - [anon_sym_vec] = ACTIONS(2193), - [anon_sym_dict] = ACTIONS(2193), - [anon_sym_keyset] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_list] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2195), - [sym_final_modifier] = ACTIONS(2193), - [sym_xhp_modifier] = ACTIONS(2193), - [sym_xhp_identifier] = ACTIONS(2193), - [sym_xhp_class_identifier] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2585), + [sym_variable] = ACTIONS(2587), + [sym_pipe_variable] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_newtype] = ACTIONS(2585), + [anon_sym_shape] = ACTIONS(2585), + [anon_sym_tuple] = ACTIONS(2585), + [anon_sym_clone] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2585), + [anon_sym_print] = ACTIONS(2585), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_include] = ACTIONS(2585), + [anon_sym_include_once] = ACTIONS(2585), + [anon_sym_require] = ACTIONS(2585), + [anon_sym_require_once] = ACTIONS(2585), + [anon_sym_BSLASH] = ACTIONS(2587), + [anon_sym_self] = ACTIONS(2585), + [anon_sym_parent] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_LT_LT_LT] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_echo] = ACTIONS(2585), + [anon_sym_unset] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_concurrent] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_foreach] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_using] = ACTIONS(2585), + [sym_float] = ACTIONS(2587), + [sym_integer] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_True] = ACTIONS(2585), + [anon_sym_TRUE] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_False] = ACTIONS(2585), + [anon_sym_FALSE] = ACTIONS(2585), + [anon_sym_null] = ACTIONS(2585), + [anon_sym_Null] = ACTIONS(2585), + [anon_sym_NULL] = ACTIONS(2585), + [sym_string] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_array] = ACTIONS(2585), + [anon_sym_varray] = ACTIONS(2585), + [anon_sym_darray] = ACTIONS(2585), + [anon_sym_vec] = ACTIONS(2585), + [anon_sym_dict] = ACTIONS(2585), + [anon_sym_keyset] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_list] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_await] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_abstract] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2587), + [sym_final_modifier] = ACTIONS(2585), + [sym_xhp_modifier] = ACTIONS(2585), + [sym_xhp_identifier] = ACTIONS(2585), + [sym_xhp_class_identifier] = ACTIONS(2587), [sym_comment] = ACTIONS(3), }, [1644] = { - [sym_identifier] = ACTIONS(2569), - [sym_variable] = ACTIONS(2571), - [sym_pipe_variable] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_newtype] = ACTIONS(2569), - [anon_sym_shape] = ACTIONS(2569), - [anon_sym_tuple] = ACTIONS(2569), - [anon_sym_clone] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_print] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_include] = ACTIONS(2569), - [anon_sym_include_once] = ACTIONS(2569), - [anon_sym_require] = ACTIONS(2569), - [anon_sym_require_once] = ACTIONS(2569), - [anon_sym_BSLASH] = ACTIONS(2571), - [anon_sym_self] = ACTIONS(2569), - [anon_sym_parent] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2569), - [anon_sym_LT_LT_LT] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_echo] = ACTIONS(2569), - [anon_sym_unset] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_concurrent] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_foreach] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [sym_float] = ACTIONS(2571), - [sym_integer] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_True] = ACTIONS(2569), - [anon_sym_TRUE] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [anon_sym_False] = ACTIONS(2569), - [anon_sym_FALSE] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2569), - [anon_sym_Null] = ACTIONS(2569), - [anon_sym_NULL] = ACTIONS(2569), - [sym_string] = ACTIONS(2571), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_array] = ACTIONS(2569), - [anon_sym_varray] = ACTIONS(2569), - [anon_sym_darray] = ACTIONS(2569), - [anon_sym_vec] = ACTIONS(2569), - [anon_sym_dict] = ACTIONS(2569), - [anon_sym_keyset] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_trait] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2571), - [sym_final_modifier] = ACTIONS(2569), - [sym_xhp_modifier] = ACTIONS(2569), - [sym_xhp_identifier] = ACTIONS(2569), - [sym_xhp_class_identifier] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2117), + [sym_variable] = ACTIONS(2119), + [sym_pipe_variable] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_newtype] = ACTIONS(2117), + [anon_sym_shape] = ACTIONS(2117), + [anon_sym_tuple] = ACTIONS(2117), + [anon_sym_clone] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_print] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_include] = ACTIONS(2117), + [anon_sym_include_once] = ACTIONS(2117), + [anon_sym_require] = ACTIONS(2117), + [anon_sym_require_once] = ACTIONS(2117), + [anon_sym_BSLASH] = ACTIONS(2119), + [anon_sym_self] = ACTIONS(2117), + [anon_sym_parent] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_LT_LT] = ACTIONS(2117), + [anon_sym_LT_LT_LT] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_echo] = ACTIONS(2117), + [anon_sym_unset] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_concurrent] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_foreach] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_using] = ACTIONS(2117), + [sym_float] = ACTIONS(2119), + [sym_integer] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_True] = ACTIONS(2117), + [anon_sym_TRUE] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_False] = ACTIONS(2117), + [anon_sym_FALSE] = ACTIONS(2117), + [anon_sym_null] = ACTIONS(2117), + [anon_sym_Null] = ACTIONS(2117), + [anon_sym_NULL] = ACTIONS(2117), + [sym_string] = ACTIONS(2119), + [anon_sym_AT] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_array] = ACTIONS(2117), + [anon_sym_varray] = ACTIONS(2117), + [anon_sym_darray] = ACTIONS(2117), + [anon_sym_vec] = ACTIONS(2117), + [anon_sym_dict] = ACTIONS(2117), + [anon_sym_keyset] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_list] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2119), + [sym_final_modifier] = ACTIONS(2117), + [sym_xhp_modifier] = ACTIONS(2117), + [sym_xhp_identifier] = ACTIONS(2117), + [sym_xhp_class_identifier] = ACTIONS(2119), [sym_comment] = ACTIONS(3), }, [1645] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2573), - [sym_variable] = ACTIONS(2575), - [sym_pipe_variable] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_newtype] = ACTIONS(2573), - [anon_sym_shape] = ACTIONS(2573), - [anon_sym_tuple] = ACTIONS(2573), - [anon_sym_clone] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_print] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_include] = ACTIONS(2573), - [anon_sym_include_once] = ACTIONS(2573), - [anon_sym_require] = ACTIONS(2573), - [anon_sym_require_once] = ACTIONS(2573), - [anon_sym_BSLASH] = ACTIONS(2575), - [anon_sym_self] = ACTIONS(2573), - [anon_sym_parent] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2573), - [anon_sym_LT_LT_LT] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_echo] = ACTIONS(2573), - [anon_sym_unset] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_concurrent] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_foreach] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [sym_float] = ACTIONS(2575), - [sym_integer] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2573), - [anon_sym_True] = ACTIONS(2573), - [anon_sym_TRUE] = ACTIONS(2573), - [anon_sym_false] = ACTIONS(2573), - [anon_sym_False] = ACTIONS(2573), - [anon_sym_FALSE] = ACTIONS(2573), - [anon_sym_null] = ACTIONS(2573), - [anon_sym_Null] = ACTIONS(2573), - [anon_sym_NULL] = ACTIONS(2573), - [sym_string] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_array] = ACTIONS(2573), - [anon_sym_varray] = ACTIONS(2573), - [anon_sym_darray] = ACTIONS(2573), - [anon_sym_vec] = ACTIONS(2573), - [anon_sym_dict] = ACTIONS(2573), - [anon_sym_keyset] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_list] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_trait] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2575), - [sym_final_modifier] = ACTIONS(2573), - [sym_xhp_modifier] = ACTIONS(2573), - [sym_xhp_identifier] = ACTIONS(2573), - [sym_xhp_class_identifier] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2489), + [sym_variable] = ACTIONS(2491), + [sym_pipe_variable] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_newtype] = ACTIONS(2489), + [anon_sym_shape] = ACTIONS(2489), + [anon_sym_tuple] = ACTIONS(2489), + [anon_sym_clone] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_print] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_include] = ACTIONS(2489), + [anon_sym_include_once] = ACTIONS(2489), + [anon_sym_require] = ACTIONS(2489), + [anon_sym_require_once] = ACTIONS(2489), + [anon_sym_BSLASH] = ACTIONS(2491), + [anon_sym_self] = ACTIONS(2489), + [anon_sym_parent] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_LT_LT_LT] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_echo] = ACTIONS(2489), + [anon_sym_unset] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_concurrent] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_foreach] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [sym_float] = ACTIONS(2491), + [sym_integer] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_True] = ACTIONS(2489), + [anon_sym_TRUE] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_False] = ACTIONS(2489), + [anon_sym_FALSE] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [anon_sym_Null] = ACTIONS(2489), + [anon_sym_NULL] = ACTIONS(2489), + [sym_string] = ACTIONS(2491), + [anon_sym_AT] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_array] = ACTIONS(2489), + [anon_sym_varray] = ACTIONS(2489), + [anon_sym_darray] = ACTIONS(2489), + [anon_sym_vec] = ACTIONS(2489), + [anon_sym_dict] = ACTIONS(2489), + [anon_sym_keyset] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2491), + [sym_final_modifier] = ACTIONS(2489), + [sym_xhp_modifier] = ACTIONS(2489), + [sym_xhp_identifier] = ACTIONS(2489), + [sym_xhp_class_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(3), }, [1646] = { - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2605), - [sym_variable] = ACTIONS(2607), - [sym_pipe_variable] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2605), - [anon_sym_newtype] = ACTIONS(2605), - [anon_sym_shape] = ACTIONS(2605), - [anon_sym_tuple] = ACTIONS(2605), - [anon_sym_clone] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_print] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_include] = ACTIONS(2605), - [anon_sym_include_once] = ACTIONS(2605), - [anon_sym_require] = ACTIONS(2605), - [anon_sym_require_once] = ACTIONS(2605), - [anon_sym_BSLASH] = ACTIONS(2607), - [anon_sym_self] = ACTIONS(2605), - [anon_sym_parent] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_LT_LT] = ACTIONS(2605), - [anon_sym_LT_LT_LT] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_echo] = ACTIONS(2605), - [anon_sym_unset] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_concurrent] = ACTIONS(2605), - [anon_sym_use] = ACTIONS(2605), - [anon_sym_function] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_foreach] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [sym_float] = ACTIONS(2607), - [sym_integer] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_True] = ACTIONS(2605), - [anon_sym_TRUE] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [anon_sym_False] = ACTIONS(2605), - [anon_sym_FALSE] = ACTIONS(2605), - [anon_sym_null] = ACTIONS(2605), - [anon_sym_Null] = ACTIONS(2605), - [anon_sym_NULL] = ACTIONS(2605), - [sym_string] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_array] = ACTIONS(2605), - [anon_sym_varray] = ACTIONS(2605), - [anon_sym_darray] = ACTIONS(2605), - [anon_sym_vec] = ACTIONS(2605), - [anon_sym_dict] = ACTIONS(2605), - [anon_sym_keyset] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_list] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2605), - [anon_sym_async] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2605), - [anon_sym_trait] = ACTIONS(2605), - [anon_sym_interface] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_abstract] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2607), - [sym_final_modifier] = ACTIONS(2605), - [sym_xhp_modifier] = ACTIONS(2605), - [sym_xhp_identifier] = ACTIONS(2605), - [sym_xhp_class_identifier] = ACTIONS(2607), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2333), + [sym_variable] = ACTIONS(2335), + [sym_pipe_variable] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_newtype] = ACTIONS(2333), + [anon_sym_shape] = ACTIONS(2333), + [anon_sym_tuple] = ACTIONS(2333), + [anon_sym_clone] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_print] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_include] = ACTIONS(2333), + [anon_sym_include_once] = ACTIONS(2333), + [anon_sym_require] = ACTIONS(2333), + [anon_sym_require_once] = ACTIONS(2333), + [anon_sym_BSLASH] = ACTIONS(2335), + [anon_sym_self] = ACTIONS(2333), + [anon_sym_parent] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_LT_LT] = ACTIONS(2333), + [anon_sym_LT_LT_LT] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_echo] = ACTIONS(2333), + [anon_sym_unset] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_concurrent] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_foreach] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [sym_float] = ACTIONS(2335), + [sym_integer] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_True] = ACTIONS(2333), + [anon_sym_TRUE] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_False] = ACTIONS(2333), + [anon_sym_FALSE] = ACTIONS(2333), + [anon_sym_null] = ACTIONS(2333), + [anon_sym_Null] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [sym_string] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_array] = ACTIONS(2333), + [anon_sym_varray] = ACTIONS(2333), + [anon_sym_darray] = ACTIONS(2333), + [anon_sym_vec] = ACTIONS(2333), + [anon_sym_dict] = ACTIONS(2333), + [anon_sym_keyset] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_list] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2335), + [sym_final_modifier] = ACTIONS(2333), + [sym_xhp_modifier] = ACTIONS(2333), + [sym_xhp_identifier] = ACTIONS(2333), + [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, [1647] = { - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2035), - [sym_variable] = ACTIONS(2037), - [sym_pipe_variable] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_newtype] = ACTIONS(2035), - [anon_sym_shape] = ACTIONS(2035), - [anon_sym_tuple] = ACTIONS(2035), - [anon_sym_clone] = ACTIONS(2035), - [anon_sym_new] = ACTIONS(2035), - [anon_sym_print] = ACTIONS(2035), - [anon_sym_namespace] = ACTIONS(2035), - [anon_sym_include] = ACTIONS(2035), - [anon_sym_include_once] = ACTIONS(2035), - [anon_sym_require] = ACTIONS(2035), - [anon_sym_require_once] = ACTIONS(2035), - [anon_sym_BSLASH] = ACTIONS(2037), - [anon_sym_self] = ACTIONS(2035), - [anon_sym_parent] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2035), - [anon_sym_LT_LT_LT] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_throw] = ACTIONS(2035), - [anon_sym_echo] = ACTIONS(2035), - [anon_sym_unset] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_concurrent] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_function] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [anon_sym_foreach] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [anon_sym_using] = ACTIONS(2035), - [sym_float] = ACTIONS(2037), - [sym_integer] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_True] = ACTIONS(2035), - [anon_sym_TRUE] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_False] = ACTIONS(2035), - [anon_sym_FALSE] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_Null] = ACTIONS(2035), - [anon_sym_NULL] = ACTIONS(2035), - [sym_string] = ACTIONS(2037), - [anon_sym_AT] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_array] = ACTIONS(2035), - [anon_sym_varray] = ACTIONS(2035), - [anon_sym_darray] = ACTIONS(2035), - [anon_sym_vec] = ACTIONS(2035), - [anon_sym_dict] = ACTIONS(2035), - [anon_sym_keyset] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_list] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_interface] = ACTIONS(2035), - [anon_sym_class] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_abstract] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2037), - [sym_final_modifier] = ACTIONS(2035), - [sym_xhp_modifier] = ACTIONS(2035), - [sym_xhp_identifier] = ACTIONS(2035), - [sym_xhp_class_identifier] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - }, - [1648] = { [sym_identifier] = ACTIONS(2589), [sym_variable] = ACTIONS(2591), [sym_pipe_variable] = ACTIONS(2591), @@ -187419,606 +180907,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2591), [sym_comment] = ACTIONS(3), }, + [1648] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, [1649] = { - [sym_identifier] = ACTIONS(2557), - [sym_variable] = ACTIONS(2559), - [sym_pipe_variable] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2557), - [anon_sym_newtype] = ACTIONS(2557), - [anon_sym_shape] = ACTIONS(2557), - [anon_sym_tuple] = ACTIONS(2557), - [anon_sym_clone] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_print] = ACTIONS(2557), - [anon_sym_namespace] = ACTIONS(2557), - [anon_sym_include] = ACTIONS(2557), - [anon_sym_include_once] = ACTIONS(2557), - [anon_sym_require] = ACTIONS(2557), - [anon_sym_require_once] = ACTIONS(2557), - [anon_sym_BSLASH] = ACTIONS(2559), - [anon_sym_self] = ACTIONS(2557), - [anon_sym_parent] = ACTIONS(2557), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_LT_LT] = ACTIONS(2557), - [anon_sym_LT_LT_LT] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_echo] = ACTIONS(2557), - [anon_sym_unset] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_concurrent] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_function] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_foreach] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_using] = ACTIONS(2557), - [sym_float] = ACTIONS(2559), - [sym_integer] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_True] = ACTIONS(2557), - [anon_sym_TRUE] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_False] = ACTIONS(2557), - [anon_sym_FALSE] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2557), - [anon_sym_Null] = ACTIONS(2557), - [anon_sym_NULL] = ACTIONS(2557), - [sym_string] = ACTIONS(2559), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_array] = ACTIONS(2557), - [anon_sym_varray] = ACTIONS(2557), - [anon_sym_darray] = ACTIONS(2557), - [anon_sym_vec] = ACTIONS(2557), - [anon_sym_dict] = ACTIONS(2557), - [anon_sym_keyset] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_async] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2557), - [anon_sym_trait] = ACTIONS(2557), - [anon_sym_interface] = ACTIONS(2557), - [anon_sym_class] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_abstract] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2559), - [sym_final_modifier] = ACTIONS(2557), - [sym_xhp_modifier] = ACTIONS(2557), - [sym_xhp_identifier] = ACTIONS(2557), - [sym_xhp_class_identifier] = ACTIONS(2559), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1650] = { - [sym_identifier] = ACTIONS(2553), - [sym_variable] = ACTIONS(2555), - [sym_pipe_variable] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2553), - [anon_sym_newtype] = ACTIONS(2553), - [anon_sym_shape] = ACTIONS(2553), - [anon_sym_tuple] = ACTIONS(2553), - [anon_sym_clone] = ACTIONS(2553), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_namespace] = ACTIONS(2553), - [anon_sym_include] = ACTIONS(2553), - [anon_sym_include_once] = ACTIONS(2553), - [anon_sym_require] = ACTIONS(2553), - [anon_sym_require_once] = ACTIONS(2553), - [anon_sym_BSLASH] = ACTIONS(2555), - [anon_sym_self] = ACTIONS(2553), - [anon_sym_parent] = ACTIONS(2553), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_LT_LT] = ACTIONS(2553), - [anon_sym_LT_LT_LT] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_throw] = ACTIONS(2553), - [anon_sym_echo] = ACTIONS(2553), - [anon_sym_unset] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_concurrent] = ACTIONS(2553), - [anon_sym_use] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_foreach] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(2553), - [sym_float] = ACTIONS(2555), - [sym_integer] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_True] = ACTIONS(2553), - [anon_sym_TRUE] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_False] = ACTIONS(2553), - [anon_sym_FALSE] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_Null] = ACTIONS(2553), - [anon_sym_NULL] = ACTIONS(2553), - [sym_string] = ACTIONS(2555), - [anon_sym_AT] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_array] = ACTIONS(2553), - [anon_sym_varray] = ACTIONS(2553), - [anon_sym_darray] = ACTIONS(2553), - [anon_sym_vec] = ACTIONS(2553), - [anon_sym_dict] = ACTIONS(2553), - [anon_sym_keyset] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_list] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_await] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_trait] = ACTIONS(2553), - [anon_sym_interface] = ACTIONS(2553), - [anon_sym_class] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2555), - [sym_final_modifier] = ACTIONS(2553), - [sym_xhp_modifier] = ACTIONS(2553), - [sym_xhp_identifier] = ACTIONS(2553), - [sym_xhp_class_identifier] = ACTIONS(2555), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1651] = { - [ts_builtin_sym_end] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2577), - [sym_variable] = ACTIONS(2579), - [sym_pipe_variable] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_newtype] = ACTIONS(2577), - [anon_sym_shape] = ACTIONS(2577), - [anon_sym_tuple] = ACTIONS(2577), - [anon_sym_clone] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_print] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_include] = ACTIONS(2577), - [anon_sym_include_once] = ACTIONS(2577), - [anon_sym_require] = ACTIONS(2577), - [anon_sym_require_once] = ACTIONS(2577), - [anon_sym_BSLASH] = ACTIONS(2579), - [anon_sym_self] = ACTIONS(2577), - [anon_sym_parent] = ACTIONS(2577), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_LT_LT_LT] = ACTIONS(2579), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_echo] = ACTIONS(2577), - [anon_sym_unset] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_concurrent] = ACTIONS(2577), - [anon_sym_use] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_foreach] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [sym_float] = ACTIONS(2579), - [sym_integer] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_True] = ACTIONS(2577), - [anon_sym_TRUE] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_False] = ACTIONS(2577), - [anon_sym_FALSE] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2577), - [anon_sym_Null] = ACTIONS(2577), - [anon_sym_NULL] = ACTIONS(2577), - [sym_string] = ACTIONS(2579), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_array] = ACTIONS(2577), - [anon_sym_varray] = ACTIONS(2577), - [anon_sym_darray] = ACTIONS(2577), - [anon_sym_vec] = ACTIONS(2577), - [anon_sym_dict] = ACTIONS(2577), - [anon_sym_keyset] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_list] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_trait] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2579), - [sym_final_modifier] = ACTIONS(2577), - [sym_xhp_modifier] = ACTIONS(2577), - [sym_xhp_identifier] = ACTIONS(2577), - [sym_xhp_class_identifier] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2113), + [sym_variable] = ACTIONS(2115), + [sym_pipe_variable] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_newtype] = ACTIONS(2113), + [anon_sym_shape] = ACTIONS(2113), + [anon_sym_tuple] = ACTIONS(2113), + [anon_sym_clone] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_print] = ACTIONS(2113), + [anon_sym_namespace] = ACTIONS(2113), + [anon_sym_include] = ACTIONS(2113), + [anon_sym_include_once] = ACTIONS(2113), + [anon_sym_require] = ACTIONS(2113), + [anon_sym_require_once] = ACTIONS(2113), + [anon_sym_BSLASH] = ACTIONS(2115), + [anon_sym_self] = ACTIONS(2113), + [anon_sym_parent] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_LT_LT] = ACTIONS(2113), + [anon_sym_LT_LT_LT] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_throw] = ACTIONS(2113), + [anon_sym_echo] = ACTIONS(2113), + [anon_sym_unset] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_concurrent] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_switch] = ACTIONS(2113), + [anon_sym_foreach] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_using] = ACTIONS(2113), + [sym_float] = ACTIONS(2115), + [sym_integer] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_True] = ACTIONS(2113), + [anon_sym_TRUE] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_False] = ACTIONS(2113), + [anon_sym_FALSE] = ACTIONS(2113), + [anon_sym_null] = ACTIONS(2113), + [anon_sym_Null] = ACTIONS(2113), + [anon_sym_NULL] = ACTIONS(2113), + [sym_string] = ACTIONS(2115), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_array] = ACTIONS(2113), + [anon_sym_varray] = ACTIONS(2113), + [anon_sym_darray] = ACTIONS(2113), + [anon_sym_vec] = ACTIONS(2113), + [anon_sym_dict] = ACTIONS(2113), + [anon_sym_keyset] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_interface] = ACTIONS(2113), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_abstract] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2115), + [sym_final_modifier] = ACTIONS(2113), + [sym_xhp_modifier] = ACTIONS(2113), + [sym_xhp_identifier] = ACTIONS(2113), + [sym_xhp_class_identifier] = ACTIONS(2115), [sym_comment] = ACTIONS(3), }, [1652] = { - [sym_identifier] = ACTIONS(2565), - [sym_variable] = ACTIONS(2567), - [sym_pipe_variable] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_newtype] = ACTIONS(2565), - [anon_sym_shape] = ACTIONS(2565), - [anon_sym_tuple] = ACTIONS(2565), - [anon_sym_clone] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_print] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_include] = ACTIONS(2565), - [anon_sym_include_once] = ACTIONS(2565), - [anon_sym_require] = ACTIONS(2565), - [anon_sym_require_once] = ACTIONS(2565), - [anon_sym_BSLASH] = ACTIONS(2567), - [anon_sym_self] = ACTIONS(2565), - [anon_sym_parent] = ACTIONS(2565), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_LT_LT] = ACTIONS(2565), - [anon_sym_LT_LT_LT] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_echo] = ACTIONS(2565), - [anon_sym_unset] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_concurrent] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_foreach] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [sym_float] = ACTIONS(2567), - [sym_integer] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_True] = ACTIONS(2565), - [anon_sym_TRUE] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [anon_sym_False] = ACTIONS(2565), - [anon_sym_FALSE] = ACTIONS(2565), - [anon_sym_null] = ACTIONS(2565), - [anon_sym_Null] = ACTIONS(2565), - [anon_sym_NULL] = ACTIONS(2565), - [sym_string] = ACTIONS(2567), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_array] = ACTIONS(2565), - [anon_sym_varray] = ACTIONS(2565), - [anon_sym_darray] = ACTIONS(2565), - [anon_sym_vec] = ACTIONS(2565), - [anon_sym_dict] = ACTIONS(2565), - [anon_sym_keyset] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_trait] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2567), - [sym_final_modifier] = ACTIONS(2565), - [sym_xhp_modifier] = ACTIONS(2565), - [sym_xhp_identifier] = ACTIONS(2565), - [sym_xhp_class_identifier] = ACTIONS(2567), + [sym_identifier] = ACTIONS(2445), + [sym_variable] = ACTIONS(2447), + [sym_pipe_variable] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_newtype] = ACTIONS(2445), + [anon_sym_shape] = ACTIONS(2445), + [anon_sym_tuple] = ACTIONS(2445), + [anon_sym_clone] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_include] = ACTIONS(2445), + [anon_sym_include_once] = ACTIONS(2445), + [anon_sym_require] = ACTIONS(2445), + [anon_sym_require_once] = ACTIONS(2445), + [anon_sym_BSLASH] = ACTIONS(2447), + [anon_sym_self] = ACTIONS(2445), + [anon_sym_parent] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_LT_LT_LT] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_throw] = ACTIONS(2445), + [anon_sym_echo] = ACTIONS(2445), + [anon_sym_unset] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_concurrent] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_switch] = ACTIONS(2445), + [anon_sym_foreach] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_using] = ACTIONS(2445), + [sym_float] = ACTIONS(2447), + [sym_integer] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_True] = ACTIONS(2445), + [anon_sym_TRUE] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [anon_sym_False] = ACTIONS(2445), + [anon_sym_FALSE] = ACTIONS(2445), + [anon_sym_null] = ACTIONS(2445), + [anon_sym_Null] = ACTIONS(2445), + [anon_sym_NULL] = ACTIONS(2445), + [sym_string] = ACTIONS(2447), + [anon_sym_AT] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_array] = ACTIONS(2445), + [anon_sym_varray] = ACTIONS(2445), + [anon_sym_darray] = ACTIONS(2445), + [anon_sym_vec] = ACTIONS(2445), + [anon_sym_dict] = ACTIONS(2445), + [anon_sym_keyset] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_list] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(2447), + [anon_sym_DASH_DASH] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_yield] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_class] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_abstract] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2447), + [sym_final_modifier] = ACTIONS(2445), + [sym_xhp_modifier] = ACTIONS(2445), + [sym_xhp_identifier] = ACTIONS(2445), + [sym_xhp_class_identifier] = ACTIONS(2447), [sym_comment] = ACTIONS(3), }, [1653] = { - [sym_identifier] = ACTIONS(2393), - [sym_variable] = ACTIONS(2395), - [sym_pipe_variable] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_newtype] = ACTIONS(2393), - [anon_sym_shape] = ACTIONS(2393), - [anon_sym_tuple] = ACTIONS(2393), - [anon_sym_clone] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_print] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_include] = ACTIONS(2393), - [anon_sym_include_once] = ACTIONS(2393), - [anon_sym_require] = ACTIONS(2393), - [anon_sym_require_once] = ACTIONS(2393), - [anon_sym_BSLASH] = ACTIONS(2395), - [anon_sym_self] = ACTIONS(2393), - [anon_sym_parent] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_LT_LT] = ACTIONS(2393), - [anon_sym_LT_LT_LT] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_echo] = ACTIONS(2393), - [anon_sym_unset] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_concurrent] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_function] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_foreach] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [sym_float] = ACTIONS(2395), - [sym_integer] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_True] = ACTIONS(2393), - [anon_sym_TRUE] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_False] = ACTIONS(2393), - [anon_sym_FALSE] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2393), - [anon_sym_Null] = ACTIONS(2393), - [anon_sym_NULL] = ACTIONS(2393), - [sym_string] = ACTIONS(2395), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_array] = ACTIONS(2393), - [anon_sym_varray] = ACTIONS(2393), - [anon_sym_darray] = ACTIONS(2393), - [anon_sym_vec] = ACTIONS(2393), - [anon_sym_dict] = ACTIONS(2393), - [anon_sym_keyset] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_interface] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_abstract] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2395), - [sym_final_modifier] = ACTIONS(2393), - [sym_xhp_modifier] = ACTIONS(2393), - [sym_xhp_identifier] = ACTIONS(2393), - [sym_xhp_class_identifier] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2109), + [sym_variable] = ACTIONS(2111), + [sym_pipe_variable] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_newtype] = ACTIONS(2109), + [anon_sym_shape] = ACTIONS(2109), + [anon_sym_tuple] = ACTIONS(2109), + [anon_sym_clone] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_include] = ACTIONS(2109), + [anon_sym_include_once] = ACTIONS(2109), + [anon_sym_require] = ACTIONS(2109), + [anon_sym_require_once] = ACTIONS(2109), + [anon_sym_BSLASH] = ACTIONS(2111), + [anon_sym_self] = ACTIONS(2109), + [anon_sym_parent] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_LT_LT_LT] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_throw] = ACTIONS(2109), + [anon_sym_echo] = ACTIONS(2109), + [anon_sym_unset] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_concurrent] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_foreach] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_do] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_using] = ACTIONS(2109), + [sym_float] = ACTIONS(2111), + [sym_integer] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_True] = ACTIONS(2109), + [anon_sym_TRUE] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_False] = ACTIONS(2109), + [anon_sym_FALSE] = ACTIONS(2109), + [anon_sym_null] = ACTIONS(2109), + [anon_sym_Null] = ACTIONS(2109), + [anon_sym_NULL] = ACTIONS(2109), + [sym_string] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_array] = ACTIONS(2109), + [anon_sym_varray] = ACTIONS(2109), + [anon_sym_darray] = ACTIONS(2109), + [anon_sym_vec] = ACTIONS(2109), + [anon_sym_dict] = ACTIONS(2109), + [anon_sym_keyset] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_list] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_interface] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_abstract] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2111), + [sym_final_modifier] = ACTIONS(2109), + [sym_xhp_modifier] = ACTIONS(2109), + [sym_xhp_identifier] = ACTIONS(2109), + [sym_xhp_class_identifier] = ACTIONS(2111), [sym_comment] = ACTIONS(3), }, [1654] = { - [sym_identifier] = ACTIONS(2197), - [sym_variable] = ACTIONS(2199), - [sym_pipe_variable] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_newtype] = ACTIONS(2197), - [anon_sym_shape] = ACTIONS(2197), - [anon_sym_tuple] = ACTIONS(2197), - [anon_sym_clone] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_print] = ACTIONS(2197), - [anon_sym_namespace] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_include_once] = ACTIONS(2197), - [anon_sym_require] = ACTIONS(2197), - [anon_sym_require_once] = ACTIONS(2197), - [anon_sym_BSLASH] = ACTIONS(2199), - [anon_sym_self] = ACTIONS(2197), - [anon_sym_parent] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_LT_LT_LT] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_echo] = ACTIONS(2197), - [anon_sym_unset] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_concurrent] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_foreach] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_using] = ACTIONS(2197), - [sym_float] = ACTIONS(2199), - [sym_integer] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_True] = ACTIONS(2197), - [anon_sym_TRUE] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_False] = ACTIONS(2197), - [anon_sym_FALSE] = ACTIONS(2197), - [anon_sym_null] = ACTIONS(2197), - [anon_sym_Null] = ACTIONS(2197), - [anon_sym_NULL] = ACTIONS(2197), - [sym_string] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_array] = ACTIONS(2197), - [anon_sym_varray] = ACTIONS(2197), - [anon_sym_darray] = ACTIONS(2197), - [anon_sym_vec] = ACTIONS(2197), - [anon_sym_dict] = ACTIONS(2197), - [anon_sym_keyset] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_list] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2199), - [sym_final_modifier] = ACTIONS(2197), - [sym_xhp_modifier] = ACTIONS(2197), - [sym_xhp_identifier] = ACTIONS(2197), - [sym_xhp_class_identifier] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2105), + [sym_variable] = ACTIONS(2107), + [sym_pipe_variable] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_newtype] = ACTIONS(2105), + [anon_sym_shape] = ACTIONS(2105), + [anon_sym_tuple] = ACTIONS(2105), + [anon_sym_clone] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_print] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2105), + [anon_sym_include] = ACTIONS(2105), + [anon_sym_include_once] = ACTIONS(2105), + [anon_sym_require] = ACTIONS(2105), + [anon_sym_require_once] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2107), + [anon_sym_self] = ACTIONS(2105), + [anon_sym_parent] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_LT_LT_LT] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_echo] = ACTIONS(2105), + [anon_sym_unset] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_concurrent] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_switch] = ACTIONS(2105), + [anon_sym_foreach] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(2105), + [sym_float] = ACTIONS(2107), + [sym_integer] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_True] = ACTIONS(2105), + [anon_sym_TRUE] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_False] = ACTIONS(2105), + [anon_sym_FALSE] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [anon_sym_Null] = ACTIONS(2105), + [anon_sym_NULL] = ACTIONS(2105), + [sym_string] = ACTIONS(2107), + [anon_sym_AT] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_array] = ACTIONS(2105), + [anon_sym_varray] = ACTIONS(2105), + [anon_sym_darray] = ACTIONS(2105), + [anon_sym_vec] = ACTIONS(2105), + [anon_sym_dict] = ACTIONS(2105), + [anon_sym_keyset] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2107), + [sym_final_modifier] = ACTIONS(2105), + [sym_xhp_modifier] = ACTIONS(2105), + [sym_xhp_identifier] = ACTIONS(2105), + [sym_xhp_class_identifier] = ACTIONS(2107), [sym_comment] = ACTIONS(3), }, [1655] = { - [sym_identifier] = ACTIONS(2441), - [sym_variable] = ACTIONS(2443), - [sym_pipe_variable] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_newtype] = ACTIONS(2441), - [anon_sym_shape] = ACTIONS(2441), - [anon_sym_tuple] = ACTIONS(2441), - [anon_sym_clone] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_include] = ACTIONS(2441), - [anon_sym_include_once] = ACTIONS(2441), - [anon_sym_require] = ACTIONS(2441), - [anon_sym_require_once] = ACTIONS(2441), - [anon_sym_BSLASH] = ACTIONS(2443), - [anon_sym_self] = ACTIONS(2441), - [anon_sym_parent] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_LT_LT_LT] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2441), - [anon_sym_echo] = ACTIONS(2441), - [anon_sym_unset] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_concurrent] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2441), - [anon_sym_foreach] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_using] = ACTIONS(2441), - [sym_float] = ACTIONS(2443), - [sym_integer] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_True] = ACTIONS(2441), - [anon_sym_TRUE] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [anon_sym_False] = ACTIONS(2441), - [anon_sym_FALSE] = ACTIONS(2441), - [anon_sym_null] = ACTIONS(2441), - [anon_sym_Null] = ACTIONS(2441), - [anon_sym_NULL] = ACTIONS(2441), - [sym_string] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_array] = ACTIONS(2441), - [anon_sym_varray] = ACTIONS(2441), - [anon_sym_darray] = ACTIONS(2441), - [anon_sym_vec] = ACTIONS(2441), - [anon_sym_dict] = ACTIONS(2441), - [anon_sym_keyset] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_PLUS] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_interface] = ACTIONS(2441), - [anon_sym_class] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_abstract] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2443), - [sym_final_modifier] = ACTIONS(2441), - [sym_xhp_modifier] = ACTIONS(2441), - [sym_xhp_identifier] = ACTIONS(2441), - [sym_xhp_class_identifier] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2101), + [sym_variable] = ACTIONS(2103), + [sym_pipe_variable] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_newtype] = ACTIONS(2101), + [anon_sym_shape] = ACTIONS(2101), + [anon_sym_tuple] = ACTIONS(2101), + [anon_sym_clone] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2101), + [anon_sym_namespace] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_include_once] = ACTIONS(2101), + [anon_sym_require] = ACTIONS(2101), + [anon_sym_require_once] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2103), + [anon_sym_self] = ACTIONS(2101), + [anon_sym_parent] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_LT_LT_LT] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_throw] = ACTIONS(2101), + [anon_sym_echo] = ACTIONS(2101), + [anon_sym_unset] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_concurrent] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_function] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_switch] = ACTIONS(2101), + [anon_sym_foreach] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_using] = ACTIONS(2101), + [sym_float] = ACTIONS(2103), + [sym_integer] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_True] = ACTIONS(2101), + [anon_sym_TRUE] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_False] = ACTIONS(2101), + [anon_sym_FALSE] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [anon_sym_Null] = ACTIONS(2101), + [anon_sym_NULL] = ACTIONS(2101), + [sym_string] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_array] = ACTIONS(2101), + [anon_sym_varray] = ACTIONS(2101), + [anon_sym_darray] = ACTIONS(2101), + [anon_sym_vec] = ACTIONS(2101), + [anon_sym_dict] = ACTIONS(2101), + [anon_sym_keyset] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_list] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_interface] = ACTIONS(2101), + [anon_sym_class] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_abstract] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2103), + [sym_final_modifier] = ACTIONS(2101), + [sym_xhp_modifier] = ACTIONS(2101), + [sym_xhp_identifier] = ACTIONS(2101), + [sym_xhp_class_identifier] = ACTIONS(2103), [sym_comment] = ACTIONS(3), }, [1656] = { @@ -188108,7488 +181682,7230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1657] = { - [sym_identifier] = ACTIONS(2545), - [sym_variable] = ACTIONS(2547), - [sym_pipe_variable] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_newtype] = ACTIONS(2545), - [anon_sym_shape] = ACTIONS(2545), - [anon_sym_tuple] = ACTIONS(2545), - [anon_sym_clone] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_print] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_include] = ACTIONS(2545), - [anon_sym_include_once] = ACTIONS(2545), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_require_once] = ACTIONS(2545), - [anon_sym_BSLASH] = ACTIONS(2547), - [anon_sym_self] = ACTIONS(2545), - [anon_sym_parent] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), - [anon_sym_LT_LT_LT] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_echo] = ACTIONS(2545), - [anon_sym_unset] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_concurrent] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_foreach] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [sym_float] = ACTIONS(2547), - [sym_integer] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_True] = ACTIONS(2545), - [anon_sym_TRUE] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_False] = ACTIONS(2545), - [anon_sym_FALSE] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_Null] = ACTIONS(2545), - [anon_sym_NULL] = ACTIONS(2545), - [sym_string] = ACTIONS(2547), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_array] = ACTIONS(2545), - [anon_sym_varray] = ACTIONS(2545), - [anon_sym_darray] = ACTIONS(2545), - [anon_sym_vec] = ACTIONS(2545), - [anon_sym_dict] = ACTIONS(2545), - [anon_sym_keyset] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_list] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2547), - [sym_final_modifier] = ACTIONS(2545), - [sym_xhp_modifier] = ACTIONS(2545), - [sym_xhp_identifier] = ACTIONS(2545), - [sym_xhp_class_identifier] = ACTIONS(2547), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1658] = { - [sym_identifier] = ACTIONS(2541), - [sym_variable] = ACTIONS(2543), - [sym_pipe_variable] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_newtype] = ACTIONS(2541), - [anon_sym_shape] = ACTIONS(2541), - [anon_sym_tuple] = ACTIONS(2541), - [anon_sym_clone] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_include] = ACTIONS(2541), - [anon_sym_include_once] = ACTIONS(2541), - [anon_sym_require] = ACTIONS(2541), - [anon_sym_require_once] = ACTIONS(2541), - [anon_sym_BSLASH] = ACTIONS(2543), - [anon_sym_self] = ACTIONS(2541), - [anon_sym_parent] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_LT_LT] = ACTIONS(2541), - [anon_sym_LT_LT_LT] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_echo] = ACTIONS(2541), - [anon_sym_unset] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_concurrent] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_foreach] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [sym_float] = ACTIONS(2543), - [sym_integer] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_True] = ACTIONS(2541), - [anon_sym_TRUE] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_False] = ACTIONS(2541), - [anon_sym_FALSE] = ACTIONS(2541), - [anon_sym_null] = ACTIONS(2541), - [anon_sym_Null] = ACTIONS(2541), - [anon_sym_NULL] = ACTIONS(2541), - [sym_string] = ACTIONS(2543), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_array] = ACTIONS(2541), - [anon_sym_varray] = ACTIONS(2541), - [anon_sym_darray] = ACTIONS(2541), - [anon_sym_vec] = ACTIONS(2541), - [anon_sym_dict] = ACTIONS(2541), - [anon_sym_keyset] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_list] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2543), - [sym_final_modifier] = ACTIONS(2541), - [sym_xhp_modifier] = ACTIONS(2541), - [sym_xhp_identifier] = ACTIONS(2541), - [sym_xhp_class_identifier] = ACTIONS(2543), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1659] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1660] = { - [sym_identifier] = ACTIONS(2445), - [sym_variable] = ACTIONS(2447), - [sym_pipe_variable] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_newtype] = ACTIONS(2445), - [anon_sym_shape] = ACTIONS(2445), - [anon_sym_tuple] = ACTIONS(2445), - [anon_sym_clone] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_print] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_include] = ACTIONS(2445), - [anon_sym_include_once] = ACTIONS(2445), - [anon_sym_require] = ACTIONS(2445), - [anon_sym_require_once] = ACTIONS(2445), - [anon_sym_BSLASH] = ACTIONS(2447), - [anon_sym_self] = ACTIONS(2445), - [anon_sym_parent] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2445), - [anon_sym_LT_LT_LT] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_throw] = ACTIONS(2445), - [anon_sym_echo] = ACTIONS(2445), - [anon_sym_unset] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_concurrent] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_switch] = ACTIONS(2445), - [anon_sym_foreach] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_using] = ACTIONS(2445), - [sym_float] = ACTIONS(2447), - [sym_integer] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_True] = ACTIONS(2445), - [anon_sym_TRUE] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [anon_sym_False] = ACTIONS(2445), - [anon_sym_FALSE] = ACTIONS(2445), - [anon_sym_null] = ACTIONS(2445), - [anon_sym_Null] = ACTIONS(2445), - [anon_sym_NULL] = ACTIONS(2445), - [sym_string] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_array] = ACTIONS(2445), - [anon_sym_varray] = ACTIONS(2445), - [anon_sym_darray] = ACTIONS(2445), - [anon_sym_vec] = ACTIONS(2445), - [anon_sym_dict] = ACTIONS(2445), - [anon_sym_keyset] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_interface] = ACTIONS(2445), - [anon_sym_class] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_abstract] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2447), - [sym_final_modifier] = ACTIONS(2445), - [sym_xhp_modifier] = ACTIONS(2445), - [sym_xhp_identifier] = ACTIONS(2445), - [sym_xhp_class_identifier] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2373), + [sym_variable] = ACTIONS(2375), + [sym_pipe_variable] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_newtype] = ACTIONS(2373), + [anon_sym_shape] = ACTIONS(2373), + [anon_sym_tuple] = ACTIONS(2373), + [anon_sym_clone] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_print] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_include] = ACTIONS(2373), + [anon_sym_include_once] = ACTIONS(2373), + [anon_sym_require] = ACTIONS(2373), + [anon_sym_require_once] = ACTIONS(2373), + [anon_sym_BSLASH] = ACTIONS(2375), + [anon_sym_self] = ACTIONS(2373), + [anon_sym_parent] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_LT_LT] = ACTIONS(2373), + [anon_sym_LT_LT_LT] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_throw] = ACTIONS(2373), + [anon_sym_echo] = ACTIONS(2373), + [anon_sym_unset] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_concurrent] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_function] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_switch] = ACTIONS(2373), + [anon_sym_foreach] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [sym_float] = ACTIONS(2375), + [sym_integer] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_True] = ACTIONS(2373), + [anon_sym_TRUE] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_False] = ACTIONS(2373), + [anon_sym_FALSE] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_Null] = ACTIONS(2373), + [anon_sym_NULL] = ACTIONS(2373), + [sym_string] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_array] = ACTIONS(2373), + [anon_sym_varray] = ACTIONS(2373), + [anon_sym_darray] = ACTIONS(2373), + [anon_sym_vec] = ACTIONS(2373), + [anon_sym_dict] = ACTIONS(2373), + [anon_sym_keyset] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_list] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2375), + [anon_sym_DASH_DASH] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_interface] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_abstract] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2375), + [sym_final_modifier] = ACTIONS(2373), + [sym_xhp_modifier] = ACTIONS(2373), + [sym_xhp_identifier] = ACTIONS(2373), + [sym_xhp_class_identifier] = ACTIONS(2375), + [sym_comment] = ACTIONS(3), + }, + [1660] = { + [sym_identifier] = ACTIONS(2293), + [sym_variable] = ACTIONS(2295), + [sym_pipe_variable] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_newtype] = ACTIONS(2293), + [anon_sym_shape] = ACTIONS(2293), + [anon_sym_tuple] = ACTIONS(2293), + [anon_sym_clone] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_include] = ACTIONS(2293), + [anon_sym_include_once] = ACTIONS(2293), + [anon_sym_require] = ACTIONS(2293), + [anon_sym_require_once] = ACTIONS(2293), + [anon_sym_BSLASH] = ACTIONS(2295), + [anon_sym_self] = ACTIONS(2293), + [anon_sym_parent] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_LT_LT] = ACTIONS(2293), + [anon_sym_LT_LT_LT] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_echo] = ACTIONS(2293), + [anon_sym_unset] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_concurrent] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_foreach] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_using] = ACTIONS(2293), + [sym_float] = ACTIONS(2295), + [sym_integer] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_True] = ACTIONS(2293), + [anon_sym_TRUE] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_False] = ACTIONS(2293), + [anon_sym_FALSE] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [anon_sym_Null] = ACTIONS(2293), + [anon_sym_NULL] = ACTIONS(2293), + [sym_string] = ACTIONS(2295), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_array] = ACTIONS(2293), + [anon_sym_varray] = ACTIONS(2293), + [anon_sym_darray] = ACTIONS(2293), + [anon_sym_vec] = ACTIONS(2293), + [anon_sym_dict] = ACTIONS(2293), + [anon_sym_keyset] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_PLUS_PLUS] = ACTIONS(2295), + [anon_sym_DASH_DASH] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2295), + [sym_final_modifier] = ACTIONS(2293), + [sym_xhp_modifier] = ACTIONS(2293), + [sym_xhp_identifier] = ACTIONS(2293), + [sym_xhp_class_identifier] = ACTIONS(2295), [sym_comment] = ACTIONS(3), }, [1661] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2313), + [sym_variable] = ACTIONS(2315), + [sym_pipe_variable] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_newtype] = ACTIONS(2313), + [anon_sym_shape] = ACTIONS(2313), + [anon_sym_tuple] = ACTIONS(2313), + [anon_sym_clone] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_print] = ACTIONS(2313), + [anon_sym_namespace] = ACTIONS(2313), + [anon_sym_include] = ACTIONS(2313), + [anon_sym_include_once] = ACTIONS(2313), + [anon_sym_require] = ACTIONS(2313), + [anon_sym_require_once] = ACTIONS(2313), + [anon_sym_BSLASH] = ACTIONS(2315), + [anon_sym_self] = ACTIONS(2313), + [anon_sym_parent] = ACTIONS(2313), + [anon_sym_static] = ACTIONS(2313), + [anon_sym_LT_LT] = ACTIONS(2313), + [anon_sym_LT_LT_LT] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_throw] = ACTIONS(2313), + [anon_sym_echo] = ACTIONS(2313), + [anon_sym_unset] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_concurrent] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_function] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_foreach] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(2313), + [sym_float] = ACTIONS(2315), + [sym_integer] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_True] = ACTIONS(2313), + [anon_sym_TRUE] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_False] = ACTIONS(2313), + [anon_sym_FALSE] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [anon_sym_Null] = ACTIONS(2313), + [anon_sym_NULL] = ACTIONS(2313), + [sym_string] = ACTIONS(2315), + [anon_sym_AT] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_array] = ACTIONS(2313), + [anon_sym_varray] = ACTIONS(2313), + [anon_sym_darray] = ACTIONS(2313), + [anon_sym_vec] = ACTIONS(2313), + [anon_sym_dict] = ACTIONS(2313), + [anon_sym_keyset] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_trait] = ACTIONS(2313), + [anon_sym_interface] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_abstract] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2315), + [sym_final_modifier] = ACTIONS(2313), + [sym_xhp_modifier] = ACTIONS(2313), + [sym_xhp_identifier] = ACTIONS(2313), + [sym_xhp_class_identifier] = ACTIONS(2315), [sym_comment] = ACTIONS(3), }, [1662] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2341), + [sym_variable] = ACTIONS(2343), + [sym_pipe_variable] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_newtype] = ACTIONS(2341), + [anon_sym_shape] = ACTIONS(2341), + [anon_sym_tuple] = ACTIONS(2341), + [anon_sym_clone] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_print] = ACTIONS(2341), + [anon_sym_namespace] = ACTIONS(2341), + [anon_sym_include] = ACTIONS(2341), + [anon_sym_include_once] = ACTIONS(2341), + [anon_sym_require] = ACTIONS(2341), + [anon_sym_require_once] = ACTIONS(2341), + [anon_sym_BSLASH] = ACTIONS(2343), + [anon_sym_self] = ACTIONS(2341), + [anon_sym_parent] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_LT_LT_LT] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_throw] = ACTIONS(2341), + [anon_sym_echo] = ACTIONS(2341), + [anon_sym_unset] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_concurrent] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_function] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2341), + [anon_sym_foreach] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_using] = ACTIONS(2341), + [sym_float] = ACTIONS(2343), + [sym_integer] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_True] = ACTIONS(2341), + [anon_sym_TRUE] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_False] = ACTIONS(2341), + [anon_sym_FALSE] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [anon_sym_Null] = ACTIONS(2341), + [anon_sym_NULL] = ACTIONS(2341), + [sym_string] = ACTIONS(2343), + [anon_sym_AT] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_array] = ACTIONS(2341), + [anon_sym_varray] = ACTIONS(2341), + [anon_sym_darray] = ACTIONS(2341), + [anon_sym_vec] = ACTIONS(2341), + [anon_sym_dict] = ACTIONS(2341), + [anon_sym_keyset] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_abstract] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2343), + [sym_final_modifier] = ACTIONS(2341), + [sym_xhp_modifier] = ACTIONS(2341), + [sym_xhp_identifier] = ACTIONS(2341), + [sym_xhp_class_identifier] = ACTIONS(2343), [sym_comment] = ACTIONS(3), }, [1663] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1664] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2333), + [sym_variable] = ACTIONS(2335), + [sym_pipe_variable] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2333), + [anon_sym_newtype] = ACTIONS(2333), + [anon_sym_shape] = ACTIONS(2333), + [anon_sym_tuple] = ACTIONS(2333), + [anon_sym_clone] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2333), + [anon_sym_print] = ACTIONS(2333), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_include] = ACTIONS(2333), + [anon_sym_include_once] = ACTIONS(2333), + [anon_sym_require] = ACTIONS(2333), + [anon_sym_require_once] = ACTIONS(2333), + [anon_sym_BSLASH] = ACTIONS(2335), + [anon_sym_self] = ACTIONS(2333), + [anon_sym_parent] = ACTIONS(2333), + [anon_sym_static] = ACTIONS(2333), + [anon_sym_LT_LT] = ACTIONS(2333), + [anon_sym_LT_LT_LT] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_throw] = ACTIONS(2333), + [anon_sym_echo] = ACTIONS(2333), + [anon_sym_unset] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_concurrent] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_function] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_switch] = ACTIONS(2333), + [anon_sym_foreach] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_using] = ACTIONS(2333), + [sym_float] = ACTIONS(2335), + [sym_integer] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2333), + [anon_sym_True] = ACTIONS(2333), + [anon_sym_TRUE] = ACTIONS(2333), + [anon_sym_false] = ACTIONS(2333), + [anon_sym_False] = ACTIONS(2333), + [anon_sym_FALSE] = ACTIONS(2333), + [anon_sym_null] = ACTIONS(2333), + [anon_sym_Null] = ACTIONS(2333), + [anon_sym_NULL] = ACTIONS(2333), + [sym_string] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_array] = ACTIONS(2333), + [anon_sym_varray] = ACTIONS(2333), + [anon_sym_darray] = ACTIONS(2333), + [anon_sym_vec] = ACTIONS(2333), + [anon_sym_dict] = ACTIONS(2333), + [anon_sym_keyset] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_list] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2333), + [anon_sym_async] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2333), + [anon_sym_trait] = ACTIONS(2333), + [anon_sym_interface] = ACTIONS(2333), + [anon_sym_class] = ACTIONS(2333), + [anon_sym_enum] = ACTIONS(2333), + [anon_sym_abstract] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2335), + [sym_final_modifier] = ACTIONS(2333), + [sym_xhp_modifier] = ACTIONS(2333), + [sym_xhp_identifier] = ACTIONS(2333), + [sym_xhp_class_identifier] = ACTIONS(2335), [sym_comment] = ACTIONS(3), }, [1665] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1666] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1666] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1667] = { - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2169), - [sym_variable] = ACTIONS(2171), - [sym_pipe_variable] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_newtype] = ACTIONS(2169), - [anon_sym_shape] = ACTIONS(2169), - [anon_sym_tuple] = ACTIONS(2169), - [anon_sym_clone] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2169), - [anon_sym_print] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2169), - [anon_sym_include] = ACTIONS(2169), - [anon_sym_include_once] = ACTIONS(2169), - [anon_sym_require] = ACTIONS(2169), - [anon_sym_require_once] = ACTIONS(2169), - [anon_sym_BSLASH] = ACTIONS(2171), - [anon_sym_self] = ACTIONS(2169), - [anon_sym_parent] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_LT_LT_LT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_throw] = ACTIONS(2169), - [anon_sym_echo] = ACTIONS(2169), - [anon_sym_unset] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_concurrent] = ACTIONS(2169), - [anon_sym_use] = ACTIONS(2169), - [anon_sym_function] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [anon_sym_foreach] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2169), - [sym_float] = ACTIONS(2171), - [sym_integer] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_True] = ACTIONS(2169), - [anon_sym_TRUE] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [anon_sym_False] = ACTIONS(2169), - [anon_sym_FALSE] = ACTIONS(2169), - [anon_sym_null] = ACTIONS(2169), - [anon_sym_Null] = ACTIONS(2169), - [anon_sym_NULL] = ACTIONS(2169), - [sym_string] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_array] = ACTIONS(2169), - [anon_sym_varray] = ACTIONS(2169), - [anon_sym_darray] = ACTIONS(2169), - [anon_sym_vec] = ACTIONS(2169), - [anon_sym_dict] = ACTIONS(2169), - [anon_sym_keyset] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_list] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_trait] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2169), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_abstract] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2171), - [sym_final_modifier] = ACTIONS(2169), - [sym_xhp_modifier] = ACTIONS(2169), - [sym_xhp_identifier] = ACTIONS(2169), - [sym_xhp_class_identifier] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1668] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1669] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1670] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1671] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1672] = { - [sym_identifier] = ACTIONS(2105), - [sym_variable] = ACTIONS(2107), - [sym_pipe_variable] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_newtype] = ACTIONS(2105), - [anon_sym_shape] = ACTIONS(2105), - [anon_sym_tuple] = ACTIONS(2105), - [anon_sym_clone] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_print] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_include] = ACTIONS(2105), - [anon_sym_include_once] = ACTIONS(2105), - [anon_sym_require] = ACTIONS(2105), - [anon_sym_require_once] = ACTIONS(2105), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_self] = ACTIONS(2105), - [anon_sym_parent] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_LT_LT_LT] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_echo] = ACTIONS(2105), - [anon_sym_unset] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_concurrent] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_foreach] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [sym_float] = ACTIONS(2107), - [sym_integer] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_True] = ACTIONS(2105), - [anon_sym_TRUE] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_False] = ACTIONS(2105), - [anon_sym_FALSE] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [anon_sym_Null] = ACTIONS(2105), - [anon_sym_NULL] = ACTIONS(2105), - [sym_string] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_array] = ACTIONS(2105), - [anon_sym_varray] = ACTIONS(2105), - [anon_sym_darray] = ACTIONS(2105), - [anon_sym_vec] = ACTIONS(2105), - [anon_sym_dict] = ACTIONS(2105), - [anon_sym_keyset] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(2107), - [sym_final_modifier] = ACTIONS(2105), - [sym_xhp_modifier] = ACTIONS(2105), - [sym_xhp_identifier] = ACTIONS(2105), - [sym_xhp_class_identifier] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1672] = { + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2489), + [sym_variable] = ACTIONS(2491), + [sym_pipe_variable] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_newtype] = ACTIONS(2489), + [anon_sym_shape] = ACTIONS(2489), + [anon_sym_tuple] = ACTIONS(2489), + [anon_sym_clone] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_print] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_include] = ACTIONS(2489), + [anon_sym_include_once] = ACTIONS(2489), + [anon_sym_require] = ACTIONS(2489), + [anon_sym_require_once] = ACTIONS(2489), + [anon_sym_BSLASH] = ACTIONS(2491), + [anon_sym_self] = ACTIONS(2489), + [anon_sym_parent] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_LT_LT_LT] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_echo] = ACTIONS(2489), + [anon_sym_unset] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_concurrent] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_function] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_foreach] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [sym_float] = ACTIONS(2491), + [sym_integer] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_True] = ACTIONS(2489), + [anon_sym_TRUE] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_False] = ACTIONS(2489), + [anon_sym_FALSE] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [anon_sym_Null] = ACTIONS(2489), + [anon_sym_NULL] = ACTIONS(2489), + [sym_string] = ACTIONS(2491), + [anon_sym_AT] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_array] = ACTIONS(2489), + [anon_sym_varray] = ACTIONS(2489), + [anon_sym_darray] = ACTIONS(2489), + [anon_sym_vec] = ACTIONS(2489), + [anon_sym_dict] = ACTIONS(2489), + [anon_sym_keyset] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_await] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_interface] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_abstract] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2491), + [sym_final_modifier] = ACTIONS(2489), + [sym_xhp_modifier] = ACTIONS(2489), + [sym_xhp_identifier] = ACTIONS(2489), + [sym_xhp_class_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(3), }, [1673] = { - [sym_identifier] = ACTIONS(2561), - [sym_variable] = ACTIONS(2563), - [sym_pipe_variable] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_newtype] = ACTIONS(2561), - [anon_sym_shape] = ACTIONS(2561), - [anon_sym_tuple] = ACTIONS(2561), - [anon_sym_clone] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_print] = ACTIONS(2561), - [anon_sym_namespace] = ACTIONS(2561), - [anon_sym_include] = ACTIONS(2561), - [anon_sym_include_once] = ACTIONS(2561), - [anon_sym_require] = ACTIONS(2561), - [anon_sym_require_once] = ACTIONS(2561), - [anon_sym_BSLASH] = ACTIONS(2563), - [anon_sym_self] = ACTIONS(2561), - [anon_sym_parent] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2561), - [anon_sym_LT_LT] = ACTIONS(2561), - [anon_sym_LT_LT_LT] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_echo] = ACTIONS(2561), - [anon_sym_unset] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_concurrent] = ACTIONS(2561), - [anon_sym_use] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_switch] = ACTIONS(2561), - [anon_sym_foreach] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(2561), - [sym_float] = ACTIONS(2563), - [sym_integer] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2561), - [anon_sym_True] = ACTIONS(2561), - [anon_sym_TRUE] = ACTIONS(2561), - [anon_sym_false] = ACTIONS(2561), - [anon_sym_False] = ACTIONS(2561), - [anon_sym_FALSE] = ACTIONS(2561), - [anon_sym_null] = ACTIONS(2561), - [anon_sym_Null] = ACTIONS(2561), - [anon_sym_NULL] = ACTIONS(2561), - [sym_string] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_array] = ACTIONS(2561), - [anon_sym_varray] = ACTIONS(2561), - [anon_sym_darray] = ACTIONS(2561), - [anon_sym_vec] = ACTIONS(2561), - [anon_sym_dict] = ACTIONS(2561), - [anon_sym_keyset] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_list] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [anon_sym_await] = ACTIONS(2561), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_trait] = ACTIONS(2561), - [anon_sym_interface] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2561), - [anon_sym_abstract] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2563), - [sym_final_modifier] = ACTIONS(2561), - [sym_xhp_modifier] = ACTIONS(2561), - [sym_xhp_identifier] = ACTIONS(2561), - [sym_xhp_class_identifier] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2449), + [sym_variable] = ACTIONS(2451), + [sym_pipe_variable] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_newtype] = ACTIONS(2449), + [anon_sym_shape] = ACTIONS(2449), + [anon_sym_tuple] = ACTIONS(2449), + [anon_sym_clone] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_print] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_include] = ACTIONS(2449), + [anon_sym_include_once] = ACTIONS(2449), + [anon_sym_require] = ACTIONS(2449), + [anon_sym_require_once] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2451), + [anon_sym_self] = ACTIONS(2449), + [anon_sym_parent] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_LT_LT_LT] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_throw] = ACTIONS(2449), + [anon_sym_echo] = ACTIONS(2449), + [anon_sym_unset] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_concurrent] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_switch] = ACTIONS(2449), + [anon_sym_foreach] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_using] = ACTIONS(2449), + [sym_float] = ACTIONS(2451), + [sym_integer] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_True] = ACTIONS(2449), + [anon_sym_TRUE] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_False] = ACTIONS(2449), + [anon_sym_FALSE] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [anon_sym_Null] = ACTIONS(2449), + [anon_sym_NULL] = ACTIONS(2449), + [sym_string] = ACTIONS(2451), + [anon_sym_AT] = ACTIONS(2451), + [anon_sym_TILDE] = ACTIONS(2451), + [anon_sym_array] = ACTIONS(2449), + [anon_sym_varray] = ACTIONS(2449), + [anon_sym_darray] = ACTIONS(2449), + [anon_sym_vec] = ACTIONS(2449), + [anon_sym_dict] = ACTIONS(2449), + [anon_sym_keyset] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(2451), + [anon_sym_DASH_DASH] = ACTIONS(2451), + [anon_sym_await] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_yield] = ACTIONS(2449), + [anon_sym_trait] = ACTIONS(2449), + [anon_sym_interface] = ACTIONS(2449), + [anon_sym_class] = ACTIONS(2449), + [anon_sym_enum] = ACTIONS(2449), + [anon_sym_abstract] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2451), + [sym_final_modifier] = ACTIONS(2449), + [sym_xhp_modifier] = ACTIONS(2449), + [sym_xhp_identifier] = ACTIONS(2449), + [sym_xhp_class_identifier] = ACTIONS(2451), [sym_comment] = ACTIONS(3), }, [1674] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1675] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1676] = { - [sym_identifier] = ACTIONS(2109), - [sym_variable] = ACTIONS(2111), - [sym_pipe_variable] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_newtype] = ACTIONS(2109), - [anon_sym_shape] = ACTIONS(2109), - [anon_sym_tuple] = ACTIONS(2109), - [anon_sym_clone] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_print] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_include] = ACTIONS(2109), - [anon_sym_include_once] = ACTIONS(2109), - [anon_sym_require] = ACTIONS(2109), - [anon_sym_require_once] = ACTIONS(2109), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_self] = ACTIONS(2109), - [anon_sym_parent] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_LT_LT_LT] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_echo] = ACTIONS(2109), - [anon_sym_unset] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_concurrent] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_foreach] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [sym_float] = ACTIONS(2111), - [sym_integer] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_True] = ACTIONS(2109), - [anon_sym_TRUE] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [anon_sym_False] = ACTIONS(2109), - [anon_sym_FALSE] = ACTIONS(2109), - [anon_sym_null] = ACTIONS(2109), - [anon_sym_Null] = ACTIONS(2109), - [anon_sym_NULL] = ACTIONS(2109), - [sym_string] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_array] = ACTIONS(2109), - [anon_sym_varray] = ACTIONS(2109), - [anon_sym_darray] = ACTIONS(2109), - [anon_sym_vec] = ACTIONS(2109), - [anon_sym_dict] = ACTIONS(2109), - [anon_sym_keyset] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_list] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(2111), - [sym_final_modifier] = ACTIONS(2109), - [sym_xhp_modifier] = ACTIONS(2109), - [sym_xhp_identifier] = ACTIONS(2109), - [sym_xhp_class_identifier] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1677] = { - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [1678] = { - [sym_identifier] = ACTIONS(2549), - [sym_variable] = ACTIONS(2551), - [sym_pipe_variable] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_newtype] = ACTIONS(2549), - [anon_sym_shape] = ACTIONS(2549), - [anon_sym_tuple] = ACTIONS(2549), - [anon_sym_clone] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_print] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), - [anon_sym_LT_LT_LT] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_echo] = ACTIONS(2549), - [anon_sym_unset] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_concurrent] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_foreach] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [sym_float] = ACTIONS(2551), - [sym_integer] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_True] = ACTIONS(2549), - [anon_sym_TRUE] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_False] = ACTIONS(2549), - [anon_sym_FALSE] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2549), - [anon_sym_Null] = ACTIONS(2549), - [anon_sym_NULL] = ACTIONS(2549), - [sym_string] = ACTIONS(2551), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_array] = ACTIONS(2549), - [anon_sym_varray] = ACTIONS(2549), - [anon_sym_darray] = ACTIONS(2549), - [anon_sym_vec] = ACTIONS(2549), - [anon_sym_dict] = ACTIONS(2549), - [anon_sym_keyset] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2551), - [sym_final_modifier] = ACTIONS(2549), - [sym_xhp_modifier] = ACTIONS(2549), - [sym_xhp_identifier] = ACTIONS(2549), - [sym_xhp_class_identifier] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2457), + [sym_variable] = ACTIONS(2459), + [sym_pipe_variable] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_newtype] = ACTIONS(2457), + [anon_sym_shape] = ACTIONS(2457), + [anon_sym_tuple] = ACTIONS(2457), + [anon_sym_clone] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_print] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_include] = ACTIONS(2457), + [anon_sym_include_once] = ACTIONS(2457), + [anon_sym_require] = ACTIONS(2457), + [anon_sym_require_once] = ACTIONS(2457), + [anon_sym_BSLASH] = ACTIONS(2459), + [anon_sym_self] = ACTIONS(2457), + [anon_sym_parent] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_LT_LT_LT] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_echo] = ACTIONS(2457), + [anon_sym_unset] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_concurrent] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_foreach] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_integer] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_True] = ACTIONS(2457), + [anon_sym_TRUE] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_False] = ACTIONS(2457), + [anon_sym_FALSE] = ACTIONS(2457), + [anon_sym_null] = ACTIONS(2457), + [anon_sym_Null] = ACTIONS(2457), + [anon_sym_NULL] = ACTIONS(2457), + [sym_string] = ACTIONS(2459), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_array] = ACTIONS(2457), + [anon_sym_varray] = ACTIONS(2457), + [anon_sym_darray] = ACTIONS(2457), + [anon_sym_vec] = ACTIONS(2457), + [anon_sym_dict] = ACTIONS(2457), + [anon_sym_keyset] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2459), + [sym_final_modifier] = ACTIONS(2457), + [sym_xhp_modifier] = ACTIONS(2457), + [sym_xhp_identifier] = ACTIONS(2457), + [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, [1679] = { - [sym_identifier] = ACTIONS(2533), - [sym_variable] = ACTIONS(2535), - [sym_pipe_variable] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_newtype] = ACTIONS(2533), - [anon_sym_shape] = ACTIONS(2533), - [anon_sym_tuple] = ACTIONS(2533), - [anon_sym_clone] = ACTIONS(2533), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_print] = ACTIONS(2533), - [anon_sym_namespace] = ACTIONS(2533), - [anon_sym_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT_LT_LT] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_echo] = ACTIONS(2533), - [anon_sym_unset] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_concurrent] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_function] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_switch] = ACTIONS(2533), - [anon_sym_foreach] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_do] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [anon_sym_using] = ACTIONS(2533), - [sym_float] = ACTIONS(2535), - [sym_integer] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_True] = ACTIONS(2533), - [anon_sym_TRUE] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_False] = ACTIONS(2533), - [anon_sym_FALSE] = ACTIONS(2533), - [anon_sym_null] = ACTIONS(2533), - [anon_sym_Null] = ACTIONS(2533), - [anon_sym_NULL] = ACTIONS(2533), - [sym_string] = ACTIONS(2535), - [anon_sym_AT] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_array] = ACTIONS(2533), - [anon_sym_varray] = ACTIONS(2533), - [anon_sym_darray] = ACTIONS(2533), - [anon_sym_vec] = ACTIONS(2533), - [anon_sym_dict] = ACTIONS(2533), - [anon_sym_keyset] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_PLUS_PLUS] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2535), - [anon_sym_await] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_interface] = ACTIONS(2533), - [anon_sym_class] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_abstract] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2535), - [sym_final_modifier] = ACTIONS(2533), - [sym_xhp_modifier] = ACTIONS(2533), - [sym_xhp_identifier] = ACTIONS(2533), - [sym_xhp_class_identifier] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2465), + [sym_variable] = ACTIONS(2467), + [sym_pipe_variable] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_newtype] = ACTIONS(2465), + [anon_sym_shape] = ACTIONS(2465), + [anon_sym_tuple] = ACTIONS(2465), + [anon_sym_clone] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_include_once] = ACTIONS(2465), + [anon_sym_require] = ACTIONS(2465), + [anon_sym_require_once] = ACTIONS(2465), + [anon_sym_BSLASH] = ACTIONS(2467), + [anon_sym_self] = ACTIONS(2465), + [anon_sym_parent] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_LT_LT_LT] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_echo] = ACTIONS(2465), + [anon_sym_unset] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_concurrent] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_function] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_foreach] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [sym_float] = ACTIONS(2467), + [sym_integer] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_True] = ACTIONS(2465), + [anon_sym_TRUE] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_False] = ACTIONS(2465), + [anon_sym_FALSE] = ACTIONS(2465), + [anon_sym_null] = ACTIONS(2465), + [anon_sym_Null] = ACTIONS(2465), + [anon_sym_NULL] = ACTIONS(2465), + [sym_string] = ACTIONS(2467), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_array] = ACTIONS(2465), + [anon_sym_varray] = ACTIONS(2465), + [anon_sym_darray] = ACTIONS(2465), + [anon_sym_vec] = ACTIONS(2465), + [anon_sym_dict] = ACTIONS(2465), + [anon_sym_keyset] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_abstract] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2467), + [sym_final_modifier] = ACTIONS(2465), + [sym_xhp_modifier] = ACTIONS(2465), + [sym_xhp_identifier] = ACTIONS(2465), + [sym_xhp_class_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(3), }, [1680] = { - [sym_identifier] = ACTIONS(2517), - [sym_variable] = ACTIONS(2519), - [sym_pipe_variable] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_newtype] = ACTIONS(2517), - [anon_sym_shape] = ACTIONS(2517), - [anon_sym_tuple] = ACTIONS(2517), - [anon_sym_clone] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), - [anon_sym_LT_LT_LT] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_echo] = ACTIONS(2517), - [anon_sym_unset] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_concurrent] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_foreach] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [sym_float] = ACTIONS(2519), - [sym_integer] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_True] = ACTIONS(2517), - [anon_sym_TRUE] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_False] = ACTIONS(2517), - [anon_sym_FALSE] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [anon_sym_Null] = ACTIONS(2517), - [anon_sym_NULL] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_array] = ACTIONS(2517), - [anon_sym_varray] = ACTIONS(2517), - [anon_sym_darray] = ACTIONS(2517), - [anon_sym_vec] = ACTIONS(2517), - [anon_sym_dict] = ACTIONS(2517), - [anon_sym_keyset] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_trait] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2519), - [sym_final_modifier] = ACTIONS(2517), - [sym_xhp_modifier] = ACTIONS(2517), - [sym_xhp_identifier] = ACTIONS(2517), - [sym_xhp_class_identifier] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1681] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1682] = { - [sym_identifier] = ACTIONS(2113), - [sym_variable] = ACTIONS(2115), - [sym_pipe_variable] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_newtype] = ACTIONS(2113), - [anon_sym_shape] = ACTIONS(2113), - [anon_sym_tuple] = ACTIONS(2113), - [anon_sym_clone] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_print] = ACTIONS(2113), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_include] = ACTIONS(2113), - [anon_sym_include_once] = ACTIONS(2113), - [anon_sym_require] = ACTIONS(2113), - [anon_sym_require_once] = ACTIONS(2113), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_self] = ACTIONS(2113), - [anon_sym_parent] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(2113), - [anon_sym_LT_LT_LT] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_throw] = ACTIONS(2113), - [anon_sym_echo] = ACTIONS(2113), - [anon_sym_unset] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_concurrent] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_function] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_switch] = ACTIONS(2113), - [anon_sym_foreach] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_using] = ACTIONS(2113), - [sym_float] = ACTIONS(2115), - [sym_integer] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_True] = ACTIONS(2113), - [anon_sym_TRUE] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_False] = ACTIONS(2113), - [anon_sym_FALSE] = ACTIONS(2113), - [anon_sym_null] = ACTIONS(2113), - [anon_sym_Null] = ACTIONS(2113), - [anon_sym_NULL] = ACTIONS(2113), - [sym_string] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_array] = ACTIONS(2113), - [anon_sym_varray] = ACTIONS(2113), - [anon_sym_darray] = ACTIONS(2113), - [anon_sym_vec] = ACTIONS(2113), - [anon_sym_dict] = ACTIONS(2113), - [anon_sym_keyset] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_interface] = ACTIONS(2113), - [anon_sym_class] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_abstract] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(2115), - [sym_final_modifier] = ACTIONS(2113), - [sym_xhp_modifier] = ACTIONS(2113), - [sym_xhp_identifier] = ACTIONS(2113), - [sym_xhp_class_identifier] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1683] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2465), + [sym_variable] = ACTIONS(2467), + [sym_pipe_variable] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_newtype] = ACTIONS(2465), + [anon_sym_shape] = ACTIONS(2465), + [anon_sym_tuple] = ACTIONS(2465), + [anon_sym_clone] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_include_once] = ACTIONS(2465), + [anon_sym_require] = ACTIONS(2465), + [anon_sym_require_once] = ACTIONS(2465), + [anon_sym_BSLASH] = ACTIONS(2467), + [anon_sym_self] = ACTIONS(2465), + [anon_sym_parent] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_LT_LT_LT] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_echo] = ACTIONS(2465), + [anon_sym_unset] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_concurrent] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_function] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_foreach] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [sym_float] = ACTIONS(2467), + [sym_integer] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_True] = ACTIONS(2465), + [anon_sym_TRUE] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_False] = ACTIONS(2465), + [anon_sym_FALSE] = ACTIONS(2465), + [anon_sym_null] = ACTIONS(2465), + [anon_sym_Null] = ACTIONS(2465), + [anon_sym_NULL] = ACTIONS(2465), + [sym_string] = ACTIONS(2467), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_array] = ACTIONS(2465), + [anon_sym_varray] = ACTIONS(2465), + [anon_sym_darray] = ACTIONS(2465), + [anon_sym_vec] = ACTIONS(2465), + [anon_sym_dict] = ACTIONS(2465), + [anon_sym_keyset] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_trait] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_abstract] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2467), + [sym_final_modifier] = ACTIONS(2465), + [sym_xhp_modifier] = ACTIONS(2465), + [sym_xhp_identifier] = ACTIONS(2465), + [sym_xhp_class_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(3), }, [1684] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1685] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1685] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1686] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1687] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1688] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1689] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1690] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1691] = { - [sym_identifier] = ACTIONS(2513), - [sym_variable] = ACTIONS(2515), - [sym_pipe_variable] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_newtype] = ACTIONS(2513), - [anon_sym_shape] = ACTIONS(2513), - [anon_sym_tuple] = ACTIONS(2513), - [anon_sym_clone] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_include] = ACTIONS(2513), - [anon_sym_include_once] = ACTIONS(2513), - [anon_sym_require] = ACTIONS(2513), - [anon_sym_require_once] = ACTIONS(2513), - [anon_sym_BSLASH] = ACTIONS(2515), - [anon_sym_self] = ACTIONS(2513), - [anon_sym_parent] = ACTIONS(2513), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_LT_LT_LT] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_echo] = ACTIONS(2513), - [anon_sym_unset] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_concurrent] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_foreach] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [sym_float] = ACTIONS(2515), - [sym_integer] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_True] = ACTIONS(2513), - [anon_sym_TRUE] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [anon_sym_False] = ACTIONS(2513), - [anon_sym_FALSE] = ACTIONS(2513), - [anon_sym_null] = ACTIONS(2513), - [anon_sym_Null] = ACTIONS(2513), - [anon_sym_NULL] = ACTIONS(2513), - [sym_string] = ACTIONS(2515), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_array] = ACTIONS(2513), - [anon_sym_varray] = ACTIONS(2513), - [anon_sym_darray] = ACTIONS(2513), - [anon_sym_vec] = ACTIONS(2513), - [anon_sym_dict] = ACTIONS(2513), - [anon_sym_keyset] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_trait] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2515), - [sym_final_modifier] = ACTIONS(2513), - [sym_xhp_modifier] = ACTIONS(2513), - [sym_xhp_identifier] = ACTIONS(2513), - [sym_xhp_class_identifier] = ACTIONS(2515), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1691] = { + [sym_identifier] = ACTIONS(2493), + [sym_variable] = ACTIONS(2495), + [sym_pipe_variable] = ACTIONS(2495), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_newtype] = ACTIONS(2493), + [anon_sym_shape] = ACTIONS(2493), + [anon_sym_tuple] = ACTIONS(2493), + [anon_sym_clone] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_include] = ACTIONS(2493), + [anon_sym_include_once] = ACTIONS(2493), + [anon_sym_require] = ACTIONS(2493), + [anon_sym_require_once] = ACTIONS(2493), + [anon_sym_BSLASH] = ACTIONS(2495), + [anon_sym_self] = ACTIONS(2493), + [anon_sym_parent] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_LT_LT] = ACTIONS(2493), + [anon_sym_LT_LT_LT] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_echo] = ACTIONS(2493), + [anon_sym_unset] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_concurrent] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_function] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_foreach] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [sym_float] = ACTIONS(2495), + [sym_integer] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_True] = ACTIONS(2493), + [anon_sym_TRUE] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_False] = ACTIONS(2493), + [anon_sym_FALSE] = ACTIONS(2493), + [anon_sym_null] = ACTIONS(2493), + [anon_sym_Null] = ACTIONS(2493), + [anon_sym_NULL] = ACTIONS(2493), + [sym_string] = ACTIONS(2495), + [anon_sym_AT] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_array] = ACTIONS(2493), + [anon_sym_varray] = ACTIONS(2493), + [anon_sym_darray] = ACTIONS(2493), + [anon_sym_vec] = ACTIONS(2493), + [anon_sym_dict] = ACTIONS(2493), + [anon_sym_keyset] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_interface] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_abstract] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2495), + [sym_final_modifier] = ACTIONS(2493), + [sym_xhp_modifier] = ACTIONS(2493), + [sym_xhp_identifier] = ACTIONS(2493), + [sym_xhp_class_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(3), }, [1692] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1693] = { - [ts_builtin_sym_end] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2517), - [sym_variable] = ACTIONS(2519), - [sym_pipe_variable] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_newtype] = ACTIONS(2517), - [anon_sym_shape] = ACTIONS(2517), - [anon_sym_tuple] = ACTIONS(2517), - [anon_sym_clone] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_include] = ACTIONS(2517), - [anon_sym_include_once] = ACTIONS(2517), - [anon_sym_require] = ACTIONS(2517), - [anon_sym_require_once] = ACTIONS(2517), - [anon_sym_BSLASH] = ACTIONS(2519), - [anon_sym_self] = ACTIONS(2517), - [anon_sym_parent] = ACTIONS(2517), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_LT_LT] = ACTIONS(2517), - [anon_sym_LT_LT_LT] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_echo] = ACTIONS(2517), - [anon_sym_unset] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_concurrent] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_foreach] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [sym_float] = ACTIONS(2519), - [sym_integer] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_True] = ACTIONS(2517), - [anon_sym_TRUE] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_False] = ACTIONS(2517), - [anon_sym_FALSE] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [anon_sym_Null] = ACTIONS(2517), - [anon_sym_NULL] = ACTIONS(2517), - [sym_string] = ACTIONS(2519), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_array] = ACTIONS(2517), - [anon_sym_varray] = ACTIONS(2517), - [anon_sym_darray] = ACTIONS(2517), - [anon_sym_vec] = ACTIONS(2517), - [anon_sym_dict] = ACTIONS(2517), - [anon_sym_keyset] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_trait] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2519), - [sym_final_modifier] = ACTIONS(2517), - [sym_xhp_modifier] = ACTIONS(2517), - [sym_xhp_identifier] = ACTIONS(2517), - [sym_xhp_class_identifier] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1694] = { - [sym_identifier] = ACTIONS(2505), - [sym_variable] = ACTIONS(2507), - [sym_pipe_variable] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_newtype] = ACTIONS(2505), - [anon_sym_shape] = ACTIONS(2505), - [anon_sym_tuple] = ACTIONS(2505), - [anon_sym_clone] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_print] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_include] = ACTIONS(2505), - [anon_sym_include_once] = ACTIONS(2505), - [anon_sym_require] = ACTIONS(2505), - [anon_sym_require_once] = ACTIONS(2505), - [anon_sym_BSLASH] = ACTIONS(2507), - [anon_sym_self] = ACTIONS(2505), - [anon_sym_parent] = ACTIONS(2505), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_LT_LT_LT] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_echo] = ACTIONS(2505), - [anon_sym_unset] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_concurrent] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_foreach] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [sym_float] = ACTIONS(2507), - [sym_integer] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_True] = ACTIONS(2505), - [anon_sym_TRUE] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_False] = ACTIONS(2505), - [anon_sym_FALSE] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [anon_sym_Null] = ACTIONS(2505), - [anon_sym_NULL] = ACTIONS(2505), - [sym_string] = ACTIONS(2507), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_array] = ACTIONS(2505), - [anon_sym_varray] = ACTIONS(2505), - [anon_sym_darray] = ACTIONS(2505), - [anon_sym_vec] = ACTIONS(2505), - [anon_sym_dict] = ACTIONS(2505), - [anon_sym_keyset] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_trait] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2507), - [sym_final_modifier] = ACTIONS(2505), - [sym_xhp_modifier] = ACTIONS(2505), - [sym_xhp_identifier] = ACTIONS(2505), - [sym_xhp_class_identifier] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2541), + [sym_variable] = ACTIONS(2543), + [sym_pipe_variable] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_newtype] = ACTIONS(2541), + [anon_sym_shape] = ACTIONS(2541), + [anon_sym_tuple] = ACTIONS(2541), + [anon_sym_clone] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_include] = ACTIONS(2541), + [anon_sym_include_once] = ACTIONS(2541), + [anon_sym_require] = ACTIONS(2541), + [anon_sym_require_once] = ACTIONS(2541), + [anon_sym_BSLASH] = ACTIONS(2543), + [anon_sym_self] = ACTIONS(2541), + [anon_sym_parent] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_LT_LT] = ACTIONS(2541), + [anon_sym_LT_LT_LT] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_echo] = ACTIONS(2541), + [anon_sym_unset] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_concurrent] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_function] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_foreach] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [sym_float] = ACTIONS(2543), + [sym_integer] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_True] = ACTIONS(2541), + [anon_sym_TRUE] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_False] = ACTIONS(2541), + [anon_sym_FALSE] = ACTIONS(2541), + [anon_sym_null] = ACTIONS(2541), + [anon_sym_Null] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [sym_string] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_array] = ACTIONS(2541), + [anon_sym_varray] = ACTIONS(2541), + [anon_sym_darray] = ACTIONS(2541), + [anon_sym_vec] = ACTIONS(2541), + [anon_sym_dict] = ACTIONS(2541), + [anon_sym_keyset] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_list] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_await] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_interface] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_abstract] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2543), + [sym_final_modifier] = ACTIONS(2541), + [sym_xhp_modifier] = ACTIONS(2541), + [sym_xhp_identifier] = ACTIONS(2541), + [sym_xhp_class_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(3), }, [1695] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1696] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - }, - [1697] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1697] = { + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1698] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1699] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1700] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1701] = { - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2529), - [sym_variable] = ACTIONS(2531), - [sym_pipe_variable] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_newtype] = ACTIONS(2529), - [anon_sym_shape] = ACTIONS(2529), - [anon_sym_tuple] = ACTIONS(2529), - [anon_sym_clone] = ACTIONS(2529), - [anon_sym_new] = ACTIONS(2529), - [anon_sym_print] = ACTIONS(2529), - [anon_sym_namespace] = ACTIONS(2529), - [anon_sym_include] = ACTIONS(2529), - [anon_sym_include_once] = ACTIONS(2529), - [anon_sym_require] = ACTIONS(2529), - [anon_sym_require_once] = ACTIONS(2529), - [anon_sym_BSLASH] = ACTIONS(2531), - [anon_sym_self] = ACTIONS(2529), - [anon_sym_parent] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_LT_LT_LT] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_throw] = ACTIONS(2529), - [anon_sym_echo] = ACTIONS(2529), - [anon_sym_unset] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_concurrent] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_function] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_switch] = ACTIONS(2529), - [anon_sym_foreach] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_do] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_using] = ACTIONS(2529), - [sym_float] = ACTIONS(2531), - [sym_integer] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_True] = ACTIONS(2529), - [anon_sym_TRUE] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_False] = ACTIONS(2529), - [anon_sym_FALSE] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [anon_sym_Null] = ACTIONS(2529), - [anon_sym_NULL] = ACTIONS(2529), - [sym_string] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_array] = ACTIONS(2529), - [anon_sym_varray] = ACTIONS(2529), - [anon_sym_darray] = ACTIONS(2529), - [anon_sym_vec] = ACTIONS(2529), - [anon_sym_dict] = ACTIONS(2529), - [anon_sym_keyset] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_list] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_await] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_interface] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_abstract] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2531), - [sym_final_modifier] = ACTIONS(2529), - [sym_xhp_modifier] = ACTIONS(2529), - [sym_xhp_identifier] = ACTIONS(2529), - [sym_xhp_class_identifier] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1702] = { - [ts_builtin_sym_end] = ACTIONS(2331), - [sym_identifier] = ACTIONS(2329), - [sym_variable] = ACTIONS(2331), - [sym_pipe_variable] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_newtype] = ACTIONS(2329), - [anon_sym_shape] = ACTIONS(2329), - [anon_sym_tuple] = ACTIONS(2329), - [anon_sym_clone] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_print] = ACTIONS(2329), - [anon_sym_namespace] = ACTIONS(2329), - [anon_sym_include] = ACTIONS(2329), - [anon_sym_include_once] = ACTIONS(2329), - [anon_sym_require] = ACTIONS(2329), - [anon_sym_require_once] = ACTIONS(2329), - [anon_sym_BSLASH] = ACTIONS(2331), - [anon_sym_self] = ACTIONS(2329), - [anon_sym_parent] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_LT_LT] = ACTIONS(2329), - [anon_sym_LT_LT_LT] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_throw] = ACTIONS(2329), - [anon_sym_echo] = ACTIONS(2329), - [anon_sym_unset] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_concurrent] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_function] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_switch] = ACTIONS(2329), - [anon_sym_foreach] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_do] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_using] = ACTIONS(2329), - [sym_float] = ACTIONS(2331), - [sym_integer] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_True] = ACTIONS(2329), - [anon_sym_TRUE] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [anon_sym_False] = ACTIONS(2329), - [anon_sym_FALSE] = ACTIONS(2329), - [anon_sym_null] = ACTIONS(2329), - [anon_sym_Null] = ACTIONS(2329), - [anon_sym_NULL] = ACTIONS(2329), - [sym_string] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_array] = ACTIONS(2329), - [anon_sym_varray] = ACTIONS(2329), - [anon_sym_darray] = ACTIONS(2329), - [anon_sym_vec] = ACTIONS(2329), - [anon_sym_dict] = ACTIONS(2329), - [anon_sym_keyset] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_list] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_trait] = ACTIONS(2329), - [anon_sym_interface] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_abstract] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(2331), - [sym_final_modifier] = ACTIONS(2329), - [sym_xhp_modifier] = ACTIONS(2329), - [sym_xhp_identifier] = ACTIONS(2329), - [sym_xhp_class_identifier] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2133), + [sym_variable] = ACTIONS(2135), + [sym_pipe_variable] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_newtype] = ACTIONS(2133), + [anon_sym_shape] = ACTIONS(2133), + [anon_sym_tuple] = ACTIONS(2133), + [anon_sym_clone] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_namespace] = ACTIONS(2133), + [anon_sym_include] = ACTIONS(2133), + [anon_sym_include_once] = ACTIONS(2133), + [anon_sym_require] = ACTIONS(2133), + [anon_sym_require_once] = ACTIONS(2133), + [anon_sym_BSLASH] = ACTIONS(2135), + [anon_sym_self] = ACTIONS(2133), + [anon_sym_parent] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_LT_LT_LT] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_throw] = ACTIONS(2133), + [anon_sym_echo] = ACTIONS(2133), + [anon_sym_unset] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_concurrent] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_function] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_foreach] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(2133), + [sym_float] = ACTIONS(2135), + [sym_integer] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_True] = ACTIONS(2133), + [anon_sym_TRUE] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_False] = ACTIONS(2133), + [anon_sym_FALSE] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [anon_sym_Null] = ACTIONS(2133), + [anon_sym_NULL] = ACTIONS(2133), + [sym_string] = ACTIONS(2135), + [anon_sym_AT] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_array] = ACTIONS(2133), + [anon_sym_varray] = ACTIONS(2133), + [anon_sym_darray] = ACTIONS(2133), + [anon_sym_vec] = ACTIONS(2133), + [anon_sym_dict] = ACTIONS(2133), + [anon_sym_keyset] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_class] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_abstract] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2135), + [sym_final_modifier] = ACTIONS(2133), + [sym_xhp_modifier] = ACTIONS(2133), + [sym_xhp_identifier] = ACTIONS(2133), + [sym_xhp_class_identifier] = ACTIONS(2135), [sym_comment] = ACTIONS(3), }, [1703] = { - [sym_identifier] = ACTIONS(2525), - [sym_variable] = ACTIONS(2527), - [sym_pipe_variable] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_newtype] = ACTIONS(2525), - [anon_sym_shape] = ACTIONS(2525), - [anon_sym_tuple] = ACTIONS(2525), - [anon_sym_clone] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_include] = ACTIONS(2525), - [anon_sym_include_once] = ACTIONS(2525), - [anon_sym_require] = ACTIONS(2525), - [anon_sym_require_once] = ACTIONS(2525), - [anon_sym_BSLASH] = ACTIONS(2527), - [anon_sym_self] = ACTIONS(2525), - [anon_sym_parent] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(2525), - [anon_sym_LT_LT_LT] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_echo] = ACTIONS(2525), - [anon_sym_unset] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_concurrent] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_foreach] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [sym_float] = ACTIONS(2527), - [sym_integer] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_True] = ACTIONS(2525), - [anon_sym_TRUE] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_False] = ACTIONS(2525), - [anon_sym_FALSE] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2525), - [anon_sym_Null] = ACTIONS(2525), - [anon_sym_NULL] = ACTIONS(2525), - [sym_string] = ACTIONS(2527), - [anon_sym_AT] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_array] = ACTIONS(2525), - [anon_sym_varray] = ACTIONS(2525), - [anon_sym_darray] = ACTIONS(2525), - [anon_sym_vec] = ACTIONS(2525), - [anon_sym_dict] = ACTIONS(2525), - [anon_sym_keyset] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_trait] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2527), - [sym_final_modifier] = ACTIONS(2525), - [sym_xhp_modifier] = ACTIONS(2525), - [sym_xhp_identifier] = ACTIONS(2525), - [sym_xhp_class_identifier] = ACTIONS(2527), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1704] = { - [sym_identifier] = ACTIONS(2521), - [sym_variable] = ACTIONS(2523), - [sym_pipe_variable] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_newtype] = ACTIONS(2521), - [anon_sym_shape] = ACTIONS(2521), - [anon_sym_tuple] = ACTIONS(2521), - [anon_sym_clone] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_print] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2521), - [anon_sym_include_once] = ACTIONS(2521), - [anon_sym_require] = ACTIONS(2521), - [anon_sym_require_once] = ACTIONS(2521), - [anon_sym_BSLASH] = ACTIONS(2523), - [anon_sym_self] = ACTIONS(2521), - [anon_sym_parent] = ACTIONS(2521), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_LT_LT] = ACTIONS(2521), - [anon_sym_LT_LT_LT] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_echo] = ACTIONS(2521), - [anon_sym_unset] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_concurrent] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_foreach] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [sym_float] = ACTIONS(2523), - [sym_integer] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_True] = ACTIONS(2521), - [anon_sym_TRUE] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_False] = ACTIONS(2521), - [anon_sym_FALSE] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [anon_sym_Null] = ACTIONS(2521), - [anon_sym_NULL] = ACTIONS(2521), - [sym_string] = ACTIONS(2523), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_array] = ACTIONS(2521), - [anon_sym_varray] = ACTIONS(2521), - [anon_sym_darray] = ACTIONS(2521), - [anon_sym_vec] = ACTIONS(2521), - [anon_sym_dict] = ACTIONS(2521), - [anon_sym_keyset] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_trait] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2523), - [sym_final_modifier] = ACTIONS(2521), - [sym_xhp_modifier] = ACTIONS(2521), - [sym_xhp_identifier] = ACTIONS(2521), - [sym_xhp_class_identifier] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1705] = { - [sym_identifier] = ACTIONS(2509), - [sym_variable] = ACTIONS(2511), - [sym_pipe_variable] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_newtype] = ACTIONS(2509), - [anon_sym_shape] = ACTIONS(2509), - [anon_sym_tuple] = ACTIONS(2509), - [anon_sym_clone] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_include] = ACTIONS(2509), - [anon_sym_include_once] = ACTIONS(2509), - [anon_sym_require] = ACTIONS(2509), - [anon_sym_require_once] = ACTIONS(2509), - [anon_sym_BSLASH] = ACTIONS(2511), - [anon_sym_self] = ACTIONS(2509), - [anon_sym_parent] = ACTIONS(2509), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_LT_LT_LT] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_echo] = ACTIONS(2509), - [anon_sym_unset] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_concurrent] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_foreach] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [sym_float] = ACTIONS(2511), - [sym_integer] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2509), - [anon_sym_True] = ACTIONS(2509), - [anon_sym_TRUE] = ACTIONS(2509), - [anon_sym_false] = ACTIONS(2509), - [anon_sym_False] = ACTIONS(2509), - [anon_sym_FALSE] = ACTIONS(2509), - [anon_sym_null] = ACTIONS(2509), - [anon_sym_Null] = ACTIONS(2509), - [anon_sym_NULL] = ACTIONS(2509), - [sym_string] = ACTIONS(2511), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_array] = ACTIONS(2509), - [anon_sym_varray] = ACTIONS(2509), - [anon_sym_darray] = ACTIONS(2509), - [anon_sym_vec] = ACTIONS(2509), - [anon_sym_dict] = ACTIONS(2509), - [anon_sym_keyset] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_trait] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2511), - [sym_final_modifier] = ACTIONS(2509), - [sym_xhp_modifier] = ACTIONS(2509), - [sym_xhp_identifier] = ACTIONS(2509), - [sym_xhp_class_identifier] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1706] = { - [sym_identifier] = ACTIONS(2213), - [sym_variable] = ACTIONS(2215), - [sym_pipe_variable] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_newtype] = ACTIONS(2213), - [anon_sym_shape] = ACTIONS(2213), - [anon_sym_tuple] = ACTIONS(2213), - [anon_sym_clone] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_print] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_include] = ACTIONS(2213), - [anon_sym_include_once] = ACTIONS(2213), - [anon_sym_require] = ACTIONS(2213), - [anon_sym_require_once] = ACTIONS(2213), - [anon_sym_BSLASH] = ACTIONS(2215), - [anon_sym_self] = ACTIONS(2213), - [anon_sym_parent] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_LT_LT_LT] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_echo] = ACTIONS(2213), - [anon_sym_unset] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_concurrent] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_foreach] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [sym_float] = ACTIONS(2215), - [sym_integer] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_True] = ACTIONS(2213), - [anon_sym_TRUE] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_False] = ACTIONS(2213), - [anon_sym_FALSE] = ACTIONS(2213), - [anon_sym_null] = ACTIONS(2213), - [anon_sym_Null] = ACTIONS(2213), - [anon_sym_NULL] = ACTIONS(2213), - [sym_string] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_array] = ACTIONS(2213), - [anon_sym_varray] = ACTIONS(2213), - [anon_sym_darray] = ACTIONS(2213), - [anon_sym_vec] = ACTIONS(2213), - [anon_sym_dict] = ACTIONS(2213), - [anon_sym_keyset] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_list] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2215), - [sym_final_modifier] = ACTIONS(2213), - [sym_xhp_modifier] = ACTIONS(2213), - [sym_xhp_identifier] = ACTIONS(2213), - [sym_xhp_class_identifier] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2593), + [sym_variable] = ACTIONS(2595), + [sym_pipe_variable] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_newtype] = ACTIONS(2593), + [anon_sym_shape] = ACTIONS(2593), + [anon_sym_tuple] = ACTIONS(2593), + [anon_sym_clone] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_include] = ACTIONS(2593), + [anon_sym_include_once] = ACTIONS(2593), + [anon_sym_require] = ACTIONS(2593), + [anon_sym_require_once] = ACTIONS(2593), + [anon_sym_BSLASH] = ACTIONS(2595), + [anon_sym_self] = ACTIONS(2593), + [anon_sym_parent] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_LT_LT] = ACTIONS(2593), + [anon_sym_LT_LT_LT] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_echo] = ACTIONS(2593), + [anon_sym_unset] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_concurrent] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_function] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_foreach] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [sym_float] = ACTIONS(2595), + [sym_integer] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_True] = ACTIONS(2593), + [anon_sym_TRUE] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_False] = ACTIONS(2593), + [anon_sym_FALSE] = ACTIONS(2593), + [anon_sym_null] = ACTIONS(2593), + [anon_sym_Null] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [sym_string] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_array] = ACTIONS(2593), + [anon_sym_varray] = ACTIONS(2593), + [anon_sym_darray] = ACTIONS(2593), + [anon_sym_vec] = ACTIONS(2593), + [anon_sym_dict] = ACTIONS(2593), + [anon_sym_keyset] = ACTIONS(2593), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_list] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_await] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_interface] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_abstract] = ACTIONS(2593), + [anon_sym_POUND] = ACTIONS(2595), + [sym_final_modifier] = ACTIONS(2593), + [sym_xhp_modifier] = ACTIONS(2593), + [sym_xhp_identifier] = ACTIONS(2593), + [sym_xhp_class_identifier] = ACTIONS(2595), [sym_comment] = ACTIONS(3), }, [1707] = { - [sym_identifier] = ACTIONS(2477), - [sym_variable] = ACTIONS(2479), - [sym_pipe_variable] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_newtype] = ACTIONS(2477), - [anon_sym_shape] = ACTIONS(2477), - [anon_sym_tuple] = ACTIONS(2477), - [anon_sym_clone] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_print] = ACTIONS(2477), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_LT_LT_LT] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2477), - [anon_sym_echo] = ACTIONS(2477), - [anon_sym_unset] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_concurrent] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_switch] = ACTIONS(2477), - [anon_sym_foreach] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_using] = ACTIONS(2477), - [sym_float] = ACTIONS(2479), - [sym_integer] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_True] = ACTIONS(2477), - [anon_sym_TRUE] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [anon_sym_False] = ACTIONS(2477), - [anon_sym_FALSE] = ACTIONS(2477), - [anon_sym_null] = ACTIONS(2477), - [anon_sym_Null] = ACTIONS(2477), - [anon_sym_NULL] = ACTIONS(2477), - [sym_string] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_array] = ACTIONS(2477), - [anon_sym_varray] = ACTIONS(2477), - [anon_sym_darray] = ACTIONS(2477), - [anon_sym_vec] = ACTIONS(2477), - [anon_sym_dict] = ACTIONS(2477), - [anon_sym_keyset] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_trait] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_abstract] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2479), - [sym_final_modifier] = ACTIONS(2477), - [sym_xhp_modifier] = ACTIONS(2477), - [sym_xhp_identifier] = ACTIONS(2477), - [sym_xhp_class_identifier] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2613), + [sym_variable] = ACTIONS(2615), + [sym_pipe_variable] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_newtype] = ACTIONS(2613), + [anon_sym_shape] = ACTIONS(2613), + [anon_sym_tuple] = ACTIONS(2613), + [anon_sym_clone] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(2613), + [anon_sym_print] = ACTIONS(2613), + [anon_sym_namespace] = ACTIONS(2613), + [anon_sym_include] = ACTIONS(2613), + [anon_sym_include_once] = ACTIONS(2613), + [anon_sym_require] = ACTIONS(2613), + [anon_sym_require_once] = ACTIONS(2613), + [anon_sym_BSLASH] = ACTIONS(2615), + [anon_sym_self] = ACTIONS(2613), + [anon_sym_parent] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2613), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_throw] = ACTIONS(2613), + [anon_sym_echo] = ACTIONS(2613), + [anon_sym_unset] = ACTIONS(2613), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_concurrent] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_function] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_switch] = ACTIONS(2613), + [anon_sym_foreach] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [anon_sym_using] = ACTIONS(2613), + [sym_float] = ACTIONS(2615), + [sym_integer] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_True] = ACTIONS(2613), + [anon_sym_TRUE] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_False] = ACTIONS(2613), + [anon_sym_FALSE] = ACTIONS(2613), + [anon_sym_null] = ACTIONS(2613), + [anon_sym_Null] = ACTIONS(2613), + [anon_sym_NULL] = ACTIONS(2613), + [sym_string] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_array] = ACTIONS(2613), + [anon_sym_varray] = ACTIONS(2613), + [anon_sym_darray] = ACTIONS(2613), + [anon_sym_vec] = ACTIONS(2613), + [anon_sym_dict] = ACTIONS(2613), + [anon_sym_keyset] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_PLUS] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [anon_sym_list] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_await] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_interface] = ACTIONS(2613), + [anon_sym_class] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_abstract] = ACTIONS(2613), + [anon_sym_POUND] = ACTIONS(2615), + [sym_final_modifier] = ACTIONS(2613), + [sym_xhp_modifier] = ACTIONS(2613), + [sym_xhp_identifier] = ACTIONS(2613), + [sym_xhp_class_identifier] = ACTIONS(2615), [sym_comment] = ACTIONS(3), }, [1708] = { - [sym_identifier] = ACTIONS(2493), - [sym_variable] = ACTIONS(2495), - [sym_pipe_variable] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2493), - [anon_sym_newtype] = ACTIONS(2493), - [anon_sym_shape] = ACTIONS(2493), - [anon_sym_tuple] = ACTIONS(2493), - [anon_sym_clone] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_print] = ACTIONS(2493), - [anon_sym_namespace] = ACTIONS(2493), - [anon_sym_include] = ACTIONS(2493), - [anon_sym_include_once] = ACTIONS(2493), - [anon_sym_require] = ACTIONS(2493), - [anon_sym_require_once] = ACTIONS(2493), - [anon_sym_BSLASH] = ACTIONS(2495), - [anon_sym_self] = ACTIONS(2493), - [anon_sym_parent] = ACTIONS(2493), - [anon_sym_static] = ACTIONS(2493), - [anon_sym_LT_LT] = ACTIONS(2493), - [anon_sym_LT_LT_LT] = ACTIONS(2495), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_throw] = ACTIONS(2493), - [anon_sym_echo] = ACTIONS(2493), - [anon_sym_unset] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_concurrent] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_function] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_switch] = ACTIONS(2493), - [anon_sym_foreach] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_using] = ACTIONS(2493), - [sym_float] = ACTIONS(2495), - [sym_integer] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_True] = ACTIONS(2493), - [anon_sym_TRUE] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_False] = ACTIONS(2493), - [anon_sym_FALSE] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [anon_sym_Null] = ACTIONS(2493), - [anon_sym_NULL] = ACTIONS(2493), - [sym_string] = ACTIONS(2495), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_array] = ACTIONS(2493), - [anon_sym_varray] = ACTIONS(2493), - [anon_sym_darray] = ACTIONS(2493), - [anon_sym_vec] = ACTIONS(2493), - [anon_sym_dict] = ACTIONS(2493), - [anon_sym_keyset] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2493), - [anon_sym_async] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2493), - [anon_sym_interface] = ACTIONS(2493), - [anon_sym_class] = ACTIONS(2493), - [anon_sym_enum] = ACTIONS(2493), - [anon_sym_abstract] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2495), - [sym_final_modifier] = ACTIONS(2493), - [sym_xhp_modifier] = ACTIONS(2493), - [sym_xhp_identifier] = ACTIONS(2493), - [sym_xhp_class_identifier] = ACTIONS(2495), + [ts_builtin_sym_end] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2457), + [sym_variable] = ACTIONS(2459), + [sym_pipe_variable] = ACTIONS(2459), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_newtype] = ACTIONS(2457), + [anon_sym_shape] = ACTIONS(2457), + [anon_sym_tuple] = ACTIONS(2457), + [anon_sym_clone] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_print] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_include] = ACTIONS(2457), + [anon_sym_include_once] = ACTIONS(2457), + [anon_sym_require] = ACTIONS(2457), + [anon_sym_require_once] = ACTIONS(2457), + [anon_sym_BSLASH] = ACTIONS(2459), + [anon_sym_self] = ACTIONS(2457), + [anon_sym_parent] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_LT_LT_LT] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_echo] = ACTIONS(2457), + [anon_sym_unset] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_concurrent] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_foreach] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_integer] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_True] = ACTIONS(2457), + [anon_sym_TRUE] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_False] = ACTIONS(2457), + [anon_sym_FALSE] = ACTIONS(2457), + [anon_sym_null] = ACTIONS(2457), + [anon_sym_Null] = ACTIONS(2457), + [anon_sym_NULL] = ACTIONS(2457), + [sym_string] = ACTIONS(2459), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_array] = ACTIONS(2457), + [anon_sym_varray] = ACTIONS(2457), + [anon_sym_darray] = ACTIONS(2457), + [anon_sym_vec] = ACTIONS(2457), + [anon_sym_dict] = ACTIONS(2457), + [anon_sym_keyset] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_trait] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2459), + [sym_final_modifier] = ACTIONS(2457), + [sym_xhp_modifier] = ACTIONS(2457), + [sym_xhp_identifier] = ACTIONS(2457), + [sym_xhp_class_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(3), }, [1709] = { - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2461), - [sym_variable] = ACTIONS(2463), - [sym_pipe_variable] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_newtype] = ACTIONS(2461), - [anon_sym_shape] = ACTIONS(2461), - [anon_sym_tuple] = ACTIONS(2461), - [anon_sym_clone] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_print] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_include] = ACTIONS(2461), - [anon_sym_include_once] = ACTIONS(2461), - [anon_sym_require] = ACTIONS(2461), - [anon_sym_require_once] = ACTIONS(2461), - [anon_sym_BSLASH] = ACTIONS(2463), - [anon_sym_self] = ACTIONS(2461), - [anon_sym_parent] = ACTIONS(2461), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_LT_LT_LT] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_echo] = ACTIONS(2461), - [anon_sym_unset] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_concurrent] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_foreach] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [sym_float] = ACTIONS(2463), - [sym_integer] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_True] = ACTIONS(2461), - [anon_sym_TRUE] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_False] = ACTIONS(2461), - [anon_sym_FALSE] = ACTIONS(2461), - [anon_sym_null] = ACTIONS(2461), - [anon_sym_Null] = ACTIONS(2461), - [anon_sym_NULL] = ACTIONS(2461), - [sym_string] = ACTIONS(2463), - [anon_sym_AT] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_array] = ACTIONS(2461), - [anon_sym_varray] = ACTIONS(2461), - [anon_sym_darray] = ACTIONS(2461), - [anon_sym_vec] = ACTIONS(2461), - [anon_sym_dict] = ACTIONS(2461), - [anon_sym_keyset] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_list] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_trait] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(2463), - [sym_final_modifier] = ACTIONS(2461), - [sym_xhp_modifier] = ACTIONS(2461), - [sym_xhp_identifier] = ACTIONS(2461), - [sym_xhp_class_identifier] = ACTIONS(2463), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1710] = { - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [sym_variable] = ACTIONS(2147), - [sym_pipe_variable] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_newtype] = ACTIONS(2145), - [anon_sym_shape] = ACTIONS(2145), - [anon_sym_tuple] = ACTIONS(2145), - [anon_sym_clone] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_print] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_include_once] = ACTIONS(2145), - [anon_sym_require] = ACTIONS(2145), - [anon_sym_require_once] = ACTIONS(2145), - [anon_sym_BSLASH] = ACTIONS(2147), - [anon_sym_self] = ACTIONS(2145), - [anon_sym_parent] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_LT_LT_LT] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_echo] = ACTIONS(2145), - [anon_sym_unset] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_concurrent] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_foreach] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [sym_float] = ACTIONS(2147), - [sym_integer] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_True] = ACTIONS(2145), - [anon_sym_TRUE] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_False] = ACTIONS(2145), - [anon_sym_FALSE] = ACTIONS(2145), - [anon_sym_null] = ACTIONS(2145), - [anon_sym_Null] = ACTIONS(2145), - [anon_sym_NULL] = ACTIONS(2145), - [sym_string] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_array] = ACTIONS(2145), - [anon_sym_varray] = ACTIONS(2145), - [anon_sym_darray] = ACTIONS(2145), - [anon_sym_vec] = ACTIONS(2145), - [anon_sym_dict] = ACTIONS(2145), - [anon_sym_keyset] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_list] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2147), - [sym_final_modifier] = ACTIONS(2145), - [sym_xhp_modifier] = ACTIONS(2145), - [sym_xhp_identifier] = ACTIONS(2145), - [sym_xhp_class_identifier] = ACTIONS(2147), + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2525), + [sym_variable] = ACTIONS(2527), + [sym_pipe_variable] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_newtype] = ACTIONS(2525), + [anon_sym_shape] = ACTIONS(2525), + [anon_sym_tuple] = ACTIONS(2525), + [anon_sym_clone] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_print] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_include] = ACTIONS(2525), + [anon_sym_include_once] = ACTIONS(2525), + [anon_sym_require] = ACTIONS(2525), + [anon_sym_require_once] = ACTIONS(2525), + [anon_sym_BSLASH] = ACTIONS(2527), + [anon_sym_self] = ACTIONS(2525), + [anon_sym_parent] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_LT_LT] = ACTIONS(2525), + [anon_sym_LT_LT_LT] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_echo] = ACTIONS(2525), + [anon_sym_unset] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_concurrent] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_function] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_foreach] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [sym_float] = ACTIONS(2527), + [sym_integer] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_True] = ACTIONS(2525), + [anon_sym_TRUE] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_False] = ACTIONS(2525), + [anon_sym_FALSE] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2525), + [anon_sym_Null] = ACTIONS(2525), + [anon_sym_NULL] = ACTIONS(2525), + [sym_string] = ACTIONS(2527), + [anon_sym_AT] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_array] = ACTIONS(2525), + [anon_sym_varray] = ACTIONS(2525), + [anon_sym_darray] = ACTIONS(2525), + [anon_sym_vec] = ACTIONS(2525), + [anon_sym_dict] = ACTIONS(2525), + [anon_sym_keyset] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_list] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_await] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_interface] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_abstract] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2527), + [sym_final_modifier] = ACTIONS(2525), + [sym_xhp_modifier] = ACTIONS(2525), + [sym_xhp_identifier] = ACTIONS(2525), + [sym_xhp_class_identifier] = ACTIONS(2527), [sym_comment] = ACTIONS(3), }, [1711] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2117), - [sym_variable] = ACTIONS(2119), - [sym_pipe_variable] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_newtype] = ACTIONS(2117), - [anon_sym_shape] = ACTIONS(2117), - [anon_sym_tuple] = ACTIONS(2117), - [anon_sym_clone] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_print] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_LT_LT_LT] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_throw] = ACTIONS(2117), - [anon_sym_echo] = ACTIONS(2117), - [anon_sym_unset] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_concurrent] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_foreach] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [sym_float] = ACTIONS(2119), - [sym_integer] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_True] = ACTIONS(2117), - [anon_sym_TRUE] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_False] = ACTIONS(2117), - [anon_sym_FALSE] = ACTIONS(2117), - [anon_sym_null] = ACTIONS(2117), - [anon_sym_Null] = ACTIONS(2117), - [anon_sym_NULL] = ACTIONS(2117), - [sym_string] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_array] = ACTIONS(2117), - [anon_sym_varray] = ACTIONS(2117), - [anon_sym_darray] = ACTIONS(2117), - [anon_sym_vec] = ACTIONS(2117), - [anon_sym_dict] = ACTIONS(2117), - [anon_sym_keyset] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_trait] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2119), - [sym_final_modifier] = ACTIONS(2117), - [sym_xhp_modifier] = ACTIONS(2117), - [sym_xhp_identifier] = ACTIONS(2117), - [sym_xhp_class_identifier] = ACTIONS(2119), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1712] = { - [sym_identifier] = ACTIONS(2189), - [sym_variable] = ACTIONS(2191), - [sym_pipe_variable] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_newtype] = ACTIONS(2189), - [anon_sym_shape] = ACTIONS(2189), - [anon_sym_tuple] = ACTIONS(2189), - [anon_sym_clone] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_print] = ACTIONS(2189), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_include_once] = ACTIONS(2189), - [anon_sym_require] = ACTIONS(2189), - [anon_sym_require_once] = ACTIONS(2189), - [anon_sym_BSLASH] = ACTIONS(2191), - [anon_sym_self] = ACTIONS(2189), - [anon_sym_parent] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_LT_LT_LT] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_echo] = ACTIONS(2189), - [anon_sym_unset] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_concurrent] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_foreach] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_using] = ACTIONS(2189), - [sym_float] = ACTIONS(2191), - [sym_integer] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_True] = ACTIONS(2189), - [anon_sym_TRUE] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_False] = ACTIONS(2189), - [anon_sym_FALSE] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_Null] = ACTIONS(2189), - [anon_sym_NULL] = ACTIONS(2189), - [sym_string] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_array] = ACTIONS(2189), - [anon_sym_varray] = ACTIONS(2189), - [anon_sym_darray] = ACTIONS(2189), - [anon_sym_vec] = ACTIONS(2189), - [anon_sym_dict] = ACTIONS(2189), - [anon_sym_keyset] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_list] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2191), - [sym_final_modifier] = ACTIONS(2189), - [sym_xhp_modifier] = ACTIONS(2189), - [sym_xhp_identifier] = ACTIONS(2189), - [sym_xhp_class_identifier] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2039), + [sym_variable] = ACTIONS(2041), + [sym_pipe_variable] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_newtype] = ACTIONS(2039), + [anon_sym_shape] = ACTIONS(2039), + [anon_sym_tuple] = ACTIONS(2039), + [anon_sym_clone] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_include_once] = ACTIONS(2039), + [anon_sym_require] = ACTIONS(2039), + [anon_sym_require_once] = ACTIONS(2039), + [anon_sym_BSLASH] = ACTIONS(2041), + [anon_sym_self] = ACTIONS(2039), + [anon_sym_parent] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_LT_LT_LT] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_throw] = ACTIONS(2039), + [anon_sym_echo] = ACTIONS(2039), + [anon_sym_unset] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_concurrent] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_function] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_foreach] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_using] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [sym_integer] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_True] = ACTIONS(2039), + [anon_sym_TRUE] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_False] = ACTIONS(2039), + [anon_sym_FALSE] = ACTIONS(2039), + [anon_sym_null] = ACTIONS(2039), + [anon_sym_Null] = ACTIONS(2039), + [anon_sym_NULL] = ACTIONS(2039), + [sym_string] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_array] = ACTIONS(2039), + [anon_sym_varray] = ACTIONS(2039), + [anon_sym_darray] = ACTIONS(2039), + [anon_sym_vec] = ACTIONS(2039), + [anon_sym_dict] = ACTIONS(2039), + [anon_sym_keyset] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_list] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_interface] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_abstract] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2041), + [sym_final_modifier] = ACTIONS(2039), + [sym_xhp_modifier] = ACTIONS(2039), + [sym_xhp_identifier] = ACTIONS(2039), + [sym_xhp_class_identifier] = ACTIONS(2041), [sym_comment] = ACTIONS(3), }, [1713] = { - [sym_identifier] = ACTIONS(2489), - [sym_variable] = ACTIONS(2491), - [sym_pipe_variable] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2489), - [anon_sym_newtype] = ACTIONS(2489), - [anon_sym_shape] = ACTIONS(2489), - [anon_sym_tuple] = ACTIONS(2489), - [anon_sym_clone] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_print] = ACTIONS(2489), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_include] = ACTIONS(2489), - [anon_sym_include_once] = ACTIONS(2489), - [anon_sym_require] = ACTIONS(2489), - [anon_sym_require_once] = ACTIONS(2489), - [anon_sym_BSLASH] = ACTIONS(2491), - [anon_sym_self] = ACTIONS(2489), - [anon_sym_parent] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2489), - [anon_sym_LT_LT] = ACTIONS(2489), - [anon_sym_LT_LT_LT] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_throw] = ACTIONS(2489), - [anon_sym_echo] = ACTIONS(2489), - [anon_sym_unset] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_concurrent] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_function] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_switch] = ACTIONS(2489), - [anon_sym_foreach] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_using] = ACTIONS(2489), - [sym_float] = ACTIONS(2491), - [sym_integer] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_True] = ACTIONS(2489), - [anon_sym_TRUE] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_False] = ACTIONS(2489), - [anon_sym_FALSE] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [anon_sym_Null] = ACTIONS(2489), - [anon_sym_NULL] = ACTIONS(2489), - [sym_string] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_array] = ACTIONS(2489), - [anon_sym_varray] = ACTIONS(2489), - [anon_sym_darray] = ACTIONS(2489), - [anon_sym_vec] = ACTIONS(2489), - [anon_sym_dict] = ACTIONS(2489), - [anon_sym_keyset] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2491), - [anon_sym_await] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_trait] = ACTIONS(2489), - [anon_sym_interface] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2489), - [anon_sym_enum] = ACTIONS(2489), - [anon_sym_abstract] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2491), - [sym_final_modifier] = ACTIONS(2489), - [sym_xhp_modifier] = ACTIONS(2489), - [sym_xhp_identifier] = ACTIONS(2489), - [sym_xhp_class_identifier] = ACTIONS(2491), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1714] = { - [ts_builtin_sym_end] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2157), - [sym_variable] = ACTIONS(2159), - [sym_pipe_variable] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_newtype] = ACTIONS(2157), - [anon_sym_shape] = ACTIONS(2157), - [anon_sym_tuple] = ACTIONS(2157), - [anon_sym_clone] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_print] = ACTIONS(2157), - [anon_sym_namespace] = ACTIONS(2157), - [anon_sym_include] = ACTIONS(2157), - [anon_sym_include_once] = ACTIONS(2157), - [anon_sym_require] = ACTIONS(2157), - [anon_sym_require_once] = ACTIONS(2157), - [anon_sym_BSLASH] = ACTIONS(2159), - [anon_sym_self] = ACTIONS(2157), - [anon_sym_parent] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_LT_LT_LT] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_throw] = ACTIONS(2157), - [anon_sym_echo] = ACTIONS(2157), - [anon_sym_unset] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_concurrent] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_function] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_switch] = ACTIONS(2157), - [anon_sym_foreach] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(2157), - [sym_float] = ACTIONS(2159), - [sym_integer] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_True] = ACTIONS(2157), - [anon_sym_TRUE] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [anon_sym_False] = ACTIONS(2157), - [anon_sym_FALSE] = ACTIONS(2157), - [anon_sym_null] = ACTIONS(2157), - [anon_sym_Null] = ACTIONS(2157), - [anon_sym_NULL] = ACTIONS(2157), - [sym_string] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_array] = ACTIONS(2157), - [anon_sym_varray] = ACTIONS(2157), - [anon_sym_darray] = ACTIONS(2157), - [anon_sym_vec] = ACTIONS(2157), - [anon_sym_dict] = ACTIONS(2157), - [anon_sym_keyset] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_list] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_interface] = ACTIONS(2157), - [anon_sym_class] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_abstract] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(2159), - [sym_final_modifier] = ACTIONS(2157), - [sym_xhp_modifier] = ACTIONS(2157), - [sym_xhp_identifier] = ACTIONS(2157), - [sym_xhp_class_identifier] = ACTIONS(2159), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1715] = { - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2125), - [sym_variable] = ACTIONS(2127), - [sym_pipe_variable] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_newtype] = ACTIONS(2125), - [anon_sym_shape] = ACTIONS(2125), - [anon_sym_tuple] = ACTIONS(2125), - [anon_sym_clone] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_print] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_echo] = ACTIONS(2125), - [anon_sym_unset] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_concurrent] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_foreach] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [sym_float] = ACTIONS(2127), - [sym_integer] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_True] = ACTIONS(2125), - [anon_sym_TRUE] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [anon_sym_False] = ACTIONS(2125), - [anon_sym_FALSE] = ACTIONS(2125), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_Null] = ACTIONS(2125), - [anon_sym_NULL] = ACTIONS(2125), - [sym_string] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_array] = ACTIONS(2125), - [anon_sym_varray] = ACTIONS(2125), - [anon_sym_darray] = ACTIONS(2125), - [anon_sym_vec] = ACTIONS(2125), - [anon_sym_dict] = ACTIONS(2125), - [anon_sym_keyset] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2127), - [sym_final_modifier] = ACTIONS(2125), - [sym_xhp_modifier] = ACTIONS(2125), - [sym_xhp_identifier] = ACTIONS(2125), - [sym_xhp_class_identifier] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - }, - [1716] = { - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2129), - [sym_variable] = ACTIONS(2131), - [sym_pipe_variable] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_newtype] = ACTIONS(2129), - [anon_sym_shape] = ACTIONS(2129), - [anon_sym_tuple] = ACTIONS(2129), - [anon_sym_clone] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_print] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_include] = ACTIONS(2129), - [anon_sym_include_once] = ACTIONS(2129), - [anon_sym_require] = ACTIONS(2129), - [anon_sym_require_once] = ACTIONS(2129), - [anon_sym_BSLASH] = ACTIONS(2131), - [anon_sym_self] = ACTIONS(2129), - [anon_sym_parent] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_LT_LT_LT] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_throw] = ACTIONS(2129), - [anon_sym_echo] = ACTIONS(2129), - [anon_sym_unset] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_concurrent] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_function] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_foreach] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_using] = ACTIONS(2129), - [sym_float] = ACTIONS(2131), - [sym_integer] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_True] = ACTIONS(2129), - [anon_sym_TRUE] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [anon_sym_False] = ACTIONS(2129), - [anon_sym_FALSE] = ACTIONS(2129), - [anon_sym_null] = ACTIONS(2129), - [anon_sym_Null] = ACTIONS(2129), - [anon_sym_NULL] = ACTIONS(2129), - [sym_string] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_array] = ACTIONS(2129), - [anon_sym_varray] = ACTIONS(2129), - [anon_sym_darray] = ACTIONS(2129), - [anon_sym_vec] = ACTIONS(2129), - [anon_sym_dict] = ACTIONS(2129), - [anon_sym_keyset] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_list] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_trait] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [anon_sym_abstract] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(2131), - [sym_final_modifier] = ACTIONS(2129), - [sym_xhp_modifier] = ACTIONS(2129), - [sym_xhp_identifier] = ACTIONS(2129), - [sym_xhp_class_identifier] = ACTIONS(2131), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1716] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1717] = { - [sym_identifier] = ACTIONS(2353), - [sym_variable] = ACTIONS(2355), - [sym_pipe_variable] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_newtype] = ACTIONS(2353), - [anon_sym_shape] = ACTIONS(2353), - [anon_sym_tuple] = ACTIONS(2353), - [anon_sym_clone] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_print] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_include] = ACTIONS(2353), - [anon_sym_include_once] = ACTIONS(2353), - [anon_sym_require] = ACTIONS(2353), - [anon_sym_require_once] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2355), - [anon_sym_self] = ACTIONS(2353), - [anon_sym_parent] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_LT_LT_LT] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_echo] = ACTIONS(2353), - [anon_sym_unset] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_concurrent] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_foreach] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_using] = ACTIONS(2353), - [sym_float] = ACTIONS(2355), - [sym_integer] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_True] = ACTIONS(2353), - [anon_sym_TRUE] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_False] = ACTIONS(2353), - [anon_sym_FALSE] = ACTIONS(2353), - [anon_sym_null] = ACTIONS(2353), - [anon_sym_Null] = ACTIONS(2353), - [anon_sym_NULL] = ACTIONS(2353), - [sym_string] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_array] = ACTIONS(2353), - [anon_sym_varray] = ACTIONS(2353), - [anon_sym_darray] = ACTIONS(2353), - [anon_sym_vec] = ACTIONS(2353), - [anon_sym_dict] = ACTIONS(2353), - [anon_sym_keyset] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_list] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2355), - [sym_final_modifier] = ACTIONS(2353), - [sym_xhp_modifier] = ACTIONS(2353), - [sym_xhp_identifier] = ACTIONS(2353), - [sym_xhp_class_identifier] = ACTIONS(2355), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1718] = { - [sym_identifier] = ACTIONS(2485), - [sym_variable] = ACTIONS(2487), - [sym_pipe_variable] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2485), - [anon_sym_newtype] = ACTIONS(2485), - [anon_sym_shape] = ACTIONS(2485), - [anon_sym_tuple] = ACTIONS(2485), - [anon_sym_clone] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2485), - [anon_sym_namespace] = ACTIONS(2485), - [anon_sym_include] = ACTIONS(2485), - [anon_sym_include_once] = ACTIONS(2485), - [anon_sym_require] = ACTIONS(2485), - [anon_sym_require_once] = ACTIONS(2485), - [anon_sym_BSLASH] = ACTIONS(2487), - [anon_sym_self] = ACTIONS(2485), - [anon_sym_parent] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_LT_LT_LT] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_echo] = ACTIONS(2485), - [anon_sym_unset] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_concurrent] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_function] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_switch] = ACTIONS(2485), - [anon_sym_foreach] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_using] = ACTIONS(2485), - [sym_float] = ACTIONS(2487), - [sym_integer] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_True] = ACTIONS(2485), - [anon_sym_TRUE] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [anon_sym_False] = ACTIONS(2485), - [anon_sym_FALSE] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2485), - [anon_sym_Null] = ACTIONS(2485), - [anon_sym_NULL] = ACTIONS(2485), - [sym_string] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_array] = ACTIONS(2485), - [anon_sym_varray] = ACTIONS(2485), - [anon_sym_darray] = ACTIONS(2485), - [anon_sym_vec] = ACTIONS(2485), - [anon_sym_dict] = ACTIONS(2485), - [anon_sym_keyset] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2485), - [anon_sym_async] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2485), - [anon_sym_trait] = ACTIONS(2485), - [anon_sym_interface] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2485), - [anon_sym_enum] = ACTIONS(2485), - [anon_sym_abstract] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2487), - [sym_final_modifier] = ACTIONS(2485), - [sym_xhp_modifier] = ACTIONS(2485), - [sym_xhp_identifier] = ACTIONS(2485), - [sym_xhp_class_identifier] = ACTIONS(2487), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1719] = { - [sym_identifier] = ACTIONS(2381), - [sym_variable] = ACTIONS(2383), - [sym_pipe_variable] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_newtype] = ACTIONS(2381), - [anon_sym_shape] = ACTIONS(2381), - [anon_sym_tuple] = ACTIONS(2381), - [anon_sym_clone] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_print] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_include] = ACTIONS(2381), - [anon_sym_include_once] = ACTIONS(2381), - [anon_sym_require] = ACTIONS(2381), - [anon_sym_require_once] = ACTIONS(2381), - [anon_sym_BSLASH] = ACTIONS(2383), - [anon_sym_self] = ACTIONS(2381), - [anon_sym_parent] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_LT_LT] = ACTIONS(2381), - [anon_sym_LT_LT_LT] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_echo] = ACTIONS(2381), - [anon_sym_unset] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_concurrent] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_function] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_foreach] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [sym_float] = ACTIONS(2383), - [sym_integer] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_True] = ACTIONS(2381), - [anon_sym_TRUE] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_False] = ACTIONS(2381), - [anon_sym_FALSE] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [anon_sym_Null] = ACTIONS(2381), - [anon_sym_NULL] = ACTIONS(2381), - [sym_string] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_array] = ACTIONS(2381), - [anon_sym_varray] = ACTIONS(2381), - [anon_sym_darray] = ACTIONS(2381), - [anon_sym_vec] = ACTIONS(2381), - [anon_sym_dict] = ACTIONS(2381), - [anon_sym_keyset] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_list] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_abstract] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(2383), - [sym_final_modifier] = ACTIONS(2381), - [sym_xhp_modifier] = ACTIONS(2381), - [sym_xhp_identifier] = ACTIONS(2381), - [sym_xhp_class_identifier] = ACTIONS(2383), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1720] = { - [sym_identifier] = ACTIONS(2417), - [sym_variable] = ACTIONS(2419), - [sym_pipe_variable] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_newtype] = ACTIONS(2417), - [anon_sym_shape] = ACTIONS(2417), - [anon_sym_tuple] = ACTIONS(2417), - [anon_sym_clone] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_print] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_include] = ACTIONS(2417), - [anon_sym_include_once] = ACTIONS(2417), - [anon_sym_require] = ACTIONS(2417), - [anon_sym_require_once] = ACTIONS(2417), - [anon_sym_BSLASH] = ACTIONS(2419), - [anon_sym_self] = ACTIONS(2417), - [anon_sym_parent] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_LT_LT] = ACTIONS(2417), - [anon_sym_LT_LT_LT] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_echo] = ACTIONS(2417), - [anon_sym_unset] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_concurrent] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_function] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_foreach] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [sym_float] = ACTIONS(2419), - [sym_integer] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_True] = ACTIONS(2417), - [anon_sym_TRUE] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [anon_sym_False] = ACTIONS(2417), - [anon_sym_FALSE] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2417), - [anon_sym_Null] = ACTIONS(2417), - [anon_sym_NULL] = ACTIONS(2417), - [sym_string] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_array] = ACTIONS(2417), - [anon_sym_varray] = ACTIONS(2417), - [anon_sym_darray] = ACTIONS(2417), - [anon_sym_vec] = ACTIONS(2417), - [anon_sym_dict] = ACTIONS(2417), - [anon_sym_keyset] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_trait] = ACTIONS(2417), - [anon_sym_interface] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_abstract] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2419), - [sym_final_modifier] = ACTIONS(2417), - [sym_xhp_modifier] = ACTIONS(2417), - [sym_xhp_identifier] = ACTIONS(2417), - [sym_xhp_class_identifier] = ACTIONS(2419), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1721] = { - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2173), - [sym_variable] = ACTIONS(2175), - [sym_pipe_variable] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_newtype] = ACTIONS(2173), - [anon_sym_shape] = ACTIONS(2173), - [anon_sym_tuple] = ACTIONS(2173), - [anon_sym_clone] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_print] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_include] = ACTIONS(2173), - [anon_sym_include_once] = ACTIONS(2173), - [anon_sym_require] = ACTIONS(2173), - [anon_sym_require_once] = ACTIONS(2173), - [anon_sym_BSLASH] = ACTIONS(2175), - [anon_sym_self] = ACTIONS(2173), - [anon_sym_parent] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_LT_LT_LT] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_echo] = ACTIONS(2173), - [anon_sym_unset] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_concurrent] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_foreach] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [sym_float] = ACTIONS(2175), - [sym_integer] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_True] = ACTIONS(2173), - [anon_sym_TRUE] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [anon_sym_False] = ACTIONS(2173), - [anon_sym_FALSE] = ACTIONS(2173), - [anon_sym_null] = ACTIONS(2173), - [anon_sym_Null] = ACTIONS(2173), - [anon_sym_NULL] = ACTIONS(2173), - [sym_string] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_array] = ACTIONS(2173), - [anon_sym_varray] = ACTIONS(2173), - [anon_sym_darray] = ACTIONS(2173), - [anon_sym_vec] = ACTIONS(2173), - [anon_sym_dict] = ACTIONS(2173), - [anon_sym_keyset] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_list] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_abstract] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2175), - [sym_final_modifier] = ACTIONS(2173), - [sym_xhp_modifier] = ACTIONS(2173), - [sym_xhp_identifier] = ACTIONS(2173), - [sym_xhp_class_identifier] = ACTIONS(2175), - [sym_comment] = ACTIONS(3), - }, - [1722] = { - [sym_identifier] = ACTIONS(2429), - [sym_variable] = ACTIONS(2431), - [sym_pipe_variable] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_newtype] = ACTIONS(2429), - [anon_sym_shape] = ACTIONS(2429), - [anon_sym_tuple] = ACTIONS(2429), - [anon_sym_clone] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_include] = ACTIONS(2429), - [anon_sym_include_once] = ACTIONS(2429), - [anon_sym_require] = ACTIONS(2429), - [anon_sym_require_once] = ACTIONS(2429), - [anon_sym_BSLASH] = ACTIONS(2431), - [anon_sym_self] = ACTIONS(2429), - [anon_sym_parent] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), - [anon_sym_LT_LT_LT] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_echo] = ACTIONS(2429), - [anon_sym_unset] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_concurrent] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_foreach] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [sym_float] = ACTIONS(2431), - [sym_integer] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_True] = ACTIONS(2429), - [anon_sym_TRUE] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [anon_sym_False] = ACTIONS(2429), - [anon_sym_FALSE] = ACTIONS(2429), - [anon_sym_null] = ACTIONS(2429), - [anon_sym_Null] = ACTIONS(2429), - [anon_sym_NULL] = ACTIONS(2429), - [sym_string] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_array] = ACTIONS(2429), - [anon_sym_varray] = ACTIONS(2429), - [anon_sym_darray] = ACTIONS(2429), - [anon_sym_vec] = ACTIONS(2429), - [anon_sym_dict] = ACTIONS(2429), - [anon_sym_keyset] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_interface] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_abstract] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2431), - [sym_final_modifier] = ACTIONS(2429), - [sym_xhp_modifier] = ACTIONS(2429), - [sym_xhp_identifier] = ACTIONS(2429), - [sym_xhp_class_identifier] = ACTIONS(2431), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + }, + [1722] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1723] = { - [sym_identifier] = ACTIONS(2481), - [sym_variable] = ACTIONS(2483), - [sym_pipe_variable] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_newtype] = ACTIONS(2481), - [anon_sym_shape] = ACTIONS(2481), - [anon_sym_tuple] = ACTIONS(2481), - [anon_sym_clone] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2481), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_include] = ACTIONS(2481), - [anon_sym_include_once] = ACTIONS(2481), - [anon_sym_require] = ACTIONS(2481), - [anon_sym_require_once] = ACTIONS(2481), - [anon_sym_BSLASH] = ACTIONS(2483), - [anon_sym_self] = ACTIONS(2481), - [anon_sym_parent] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_LT_LT_LT] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_throw] = ACTIONS(2481), - [anon_sym_echo] = ACTIONS(2481), - [anon_sym_unset] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_concurrent] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_foreach] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_using] = ACTIONS(2481), - [sym_float] = ACTIONS(2483), - [sym_integer] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2481), - [anon_sym_True] = ACTIONS(2481), - [anon_sym_TRUE] = ACTIONS(2481), - [anon_sym_false] = ACTIONS(2481), - [anon_sym_False] = ACTIONS(2481), - [anon_sym_FALSE] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2481), - [anon_sym_Null] = ACTIONS(2481), - [anon_sym_NULL] = ACTIONS(2481), - [sym_string] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2483), - [anon_sym_array] = ACTIONS(2481), - [anon_sym_varray] = ACTIONS(2481), - [anon_sym_darray] = ACTIONS(2481), - [anon_sym_vec] = ACTIONS(2481), - [anon_sym_dict] = ACTIONS(2481), - [anon_sym_keyset] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_trait] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_class] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), - [anon_sym_abstract] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2483), - [sym_final_modifier] = ACTIONS(2481), - [sym_xhp_modifier] = ACTIONS(2481), - [sym_xhp_identifier] = ACTIONS(2481), - [sym_xhp_class_identifier] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1724] = { - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_identifier] = ACTIONS(2361), - [sym_variable] = ACTIONS(2363), - [sym_pipe_variable] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_newtype] = ACTIONS(2361), - [anon_sym_shape] = ACTIONS(2361), - [anon_sym_tuple] = ACTIONS(2361), - [anon_sym_clone] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_print] = ACTIONS(2361), - [anon_sym_namespace] = ACTIONS(2361), - [anon_sym_include] = ACTIONS(2361), - [anon_sym_include_once] = ACTIONS(2361), - [anon_sym_require] = ACTIONS(2361), - [anon_sym_require_once] = ACTIONS(2361), - [anon_sym_BSLASH] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2361), - [anon_sym_parent] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_LT_LT] = ACTIONS(2361), - [anon_sym_LT_LT_LT] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_echo] = ACTIONS(2361), - [anon_sym_unset] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_concurrent] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_function] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_switch] = ACTIONS(2361), - [anon_sym_foreach] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_using] = ACTIONS(2361), - [sym_float] = ACTIONS(2363), - [sym_integer] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_True] = ACTIONS(2361), - [anon_sym_TRUE] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_False] = ACTIONS(2361), - [anon_sym_FALSE] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [anon_sym_Null] = ACTIONS(2361), - [anon_sym_NULL] = ACTIONS(2361), - [sym_string] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_array] = ACTIONS(2361), - [anon_sym_varray] = ACTIONS(2361), - [anon_sym_darray] = ACTIONS(2361), - [anon_sym_vec] = ACTIONS(2361), - [anon_sym_dict] = ACTIONS(2361), - [anon_sym_keyset] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_list] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2363), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_interface] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_abstract] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2363), - [sym_final_modifier] = ACTIONS(2361), - [sym_xhp_modifier] = ACTIONS(2361), - [sym_xhp_identifier] = ACTIONS(2361), - [sym_xhp_class_identifier] = ACTIONS(2363), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1725] = { - [sym_identifier] = ACTIONS(2297), - [sym_variable] = ACTIONS(2299), - [sym_pipe_variable] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_newtype] = ACTIONS(2297), - [anon_sym_shape] = ACTIONS(2297), - [anon_sym_tuple] = ACTIONS(2297), - [anon_sym_clone] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_print] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_include] = ACTIONS(2297), - [anon_sym_include_once] = ACTIONS(2297), - [anon_sym_require] = ACTIONS(2297), - [anon_sym_require_once] = ACTIONS(2297), - [anon_sym_BSLASH] = ACTIONS(2299), - [anon_sym_self] = ACTIONS(2297), - [anon_sym_parent] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_LT_LT_LT] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_echo] = ACTIONS(2297), - [anon_sym_unset] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_concurrent] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_foreach] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [sym_float] = ACTIONS(2299), - [sym_integer] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_True] = ACTIONS(2297), - [anon_sym_TRUE] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_False] = ACTIONS(2297), - [anon_sym_FALSE] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [anon_sym_Null] = ACTIONS(2297), - [anon_sym_NULL] = ACTIONS(2297), - [sym_string] = ACTIONS(2299), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_array] = ACTIONS(2297), - [anon_sym_varray] = ACTIONS(2297), - [anon_sym_darray] = ACTIONS(2297), - [anon_sym_vec] = ACTIONS(2297), - [anon_sym_dict] = ACTIONS(2297), - [anon_sym_keyset] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2299), - [sym_final_modifier] = ACTIONS(2297), - [sym_xhp_modifier] = ACTIONS(2297), - [sym_xhp_identifier] = ACTIONS(2297), - [sym_xhp_class_identifier] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1726] = { - [sym_identifier] = ACTIONS(2469), - [sym_variable] = ACTIONS(2471), - [sym_pipe_variable] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_newtype] = ACTIONS(2469), - [anon_sym_shape] = ACTIONS(2469), - [anon_sym_tuple] = ACTIONS(2469), - [anon_sym_clone] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_print] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2469), - [anon_sym_include] = ACTIONS(2469), - [anon_sym_include_once] = ACTIONS(2469), - [anon_sym_require] = ACTIONS(2469), - [anon_sym_require_once] = ACTIONS(2469), - [anon_sym_BSLASH] = ACTIONS(2471), - [anon_sym_self] = ACTIONS(2469), - [anon_sym_parent] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_throw] = ACTIONS(2469), - [anon_sym_echo] = ACTIONS(2469), - [anon_sym_unset] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_concurrent] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_function] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_switch] = ACTIONS(2469), - [anon_sym_foreach] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_using] = ACTIONS(2469), - [sym_float] = ACTIONS(2471), - [sym_integer] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_True] = ACTIONS(2469), - [anon_sym_TRUE] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), - [anon_sym_False] = ACTIONS(2469), - [anon_sym_FALSE] = ACTIONS(2469), - [anon_sym_null] = ACTIONS(2469), - [anon_sym_Null] = ACTIONS(2469), - [anon_sym_NULL] = ACTIONS(2469), - [sym_string] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_array] = ACTIONS(2469), - [anon_sym_varray] = ACTIONS(2469), - [anon_sym_darray] = ACTIONS(2469), - [anon_sym_vec] = ACTIONS(2469), - [anon_sym_dict] = ACTIONS(2469), - [anon_sym_keyset] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_list] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_trait] = ACTIONS(2469), - [anon_sym_interface] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_abstract] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2471), - [sym_final_modifier] = ACTIONS(2469), - [sym_xhp_modifier] = ACTIONS(2469), - [sym_xhp_identifier] = ACTIONS(2469), - [sym_xhp_class_identifier] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2609), + [sym_variable] = ACTIONS(2611), + [sym_pipe_variable] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_newtype] = ACTIONS(2609), + [anon_sym_shape] = ACTIONS(2609), + [anon_sym_tuple] = ACTIONS(2609), + [anon_sym_clone] = ACTIONS(2609), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_print] = ACTIONS(2609), + [anon_sym_namespace] = ACTIONS(2609), + [anon_sym_include] = ACTIONS(2609), + [anon_sym_include_once] = ACTIONS(2609), + [anon_sym_require] = ACTIONS(2609), + [anon_sym_require_once] = ACTIONS(2609), + [anon_sym_BSLASH] = ACTIONS(2611), + [anon_sym_self] = ACTIONS(2609), + [anon_sym_parent] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_throw] = ACTIONS(2609), + [anon_sym_echo] = ACTIONS(2609), + [anon_sym_unset] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_concurrent] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_function] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_switch] = ACTIONS(2609), + [anon_sym_foreach] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_using] = ACTIONS(2609), + [sym_float] = ACTIONS(2611), + [sym_integer] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_True] = ACTIONS(2609), + [anon_sym_TRUE] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_False] = ACTIONS(2609), + [anon_sym_FALSE] = ACTIONS(2609), + [anon_sym_null] = ACTIONS(2609), + [anon_sym_Null] = ACTIONS(2609), + [anon_sym_NULL] = ACTIONS(2609), + [sym_string] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_array] = ACTIONS(2609), + [anon_sym_varray] = ACTIONS(2609), + [anon_sym_darray] = ACTIONS(2609), + [anon_sym_vec] = ACTIONS(2609), + [anon_sym_dict] = ACTIONS(2609), + [anon_sym_keyset] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_list] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_await] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_interface] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_abstract] = ACTIONS(2609), + [anon_sym_POUND] = ACTIONS(2611), + [sym_final_modifier] = ACTIONS(2609), + [sym_xhp_modifier] = ACTIONS(2609), + [sym_xhp_identifier] = ACTIONS(2609), + [sym_xhp_class_identifier] = ACTIONS(2611), [sym_comment] = ACTIONS(3), }, [1727] = { - [sym_identifier] = ACTIONS(2453), - [sym_variable] = ACTIONS(2455), - [sym_pipe_variable] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_newtype] = ACTIONS(2453), - [anon_sym_shape] = ACTIONS(2453), - [anon_sym_tuple] = ACTIONS(2453), - [anon_sym_clone] = ACTIONS(2453), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_include] = ACTIONS(2453), - [anon_sym_include_once] = ACTIONS(2453), - [anon_sym_require] = ACTIONS(2453), - [anon_sym_require_once] = ACTIONS(2453), - [anon_sym_BSLASH] = ACTIONS(2455), - [anon_sym_self] = ACTIONS(2453), - [anon_sym_parent] = ACTIONS(2453), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_LT_LT_LT] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_throw] = ACTIONS(2453), - [anon_sym_echo] = ACTIONS(2453), - [anon_sym_unset] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_concurrent] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_switch] = ACTIONS(2453), - [anon_sym_foreach] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_using] = ACTIONS(2453), - [sym_float] = ACTIONS(2455), - [sym_integer] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_True] = ACTIONS(2453), - [anon_sym_TRUE] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_False] = ACTIONS(2453), - [anon_sym_FALSE] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [anon_sym_Null] = ACTIONS(2453), - [anon_sym_NULL] = ACTIONS(2453), - [sym_string] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_array] = ACTIONS(2453), - [anon_sym_varray] = ACTIONS(2453), - [anon_sym_darray] = ACTIONS(2453), - [anon_sym_vec] = ACTIONS(2453), - [anon_sym_dict] = ACTIONS(2453), - [anon_sym_keyset] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_list] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2453), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2453), - [anon_sym_trait] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_class] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [anon_sym_abstract] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2455), - [sym_final_modifier] = ACTIONS(2453), - [sym_xhp_modifier] = ACTIONS(2453), - [sym_xhp_identifier] = ACTIONS(2453), - [sym_xhp_class_identifier] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2605), + [sym_variable] = ACTIONS(2607), + [sym_pipe_variable] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_newtype] = ACTIONS(2605), + [anon_sym_shape] = ACTIONS(2605), + [anon_sym_tuple] = ACTIONS(2605), + [anon_sym_clone] = ACTIONS(2605), + [anon_sym_new] = ACTIONS(2605), + [anon_sym_print] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2605), + [anon_sym_include] = ACTIONS(2605), + [anon_sym_include_once] = ACTIONS(2605), + [anon_sym_require] = ACTIONS(2605), + [anon_sym_require_once] = ACTIONS(2605), + [anon_sym_BSLASH] = ACTIONS(2607), + [anon_sym_self] = ACTIONS(2605), + [anon_sym_parent] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_LT_LT] = ACTIONS(2605), + [anon_sym_LT_LT_LT] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_throw] = ACTIONS(2605), + [anon_sym_echo] = ACTIONS(2605), + [anon_sym_unset] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_concurrent] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_function] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_switch] = ACTIONS(2605), + [anon_sym_foreach] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_using] = ACTIONS(2605), + [sym_float] = ACTIONS(2607), + [sym_integer] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_True] = ACTIONS(2605), + [anon_sym_TRUE] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_False] = ACTIONS(2605), + [anon_sym_FALSE] = ACTIONS(2605), + [anon_sym_null] = ACTIONS(2605), + [anon_sym_Null] = ACTIONS(2605), + [anon_sym_NULL] = ACTIONS(2605), + [sym_string] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2607), + [anon_sym_TILDE] = ACTIONS(2607), + [anon_sym_array] = ACTIONS(2605), + [anon_sym_varray] = ACTIONS(2605), + [anon_sym_darray] = ACTIONS(2605), + [anon_sym_vec] = ACTIONS(2605), + [anon_sym_dict] = ACTIONS(2605), + [anon_sym_keyset] = ACTIONS(2605), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_PLUS] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [anon_sym_list] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2607), + [anon_sym_await] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_interface] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_abstract] = ACTIONS(2605), + [anon_sym_POUND] = ACTIONS(2607), + [sym_final_modifier] = ACTIONS(2605), + [sym_xhp_modifier] = ACTIONS(2605), + [sym_xhp_identifier] = ACTIONS(2605), + [sym_xhp_class_identifier] = ACTIONS(2607), [sym_comment] = ACTIONS(3), }, [1728] = { - [sym_identifier] = ACTIONS(2473), - [sym_variable] = ACTIONS(2475), - [sym_pipe_variable] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_newtype] = ACTIONS(2473), - [anon_sym_shape] = ACTIONS(2473), - [anon_sym_tuple] = ACTIONS(2473), - [anon_sym_clone] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_print] = ACTIONS(2473), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_include] = ACTIONS(2473), - [anon_sym_include_once] = ACTIONS(2473), - [anon_sym_require] = ACTIONS(2473), - [anon_sym_require_once] = ACTIONS(2473), - [anon_sym_BSLASH] = ACTIONS(2475), - [anon_sym_self] = ACTIONS(2473), - [anon_sym_parent] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_LT_LT_LT] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_throw] = ACTIONS(2473), - [anon_sym_echo] = ACTIONS(2473), - [anon_sym_unset] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_concurrent] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_function] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_switch] = ACTIONS(2473), - [anon_sym_foreach] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_using] = ACTIONS(2473), - [sym_float] = ACTIONS(2475), - [sym_integer] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_True] = ACTIONS(2473), - [anon_sym_TRUE] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [anon_sym_False] = ACTIONS(2473), - [anon_sym_FALSE] = ACTIONS(2473), - [anon_sym_null] = ACTIONS(2473), - [anon_sym_Null] = ACTIONS(2473), - [anon_sym_NULL] = ACTIONS(2473), - [sym_string] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_array] = ACTIONS(2473), - [anon_sym_varray] = ACTIONS(2473), - [anon_sym_darray] = ACTIONS(2473), - [anon_sym_vec] = ACTIONS(2473), - [anon_sym_dict] = ACTIONS(2473), - [anon_sym_keyset] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_trait] = ACTIONS(2473), - [anon_sym_interface] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_abstract] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2475), - [sym_final_modifier] = ACTIONS(2473), - [sym_xhp_modifier] = ACTIONS(2473), - [sym_xhp_identifier] = ACTIONS(2473), - [sym_xhp_class_identifier] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1729] = { - [ts_builtin_sym_end] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2533), - [sym_variable] = ACTIONS(2535), - [sym_pipe_variable] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_newtype] = ACTIONS(2533), - [anon_sym_shape] = ACTIONS(2533), - [anon_sym_tuple] = ACTIONS(2533), - [anon_sym_clone] = ACTIONS(2533), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_print] = ACTIONS(2533), - [anon_sym_namespace] = ACTIONS(2533), - [anon_sym_include] = ACTIONS(2533), - [anon_sym_include_once] = ACTIONS(2533), - [anon_sym_require] = ACTIONS(2533), - [anon_sym_require_once] = ACTIONS(2533), - [anon_sym_BSLASH] = ACTIONS(2535), - [anon_sym_self] = ACTIONS(2533), - [anon_sym_parent] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_LT_LT] = ACTIONS(2533), - [anon_sym_LT_LT_LT] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_throw] = ACTIONS(2533), - [anon_sym_echo] = ACTIONS(2533), - [anon_sym_unset] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_concurrent] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_function] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_switch] = ACTIONS(2533), - [anon_sym_foreach] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_do] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [anon_sym_using] = ACTIONS(2533), - [sym_float] = ACTIONS(2535), - [sym_integer] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_True] = ACTIONS(2533), - [anon_sym_TRUE] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_False] = ACTIONS(2533), - [anon_sym_FALSE] = ACTIONS(2533), - [anon_sym_null] = ACTIONS(2533), - [anon_sym_Null] = ACTIONS(2533), - [anon_sym_NULL] = ACTIONS(2533), - [sym_string] = ACTIONS(2535), - [anon_sym_AT] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2535), - [anon_sym_array] = ACTIONS(2533), - [anon_sym_varray] = ACTIONS(2533), - [anon_sym_darray] = ACTIONS(2533), - [anon_sym_vec] = ACTIONS(2533), - [anon_sym_dict] = ACTIONS(2533), - [anon_sym_keyset] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_list] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_PLUS_PLUS] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2535), - [anon_sym_await] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_interface] = ACTIONS(2533), - [anon_sym_class] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_abstract] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2535), - [sym_final_modifier] = ACTIONS(2533), - [sym_xhp_modifier] = ACTIONS(2533), - [sym_xhp_identifier] = ACTIONS(2533), - [sym_xhp_class_identifier] = ACTIONS(2535), + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2035), + [sym_variable] = ACTIONS(2037), + [sym_pipe_variable] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_newtype] = ACTIONS(2035), + [anon_sym_shape] = ACTIONS(2035), + [anon_sym_tuple] = ACTIONS(2035), + [anon_sym_clone] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_namespace] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_include_once] = ACTIONS(2035), + [anon_sym_require] = ACTIONS(2035), + [anon_sym_require_once] = ACTIONS(2035), + [anon_sym_BSLASH] = ACTIONS(2037), + [anon_sym_self] = ACTIONS(2035), + [anon_sym_parent] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_LT_LT] = ACTIONS(2035), + [anon_sym_LT_LT_LT] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_throw] = ACTIONS(2035), + [anon_sym_echo] = ACTIONS(2035), + [anon_sym_unset] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_concurrent] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_function] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_switch] = ACTIONS(2035), + [anon_sym_foreach] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_using] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [sym_integer] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_True] = ACTIONS(2035), + [anon_sym_TRUE] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_False] = ACTIONS(2035), + [anon_sym_FALSE] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_Null] = ACTIONS(2035), + [anon_sym_NULL] = ACTIONS(2035), + [sym_string] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_array] = ACTIONS(2035), + [anon_sym_varray] = ACTIONS(2035), + [anon_sym_darray] = ACTIONS(2035), + [anon_sym_vec] = ACTIONS(2035), + [anon_sym_dict] = ACTIONS(2035), + [anon_sym_keyset] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_interface] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_abstract] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2037), + [sym_final_modifier] = ACTIONS(2035), + [sym_xhp_modifier] = ACTIONS(2035), + [sym_xhp_identifier] = ACTIONS(2035), + [sym_xhp_class_identifier] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [1730] = { - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2305), - [sym_variable] = ACTIONS(2307), - [sym_pipe_variable] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_newtype] = ACTIONS(2305), - [anon_sym_shape] = ACTIONS(2305), - [anon_sym_tuple] = ACTIONS(2305), - [anon_sym_clone] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_print] = ACTIONS(2305), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_include] = ACTIONS(2305), - [anon_sym_include_once] = ACTIONS(2305), - [anon_sym_require] = ACTIONS(2305), - [anon_sym_require_once] = ACTIONS(2305), - [anon_sym_BSLASH] = ACTIONS(2307), - [anon_sym_self] = ACTIONS(2305), - [anon_sym_parent] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_LT_LT_LT] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_throw] = ACTIONS(2305), - [anon_sym_echo] = ACTIONS(2305), - [anon_sym_unset] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_concurrent] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_switch] = ACTIONS(2305), - [anon_sym_foreach] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_using] = ACTIONS(2305), - [sym_float] = ACTIONS(2307), - [sym_integer] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_True] = ACTIONS(2305), - [anon_sym_TRUE] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_False] = ACTIONS(2305), - [anon_sym_FALSE] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [anon_sym_Null] = ACTIONS(2305), - [anon_sym_NULL] = ACTIONS(2305), - [sym_string] = ACTIONS(2307), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_array] = ACTIONS(2305), - [anon_sym_varray] = ACTIONS(2305), - [anon_sym_darray] = ACTIONS(2305), - [anon_sym_vec] = ACTIONS(2305), - [anon_sym_dict] = ACTIONS(2305), - [anon_sym_keyset] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_interface] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_abstract] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2307), - [sym_final_modifier] = ACTIONS(2305), - [sym_xhp_modifier] = ACTIONS(2305), - [sym_xhp_identifier] = ACTIONS(2305), - [sym_xhp_class_identifier] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2377), + [sym_variable] = ACTIONS(2379), + [sym_pipe_variable] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_newtype] = ACTIONS(2377), + [anon_sym_shape] = ACTIONS(2377), + [anon_sym_tuple] = ACTIONS(2377), + [anon_sym_clone] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2377), + [anon_sym_print] = ACTIONS(2377), + [anon_sym_namespace] = ACTIONS(2377), + [anon_sym_include] = ACTIONS(2377), + [anon_sym_include_once] = ACTIONS(2377), + [anon_sym_require] = ACTIONS(2377), + [anon_sym_require_once] = ACTIONS(2377), + [anon_sym_BSLASH] = ACTIONS(2379), + [anon_sym_self] = ACTIONS(2377), + [anon_sym_parent] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_LT_LT_LT] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_throw] = ACTIONS(2377), + [anon_sym_echo] = ACTIONS(2377), + [anon_sym_unset] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_concurrent] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_function] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_switch] = ACTIONS(2377), + [anon_sym_foreach] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_using] = ACTIONS(2377), + [sym_float] = ACTIONS(2379), + [sym_integer] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_True] = ACTIONS(2377), + [anon_sym_TRUE] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [anon_sym_False] = ACTIONS(2377), + [anon_sym_FALSE] = ACTIONS(2377), + [anon_sym_null] = ACTIONS(2377), + [anon_sym_Null] = ACTIONS(2377), + [anon_sym_NULL] = ACTIONS(2377), + [sym_string] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_array] = ACTIONS(2377), + [anon_sym_varray] = ACTIONS(2377), + [anon_sym_darray] = ACTIONS(2377), + [anon_sym_vec] = ACTIONS(2377), + [anon_sym_dict] = ACTIONS(2377), + [anon_sym_keyset] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_list] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_yield] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_interface] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_abstract] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2379), + [sym_final_modifier] = ACTIONS(2377), + [sym_xhp_modifier] = ACTIONS(2377), + [sym_xhp_identifier] = ACTIONS(2377), + [sym_xhp_class_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(3), }, [1731] = { - [sym_identifier] = ACTIONS(2465), - [sym_variable] = ACTIONS(2467), - [sym_pipe_variable] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_newtype] = ACTIONS(2465), - [anon_sym_shape] = ACTIONS(2465), - [anon_sym_tuple] = ACTIONS(2465), - [anon_sym_clone] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_print] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_include] = ACTIONS(2465), - [anon_sym_include_once] = ACTIONS(2465), - [anon_sym_require] = ACTIONS(2465), - [anon_sym_require_once] = ACTIONS(2465), - [anon_sym_BSLASH] = ACTIONS(2467), - [anon_sym_self] = ACTIONS(2465), - [anon_sym_parent] = ACTIONS(2465), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_LT_LT_LT] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_echo] = ACTIONS(2465), - [anon_sym_unset] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_concurrent] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_foreach] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [sym_float] = ACTIONS(2467), - [sym_integer] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2465), - [anon_sym_True] = ACTIONS(2465), - [anon_sym_TRUE] = ACTIONS(2465), - [anon_sym_false] = ACTIONS(2465), - [anon_sym_False] = ACTIONS(2465), - [anon_sym_FALSE] = ACTIONS(2465), - [anon_sym_null] = ACTIONS(2465), - [anon_sym_Null] = ACTIONS(2465), - [anon_sym_NULL] = ACTIONS(2465), - [sym_string] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_array] = ACTIONS(2465), - [anon_sym_varray] = ACTIONS(2465), - [anon_sym_darray] = ACTIONS(2465), - [anon_sym_vec] = ACTIONS(2465), - [anon_sym_dict] = ACTIONS(2465), - [anon_sym_keyset] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_list] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_trait] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2467), - [sym_final_modifier] = ACTIONS(2465), - [sym_xhp_modifier] = ACTIONS(2465), - [sym_xhp_identifier] = ACTIONS(2465), - [sym_xhp_class_identifier] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2381), + [sym_variable] = ACTIONS(2383), + [sym_pipe_variable] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_newtype] = ACTIONS(2381), + [anon_sym_shape] = ACTIONS(2381), + [anon_sym_tuple] = ACTIONS(2381), + [anon_sym_clone] = ACTIONS(2381), + [anon_sym_new] = ACTIONS(2381), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_namespace] = ACTIONS(2381), + [anon_sym_include] = ACTIONS(2381), + [anon_sym_include_once] = ACTIONS(2381), + [anon_sym_require] = ACTIONS(2381), + [anon_sym_require_once] = ACTIONS(2381), + [anon_sym_BSLASH] = ACTIONS(2383), + [anon_sym_self] = ACTIONS(2381), + [anon_sym_parent] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_LT_LT_LT] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_throw] = ACTIONS(2381), + [anon_sym_echo] = ACTIONS(2381), + [anon_sym_unset] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_concurrent] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_function] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_switch] = ACTIONS(2381), + [anon_sym_foreach] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_using] = ACTIONS(2381), + [sym_float] = ACTIONS(2383), + [sym_integer] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_True] = ACTIONS(2381), + [anon_sym_TRUE] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [anon_sym_False] = ACTIONS(2381), + [anon_sym_FALSE] = ACTIONS(2381), + [anon_sym_null] = ACTIONS(2381), + [anon_sym_Null] = ACTIONS(2381), + [anon_sym_NULL] = ACTIONS(2381), + [sym_string] = ACTIONS(2383), + [anon_sym_AT] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_array] = ACTIONS(2381), + [anon_sym_varray] = ACTIONS(2381), + [anon_sym_darray] = ACTIONS(2381), + [anon_sym_vec] = ACTIONS(2381), + [anon_sym_dict] = ACTIONS(2381), + [anon_sym_keyset] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_list] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_yield] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_interface] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_abstract] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2383), + [sym_final_modifier] = ACTIONS(2381), + [sym_xhp_modifier] = ACTIONS(2381), + [sym_xhp_identifier] = ACTIONS(2381), + [sym_xhp_class_identifier] = ACTIONS(2383), [sym_comment] = ACTIONS(3), }, [1732] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2345), - [sym_variable] = ACTIONS(2347), - [sym_pipe_variable] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_newtype] = ACTIONS(2345), - [anon_sym_shape] = ACTIONS(2345), - [anon_sym_tuple] = ACTIONS(2345), - [anon_sym_clone] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_print] = ACTIONS(2345), - [anon_sym_namespace] = ACTIONS(2345), - [anon_sym_include] = ACTIONS(2345), - [anon_sym_include_once] = ACTIONS(2345), - [anon_sym_require] = ACTIONS(2345), - [anon_sym_require_once] = ACTIONS(2345), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_self] = ACTIONS(2345), - [anon_sym_parent] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_LT_LT] = ACTIONS(2345), - [anon_sym_LT_LT_LT] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_throw] = ACTIONS(2345), - [anon_sym_echo] = ACTIONS(2345), - [anon_sym_unset] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_concurrent] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_function] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_switch] = ACTIONS(2345), - [anon_sym_foreach] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_using] = ACTIONS(2345), - [sym_float] = ACTIONS(2347), - [sym_integer] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_True] = ACTIONS(2345), - [anon_sym_TRUE] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_False] = ACTIONS(2345), - [anon_sym_FALSE] = ACTIONS(2345), - [anon_sym_null] = ACTIONS(2345), - [anon_sym_Null] = ACTIONS(2345), - [anon_sym_NULL] = ACTIONS(2345), - [sym_string] = ACTIONS(2347), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_array] = ACTIONS(2345), - [anon_sym_varray] = ACTIONS(2345), - [anon_sym_darray] = ACTIONS(2345), - [anon_sym_vec] = ACTIONS(2345), - [anon_sym_dict] = ACTIONS(2345), - [anon_sym_keyset] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_list] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(2347), - [sym_final_modifier] = ACTIONS(2345), - [sym_xhp_modifier] = ACTIONS(2345), - [sym_xhp_identifier] = ACTIONS(2345), - [sym_xhp_class_identifier] = ACTIONS(2347), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1733] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [sym_identifier] = ACTIONS(2457), - [sym_variable] = ACTIONS(2459), - [sym_pipe_variable] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_newtype] = ACTIONS(2457), - [anon_sym_shape] = ACTIONS(2457), - [anon_sym_tuple] = ACTIONS(2457), - [anon_sym_clone] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_print] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_include] = ACTIONS(2457), - [anon_sym_include_once] = ACTIONS(2457), - [anon_sym_require] = ACTIONS(2457), - [anon_sym_require_once] = ACTIONS(2457), - [anon_sym_BSLASH] = ACTIONS(2459), - [anon_sym_self] = ACTIONS(2457), - [anon_sym_parent] = ACTIONS(2457), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), - [anon_sym_LT_LT_LT] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_echo] = ACTIONS(2457), - [anon_sym_unset] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_concurrent] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_foreach] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_integer] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2457), - [anon_sym_True] = ACTIONS(2457), - [anon_sym_TRUE] = ACTIONS(2457), - [anon_sym_false] = ACTIONS(2457), - [anon_sym_False] = ACTIONS(2457), - [anon_sym_FALSE] = ACTIONS(2457), - [anon_sym_null] = ACTIONS(2457), - [anon_sym_Null] = ACTIONS(2457), - [anon_sym_NULL] = ACTIONS(2457), - [sym_string] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_array] = ACTIONS(2457), - [anon_sym_varray] = ACTIONS(2457), - [anon_sym_darray] = ACTIONS(2457), - [anon_sym_vec] = ACTIONS(2457), - [anon_sym_dict] = ACTIONS(2457), - [anon_sym_keyset] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_list] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_trait] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2459), - [sym_final_modifier] = ACTIONS(2457), - [sym_xhp_modifier] = ACTIONS(2457), - [sym_xhp_identifier] = ACTIONS(2457), - [sym_xhp_class_identifier] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2385), + [sym_variable] = ACTIONS(2387), + [sym_pipe_variable] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_newtype] = ACTIONS(2385), + [anon_sym_shape] = ACTIONS(2385), + [anon_sym_tuple] = ACTIONS(2385), + [anon_sym_clone] = ACTIONS(2385), + [anon_sym_new] = ACTIONS(2385), + [anon_sym_print] = ACTIONS(2385), + [anon_sym_namespace] = ACTIONS(2385), + [anon_sym_include] = ACTIONS(2385), + [anon_sym_include_once] = ACTIONS(2385), + [anon_sym_require] = ACTIONS(2385), + [anon_sym_require_once] = ACTIONS(2385), + [anon_sym_BSLASH] = ACTIONS(2387), + [anon_sym_self] = ACTIONS(2385), + [anon_sym_parent] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_LT_LT] = ACTIONS(2385), + [anon_sym_LT_LT_LT] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_throw] = ACTIONS(2385), + [anon_sym_echo] = ACTIONS(2385), + [anon_sym_unset] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_concurrent] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_function] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_switch] = ACTIONS(2385), + [anon_sym_foreach] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_using] = ACTIONS(2385), + [sym_float] = ACTIONS(2387), + [sym_integer] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_True] = ACTIONS(2385), + [anon_sym_TRUE] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [anon_sym_False] = ACTIONS(2385), + [anon_sym_FALSE] = ACTIONS(2385), + [anon_sym_null] = ACTIONS(2385), + [anon_sym_Null] = ACTIONS(2385), + [anon_sym_NULL] = ACTIONS(2385), + [sym_string] = ACTIONS(2387), + [anon_sym_AT] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_array] = ACTIONS(2385), + [anon_sym_varray] = ACTIONS(2385), + [anon_sym_darray] = ACTIONS(2385), + [anon_sym_vec] = ACTIONS(2385), + [anon_sym_dict] = ACTIONS(2385), + [anon_sym_keyset] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_list] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_yield] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_interface] = ACTIONS(2385), + [anon_sym_class] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_abstract] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2387), + [sym_final_modifier] = ACTIONS(2385), + [sym_xhp_modifier] = ACTIONS(2385), + [sym_xhp_identifier] = ACTIONS(2385), + [sym_xhp_class_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(3), }, [1734] = { - [sym_identifier] = ACTIONS(2137), - [sym_variable] = ACTIONS(2139), - [sym_pipe_variable] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_newtype] = ACTIONS(2137), - [anon_sym_shape] = ACTIONS(2137), - [anon_sym_tuple] = ACTIONS(2137), - [anon_sym_clone] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_print] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_include] = ACTIONS(2137), - [anon_sym_include_once] = ACTIONS(2137), - [anon_sym_require] = ACTIONS(2137), - [anon_sym_require_once] = ACTIONS(2137), - [anon_sym_BSLASH] = ACTIONS(2139), - [anon_sym_self] = ACTIONS(2137), - [anon_sym_parent] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_LT_LT_LT] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2137), - [anon_sym_echo] = ACTIONS(2137), - [anon_sym_unset] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_concurrent] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_function] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_switch] = ACTIONS(2137), - [anon_sym_foreach] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_do] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_using] = ACTIONS(2137), - [sym_float] = ACTIONS(2139), - [sym_integer] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_True] = ACTIONS(2137), - [anon_sym_TRUE] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [anon_sym_False] = ACTIONS(2137), - [anon_sym_FALSE] = ACTIONS(2137), - [anon_sym_null] = ACTIONS(2137), - [anon_sym_Null] = ACTIONS(2137), - [anon_sym_NULL] = ACTIONS(2137), - [sym_string] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_array] = ACTIONS(2137), - [anon_sym_varray] = ACTIONS(2137), - [anon_sym_darray] = ACTIONS(2137), - [anon_sym_vec] = ACTIONS(2137), - [anon_sym_dict] = ACTIONS(2137), - [anon_sym_keyset] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_list] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_abstract] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2139), - [sym_final_modifier] = ACTIONS(2137), - [sym_xhp_modifier] = ACTIONS(2137), - [sym_xhp_identifier] = ACTIONS(2137), - [sym_xhp_class_identifier] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2389), + [sym_variable] = ACTIONS(2391), + [sym_pipe_variable] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_newtype] = ACTIONS(2389), + [anon_sym_shape] = ACTIONS(2389), + [anon_sym_tuple] = ACTIONS(2389), + [anon_sym_clone] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_print] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2389), + [anon_sym_include] = ACTIONS(2389), + [anon_sym_include_once] = ACTIONS(2389), + [anon_sym_require] = ACTIONS(2389), + [anon_sym_require_once] = ACTIONS(2389), + [anon_sym_BSLASH] = ACTIONS(2391), + [anon_sym_self] = ACTIONS(2389), + [anon_sym_parent] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(2389), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_throw] = ACTIONS(2389), + [anon_sym_echo] = ACTIONS(2389), + [anon_sym_unset] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_concurrent] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_function] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_switch] = ACTIONS(2389), + [anon_sym_foreach] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_using] = ACTIONS(2389), + [sym_float] = ACTIONS(2391), + [sym_integer] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_True] = ACTIONS(2389), + [anon_sym_TRUE] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [anon_sym_False] = ACTIONS(2389), + [anon_sym_FALSE] = ACTIONS(2389), + [anon_sym_null] = ACTIONS(2389), + [anon_sym_Null] = ACTIONS(2389), + [anon_sym_NULL] = ACTIONS(2389), + [sym_string] = ACTIONS(2391), + [anon_sym_AT] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_array] = ACTIONS(2389), + [anon_sym_varray] = ACTIONS(2389), + [anon_sym_darray] = ACTIONS(2389), + [anon_sym_vec] = ACTIONS(2389), + [anon_sym_dict] = ACTIONS(2389), + [anon_sym_keyset] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_list] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(2391), + [anon_sym_DASH_DASH] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_interface] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_abstract] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2391), + [sym_final_modifier] = ACTIONS(2389), + [sym_xhp_modifier] = ACTIONS(2389), + [sym_xhp_identifier] = ACTIONS(2389), + [sym_xhp_class_identifier] = ACTIONS(2391), [sym_comment] = ACTIONS(3), }, [1735] = { - [sym_identifier] = ACTIONS(2117), - [sym_variable] = ACTIONS(2119), - [sym_pipe_variable] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_newtype] = ACTIONS(2117), - [anon_sym_shape] = ACTIONS(2117), - [anon_sym_tuple] = ACTIONS(2117), - [anon_sym_clone] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_print] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_include] = ACTIONS(2117), - [anon_sym_include_once] = ACTIONS(2117), - [anon_sym_require] = ACTIONS(2117), - [anon_sym_require_once] = ACTIONS(2117), - [anon_sym_BSLASH] = ACTIONS(2119), - [anon_sym_self] = ACTIONS(2117), - [anon_sym_parent] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_LT_LT_LT] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_throw] = ACTIONS(2117), - [anon_sym_echo] = ACTIONS(2117), - [anon_sym_unset] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_concurrent] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_foreach] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [sym_float] = ACTIONS(2119), - [sym_integer] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_True] = ACTIONS(2117), - [anon_sym_TRUE] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_False] = ACTIONS(2117), - [anon_sym_FALSE] = ACTIONS(2117), - [anon_sym_null] = ACTIONS(2117), - [anon_sym_Null] = ACTIONS(2117), - [anon_sym_NULL] = ACTIONS(2117), - [sym_string] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_array] = ACTIONS(2117), - [anon_sym_varray] = ACTIONS(2117), - [anon_sym_darray] = ACTIONS(2117), - [anon_sym_vec] = ACTIONS(2117), - [anon_sym_dict] = ACTIONS(2117), - [anon_sym_keyset] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_trait] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2119), - [sym_final_modifier] = ACTIONS(2117), - [sym_xhp_modifier] = ACTIONS(2117), - [sym_xhp_identifier] = ACTIONS(2117), - [sym_xhp_class_identifier] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2393), + [sym_variable] = ACTIONS(2395), + [sym_pipe_variable] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_newtype] = ACTIONS(2393), + [anon_sym_shape] = ACTIONS(2393), + [anon_sym_tuple] = ACTIONS(2393), + [anon_sym_clone] = ACTIONS(2393), + [anon_sym_new] = ACTIONS(2393), + [anon_sym_print] = ACTIONS(2393), + [anon_sym_namespace] = ACTIONS(2393), + [anon_sym_include] = ACTIONS(2393), + [anon_sym_include_once] = ACTIONS(2393), + [anon_sym_require] = ACTIONS(2393), + [anon_sym_require_once] = ACTIONS(2393), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_self] = ACTIONS(2393), + [anon_sym_parent] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(2393), + [anon_sym_LT_LT_LT] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_throw] = ACTIONS(2393), + [anon_sym_echo] = ACTIONS(2393), + [anon_sym_unset] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_concurrent] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_foreach] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_using] = ACTIONS(2393), + [sym_float] = ACTIONS(2395), + [sym_integer] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_True] = ACTIONS(2393), + [anon_sym_TRUE] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_False] = ACTIONS(2393), + [anon_sym_FALSE] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2393), + [anon_sym_Null] = ACTIONS(2393), + [anon_sym_NULL] = ACTIONS(2393), + [sym_string] = ACTIONS(2395), + [anon_sym_AT] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_array] = ACTIONS(2393), + [anon_sym_varray] = ACTIONS(2393), + [anon_sym_darray] = ACTIONS(2393), + [anon_sym_vec] = ACTIONS(2393), + [anon_sym_dict] = ACTIONS(2393), + [anon_sym_keyset] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_list] = ACTIONS(2393), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_yield] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_interface] = ACTIONS(2393), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_abstract] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(2395), + [sym_final_modifier] = ACTIONS(2393), + [sym_xhp_modifier] = ACTIONS(2393), + [sym_xhp_identifier] = ACTIONS(2393), + [sym_xhp_class_identifier] = ACTIONS(2395), [sym_comment] = ACTIONS(3), }, [1736] = { - [sym_identifier] = ACTIONS(2125), - [sym_variable] = ACTIONS(2127), - [sym_pipe_variable] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_newtype] = ACTIONS(2125), - [anon_sym_shape] = ACTIONS(2125), - [anon_sym_tuple] = ACTIONS(2125), - [anon_sym_clone] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_print] = ACTIONS(2125), - [anon_sym_namespace] = ACTIONS(2125), - [anon_sym_include] = ACTIONS(2125), - [anon_sym_include_once] = ACTIONS(2125), - [anon_sym_require] = ACTIONS(2125), - [anon_sym_require_once] = ACTIONS(2125), - [anon_sym_BSLASH] = ACTIONS(2127), - [anon_sym_self] = ACTIONS(2125), - [anon_sym_parent] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2125), - [anon_sym_echo] = ACTIONS(2125), - [anon_sym_unset] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_concurrent] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_foreach] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_using] = ACTIONS(2125), - [sym_float] = ACTIONS(2127), - [sym_integer] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_True] = ACTIONS(2125), - [anon_sym_TRUE] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [anon_sym_False] = ACTIONS(2125), - [anon_sym_FALSE] = ACTIONS(2125), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_Null] = ACTIONS(2125), - [anon_sym_NULL] = ACTIONS(2125), - [sym_string] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_array] = ACTIONS(2125), - [anon_sym_varray] = ACTIONS(2125), - [anon_sym_darray] = ACTIONS(2125), - [anon_sym_vec] = ACTIONS(2125), - [anon_sym_dict] = ACTIONS(2125), - [anon_sym_keyset] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_list] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_abstract] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2127), - [sym_final_modifier] = ACTIONS(2125), - [sym_xhp_modifier] = ACTIONS(2125), - [sym_xhp_identifier] = ACTIONS(2125), - [sym_xhp_class_identifier] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2397), + [sym_variable] = ACTIONS(2399), + [sym_pipe_variable] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_newtype] = ACTIONS(2397), + [anon_sym_shape] = ACTIONS(2397), + [anon_sym_tuple] = ACTIONS(2397), + [anon_sym_clone] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_namespace] = ACTIONS(2397), + [anon_sym_include] = ACTIONS(2397), + [anon_sym_include_once] = ACTIONS(2397), + [anon_sym_require] = ACTIONS(2397), + [anon_sym_require_once] = ACTIONS(2397), + [anon_sym_BSLASH] = ACTIONS(2399), + [anon_sym_self] = ACTIONS(2397), + [anon_sym_parent] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_LT_LT] = ACTIONS(2397), + [anon_sym_LT_LT_LT] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_throw] = ACTIONS(2397), + [anon_sym_echo] = ACTIONS(2397), + [anon_sym_unset] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_concurrent] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_switch] = ACTIONS(2397), + [anon_sym_foreach] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_using] = ACTIONS(2397), + [sym_float] = ACTIONS(2399), + [sym_integer] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_True] = ACTIONS(2397), + [anon_sym_TRUE] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [anon_sym_False] = ACTIONS(2397), + [anon_sym_FALSE] = ACTIONS(2397), + [anon_sym_null] = ACTIONS(2397), + [anon_sym_Null] = ACTIONS(2397), + [anon_sym_NULL] = ACTIONS(2397), + [sym_string] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_array] = ACTIONS(2397), + [anon_sym_varray] = ACTIONS(2397), + [anon_sym_darray] = ACTIONS(2397), + [anon_sym_vec] = ACTIONS(2397), + [anon_sym_dict] = ACTIONS(2397), + [anon_sym_keyset] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_list] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_interface] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_abstract] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(2399), + [sym_final_modifier] = ACTIONS(2397), + [sym_xhp_modifier] = ACTIONS(2397), + [sym_xhp_identifier] = ACTIONS(2397), + [sym_xhp_class_identifier] = ACTIONS(2399), [sym_comment] = ACTIONS(3), }, [1737] = { - [sym_identifier] = ACTIONS(2433), - [sym_variable] = ACTIONS(2435), - [sym_pipe_variable] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_newtype] = ACTIONS(2433), - [anon_sym_shape] = ACTIONS(2433), - [anon_sym_tuple] = ACTIONS(2433), - [anon_sym_clone] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_print] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_include] = ACTIONS(2433), - [anon_sym_include_once] = ACTIONS(2433), - [anon_sym_require] = ACTIONS(2433), - [anon_sym_require_once] = ACTIONS(2433), - [anon_sym_BSLASH] = ACTIONS(2435), - [anon_sym_self] = ACTIONS(2433), - [anon_sym_parent] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2433), - [anon_sym_LT_LT_LT] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_echo] = ACTIONS(2433), - [anon_sym_unset] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_concurrent] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_foreach] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [sym_float] = ACTIONS(2435), - [sym_integer] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_True] = ACTIONS(2433), - [anon_sym_TRUE] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [anon_sym_False] = ACTIONS(2433), - [anon_sym_FALSE] = ACTIONS(2433), - [anon_sym_null] = ACTIONS(2433), - [anon_sym_Null] = ACTIONS(2433), - [anon_sym_NULL] = ACTIONS(2433), - [sym_string] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_array] = ACTIONS(2433), - [anon_sym_varray] = ACTIONS(2433), - [anon_sym_darray] = ACTIONS(2433), - [anon_sym_vec] = ACTIONS(2433), - [anon_sym_dict] = ACTIONS(2433), - [anon_sym_keyset] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_interface] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_abstract] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2435), - [sym_final_modifier] = ACTIONS(2433), - [sym_xhp_modifier] = ACTIONS(2433), - [sym_xhp_identifier] = ACTIONS(2433), - [sym_xhp_class_identifier] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2441), + [sym_variable] = ACTIONS(2443), + [sym_pipe_variable] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_newtype] = ACTIONS(2441), + [anon_sym_shape] = ACTIONS(2441), + [anon_sym_tuple] = ACTIONS(2441), + [anon_sym_clone] = ACTIONS(2441), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_include] = ACTIONS(2441), + [anon_sym_include_once] = ACTIONS(2441), + [anon_sym_require] = ACTIONS(2441), + [anon_sym_require_once] = ACTIONS(2441), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_self] = ACTIONS(2441), + [anon_sym_parent] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_LT_LT_LT] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_throw] = ACTIONS(2441), + [anon_sym_echo] = ACTIONS(2441), + [anon_sym_unset] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_concurrent] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_switch] = ACTIONS(2441), + [anon_sym_foreach] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_using] = ACTIONS(2441), + [sym_float] = ACTIONS(2443), + [sym_integer] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_True] = ACTIONS(2441), + [anon_sym_TRUE] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [anon_sym_False] = ACTIONS(2441), + [anon_sym_FALSE] = ACTIONS(2441), + [anon_sym_null] = ACTIONS(2441), + [anon_sym_Null] = ACTIONS(2441), + [anon_sym_NULL] = ACTIONS(2441), + [sym_string] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(2443), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_array] = ACTIONS(2441), + [anon_sym_varray] = ACTIONS(2441), + [anon_sym_darray] = ACTIONS(2441), + [anon_sym_vec] = ACTIONS(2441), + [anon_sym_dict] = ACTIONS(2441), + [anon_sym_keyset] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_list] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_class] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_abstract] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2443), + [sym_final_modifier] = ACTIONS(2441), + [sym_xhp_modifier] = ACTIONS(2441), + [sym_xhp_identifier] = ACTIONS(2441), + [sym_xhp_class_identifier] = ACTIONS(2443), [sym_comment] = ACTIONS(3), }, [1738] = { - [ts_builtin_sym_end] = ACTIONS(2551), - [sym_identifier] = ACTIONS(2549), - [sym_variable] = ACTIONS(2551), - [sym_pipe_variable] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_newtype] = ACTIONS(2549), - [anon_sym_shape] = ACTIONS(2549), - [anon_sym_tuple] = ACTIONS(2549), - [anon_sym_clone] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_print] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_include] = ACTIONS(2549), - [anon_sym_include_once] = ACTIONS(2549), - [anon_sym_require] = ACTIONS(2549), - [anon_sym_require_once] = ACTIONS(2549), - [anon_sym_BSLASH] = ACTIONS(2551), - [anon_sym_self] = ACTIONS(2549), - [anon_sym_parent] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2549), - [anon_sym_LT_LT_LT] = ACTIONS(2551), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_echo] = ACTIONS(2549), - [anon_sym_unset] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_concurrent] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_foreach] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [sym_float] = ACTIONS(2551), - [sym_integer] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_True] = ACTIONS(2549), - [anon_sym_TRUE] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_False] = ACTIONS(2549), - [anon_sym_FALSE] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2549), - [anon_sym_Null] = ACTIONS(2549), - [anon_sym_NULL] = ACTIONS(2549), - [sym_string] = ACTIONS(2551), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_array] = ACTIONS(2549), - [anon_sym_varray] = ACTIONS(2549), - [anon_sym_darray] = ACTIONS(2549), - [anon_sym_vec] = ACTIONS(2549), - [anon_sym_dict] = ACTIONS(2549), - [anon_sym_keyset] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_list] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2551), - [sym_final_modifier] = ACTIONS(2549), - [sym_xhp_modifier] = ACTIONS(2549), - [sym_xhp_identifier] = ACTIONS(2549), - [sym_xhp_class_identifier] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2401), + [sym_variable] = ACTIONS(2403), + [sym_pipe_variable] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_newtype] = ACTIONS(2401), + [anon_sym_shape] = ACTIONS(2401), + [anon_sym_tuple] = ACTIONS(2401), + [anon_sym_clone] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_print] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2401), + [anon_sym_include] = ACTIONS(2401), + [anon_sym_include_once] = ACTIONS(2401), + [anon_sym_require] = ACTIONS(2401), + [anon_sym_require_once] = ACTIONS(2401), + [anon_sym_BSLASH] = ACTIONS(2403), + [anon_sym_self] = ACTIONS(2401), + [anon_sym_parent] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_LT_LT_LT] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_echo] = ACTIONS(2401), + [anon_sym_unset] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_concurrent] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_function] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_foreach] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_using] = ACTIONS(2401), + [sym_float] = ACTIONS(2403), + [sym_integer] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_True] = ACTIONS(2401), + [anon_sym_TRUE] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [anon_sym_False] = ACTIONS(2401), + [anon_sym_FALSE] = ACTIONS(2401), + [anon_sym_null] = ACTIONS(2401), + [anon_sym_Null] = ACTIONS(2401), + [anon_sym_NULL] = ACTIONS(2401), + [sym_string] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_array] = ACTIONS(2401), + [anon_sym_varray] = ACTIONS(2401), + [anon_sym_darray] = ACTIONS(2401), + [anon_sym_vec] = ACTIONS(2401), + [anon_sym_dict] = ACTIONS(2401), + [anon_sym_keyset] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_list] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2403), + [sym_final_modifier] = ACTIONS(2401), + [sym_xhp_modifier] = ACTIONS(2401), + [sym_xhp_identifier] = ACTIONS(2401), + [sym_xhp_class_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(3), }, [1739] = { - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2049), - [sym_variable] = ACTIONS(2051), - [sym_pipe_variable] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_newtype] = ACTIONS(2049), - [anon_sym_shape] = ACTIONS(2049), - [anon_sym_tuple] = ACTIONS(2049), - [anon_sym_clone] = ACTIONS(2049), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_print] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2049), - [anon_sym_include] = ACTIONS(2049), - [anon_sym_include_once] = ACTIONS(2049), - [anon_sym_require] = ACTIONS(2049), - [anon_sym_require_once] = ACTIONS(2049), - [anon_sym_BSLASH] = ACTIONS(2051), - [anon_sym_self] = ACTIONS(2049), - [anon_sym_parent] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_LT_LT_LT] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_throw] = ACTIONS(2049), - [anon_sym_echo] = ACTIONS(2049), - [anon_sym_unset] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_concurrent] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_switch] = ACTIONS(2049), - [anon_sym_foreach] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(2049), - [sym_float] = ACTIONS(2051), - [sym_integer] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_True] = ACTIONS(2049), - [anon_sym_TRUE] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_False] = ACTIONS(2049), - [anon_sym_FALSE] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [anon_sym_Null] = ACTIONS(2049), - [anon_sym_NULL] = ACTIONS(2049), - [sym_string] = ACTIONS(2051), - [anon_sym_AT] = ACTIONS(2051), - [anon_sym_TILDE] = ACTIONS(2051), - [anon_sym_array] = ACTIONS(2049), - [anon_sym_varray] = ACTIONS(2049), - [anon_sym_darray] = ACTIONS(2049), - [anon_sym_vec] = ACTIONS(2049), - [anon_sym_dict] = ACTIONS(2049), - [anon_sym_keyset] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_list] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_interface] = ACTIONS(2049), - [anon_sym_class] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_abstract] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2051), - [sym_final_modifier] = ACTIONS(2049), - [sym_xhp_modifier] = ACTIONS(2049), - [sym_xhp_identifier] = ACTIONS(2049), - [sym_xhp_class_identifier] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - }, - [1740] = { - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_identifier] = ACTIONS(2373), - [sym_variable] = ACTIONS(2375), - [sym_pipe_variable] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_newtype] = ACTIONS(2373), - [anon_sym_shape] = ACTIONS(2373), - [anon_sym_tuple] = ACTIONS(2373), - [anon_sym_clone] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_print] = ACTIONS(2373), - [anon_sym_namespace] = ACTIONS(2373), - [anon_sym_include] = ACTIONS(2373), - [anon_sym_include_once] = ACTIONS(2373), - [anon_sym_require] = ACTIONS(2373), - [anon_sym_require_once] = ACTIONS(2373), - [anon_sym_BSLASH] = ACTIONS(2375), - [anon_sym_self] = ACTIONS(2373), - [anon_sym_parent] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_LT_LT] = ACTIONS(2373), - [anon_sym_LT_LT_LT] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_throw] = ACTIONS(2373), - [anon_sym_echo] = ACTIONS(2373), - [anon_sym_unset] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_concurrent] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_function] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_switch] = ACTIONS(2373), - [anon_sym_foreach] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_using] = ACTIONS(2373), - [sym_float] = ACTIONS(2375), - [sym_integer] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_True] = ACTIONS(2373), - [anon_sym_TRUE] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_False] = ACTIONS(2373), - [anon_sym_FALSE] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [anon_sym_Null] = ACTIONS(2373), - [anon_sym_NULL] = ACTIONS(2373), - [sym_string] = ACTIONS(2375), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_array] = ACTIONS(2373), - [anon_sym_varray] = ACTIONS(2373), - [anon_sym_darray] = ACTIONS(2373), - [anon_sym_vec] = ACTIONS(2373), - [anon_sym_dict] = ACTIONS(2373), - [anon_sym_keyset] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_list] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2375), - [anon_sym_PLUS_PLUS] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_interface] = ACTIONS(2373), - [anon_sym_class] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_abstract] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2375), - [sym_final_modifier] = ACTIONS(2373), - [sym_xhp_modifier] = ACTIONS(2373), - [sym_xhp_identifier] = ACTIONS(2373), - [sym_xhp_class_identifier] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - }, - [1741] = { - [sym_identifier] = ACTIONS(2425), - [sym_variable] = ACTIONS(2427), - [sym_pipe_variable] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_newtype] = ACTIONS(2425), - [anon_sym_shape] = ACTIONS(2425), - [anon_sym_tuple] = ACTIONS(2425), - [anon_sym_clone] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_include] = ACTIONS(2425), - [anon_sym_include_once] = ACTIONS(2425), - [anon_sym_require] = ACTIONS(2425), - [anon_sym_require_once] = ACTIONS(2425), - [anon_sym_BSLASH] = ACTIONS(2427), - [anon_sym_self] = ACTIONS(2425), - [anon_sym_parent] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_LT_LT] = ACTIONS(2425), - [anon_sym_LT_LT_LT] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_echo] = ACTIONS(2425), - [anon_sym_unset] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_concurrent] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_function] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_foreach] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [sym_float] = ACTIONS(2427), - [sym_integer] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_True] = ACTIONS(2425), - [anon_sym_TRUE] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [anon_sym_False] = ACTIONS(2425), - [anon_sym_FALSE] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(2425), - [anon_sym_Null] = ACTIONS(2425), - [anon_sym_NULL] = ACTIONS(2425), - [sym_string] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_array] = ACTIONS(2425), - [anon_sym_varray] = ACTIONS(2425), - [anon_sym_darray] = ACTIONS(2425), - [anon_sym_vec] = ACTIONS(2425), - [anon_sym_dict] = ACTIONS(2425), - [anon_sym_keyset] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_interface] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_abstract] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(2427), - [sym_final_modifier] = ACTIONS(2425), - [sym_xhp_modifier] = ACTIONS(2425), - [sym_xhp_identifier] = ACTIONS(2425), - [sym_xhp_class_identifier] = ACTIONS(2427), - [sym_comment] = ACTIONS(3), - }, - [1742] = { - [sym_identifier] = ACTIONS(2089), - [sym_variable] = ACTIONS(2091), - [sym_pipe_variable] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_newtype] = ACTIONS(2089), - [anon_sym_shape] = ACTIONS(2089), - [anon_sym_tuple] = ACTIONS(2089), - [anon_sym_clone] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_print] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_include] = ACTIONS(2089), - [anon_sym_include_once] = ACTIONS(2089), - [anon_sym_require] = ACTIONS(2089), - [anon_sym_require_once] = ACTIONS(2089), - [anon_sym_BSLASH] = ACTIONS(2091), - [anon_sym_self] = ACTIONS(2089), - [anon_sym_parent] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_LT_LT_LT] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_throw] = ACTIONS(2089), - [anon_sym_echo] = ACTIONS(2089), - [anon_sym_unset] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_concurrent] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_foreach] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_using] = ACTIONS(2089), - [sym_float] = ACTIONS(2091), - [sym_integer] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_True] = ACTIONS(2089), - [anon_sym_TRUE] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_False] = ACTIONS(2089), - [anon_sym_FALSE] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_Null] = ACTIONS(2089), - [anon_sym_NULL] = ACTIONS(2089), - [sym_string] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_array] = ACTIONS(2089), - [anon_sym_varray] = ACTIONS(2089), - [anon_sym_darray] = ACTIONS(2089), - [anon_sym_vec] = ACTIONS(2089), - [anon_sym_dict] = ACTIONS(2089), - [anon_sym_keyset] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_abstract] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2091), - [sym_final_modifier] = ACTIONS(2089), - [sym_xhp_modifier] = ACTIONS(2089), - [sym_xhp_identifier] = ACTIONS(2089), - [sym_xhp_class_identifier] = ACTIONS(2091), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2053), + [sym_variable] = ACTIONS(2055), + [sym_pipe_variable] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_newtype] = ACTIONS(2053), + [anon_sym_shape] = ACTIONS(2053), + [anon_sym_tuple] = ACTIONS(2053), + [anon_sym_clone] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_include_once] = ACTIONS(2053), + [anon_sym_require] = ACTIONS(2053), + [anon_sym_require_once] = ACTIONS(2053), + [anon_sym_BSLASH] = ACTIONS(2055), + [anon_sym_self] = ACTIONS(2053), + [anon_sym_parent] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_LT_LT_LT] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_throw] = ACTIONS(2053), + [anon_sym_echo] = ACTIONS(2053), + [anon_sym_unset] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_concurrent] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_switch] = ACTIONS(2053), + [anon_sym_foreach] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_using] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [sym_integer] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_True] = ACTIONS(2053), + [anon_sym_TRUE] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_False] = ACTIONS(2053), + [anon_sym_FALSE] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_Null] = ACTIONS(2053), + [anon_sym_NULL] = ACTIONS(2053), + [sym_string] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_array] = ACTIONS(2053), + [anon_sym_varray] = ACTIONS(2053), + [anon_sym_darray] = ACTIONS(2053), + [anon_sym_vec] = ACTIONS(2053), + [anon_sym_dict] = ACTIONS(2053), + [anon_sym_keyset] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_list] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_abstract] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2055), + [sym_final_modifier] = ACTIONS(2053), + [sym_xhp_modifier] = ACTIONS(2053), + [sym_xhp_identifier] = ACTIONS(2053), + [sym_xhp_class_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(3), }, - [1743] = { - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_identifier] = ACTIONS(2365), - [sym_variable] = ACTIONS(2367), - [sym_pipe_variable] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_newtype] = ACTIONS(2365), - [anon_sym_shape] = ACTIONS(2365), - [anon_sym_tuple] = ACTIONS(2365), - [anon_sym_clone] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_print] = ACTIONS(2365), - [anon_sym_namespace] = ACTIONS(2365), - [anon_sym_include] = ACTIONS(2365), - [anon_sym_include_once] = ACTIONS(2365), - [anon_sym_require] = ACTIONS(2365), - [anon_sym_require_once] = ACTIONS(2365), - [anon_sym_BSLASH] = ACTIONS(2367), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_parent] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2365), - [anon_sym_LT_LT_LT] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_throw] = ACTIONS(2365), - [anon_sym_echo] = ACTIONS(2365), - [anon_sym_unset] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_concurrent] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_function] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_foreach] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_using] = ACTIONS(2365), - [sym_float] = ACTIONS(2367), - [sym_integer] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_True] = ACTIONS(2365), - [anon_sym_TRUE] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_False] = ACTIONS(2365), - [anon_sym_FALSE] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [anon_sym_Null] = ACTIONS(2365), - [anon_sym_NULL] = ACTIONS(2365), - [sym_string] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_array] = ACTIONS(2365), - [anon_sym_varray] = ACTIONS(2365), - [anon_sym_darray] = ACTIONS(2365), - [anon_sym_vec] = ACTIONS(2365), - [anon_sym_dict] = ACTIONS(2365), - [anon_sym_keyset] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_list] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2367), - [anon_sym_PLUS_PLUS] = ACTIONS(2367), - [anon_sym_DASH_DASH] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_interface] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_abstract] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2367), - [sym_final_modifier] = ACTIONS(2365), - [sym_xhp_modifier] = ACTIONS(2365), - [sym_xhp_identifier] = ACTIONS(2365), - [sym_xhp_class_identifier] = ACTIONS(2367), + [1740] = { + [sym_identifier] = ACTIONS(2405), + [sym_variable] = ACTIONS(2407), + [sym_pipe_variable] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_newtype] = ACTIONS(2405), + [anon_sym_shape] = ACTIONS(2405), + [anon_sym_tuple] = ACTIONS(2405), + [anon_sym_clone] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_print] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_include] = ACTIONS(2405), + [anon_sym_include_once] = ACTIONS(2405), + [anon_sym_require] = ACTIONS(2405), + [anon_sym_require_once] = ACTIONS(2405), + [anon_sym_BSLASH] = ACTIONS(2407), + [anon_sym_self] = ACTIONS(2405), + [anon_sym_parent] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_LT_LT] = ACTIONS(2405), + [anon_sym_LT_LT_LT] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_echo] = ACTIONS(2405), + [anon_sym_unset] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_concurrent] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_foreach] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [sym_float] = ACTIONS(2407), + [sym_integer] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_True] = ACTIONS(2405), + [anon_sym_TRUE] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [anon_sym_False] = ACTIONS(2405), + [anon_sym_FALSE] = ACTIONS(2405), + [anon_sym_null] = ACTIONS(2405), + [anon_sym_Null] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2405), + [sym_string] = ACTIONS(2407), + [anon_sym_AT] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_array] = ACTIONS(2405), + [anon_sym_varray] = ACTIONS(2405), + [anon_sym_darray] = ACTIONS(2405), + [anon_sym_vec] = ACTIONS(2405), + [anon_sym_dict] = ACTIONS(2405), + [anon_sym_keyset] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_list] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_abstract] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2407), + [sym_final_modifier] = ACTIONS(2405), + [sym_xhp_modifier] = ACTIONS(2405), + [sym_xhp_identifier] = ACTIONS(2405), + [sym_xhp_class_identifier] = ACTIONS(2407), [sym_comment] = ACTIONS(3), }, - [1744] = { + [1741] = { [sym_identifier] = ACTIONS(2409), [sym_variable] = ACTIONS(2411), [sym_pipe_variable] = ACTIONS(2411), @@ -195675,93 +188991,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2411), [sym_comment] = ACTIONS(3), }, - [1745] = { - [sym_identifier] = ACTIONS(2405), - [sym_variable] = ACTIONS(2407), - [sym_pipe_variable] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_newtype] = ACTIONS(2405), - [anon_sym_shape] = ACTIONS(2405), - [anon_sym_tuple] = ACTIONS(2405), - [anon_sym_clone] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_include] = ACTIONS(2405), - [anon_sym_include_once] = ACTIONS(2405), - [anon_sym_require] = ACTIONS(2405), - [anon_sym_require_once] = ACTIONS(2405), - [anon_sym_BSLASH] = ACTIONS(2407), - [anon_sym_self] = ACTIONS(2405), - [anon_sym_parent] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_LT_LT] = ACTIONS(2405), - [anon_sym_LT_LT_LT] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_echo] = ACTIONS(2405), - [anon_sym_unset] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_concurrent] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_foreach] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [sym_float] = ACTIONS(2407), - [sym_integer] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_True] = ACTIONS(2405), - [anon_sym_TRUE] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [anon_sym_False] = ACTIONS(2405), - [anon_sym_FALSE] = ACTIONS(2405), - [anon_sym_null] = ACTIONS(2405), - [anon_sym_Null] = ACTIONS(2405), - [anon_sym_NULL] = ACTIONS(2405), - [sym_string] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_array] = ACTIONS(2405), - [anon_sym_varray] = ACTIONS(2405), - [anon_sym_darray] = ACTIONS(2405), - [anon_sym_vec] = ACTIONS(2405), - [anon_sym_dict] = ACTIONS(2405), - [anon_sym_keyset] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2405), - [anon_sym_trait] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_abstract] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2407), - [sym_final_modifier] = ACTIONS(2405), - [sym_xhp_modifier] = ACTIONS(2405), - [sym_xhp_identifier] = ACTIONS(2405), - [sym_xhp_class_identifier] = ACTIONS(2407), + [1742] = { + [sym_identifier] = ACTIONS(2413), + [sym_variable] = ACTIONS(2415), + [sym_pipe_variable] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_newtype] = ACTIONS(2413), + [anon_sym_shape] = ACTIONS(2413), + [anon_sym_tuple] = ACTIONS(2413), + [anon_sym_clone] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_print] = ACTIONS(2413), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_include] = ACTIONS(2413), + [anon_sym_include_once] = ACTIONS(2413), + [anon_sym_require] = ACTIONS(2413), + [anon_sym_require_once] = ACTIONS(2413), + [anon_sym_BSLASH] = ACTIONS(2415), + [anon_sym_self] = ACTIONS(2413), + [anon_sym_parent] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_LT_LT] = ACTIONS(2413), + [anon_sym_LT_LT_LT] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_throw] = ACTIONS(2413), + [anon_sym_echo] = ACTIONS(2413), + [anon_sym_unset] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_concurrent] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_switch] = ACTIONS(2413), + [anon_sym_foreach] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_using] = ACTIONS(2413), + [sym_float] = ACTIONS(2415), + [sym_integer] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_True] = ACTIONS(2413), + [anon_sym_TRUE] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [anon_sym_False] = ACTIONS(2413), + [anon_sym_FALSE] = ACTIONS(2413), + [anon_sym_null] = ACTIONS(2413), + [anon_sym_Null] = ACTIONS(2413), + [anon_sym_NULL] = ACTIONS(2413), + [sym_string] = ACTIONS(2415), + [anon_sym_AT] = ACTIONS(2415), + [anon_sym_TILDE] = ACTIONS(2415), + [anon_sym_array] = ACTIONS(2413), + [anon_sym_varray] = ACTIONS(2413), + [anon_sym_darray] = ACTIONS(2413), + [anon_sym_vec] = ACTIONS(2413), + [anon_sym_dict] = ACTIONS(2413), + [anon_sym_keyset] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_list] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_PLUS_PLUS] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_interface] = ACTIONS(2413), + [anon_sym_class] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_abstract] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(2415), + [sym_final_modifier] = ACTIONS(2413), + [sym_xhp_modifier] = ACTIONS(2413), + [sym_xhp_identifier] = ACTIONS(2413), + [sym_xhp_class_identifier] = ACTIONS(2415), [sym_comment] = ACTIONS(3), }, - [1746] = { + [1743] = { + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2093), [sym_variable] = ACTIONS(2095), [sym_pipe_variable] = ACTIONS(2095), @@ -195783,7 +189100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(2093), [anon_sym_LT_LT] = ACTIONS(2093), [anon_sym_LT_LT_LT] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), [anon_sym_LBRACE] = ACTIONS(2095), [anon_sym_SEMI] = ACTIONS(2095), [anon_sym_return] = ACTIONS(2093), @@ -195847,1955 +189163,2228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1747] = { - [ts_builtin_sym_end] = ACTIONS(2479), - [sym_identifier] = ACTIONS(2477), - [sym_variable] = ACTIONS(2479), - [sym_pipe_variable] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_newtype] = ACTIONS(2477), - [anon_sym_shape] = ACTIONS(2477), - [anon_sym_tuple] = ACTIONS(2477), - [anon_sym_clone] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_print] = ACTIONS(2477), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_include] = ACTIONS(2477), - [anon_sym_include_once] = ACTIONS(2477), - [anon_sym_require] = ACTIONS(2477), - [anon_sym_require_once] = ACTIONS(2477), - [anon_sym_BSLASH] = ACTIONS(2479), - [anon_sym_self] = ACTIONS(2477), - [anon_sym_parent] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_LT_LT_LT] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_throw] = ACTIONS(2477), - [anon_sym_echo] = ACTIONS(2477), - [anon_sym_unset] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_concurrent] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_switch] = ACTIONS(2477), - [anon_sym_foreach] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_using] = ACTIONS(2477), - [sym_float] = ACTIONS(2479), - [sym_integer] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_True] = ACTIONS(2477), - [anon_sym_TRUE] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [anon_sym_False] = ACTIONS(2477), - [anon_sym_FALSE] = ACTIONS(2477), - [anon_sym_null] = ACTIONS(2477), - [anon_sym_Null] = ACTIONS(2477), - [anon_sym_NULL] = ACTIONS(2477), - [sym_string] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_array] = ACTIONS(2477), - [anon_sym_varray] = ACTIONS(2477), - [anon_sym_darray] = ACTIONS(2477), - [anon_sym_vec] = ACTIONS(2477), - [anon_sym_dict] = ACTIONS(2477), - [anon_sym_keyset] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_trait] = ACTIONS(2477), - [anon_sym_interface] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_abstract] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2479), - [sym_final_modifier] = ACTIONS(2477), - [sym_xhp_modifier] = ACTIONS(2477), - [sym_xhp_identifier] = ACTIONS(2477), - [sym_xhp_class_identifier] = ACTIONS(2479), + [1744] = { + [sym_identifier] = ACTIONS(2417), + [sym_variable] = ACTIONS(2419), + [sym_pipe_variable] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_newtype] = ACTIONS(2417), + [anon_sym_shape] = ACTIONS(2417), + [anon_sym_tuple] = ACTIONS(2417), + [anon_sym_clone] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2417), + [anon_sym_include] = ACTIONS(2417), + [anon_sym_include_once] = ACTIONS(2417), + [anon_sym_require] = ACTIONS(2417), + [anon_sym_require_once] = ACTIONS(2417), + [anon_sym_BSLASH] = ACTIONS(2419), + [anon_sym_self] = ACTIONS(2417), + [anon_sym_parent] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_LT_LT] = ACTIONS(2417), + [anon_sym_LT_LT_LT] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_throw] = ACTIONS(2417), + [anon_sym_echo] = ACTIONS(2417), + [anon_sym_unset] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_concurrent] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_function] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_switch] = ACTIONS(2417), + [anon_sym_foreach] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_using] = ACTIONS(2417), + [sym_float] = ACTIONS(2419), + [sym_integer] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_True] = ACTIONS(2417), + [anon_sym_TRUE] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [anon_sym_False] = ACTIONS(2417), + [anon_sym_FALSE] = ACTIONS(2417), + [anon_sym_null] = ACTIONS(2417), + [anon_sym_Null] = ACTIONS(2417), + [anon_sym_NULL] = ACTIONS(2417), + [sym_string] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_array] = ACTIONS(2417), + [anon_sym_varray] = ACTIONS(2417), + [anon_sym_darray] = ACTIONS(2417), + [anon_sym_vec] = ACTIONS(2417), + [anon_sym_dict] = ACTIONS(2417), + [anon_sym_keyset] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_list] = ACTIONS(2417), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_interface] = ACTIONS(2417), + [anon_sym_class] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_abstract] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(2419), + [sym_final_modifier] = ACTIONS(2417), + [sym_xhp_modifier] = ACTIONS(2417), + [sym_xhp_identifier] = ACTIONS(2417), + [sym_xhp_class_identifier] = ACTIONS(2419), [sym_comment] = ACTIONS(3), }, - [1748] = { - [sym_identifier] = ACTIONS(2397), - [sym_variable] = ACTIONS(2399), - [sym_pipe_variable] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_newtype] = ACTIONS(2397), - [anon_sym_shape] = ACTIONS(2397), - [anon_sym_tuple] = ACTIONS(2397), - [anon_sym_clone] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_print] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_include] = ACTIONS(2397), - [anon_sym_include_once] = ACTIONS(2397), - [anon_sym_require] = ACTIONS(2397), - [anon_sym_require_once] = ACTIONS(2397), - [anon_sym_BSLASH] = ACTIONS(2399), - [anon_sym_self] = ACTIONS(2397), - [anon_sym_parent] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_LT_LT] = ACTIONS(2397), - [anon_sym_LT_LT_LT] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_echo] = ACTIONS(2397), - [anon_sym_unset] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_concurrent] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_foreach] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [sym_float] = ACTIONS(2399), - [sym_integer] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_True] = ACTIONS(2397), - [anon_sym_TRUE] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [anon_sym_False] = ACTIONS(2397), - [anon_sym_FALSE] = ACTIONS(2397), - [anon_sym_null] = ACTIONS(2397), - [anon_sym_Null] = ACTIONS(2397), - [anon_sym_NULL] = ACTIONS(2397), - [sym_string] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_array] = ACTIONS(2397), - [anon_sym_varray] = ACTIONS(2397), - [anon_sym_darray] = ACTIONS(2397), - [anon_sym_vec] = ACTIONS(2397), - [anon_sym_dict] = ACTIONS(2397), - [anon_sym_keyset] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_interface] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_abstract] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(2399), - [sym_final_modifier] = ACTIONS(2397), - [sym_xhp_modifier] = ACTIONS(2397), - [sym_xhp_identifier] = ACTIONS(2397), - [sym_xhp_class_identifier] = ACTIONS(2399), + [1745] = { + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, - [1749] = { - [sym_identifier] = ACTIONS(2101), - [sym_variable] = ACTIONS(2103), - [sym_pipe_variable] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_newtype] = ACTIONS(2101), - [anon_sym_shape] = ACTIONS(2101), - [anon_sym_tuple] = ACTIONS(2101), - [anon_sym_clone] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_print] = ACTIONS(2101), - [anon_sym_namespace] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_include_once] = ACTIONS(2101), - [anon_sym_require] = ACTIONS(2101), - [anon_sym_require_once] = ACTIONS(2101), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_self] = ACTIONS(2101), - [anon_sym_parent] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_LT_LT_LT] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_echo] = ACTIONS(2101), - [anon_sym_unset] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_concurrent] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_function] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_switch] = ACTIONS(2101), - [anon_sym_foreach] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_using] = ACTIONS(2101), - [sym_float] = ACTIONS(2103), - [sym_integer] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_True] = ACTIONS(2101), - [anon_sym_TRUE] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_False] = ACTIONS(2101), - [anon_sym_FALSE] = ACTIONS(2101), - [anon_sym_null] = ACTIONS(2101), - [anon_sym_Null] = ACTIONS(2101), - [anon_sym_NULL] = ACTIONS(2101), - [sym_string] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_array] = ACTIONS(2101), - [anon_sym_varray] = ACTIONS(2101), - [anon_sym_darray] = ACTIONS(2101), - [anon_sym_vec] = ACTIONS(2101), - [anon_sym_dict] = ACTIONS(2101), - [anon_sym_keyset] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_list] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2103), - [sym_final_modifier] = ACTIONS(2101), - [sym_xhp_modifier] = ACTIONS(2101), - [sym_xhp_identifier] = ACTIONS(2101), - [sym_xhp_class_identifier] = ACTIONS(2103), + [1746] = { + [sym_identifier] = ACTIONS(2421), + [sym_variable] = ACTIONS(2423), + [sym_pipe_variable] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_newtype] = ACTIONS(2421), + [anon_sym_shape] = ACTIONS(2421), + [anon_sym_tuple] = ACTIONS(2421), + [anon_sym_clone] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_print] = ACTIONS(2421), + [anon_sym_namespace] = ACTIONS(2421), + [anon_sym_include] = ACTIONS(2421), + [anon_sym_include_once] = ACTIONS(2421), + [anon_sym_require] = ACTIONS(2421), + [anon_sym_require_once] = ACTIONS(2421), + [anon_sym_BSLASH] = ACTIONS(2423), + [anon_sym_self] = ACTIONS(2421), + [anon_sym_parent] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_LT_LT_LT] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_throw] = ACTIONS(2421), + [anon_sym_echo] = ACTIONS(2421), + [anon_sym_unset] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_concurrent] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_switch] = ACTIONS(2421), + [anon_sym_foreach] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_using] = ACTIONS(2421), + [sym_float] = ACTIONS(2423), + [sym_integer] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_True] = ACTIONS(2421), + [anon_sym_TRUE] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_False] = ACTIONS(2421), + [anon_sym_FALSE] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2421), + [anon_sym_Null] = ACTIONS(2421), + [anon_sym_NULL] = ACTIONS(2421), + [sym_string] = ACTIONS(2423), + [anon_sym_AT] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_array] = ACTIONS(2421), + [anon_sym_varray] = ACTIONS(2421), + [anon_sym_darray] = ACTIONS(2421), + [anon_sym_vec] = ACTIONS(2421), + [anon_sym_dict] = ACTIONS(2421), + [anon_sym_keyset] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_list] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_class] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_abstract] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2423), + [sym_final_modifier] = ACTIONS(2421), + [sym_xhp_modifier] = ACTIONS(2421), + [sym_xhp_identifier] = ACTIONS(2421), + [sym_xhp_class_identifier] = ACTIONS(2423), + [sym_comment] = ACTIONS(3), + }, + [1747] = { + [sym_identifier] = ACTIONS(2425), + [sym_variable] = ACTIONS(2427), + [sym_pipe_variable] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_newtype] = ACTIONS(2425), + [anon_sym_shape] = ACTIONS(2425), + [anon_sym_tuple] = ACTIONS(2425), + [anon_sym_clone] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_print] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_include] = ACTIONS(2425), + [anon_sym_include_once] = ACTIONS(2425), + [anon_sym_require] = ACTIONS(2425), + [anon_sym_require_once] = ACTIONS(2425), + [anon_sym_BSLASH] = ACTIONS(2427), + [anon_sym_self] = ACTIONS(2425), + [anon_sym_parent] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_LT_LT_LT] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_echo] = ACTIONS(2425), + [anon_sym_unset] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_concurrent] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2425), + [anon_sym_foreach] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_using] = ACTIONS(2425), + [sym_float] = ACTIONS(2427), + [sym_integer] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_True] = ACTIONS(2425), + [anon_sym_TRUE] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_False] = ACTIONS(2425), + [anon_sym_FALSE] = ACTIONS(2425), + [anon_sym_null] = ACTIONS(2425), + [anon_sym_Null] = ACTIONS(2425), + [anon_sym_NULL] = ACTIONS(2425), + [sym_string] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_array] = ACTIONS(2425), + [anon_sym_varray] = ACTIONS(2425), + [anon_sym_darray] = ACTIONS(2425), + [anon_sym_vec] = ACTIONS(2425), + [anon_sym_dict] = ACTIONS(2425), + [anon_sym_keyset] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_list] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_interface] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_abstract] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2427), + [sym_final_modifier] = ACTIONS(2425), + [sym_xhp_modifier] = ACTIONS(2425), + [sym_xhp_identifier] = ACTIONS(2425), + [sym_xhp_class_identifier] = ACTIONS(2427), + [sym_comment] = ACTIONS(3), + }, + [1748] = { + [sym_identifier] = ACTIONS(2429), + [sym_variable] = ACTIONS(2431), + [sym_pipe_variable] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_newtype] = ACTIONS(2429), + [anon_sym_shape] = ACTIONS(2429), + [anon_sym_tuple] = ACTIONS(2429), + [anon_sym_clone] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_include] = ACTIONS(2429), + [anon_sym_include_once] = ACTIONS(2429), + [anon_sym_require] = ACTIONS(2429), + [anon_sym_require_once] = ACTIONS(2429), + [anon_sym_BSLASH] = ACTIONS(2431), + [anon_sym_self] = ACTIONS(2429), + [anon_sym_parent] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_throw] = ACTIONS(2429), + [anon_sym_echo] = ACTIONS(2429), + [anon_sym_unset] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_concurrent] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(2429), + [anon_sym_foreach] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_using] = ACTIONS(2429), + [sym_float] = ACTIONS(2431), + [sym_integer] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_True] = ACTIONS(2429), + [anon_sym_TRUE] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_False] = ACTIONS(2429), + [anon_sym_FALSE] = ACTIONS(2429), + [anon_sym_null] = ACTIONS(2429), + [anon_sym_Null] = ACTIONS(2429), + [anon_sym_NULL] = ACTIONS(2429), + [sym_string] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_array] = ACTIONS(2429), + [anon_sym_varray] = ACTIONS(2429), + [anon_sym_darray] = ACTIONS(2429), + [anon_sym_vec] = ACTIONS(2429), + [anon_sym_dict] = ACTIONS(2429), + [anon_sym_keyset] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2429), + [anon_sym_list] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_interface] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_abstract] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(2431), + [sym_final_modifier] = ACTIONS(2429), + [sym_xhp_modifier] = ACTIONS(2429), + [sym_xhp_identifier] = ACTIONS(2429), + [sym_xhp_class_identifier] = ACTIONS(2431), + [sym_comment] = ACTIONS(3), + }, + [1749] = { + [sym_identifier] = ACTIONS(2433), + [sym_variable] = ACTIONS(2435), + [sym_pipe_variable] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_newtype] = ACTIONS(2433), + [anon_sym_shape] = ACTIONS(2433), + [anon_sym_tuple] = ACTIONS(2433), + [anon_sym_clone] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_print] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2433), + [anon_sym_include] = ACTIONS(2433), + [anon_sym_include_once] = ACTIONS(2433), + [anon_sym_require] = ACTIONS(2433), + [anon_sym_require_once] = ACTIONS(2433), + [anon_sym_BSLASH] = ACTIONS(2435), + [anon_sym_self] = ACTIONS(2433), + [anon_sym_parent] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_LT_LT_LT] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_throw] = ACTIONS(2433), + [anon_sym_echo] = ACTIONS(2433), + [anon_sym_unset] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_concurrent] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_switch] = ACTIONS(2433), + [anon_sym_foreach] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_using] = ACTIONS(2433), + [sym_float] = ACTIONS(2435), + [sym_integer] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_True] = ACTIONS(2433), + [anon_sym_TRUE] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_False] = ACTIONS(2433), + [anon_sym_FALSE] = ACTIONS(2433), + [anon_sym_null] = ACTIONS(2433), + [anon_sym_Null] = ACTIONS(2433), + [anon_sym_NULL] = ACTIONS(2433), + [sym_string] = ACTIONS(2435), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_array] = ACTIONS(2433), + [anon_sym_varray] = ACTIONS(2433), + [anon_sym_darray] = ACTIONS(2433), + [anon_sym_vec] = ACTIONS(2433), + [anon_sym_dict] = ACTIONS(2433), + [anon_sym_keyset] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_list] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(2435), + [anon_sym_DASH_DASH] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_abstract] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2435), + [sym_final_modifier] = ACTIONS(2433), + [sym_xhp_modifier] = ACTIONS(2433), + [sym_xhp_identifier] = ACTIONS(2433), + [sym_xhp_class_identifier] = ACTIONS(2435), [sym_comment] = ACTIONS(3), }, [1750] = { - [sym_identifier] = ACTIONS(2401), - [sym_variable] = ACTIONS(2403), - [sym_pipe_variable] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_newtype] = ACTIONS(2401), - [anon_sym_shape] = ACTIONS(2401), - [anon_sym_tuple] = ACTIONS(2401), - [anon_sym_clone] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_print] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_include] = ACTIONS(2401), - [anon_sym_include_once] = ACTIONS(2401), - [anon_sym_require] = ACTIONS(2401), - [anon_sym_require_once] = ACTIONS(2401), - [anon_sym_BSLASH] = ACTIONS(2403), - [anon_sym_self] = ACTIONS(2401), - [anon_sym_parent] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2401), - [anon_sym_LT_LT_LT] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_echo] = ACTIONS(2401), - [anon_sym_unset] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_concurrent] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_function] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_foreach] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [sym_float] = ACTIONS(2403), - [sym_integer] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_True] = ACTIONS(2401), - [anon_sym_TRUE] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [anon_sym_False] = ACTIONS(2401), - [anon_sym_FALSE] = ACTIONS(2401), - [anon_sym_null] = ACTIONS(2401), - [anon_sym_Null] = ACTIONS(2401), - [anon_sym_NULL] = ACTIONS(2401), - [sym_string] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_array] = ACTIONS(2401), - [anon_sym_varray] = ACTIONS(2401), - [anon_sym_darray] = ACTIONS(2401), - [anon_sym_vec] = ACTIONS(2401), - [anon_sym_dict] = ACTIONS(2401), - [anon_sym_keyset] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_interface] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2403), - [sym_final_modifier] = ACTIONS(2401), - [sym_xhp_modifier] = ACTIONS(2401), - [sym_xhp_identifier] = ACTIONS(2401), - [sym_xhp_class_identifier] = ACTIONS(2403), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2093), + [sym_variable] = ACTIONS(2095), + [sym_pipe_variable] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_newtype] = ACTIONS(2093), + [anon_sym_shape] = ACTIONS(2093), + [anon_sym_tuple] = ACTIONS(2093), + [anon_sym_clone] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_include_once] = ACTIONS(2093), + [anon_sym_require] = ACTIONS(2093), + [anon_sym_require_once] = ACTIONS(2093), + [anon_sym_BSLASH] = ACTIONS(2095), + [anon_sym_self] = ACTIONS(2093), + [anon_sym_parent] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_LT_LT_LT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_throw] = ACTIONS(2093), + [anon_sym_echo] = ACTIONS(2093), + [anon_sym_unset] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_concurrent] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_foreach] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_do] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_using] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [sym_integer] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_True] = ACTIONS(2093), + [anon_sym_TRUE] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_False] = ACTIONS(2093), + [anon_sym_FALSE] = ACTIONS(2093), + [anon_sym_null] = ACTIONS(2093), + [anon_sym_Null] = ACTIONS(2093), + [anon_sym_NULL] = ACTIONS(2093), + [sym_string] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_array] = ACTIONS(2093), + [anon_sym_varray] = ACTIONS(2093), + [anon_sym_darray] = ACTIONS(2093), + [anon_sym_vec] = ACTIONS(2093), + [anon_sym_dict] = ACTIONS(2093), + [anon_sym_keyset] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_list] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_abstract] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2095), + [sym_final_modifier] = ACTIONS(2093), + [sym_xhp_modifier] = ACTIONS(2093), + [sym_xhp_identifier] = ACTIONS(2093), + [sym_xhp_class_identifier] = ACTIONS(2095), [sym_comment] = ACTIONS(3), }, [1751] = { - [sym_identifier] = ACTIONS(2389), - [sym_variable] = ACTIONS(2391), - [sym_pipe_variable] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_newtype] = ACTIONS(2389), - [anon_sym_shape] = ACTIONS(2389), - [anon_sym_tuple] = ACTIONS(2389), - [anon_sym_clone] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_print] = ACTIONS(2389), - [anon_sym_namespace] = ACTIONS(2389), - [anon_sym_include] = ACTIONS(2389), - [anon_sym_include_once] = ACTIONS(2389), - [anon_sym_require] = ACTIONS(2389), - [anon_sym_require_once] = ACTIONS(2389), - [anon_sym_BSLASH] = ACTIONS(2391), - [anon_sym_self] = ACTIONS(2389), - [anon_sym_parent] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2389), - [anon_sym_LT_LT_LT] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_throw] = ACTIONS(2389), - [anon_sym_echo] = ACTIONS(2389), - [anon_sym_unset] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_concurrent] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_foreach] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_using] = ACTIONS(2389), - [sym_float] = ACTIONS(2391), - [sym_integer] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_True] = ACTIONS(2389), - [anon_sym_TRUE] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [anon_sym_False] = ACTIONS(2389), - [anon_sym_FALSE] = ACTIONS(2389), - [anon_sym_null] = ACTIONS(2389), - [anon_sym_Null] = ACTIONS(2389), - [anon_sym_NULL] = ACTIONS(2389), - [sym_string] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_array] = ACTIONS(2389), - [anon_sym_varray] = ACTIONS(2389), - [anon_sym_darray] = ACTIONS(2389), - [anon_sym_vec] = ACTIONS(2389), - [anon_sym_dict] = ACTIONS(2389), - [anon_sym_keyset] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_PLUS_PLUS] = ACTIONS(2391), - [anon_sym_DASH_DASH] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_interface] = ACTIONS(2389), - [anon_sym_class] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_abstract] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2391), - [sym_final_modifier] = ACTIONS(2389), - [sym_xhp_modifier] = ACTIONS(2389), - [sym_xhp_identifier] = ACTIONS(2389), - [sym_xhp_class_identifier] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2437), + [sym_variable] = ACTIONS(2439), + [sym_pipe_variable] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_newtype] = ACTIONS(2437), + [anon_sym_shape] = ACTIONS(2437), + [anon_sym_tuple] = ACTIONS(2437), + [anon_sym_clone] = ACTIONS(2437), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_print] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_include] = ACTIONS(2437), + [anon_sym_include_once] = ACTIONS(2437), + [anon_sym_require] = ACTIONS(2437), + [anon_sym_require_once] = ACTIONS(2437), + [anon_sym_BSLASH] = ACTIONS(2439), + [anon_sym_self] = ACTIONS(2437), + [anon_sym_parent] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_LT_LT] = ACTIONS(2437), + [anon_sym_LT_LT_LT] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_throw] = ACTIONS(2437), + [anon_sym_echo] = ACTIONS(2437), + [anon_sym_unset] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_concurrent] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_switch] = ACTIONS(2437), + [anon_sym_foreach] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_using] = ACTIONS(2437), + [sym_float] = ACTIONS(2439), + [sym_integer] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_True] = ACTIONS(2437), + [anon_sym_TRUE] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_False] = ACTIONS(2437), + [anon_sym_FALSE] = ACTIONS(2437), + [anon_sym_null] = ACTIONS(2437), + [anon_sym_Null] = ACTIONS(2437), + [anon_sym_NULL] = ACTIONS(2437), + [sym_string] = ACTIONS(2439), + [anon_sym_AT] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_array] = ACTIONS(2437), + [anon_sym_varray] = ACTIONS(2437), + [anon_sym_darray] = ACTIONS(2437), + [anon_sym_vec] = ACTIONS(2437), + [anon_sym_dict] = ACTIONS(2437), + [anon_sym_keyset] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_list] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_interface] = ACTIONS(2437), + [anon_sym_class] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_abstract] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [sym_final_modifier] = ACTIONS(2437), + [sym_xhp_modifier] = ACTIONS(2437), + [sym_xhp_identifier] = ACTIONS(2437), + [sym_xhp_class_identifier] = ACTIONS(2439), [sym_comment] = ACTIONS(3), }, [1752] = { - [sym_identifier] = ACTIONS(2385), - [sym_variable] = ACTIONS(2387), - [sym_pipe_variable] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_newtype] = ACTIONS(2385), - [anon_sym_shape] = ACTIONS(2385), - [anon_sym_tuple] = ACTIONS(2385), - [anon_sym_clone] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_print] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_include] = ACTIONS(2385), - [anon_sym_include_once] = ACTIONS(2385), - [anon_sym_require] = ACTIONS(2385), - [anon_sym_require_once] = ACTIONS(2385), - [anon_sym_BSLASH] = ACTIONS(2387), - [anon_sym_self] = ACTIONS(2385), - [anon_sym_parent] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_LT_LT] = ACTIONS(2385), - [anon_sym_LT_LT_LT] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_echo] = ACTIONS(2385), - [anon_sym_unset] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_concurrent] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_function] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_foreach] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [sym_float] = ACTIONS(2387), - [sym_integer] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_True] = ACTIONS(2385), - [anon_sym_TRUE] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_False] = ACTIONS(2385), - [anon_sym_FALSE] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2385), - [anon_sym_Null] = ACTIONS(2385), - [anon_sym_NULL] = ACTIONS(2385), - [sym_string] = ACTIONS(2387), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_array] = ACTIONS(2385), - [anon_sym_varray] = ACTIONS(2385), - [anon_sym_darray] = ACTIONS(2385), - [anon_sym_vec] = ACTIONS(2385), - [anon_sym_dict] = ACTIONS(2385), - [anon_sym_keyset] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_list] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_interface] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_abstract] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(2387), - [sym_final_modifier] = ACTIONS(2385), - [sym_xhp_modifier] = ACTIONS(2385), - [sym_xhp_identifier] = ACTIONS(2385), - [sym_xhp_class_identifier] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2601), + [sym_variable] = ACTIONS(2603), + [sym_pipe_variable] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_newtype] = ACTIONS(2601), + [anon_sym_shape] = ACTIONS(2601), + [anon_sym_tuple] = ACTIONS(2601), + [anon_sym_clone] = ACTIONS(2601), + [anon_sym_new] = ACTIONS(2601), + [anon_sym_print] = ACTIONS(2601), + [anon_sym_namespace] = ACTIONS(2601), + [anon_sym_include] = ACTIONS(2601), + [anon_sym_include_once] = ACTIONS(2601), + [anon_sym_require] = ACTIONS(2601), + [anon_sym_require_once] = ACTIONS(2601), + [anon_sym_BSLASH] = ACTIONS(2603), + [anon_sym_self] = ACTIONS(2601), + [anon_sym_parent] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_LT_LT] = ACTIONS(2601), + [anon_sym_LT_LT_LT] = ACTIONS(2603), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_throw] = ACTIONS(2601), + [anon_sym_echo] = ACTIONS(2601), + [anon_sym_unset] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_concurrent] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_function] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_switch] = ACTIONS(2601), + [anon_sym_foreach] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_using] = ACTIONS(2601), + [sym_float] = ACTIONS(2603), + [sym_integer] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_True] = ACTIONS(2601), + [anon_sym_TRUE] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_False] = ACTIONS(2601), + [anon_sym_FALSE] = ACTIONS(2601), + [anon_sym_null] = ACTIONS(2601), + [anon_sym_Null] = ACTIONS(2601), + [anon_sym_NULL] = ACTIONS(2601), + [sym_string] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2603), + [anon_sym_TILDE] = ACTIONS(2603), + [anon_sym_array] = ACTIONS(2601), + [anon_sym_varray] = ACTIONS(2601), + [anon_sym_darray] = ACTIONS(2601), + [anon_sym_vec] = ACTIONS(2601), + [anon_sym_dict] = ACTIONS(2601), + [anon_sym_keyset] = ACTIONS(2601), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_list] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2603), + [anon_sym_await] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_interface] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_abstract] = ACTIONS(2601), + [anon_sym_POUND] = ACTIONS(2603), + [sym_final_modifier] = ACTIONS(2601), + [sym_xhp_modifier] = ACTIONS(2601), + [sym_xhp_identifier] = ACTIONS(2601), + [sym_xhp_class_identifier] = ACTIONS(2603), [sym_comment] = ACTIONS(3), }, [1753] = { - [sym_identifier] = ACTIONS(2045), - [sym_variable] = ACTIONS(2047), - [sym_pipe_variable] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_newtype] = ACTIONS(2045), - [anon_sym_shape] = ACTIONS(2045), - [anon_sym_tuple] = ACTIONS(2045), - [anon_sym_clone] = ACTIONS(2045), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_print] = ACTIONS(2045), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_include] = ACTIONS(2045), - [anon_sym_include_once] = ACTIONS(2045), - [anon_sym_require] = ACTIONS(2045), - [anon_sym_require_once] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2047), - [anon_sym_self] = ACTIONS(2045), - [anon_sym_parent] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_LT_LT_LT] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_throw] = ACTIONS(2045), - [anon_sym_echo] = ACTIONS(2045), - [anon_sym_unset] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_concurrent] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_function] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [anon_sym_foreach] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(2045), - [sym_float] = ACTIONS(2047), - [sym_integer] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_True] = ACTIONS(2045), - [anon_sym_TRUE] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_False] = ACTIONS(2045), - [anon_sym_FALSE] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_Null] = ACTIONS(2045), - [anon_sym_NULL] = ACTIONS(2045), - [sym_string] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_array] = ACTIONS(2045), - [anon_sym_varray] = ACTIONS(2045), - [anon_sym_darray] = ACTIONS(2045), - [anon_sym_vec] = ACTIONS(2045), - [anon_sym_dict] = ACTIONS(2045), - [anon_sym_keyset] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_list] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_class] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_abstract] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2047), - [sym_final_modifier] = ACTIONS(2045), - [sym_xhp_modifier] = ACTIONS(2045), - [sym_xhp_identifier] = ACTIONS(2045), - [sym_xhp_class_identifier] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2597), + [sym_variable] = ACTIONS(2599), + [sym_pipe_variable] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_newtype] = ACTIONS(2597), + [anon_sym_shape] = ACTIONS(2597), + [anon_sym_tuple] = ACTIONS(2597), + [anon_sym_clone] = ACTIONS(2597), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_print] = ACTIONS(2597), + [anon_sym_namespace] = ACTIONS(2597), + [anon_sym_include] = ACTIONS(2597), + [anon_sym_include_once] = ACTIONS(2597), + [anon_sym_require] = ACTIONS(2597), + [anon_sym_require_once] = ACTIONS(2597), + [anon_sym_BSLASH] = ACTIONS(2599), + [anon_sym_self] = ACTIONS(2597), + [anon_sym_parent] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_LT_LT] = ACTIONS(2597), + [anon_sym_LT_LT_LT] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_throw] = ACTIONS(2597), + [anon_sym_echo] = ACTIONS(2597), + [anon_sym_unset] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_concurrent] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_switch] = ACTIONS(2597), + [anon_sym_foreach] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_using] = ACTIONS(2597), + [sym_float] = ACTIONS(2599), + [sym_integer] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_True] = ACTIONS(2597), + [anon_sym_TRUE] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_False] = ACTIONS(2597), + [anon_sym_FALSE] = ACTIONS(2597), + [anon_sym_null] = ACTIONS(2597), + [anon_sym_Null] = ACTIONS(2597), + [anon_sym_NULL] = ACTIONS(2597), + [sym_string] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_TILDE] = ACTIONS(2599), + [anon_sym_array] = ACTIONS(2597), + [anon_sym_varray] = ACTIONS(2597), + [anon_sym_darray] = ACTIONS(2597), + [anon_sym_vec] = ACTIONS(2597), + [anon_sym_dict] = ACTIONS(2597), + [anon_sym_keyset] = ACTIONS(2597), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_list] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_await] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_interface] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_abstract] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(2599), + [sym_final_modifier] = ACTIONS(2597), + [sym_xhp_modifier] = ACTIONS(2597), + [sym_xhp_identifier] = ACTIONS(2597), + [sym_xhp_class_identifier] = ACTIONS(2599), [sym_comment] = ACTIONS(3), }, [1754] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), [sym_identifier] = ACTIONS(2649), - [sym_variable] = ACTIONS(2651), - [sym_pipe_variable] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_newtype] = ACTIONS(2649), - [anon_sym_shape] = ACTIONS(2649), - [anon_sym_tuple] = ACTIONS(2649), - [anon_sym_clone] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_print] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_include] = ACTIONS(2649), - [anon_sym_include_once] = ACTIONS(2649), - [anon_sym_require] = ACTIONS(2649), - [anon_sym_require_once] = ACTIONS(2649), - [anon_sym_BSLASH] = ACTIONS(2651), - [anon_sym_self] = ACTIONS(2649), - [anon_sym_parent] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_echo] = ACTIONS(2649), - [anon_sym_unset] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_concurrent] = ACTIONS(2649), - [anon_sym_use] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_foreach] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [sym_float] = ACTIONS(2651), - [sym_integer] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_True] = ACTIONS(2649), - [anon_sym_TRUE] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_False] = ACTIONS(2649), - [anon_sym_FALSE] = ACTIONS(2649), - [anon_sym_null] = ACTIONS(2649), - [anon_sym_Null] = ACTIONS(2649), - [anon_sym_NULL] = ACTIONS(2649), - [sym_string] = ACTIONS(2651), - [anon_sym_AT] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_array] = ACTIONS(2649), - [anon_sym_varray] = ACTIONS(2649), - [anon_sym_darray] = ACTIONS(2649), - [anon_sym_vec] = ACTIONS(2649), - [anon_sym_dict] = ACTIONS(2649), - [anon_sym_keyset] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_list] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_await] = ACTIONS(2649), - [anon_sym_async] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2649), - [anon_sym_trait] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_abstract] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2651), - [sym_final_modifier] = ACTIONS(2649), - [sym_xhp_modifier] = ACTIONS(2649), - [sym_xhp_identifier] = ACTIONS(2649), - [sym_xhp_class_identifier] = ACTIONS(2651), - [sym_comment] = ACTIONS(3), + [sym_variable] = ACTIONS(2652), + [anon_sym_shape] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2658), + [anon_sym_require] = ACTIONS(2661), + [anon_sym_BSLASH] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2678), + [anon_sym_function] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_null] = ACTIONS(2687), + [anon_sym_Null] = ACTIONS(2687), + [anon_sym_NULL] = ACTIONS(2687), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_array] = ACTIONS(2699), + [anon_sym_varray] = ACTIONS(2699), + [anon_sym_darray] = ACTIONS(2699), + [anon_sym_vec] = ACTIONS(2699), + [anon_sym_dict] = ACTIONS(2699), + [anon_sym_keyset] = ACTIONS(2699), + [anon_sym_bool] = ACTIONS(2699), + [anon_sym_float] = ACTIONS(2699), + [anon_sym_int] = ACTIONS(2699), + [anon_sym_num] = ACTIONS(2699), + [anon_sym_string] = ACTIONS(2699), + [anon_sym_arraykey] = ACTIONS(2699), + [anon_sym_void] = ACTIONS(2699), + [anon_sym_nonnull] = ACTIONS(2699), + [anon_sym_mixed] = ACTIONS(2699), + [anon_sym_dynamic] = ACTIONS(2699), + [anon_sym_noreturn] = ACTIONS(2699), + [anon_sym_nothing] = ACTIONS(2699), + [anon_sym_resource] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_abstract] = ACTIONS(2705), + [sym_final_modifier] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2711), + [anon_sym_protected] = ACTIONS(2711), + [anon_sym_private] = ACTIONS(2711), + [anon_sym_internal] = ACTIONS(2711), + [sym_xhp_identifier] = ACTIONS(2699), + [sym_xhp_class_identifier] = ACTIONS(2714), + [anon_sym_attribute] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2720), + [anon_sym_category] = ACTIONS(2723), }, [1755] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1757), - [sym_require_extends_clause] = STATE(1757), - [sym_require_implements_clause] = STATE(1757), - [sym_method_declaration] = STATE(1757), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1757), - [sym_context_const_declaration] = STATE(1757), - [sym_property_declaration] = STATE(1757), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1757), - [sym_xhp_children_declaration] = STATE(1757), - [sym_xhp_category_declaration] = STATE(1757), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1757), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, [1756] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1755), + [sym_require_extends_clause] = STATE(1755), + [sym_require_implements_clause] = STATE(1755), + [sym_method_declaration] = STATE(1755), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1755), + [sym_context_const_declaration] = STATE(1755), + [sym_property_declaration] = STATE(1755), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1755), + [sym_xhp_children_declaration] = STATE(1755), + [sym_xhp_category_declaration] = STATE(1755), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1755), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, [1757] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1758), + [sym_require_extends_clause] = STATE(1758), + [sym_require_implements_clause] = STATE(1758), + [sym_method_declaration] = STATE(1758), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1758), + [sym_context_const_declaration] = STATE(1758), + [sym_property_declaration] = STATE(1758), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1758), + [sym_xhp_children_declaration] = STATE(1758), + [sym_xhp_category_declaration] = STATE(1758), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1758), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, [1758] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1767), - [sym_require_extends_clause] = STATE(1767), - [sym_require_implements_clause] = STATE(1767), - [sym_method_declaration] = STATE(1767), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1767), - [sym_context_const_declaration] = STATE(1767), - [sym_property_declaration] = STATE(1767), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1767), - [sym_xhp_children_declaration] = STATE(1767), - [sym_xhp_category_declaration] = STATE(1767), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1767), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, [1759] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1756), - [sym_require_extends_clause] = STATE(1756), - [sym_require_implements_clause] = STATE(1756), - [sym_method_declaration] = STATE(1756), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1756), - [sym_context_const_declaration] = STATE(1756), - [sym_property_declaration] = STATE(1756), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1756), - [sym_xhp_children_declaration] = STATE(1756), - [sym_xhp_category_declaration] = STATE(1756), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1756), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, [1760] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2711), - [sym_variable] = ACTIONS(2714), - [anon_sym_shape] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2720), - [anon_sym_require] = ACTIONS(2723), - [anon_sym_BSLASH] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym_use] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_null] = ACTIONS(2749), - [anon_sym_Null] = ACTIONS(2749), - [anon_sym_NULL] = ACTIONS(2749), - [anon_sym_AT] = ACTIONS(2752), - [anon_sym_QMARK] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_array] = ACTIONS(2761), - [anon_sym_varray] = ACTIONS(2761), - [anon_sym_darray] = ACTIONS(2761), - [anon_sym_vec] = ACTIONS(2761), - [anon_sym_dict] = ACTIONS(2761), - [anon_sym_keyset] = ACTIONS(2761), - [anon_sym_bool] = ACTIONS(2761), - [anon_sym_float] = ACTIONS(2761), - [anon_sym_int] = ACTIONS(2761), - [anon_sym_num] = ACTIONS(2761), - [anon_sym_string] = ACTIONS(2761), - [anon_sym_arraykey] = ACTIONS(2761), - [anon_sym_void] = ACTIONS(2761), - [anon_sym_nonnull] = ACTIONS(2761), - [anon_sym_mixed] = ACTIONS(2761), - [anon_sym_dynamic] = ACTIONS(2761), - [anon_sym_noreturn] = ACTIONS(2761), - [anon_sym_nothing] = ACTIONS(2761), - [anon_sym_resource] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2764), - [anon_sym_abstract] = ACTIONS(2767), - [sym_final_modifier] = ACTIONS(2770), - [anon_sym_public] = ACTIONS(2773), - [anon_sym_protected] = ACTIONS(2773), - [anon_sym_private] = ACTIONS(2773), - [sym_xhp_identifier] = ACTIONS(2761), - [sym_xhp_class_identifier] = ACTIONS(2776), - [anon_sym_attribute] = ACTIONS(2779), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2782), - [anon_sym_category] = ACTIONS(2785), - }, - [1761] = { - [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), - }, - [1762] = { - [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), [sym_trait_use_clause] = STATE(1761), [sym_require_extends_clause] = STATE(1761), [sym_require_implements_clause] = STATE(1761), [sym_method_declaration] = STATE(1761), - [sym__class_const_declaration] = STATE(2837), + [sym__class_const_declaration] = STATE(2796), [sym_type_const_declaration] = STATE(1761), [sym_context_const_declaration] = STATE(1761), [sym_property_declaration] = STATE(1761), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), [sym_xhp_attribute_declaration] = STATE(1761), [sym_xhp_children_declaration] = STATE(1761), [sym_xhp_category_declaration] = STATE(1761), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), [aux_sym_member_declarations_repeat1] = STATE(1761), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), - }, - [1763] = { - [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1764), - [sym_require_extends_clause] = STATE(1764), - [sym_require_implements_clause] = STATE(1764), - [sym_method_declaration] = STATE(1764), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1764), - [sym_context_const_declaration] = STATE(1764), - [sym_property_declaration] = STATE(1764), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1764), - [sym_xhp_children_declaration] = STATE(1764), - [sym_xhp_category_declaration] = STATE(1764), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1764), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), - }, - [1764] = { - [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, - [1765] = { + [1761] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, - [1766] = { + [1762] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), [sym_trait_use_clause] = STATE(1765), [sym_require_extends_clause] = STATE(1765), [sym_require_implements_clause] = STATE(1765), [sym_method_declaration] = STATE(1765), - [sym__class_const_declaration] = STATE(2837), + [sym__class_const_declaration] = STATE(2796), [sym_type_const_declaration] = STATE(1765), [sym_context_const_declaration] = STATE(1765), [sym_property_declaration] = STATE(1765), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), [sym_xhp_attribute_declaration] = STATE(1765), [sym_xhp_children_declaration] = STATE(1765), [sym_xhp_category_declaration] = STATE(1765), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), [aux_sym_member_declarations_repeat1] = STATE(1765), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, - [1767] = { + [1763] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, - [1768] = { + [1764] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), [sym_trait_use_clause] = STATE(1769), [sym_require_extends_clause] = STATE(1769), [sym_require_implements_clause] = STATE(1769), [sym_method_declaration] = STATE(1769), - [sym__class_const_declaration] = STATE(2837), + [sym__class_const_declaration] = STATE(2796), [sym_type_const_declaration] = STATE(1769), [sym_context_const_declaration] = STATE(1769), [sym_property_declaration] = STATE(1769), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), [sym_xhp_attribute_declaration] = STATE(1769), [sym_xhp_children_declaration] = STATE(1769), [sym_xhp_category_declaration] = STATE(1769), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), [aux_sym_member_declarations_repeat1] = STATE(1769), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), + }, + [1765] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), + }, + [1766] = { + [sym_identifier] = ACTIONS(2796), + [sym_variable] = ACTIONS(2798), + [sym_pipe_variable] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2796), + [anon_sym_newtype] = ACTIONS(2796), + [anon_sym_shape] = ACTIONS(2796), + [anon_sym_tuple] = ACTIONS(2796), + [anon_sym_clone] = ACTIONS(2796), + [anon_sym_new] = ACTIONS(2796), + [anon_sym_print] = ACTIONS(2796), + [anon_sym_namespace] = ACTIONS(2796), + [anon_sym_include] = ACTIONS(2796), + [anon_sym_include_once] = ACTIONS(2796), + [anon_sym_require] = ACTIONS(2796), + [anon_sym_require_once] = ACTIONS(2796), + [anon_sym_BSLASH] = ACTIONS(2798), + [anon_sym_self] = ACTIONS(2796), + [anon_sym_parent] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_LT_LT] = ACTIONS(2796), + [anon_sym_LT_LT_LT] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_throw] = ACTIONS(2796), + [anon_sym_echo] = ACTIONS(2796), + [anon_sym_unset] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_concurrent] = ACTIONS(2796), + [anon_sym_use] = ACTIONS(2796), + [anon_sym_function] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_foreach] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_try] = ACTIONS(2796), + [anon_sym_using] = ACTIONS(2796), + [sym_float] = ACTIONS(2798), + [sym_integer] = ACTIONS(2796), + [anon_sym_true] = ACTIONS(2796), + [anon_sym_True] = ACTIONS(2796), + [anon_sym_TRUE] = ACTIONS(2796), + [anon_sym_false] = ACTIONS(2796), + [anon_sym_False] = ACTIONS(2796), + [anon_sym_FALSE] = ACTIONS(2796), + [anon_sym_null] = ACTIONS(2796), + [anon_sym_Null] = ACTIONS(2796), + [anon_sym_NULL] = ACTIONS(2796), + [sym_string] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_array] = ACTIONS(2796), + [anon_sym_varray] = ACTIONS(2796), + [anon_sym_darray] = ACTIONS(2796), + [anon_sym_vec] = ACTIONS(2796), + [anon_sym_dict] = ACTIONS(2796), + [anon_sym_keyset] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_list] = ACTIONS(2796), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_await] = ACTIONS(2796), + [anon_sym_async] = ACTIONS(2796), + [anon_sym_yield] = ACTIONS(2796), + [anon_sym_trait] = ACTIONS(2796), + [anon_sym_interface] = ACTIONS(2796), + [anon_sym_class] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_abstract] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2798), + [sym_final_modifier] = ACTIONS(2796), + [sym_xhp_modifier] = ACTIONS(2796), + [sym_xhp_identifier] = ACTIONS(2796), + [sym_xhp_class_identifier] = ACTIONS(2798), + [sym_comment] = ACTIONS(3), + }, + [1767] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1763), + [sym_require_extends_clause] = STATE(1763), + [sym_require_implements_clause] = STATE(1763), + [sym_method_declaration] = STATE(1763), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1763), + [sym_context_const_declaration] = STATE(1763), + [sym_property_declaration] = STATE(1763), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1763), + [sym_xhp_children_declaration] = STATE(1763), + [sym_xhp_category_declaration] = STATE(1763), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1763), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), + }, + [1768] = { + [sym_qualified_identifier] = STATE(3544), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1759), + [sym_require_extends_clause] = STATE(1759), + [sym_require_implements_clause] = STATE(1759), + [sym_method_declaration] = STATE(1759), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1759), + [sym_context_const_declaration] = STATE(1759), + [sym_property_declaration] = STATE(1759), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1759), + [sym_xhp_children_declaration] = STATE(1759), + [sym_xhp_category_declaration] = STATE(1759), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1759), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, [1769] = { [sym_qualified_identifier] = STATE(3544), - [sym_null] = STATE(3546), - [sym_type_specifier] = STATE(5606), - [sym__type_modifier] = STATE(3452), - [sym_tuple_type_specifier] = STATE(5606), - [sym_function_type_specifier] = STATE(5606), - [sym_shape_type_specifier] = STATE(5606), - [sym_type_constant] = STATE(5606), - [sym__type_constant] = STATE(2653), - [sym__function_declaration_header] = STATE(5040), - [sym_trait_use_clause] = STATE(1760), - [sym_require_extends_clause] = STATE(1760), - [sym_require_implements_clause] = STATE(1760), - [sym_method_declaration] = STATE(1760), - [sym__class_const_declaration] = STATE(2837), - [sym_type_const_declaration] = STATE(1760), - [sym_context_const_declaration] = STATE(1760), - [sym_property_declaration] = STATE(1760), - [sym_property_declarator] = STATE(5037), - [sym__member_modifier] = STATE(1787), - [sym_abstract_modifier] = STATE(3421), - [sym_static_modifier] = STATE(1787), - [sym_visibility_modifier] = STATE(1787), - [sym_attribute_modifier] = STATE(1791), - [sym_async_modifier] = STATE(5957), - [sym_xhp_attribute_declaration] = STATE(1760), - [sym_xhp_children_declaration] = STATE(1760), - [sym_xhp_category_declaration] = STATE(1760), - [aux_sym_qualified_identifier_repeat1] = STATE(2223), - [aux_sym_type_specifier_repeat1] = STATE(3452), - [aux_sym_member_declarations_repeat1] = STATE(1760), - [aux_sym_method_declaration_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2653), - [sym_variable] = ACTIONS(2655), - [anon_sym_shape] = ACTIONS(2657), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_require] = ACTIONS(2661), - [anon_sym_BSLASH] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_LT_LT] = ACTIONS(2667), + [sym_null] = STATE(3547), + [sym_type_specifier] = STATE(5621), + [sym__type_modifier] = STATE(3440), + [sym_tuple_type_specifier] = STATE(5621), + [sym_function_type_specifier] = STATE(5621), + [sym_shape_type_specifier] = STATE(5621), + [sym_type_constant] = STATE(5621), + [sym__type_constant] = STATE(2623), + [sym__function_declaration_header] = STATE(5033), + [sym_trait_use_clause] = STATE(1754), + [sym_require_extends_clause] = STATE(1754), + [sym_require_implements_clause] = STATE(1754), + [sym_method_declaration] = STATE(1754), + [sym__class_const_declaration] = STATE(2796), + [sym_type_const_declaration] = STATE(1754), + [sym_context_const_declaration] = STATE(1754), + [sym_property_declaration] = STATE(1754), + [sym_property_declarator] = STATE(5031), + [sym__member_modifier] = STATE(1784), + [sym_abstract_modifier] = STATE(3183), + [sym_static_modifier] = STATE(1784), + [sym_visibility_modifier] = STATE(1784), + [sym_attribute_modifier] = STATE(1780), + [sym_async_modifier] = STATE(5926), + [sym_xhp_attribute_declaration] = STATE(1754), + [sym_xhp_children_declaration] = STATE(1754), + [sym_xhp_category_declaration] = STATE(1754), + [aux_sym_qualified_identifier_repeat1] = STATE(2217), + [aux_sym_type_specifier_repeat1] = STATE(3440), + [aux_sym_member_declarations_repeat1] = STATE(1754), + [aux_sym_method_declaration_repeat1] = STATE(1784), + [sym_identifier] = ACTIONS(2726), + [sym_variable] = ACTIONS(2728), + [anon_sym_shape] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_require] = ACTIONS(2734), + [anon_sym_BSLASH] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2740), [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_null] = ACTIONS(2679), - [anon_sym_Null] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_AT] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2754), [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_array] = ACTIONS(2685), - [anon_sym_varray] = ACTIONS(2685), - [anon_sym_darray] = ACTIONS(2685), - [anon_sym_vec] = ACTIONS(2685), - [anon_sym_dict] = ACTIONS(2685), - [anon_sym_keyset] = ACTIONS(2685), - [anon_sym_bool] = ACTIONS(2685), - [anon_sym_float] = ACTIONS(2685), - [anon_sym_int] = ACTIONS(2685), - [anon_sym_num] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_arraykey] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_nonnull] = ACTIONS(2685), - [anon_sym_mixed] = ACTIONS(2685), - [anon_sym_dynamic] = ACTIONS(2685), - [anon_sym_noreturn] = ACTIONS(2685), - [anon_sym_nothing] = ACTIONS(2685), - [anon_sym_resource] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_abstract] = ACTIONS(2689), - [sym_final_modifier] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [sym_xhp_identifier] = ACTIONS(2685), - [sym_xhp_class_identifier] = ACTIONS(2695), - [anon_sym_attribute] = ACTIONS(2697), - [sym_comment] = ACTIONS(3), - [anon_sym_children] = ACTIONS(2699), - [anon_sym_category] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_array] = ACTIONS(2758), + [anon_sym_varray] = ACTIONS(2758), + [anon_sym_darray] = ACTIONS(2758), + [anon_sym_vec] = ACTIONS(2758), + [anon_sym_dict] = ACTIONS(2758), + [anon_sym_keyset] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_float] = ACTIONS(2758), + [anon_sym_int] = ACTIONS(2758), + [anon_sym_num] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_arraykey] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_nonnull] = ACTIONS(2758), + [anon_sym_mixed] = ACTIONS(2758), + [anon_sym_dynamic] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym_nothing] = ACTIONS(2758), + [anon_sym_resource] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2762), + [sym_final_modifier] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_internal] = ACTIONS(2766), + [sym_xhp_identifier] = ACTIONS(2758), + [sym_xhp_class_identifier] = ACTIONS(2768), + [anon_sym_attribute] = ACTIONS(2770), + [sym_comment] = ACTIONS(3), + [anon_sym_children] = ACTIONS(2772), + [anon_sym_category] = ACTIONS(2774), }, [1770] = { - [aux_sym_qualified_identifier_repeat1] = STATE(1772), + [aux_sym_qualified_identifier_repeat1] = STATE(1774), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(2806), [anon_sym_LT_LT] = ACTIONS(2808), @@ -197931,11 +191520,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1772] = { - [aux_sym_qualified_identifier_repeat1] = STATE(1776), - [anon_sym_BSLASH] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(2818), + [sym_variable] = ACTIONS(2818), [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2820), + [anon_sym_COLON] = ACTIONS(2818), [anon_sym_COMMA] = ACTIONS(2818), [anon_sym_GT_GT] = ACTIONS(2820), [anon_sym_RBRACE] = ACTIONS(2818), @@ -197943,12 +191530,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(2818), [anon_sym_LPAREN] = ACTIONS(2818), [anon_sym_RPAREN] = ACTIONS(2818), + [anon_sym_use] = ACTIONS(2818), [anon_sym_EQ_GT] = ACTIONS(2818), [anon_sym_QMARK] = ACTIONS(2820), [anon_sym_LT] = ACTIONS(2820), [anon_sym_GT] = ACTIONS(2820), [anon_sym_PLUS] = ACTIONS(2820), [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_where] = ACTIONS(2818), [anon_sym_EQ] = ACTIONS(2820), [anon_sym_LBRACK] = ACTIONS(2818), [anon_sym_RBRACK] = ACTIONS(2818), @@ -197990,9 +191579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_is] = ACTIONS(2818), [anon_sym_as3] = ACTIONS(2818), [anon_sym_QMARKas] = ACTIONS(2818), - [anon_sym_QMARK_DASH_GT] = ACTIONS(2818), - [anon_sym_DASH_GT] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_EQ_EQ_GT] = ACTIONS(2818), + [anon_sym_extends] = ACTIONS(2818), + [anon_sym_implements] = ACTIONS(2818), [anon_sym_ATrequired] = ACTIONS(2818), [anon_sym_ATlateinit] = ACTIONS(2818), [sym_comment] = ACTIONS(3), @@ -198065,9 +191654,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1774] = { - [sym_variable] = ACTIONS(2826), + [aux_sym_qualified_identifier_repeat1] = STATE(1776), + [anon_sym_BSLASH] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(2826), [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), + [anon_sym_COLON] = ACTIONS(2828), [anon_sym_COMMA] = ACTIONS(2826), [anon_sym_GT_GT] = ACTIONS(2828), [anon_sym_RBRACE] = ACTIONS(2826), @@ -198075,14 +191666,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(2826), [anon_sym_LPAREN] = ACTIONS(2826), [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_use] = ACTIONS(2826), [anon_sym_EQ_GT] = ACTIONS(2826), [anon_sym_QMARK] = ACTIONS(2828), [anon_sym_LT] = ACTIONS(2828), [anon_sym_GT] = ACTIONS(2828), [anon_sym_PLUS] = ACTIONS(2828), [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_where] = ACTIONS(2826), [anon_sym_EQ] = ACTIONS(2828), [anon_sym_LBRACK] = ACTIONS(2826), [anon_sym_RBRACK] = ACTIONS(2826), @@ -198124,148 +191713,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_is] = ACTIONS(2826), [anon_sym_as3] = ACTIONS(2826), [anon_sym_QMARKas] = ACTIONS(2826), - [anon_sym_EQ_EQ_GT] = ACTIONS(2826), - [anon_sym_extends] = ACTIONS(2826), - [anon_sym_implements] = ACTIONS(2826), + [anon_sym_QMARK_DASH_GT] = ACTIONS(2826), + [anon_sym_DASH_GT] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(2826), [anon_sym_ATrequired] = ACTIONS(2826), [anon_sym_ATlateinit] = ACTIONS(2826), [sym_comment] = ACTIONS(3), }, [1775] = { - [sym_variable] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_use] = ACTIONS(2830), - [anon_sym_EQ_GT] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_where] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_PIPE_GT] = ACTIONS(2830), - [anon_sym_QMARK_QMARK] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ_GT] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_STAR_STAR] = ACTIONS(2832), - [anon_sym_QMARK_COLON] = ACTIONS(2830), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2830), - [anon_sym_DOT_EQ] = ACTIONS(2830), - [anon_sym_PIPE_EQ] = ACTIONS(2830), - [anon_sym_CARET_EQ] = ACTIONS(2830), - [anon_sym_AMP_EQ] = ACTIONS(2830), - [anon_sym_LT_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_GT_EQ] = ACTIONS(2830), - [anon_sym_PLUS_EQ] = ACTIONS(2830), - [anon_sym_DASH_EQ] = ACTIONS(2830), - [anon_sym_STAR_EQ] = ACTIONS(2830), - [anon_sym_SLASH_EQ] = ACTIONS(2830), - [anon_sym_PERCENT_EQ] = ACTIONS(2830), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_as3] = ACTIONS(2830), - [anon_sym_QMARKas] = ACTIONS(2830), - [anon_sym_EQ_EQ_GT] = ACTIONS(2830), - [anon_sym_extends] = ACTIONS(2830), - [anon_sym_implements] = ACTIONS(2830), - [anon_sym_ATrequired] = ACTIONS(2830), - [anon_sym_ATlateinit] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - }, - [1776] = { - [aux_sym_qualified_identifier_repeat1] = STATE(1776), - [anon_sym_BSLASH] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LT_LT] = ACTIONS(2839), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_GT_GT] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_EQ_GT] = ACTIONS(2837), - [anon_sym_QMARK] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_GT] = ACTIONS(2839), - [anon_sym_PLUS] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_EQ] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_PIPE_GT] = ACTIONS(2837), - [anon_sym_QMARK_QMARK] = ACTIONS(2839), - [anon_sym_PIPE_PIPE] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2839), - [anon_sym_CARET] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_EQ_EQ] = ACTIONS(2839), - [anon_sym_BANG_EQ] = ACTIONS(2839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ] = ACTIONS(2839), - [anon_sym_GT_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ_GT] = ACTIONS(2837), - [anon_sym_DOT] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_SLASH] = ACTIONS(2839), - [anon_sym_PERCENT] = ACTIONS(2839), - [anon_sym_STAR_STAR] = ACTIONS(2839), - [anon_sym_QMARK_COLON] = ACTIONS(2837), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2837), - [anon_sym_DOT_EQ] = ACTIONS(2837), - [anon_sym_PIPE_EQ] = ACTIONS(2837), - [anon_sym_CARET_EQ] = ACTIONS(2837), - [anon_sym_AMP_EQ] = ACTIONS(2837), - [anon_sym_LT_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_GT_EQ] = ACTIONS(2837), - [anon_sym_PLUS_EQ] = ACTIONS(2837), - [anon_sym_DASH_EQ] = ACTIONS(2837), - [anon_sym_STAR_EQ] = ACTIONS(2837), - [anon_sym_SLASH_EQ] = ACTIONS(2837), - [anon_sym_PERCENT_EQ] = ACTIONS(2837), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_as3] = ACTIONS(2837), - [anon_sym_QMARKas] = ACTIONS(2837), - [anon_sym_QMARK_DASH_GT] = ACTIONS(2837), - [anon_sym_DASH_GT] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(2837), - [anon_sym_ATrequired] = ACTIONS(2837), - [anon_sym_ATlateinit] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - }, - [1777] = { [aux_sym_qualified_identifier_repeat1] = STATE(1776), [anon_sym_BSLASH] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(2806), @@ -198332,16 +191787,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATlateinit] = ACTIONS(2806), [sym_comment] = ACTIONS(3), }, + [1776] = { + [aux_sym_qualified_identifier_repeat1] = STATE(1776), + [anon_sym_BSLASH] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_EQ_GT] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_GT] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_RBRACK] = ACTIONS(2833), + [anon_sym_PIPE_GT] = ACTIONS(2833), + [anon_sym_QMARK_QMARK] = ACTIONS(2835), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2835), + [anon_sym_CARET] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_EQ_EQ] = ACTIONS(2835), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2835), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ_GT] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_SLASH] = ACTIONS(2835), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_STAR_STAR] = ACTIONS(2835), + [anon_sym_QMARK_COLON] = ACTIONS(2833), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2833), + [anon_sym_DOT_EQ] = ACTIONS(2833), + [anon_sym_PIPE_EQ] = ACTIONS(2833), + [anon_sym_CARET_EQ] = ACTIONS(2833), + [anon_sym_AMP_EQ] = ACTIONS(2833), + [anon_sym_LT_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_PLUS_EQ] = ACTIONS(2833), + [anon_sym_DASH_EQ] = ACTIONS(2833), + [anon_sym_STAR_EQ] = ACTIONS(2833), + [anon_sym_SLASH_EQ] = ACTIONS(2833), + [anon_sym_PERCENT_EQ] = ACTIONS(2833), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_as3] = ACTIONS(2833), + [anon_sym_QMARKas] = ACTIONS(2833), + [anon_sym_QMARK_DASH_GT] = ACTIONS(2833), + [anon_sym_DASH_GT] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_ATrequired] = ACTIONS(2833), + [anon_sym_ATlateinit] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + }, + [1777] = { + [sym_variable] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_COLON] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_use] = ACTIONS(2837), + [anon_sym_EQ_GT] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), + [anon_sym_PLUS] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2839), + [anon_sym_where] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_RBRACK] = ACTIONS(2837), + [anon_sym_PIPE_GT] = ACTIONS(2837), + [anon_sym_QMARK_QMARK] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2839), + [anon_sym_CARET] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_EQ_EQ] = ACTIONS(2839), + [anon_sym_BANG_EQ] = ACTIONS(2839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2839), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ_GT] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_SLASH] = ACTIONS(2839), + [anon_sym_PERCENT] = ACTIONS(2839), + [anon_sym_STAR_STAR] = ACTIONS(2839), + [anon_sym_QMARK_COLON] = ACTIONS(2837), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2837), + [anon_sym_DOT_EQ] = ACTIONS(2837), + [anon_sym_PIPE_EQ] = ACTIONS(2837), + [anon_sym_CARET_EQ] = ACTIONS(2837), + [anon_sym_AMP_EQ] = ACTIONS(2837), + [anon_sym_LT_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_GT_EQ] = ACTIONS(2837), + [anon_sym_PLUS_EQ] = ACTIONS(2837), + [anon_sym_DASH_EQ] = ACTIONS(2837), + [anon_sym_STAR_EQ] = ACTIONS(2837), + [anon_sym_SLASH_EQ] = ACTIONS(2837), + [anon_sym_PERCENT_EQ] = ACTIONS(2837), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_as3] = ACTIONS(2837), + [anon_sym_QMARKas] = ACTIONS(2837), + [anon_sym_EQ_EQ_GT] = ACTIONS(2837), + [anon_sym_extends] = ACTIONS(2837), + [anon_sym_implements] = ACTIONS(2837), + [anon_sym_ATrequired] = ACTIONS(2837), + [anon_sym_ATlateinit] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2845), 38, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [79] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2833), 42, + anon_sym_BSLASH, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [150] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 21, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2728), 1, + sym_variable, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2738), 1, + anon_sym_static, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2748), 1, + anon_sym_function, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2760), 1, + anon_sym_async, + ACTIONS(2762), 1, + anon_sym_abstract, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + ACTIONS(2851), 1, + anon_sym_const, + ACTIONS(2853), 1, + sym_final_modifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(4742), 1, + sym__function_declaration_header, + STATE(4748), 1, + sym_property_declarator, + STATE(5926), 1, + sym_async_modifier, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(2766), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(1782), 5, + sym__member_modifier, + sym_abstract_modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_method_declaration_repeat1, + STATE(5470), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2035), 21, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, + anon_sym_else, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198360,12 +192183,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2837), 42, + ACTIONS(2037), 41, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [344] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2728), 1, + sym_variable, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2738), 1, + anon_sym_static, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2748), 1, + anon_sym_function, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2760), 1, + anon_sym_async, + ACTIONS(2762), 1, + anon_sym_abstract, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + ACTIONS(2855), 1, + anon_sym_const, + ACTIONS(2857), 1, + sym_final_modifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(4797), 1, + sym__function_declaration_header, + STATE(4800), 1, + sym_property_declarator, + STATE(5926), 1, + sym_async_modifier, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(2766), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(2896), 5, + sym__member_modifier, + sym_abstract_modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_method_declaration_repeat1, + STATE(5522), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym_BSLASH, + STATE(1774), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2806), 39, anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -198400,10 +192386,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, anon_sym_ATrequired, anon_sym_ATlateinit, - [71] = 7, + [542] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2728), 1, + sym_variable, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2738), 1, + anon_sym_static, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2748), 1, + anon_sym_function, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2760), 1, + anon_sym_async, + ACTIONS(2762), 1, + anon_sym_abstract, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + ACTIONS(2857), 1, + sym_final_modifier, + ACTIONS(2859), 1, + anon_sym_const, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(4748), 1, + sym_property_declarator, + STATE(4750), 1, + sym__function_declaration_header, + STATE(5926), 1, + sym_async_modifier, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(2766), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(2896), 5, + sym__member_modifier, + sym_abstract_modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_method_declaration_repeat1, + STATE(5470), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2039), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_else, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2041), 41, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [736] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(977), 1, + anon_sym_BSLASH, + ACTIONS(2810), 1, + sym_string, + ACTIONS(2812), 1, + aux_sym_expression_tree_token1, + STATE(1856), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2806), 37, + sym_variable, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [813] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -198412,8 +192628,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - STATE(1880), 1, + ACTIONS(2865), 1, + anon_sym_LT, + STATE(1888), 1, sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 34, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [894] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, ACTIONS(2843), 21, anon_sym_LT_LT, anon_sym_COLON, @@ -198475,16 +192759,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [150] = 5, + [967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, + anon_sym_COLON_COLON, + ACTIONS(2878), 1, + anon_sym_LT, + STATE(1846), 1, + sym_type_arguments, + ACTIONS(2874), 20, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2876), 38, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - STATE(1772), 1, + STATE(1774), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, + ACTIONS(949), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -198504,8 +192856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2806), 39, - anon_sym_COLON_COLON, + ACTIONS(951), 39, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -198544,13 +192896,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [224] = 3, + [1115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 21, + ACTIONS(1117), 1, + anon_sym_BSLASH, + ACTIONS(2881), 1, + sym_string, + ACTIONS(2883), 1, + aux_sym_expression_tree_token1, + STATE(1865), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2806), 36, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [1192] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1818), 1, + sym_arguments, + STATE(5012), 1, + sym_type_arguments, + ACTIONS(949), 20, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_else, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -198569,18 +192994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2047), 41, + ACTIONS(951), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_elseif, anon_sym_EQ_GT, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE_GT, @@ -198609,18 +193030,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [294] = 3, + [1265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 21, + ACTIONS(2872), 1, + anon_sym_COLON_COLON, + ACTIONS(2889), 1, + anon_sym_LT, + STATE(1828), 1, + sym_type_arguments, + ACTIONS(2885), 20, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, - anon_sym_else, anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2887), 38, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1340] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, anon_sym_GT, + STATE(2025), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -198636,18 +193143,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2051), 41, + ACTIONS(2863), 33, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [1425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, + anon_sym_COLON_COLON, + ACTIONS(2897), 21, + anon_sym_LT_LT, anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2899), 38, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_elseif, anon_sym_EQ_GT, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE_GT, @@ -198676,109 +193239,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [364] = 30, + [1495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(2889), 1, + anon_sym_LT, + STATE(1828), 1, + sym_type_arguments, + ACTIONS(2885), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, - sym_variable, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2665), 1, - anon_sym_static, - ACTIONS(2671), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2887), 39, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_function, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2687), 1, - anon_sym_async, - ACTIONS(2689), 1, - anon_sym_abstract, - ACTIONS(2695), 1, - sym_xhp_class_identifier, - ACTIONS(2851), 1, - anon_sym_const, - ACTIONS(2853), 1, - sym_final_modifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(5115), 1, - sym__function_declaration_header, - STATE(5120), 1, - sym_property_declarator, - STATE(5957), 1, - sym_async_modifier, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(2693), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - STATE(2951), 5, - sym__member_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_method_declaration_repeat1, - STATE(5541), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [487] = 5, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1567] = 5, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, - sym_arguments, - STATE(5012), 1, + ACTIONS(2878), 1, + anon_sym_LT, + STATE(1846), 1, sym_type_arguments, - ACTIONS(945), 20, + ACTIONS(2874), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2876), 39, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -198799,8 +193401,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(947), 39, + ACTIONS(2798), 40, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 21, + anon_sym_LT_LT, anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2901), 39, + anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -198839,20 +193507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [560] = 6, + [1775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - anon_sym_COLON_COLON, - ACTIONS(2861), 1, - anon_sym_LT, - STATE(1839), 1, - sym_type_arguments, - ACTIONS(2857), 20, + ACTIONS(2907), 21, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -198869,7 +193532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 38, + ACTIONS(2905), 39, + anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -198908,31 +193572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [635] = 11, + [1843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2864), 1, - anon_sym_COLON_COLON, - ACTIONS(2868), 1, - anon_sym_COMMA, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(2875), 1, - anon_sym_GT, - STATE(2070), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2909), 1, + anon_sym_BSLASH, + STATE(1804), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -198948,7 +193601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 33, + ACTIONS(2806), 37, + anon_sym_COLON_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -198982,111 +193637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [720] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, - sym_variable, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2665), 1, - anon_sym_static, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_function, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2687), 1, - anon_sym_async, - ACTIONS(2689), 1, - anon_sym_abstract, - ACTIONS(2695), 1, - sym_xhp_class_identifier, - ACTIONS(2853), 1, - sym_final_modifier, - ACTIONS(2880), 1, - anon_sym_const, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(4518), 1, - sym_property_declarator, - STATE(4519), 1, - sym__function_declaration_header, - STATE(5957), 1, - sym_async_modifier, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(2693), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - STATE(2951), 5, - sym__member_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_method_declaration_repeat1, - STATE(5305), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [843] = 7, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - anon_sym_BSLASH, - ACTIONS(2882), 1, - sym_string, - ACTIONS(2884), 1, - aux_sym_expression_tree_token1, - STATE(1840), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2843), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -199107,15 +193665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2806), 36, - anon_sym_COLON_COLON, + ACTIONS(2845), 39, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -199139,27 +193698,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [920] = 6, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [1985] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - anon_sym_COLON_COLON, - ACTIONS(2888), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - STATE(1867), 1, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2911), 1, + anon_sym_COLON_COLON, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(1907), 1, sym_type_arguments, - ACTIONS(2886), 20, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 18, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -199175,8 +193744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2868), 38, - anon_sym_COMMA, + ACTIONS(2863), 33, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -199210,31 +193778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [995] = 9, + [2069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2916), 1, + anon_sym_BSLASH, + STATE(1804), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2835), 21, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -199251,7 +193807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 34, + ACTIONS(2833), 37, + anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -199286,107 +193843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [1076] = 30, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [2141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, - sym_variable, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2909), 1, anon_sym_BSLASH, - ACTIONS(2665), 1, - anon_sym_static, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2675), 1, - anon_sym_function, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2687), 1, - anon_sym_async, - ACTIONS(2689), 1, - anon_sym_abstract, - ACTIONS(2695), 1, - sym_xhp_class_identifier, - ACTIONS(2891), 1, - anon_sym_const, - ACTIONS(2893), 1, - sym_final_modifier, - STATE(2223), 1, + STATE(1809), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(4516), 1, - sym__function_declaration_header, - STATE(4518), 1, - sym_property_declarator, - STATE(5957), 1, - sym_async_modifier, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - ACTIONS(2693), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - STATE(1783), 5, - sym__member_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_method_declaration_repeat1, - STATE(5305), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [1199] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2843), 21, + ACTIONS(2808), 21, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, @@ -199408,7 +193874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2845), 38, + ACTIONS(2806), 37, + anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -199443,19 +193910,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1272] = 5, + [2213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - STATE(1772), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(945), 20, + ACTIONS(2872), 1, + anon_sym_COLON_COLON, + ACTIONS(2919), 21, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -199475,8 +193939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(947), 39, - anon_sym_COLON, + ACTIONS(2921), 38, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -199515,19 +193978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1345] = 7, + [2283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(977), 1, - anon_sym_BSLASH, - ACTIONS(2810), 1, - sym_string, - ACTIONS(2812), 1, - aux_sym_expression_tree_token1, - STATE(1810), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2843), 21, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -199547,15 +194005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2806), 37, - sym_variable, - anon_sym_COLON_COLON, + ACTIONS(2845), 38, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -199584,31 +194042,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [1422] = 11, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [2353] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2897), 1, - anon_sym_COLON_COLON, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(1899), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 18, + ACTIONS(1117), 1, + anon_sym_BSLASH, + ACTIONS(2810), 1, + sym_string, + ACTIONS(2812), 1, + aux_sym_expression_tree_token1, + STATE(1865), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -199624,14 +194076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 33, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2806), 35, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -199655,17 +194107,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [1506] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [2429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, + ACTIONS(2909), 1, anon_sym_BSLASH, - STATE(1796), 1, + STATE(1804), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2839), 21, + ACTIONS(2828), 21, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, @@ -199687,7 +194142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2837), 37, + ACTIONS(2826), 37, anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -199725,14 +194180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [1578] = 4, + [2501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - anon_sym_COLON_COLON, - ACTIONS(2905), 21, + ACTIONS(2923), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -199752,7 +194204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2907), 38, + ACTIONS(2925), 39, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -199791,17 +194244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1648] = 5, + [2568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, - anon_sym_LT, - STATE(1839), 1, - sym_type_arguments, - ACTIONS(2857), 19, + ACTIONS(2927), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -199818,7 +194268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 39, + ACTIONS(2929), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -199858,12 +194308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1720] = 4, + [2635] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2843), 21, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 21, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, @@ -199885,7 +194340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2845), 38, + ACTIONS(2863), 34, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -199920,16 +194375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [1790] = 4, + [2708] = 3, ACTIONS(3), 1, sym_comment, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2843), 20, + ACTIONS(2931), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -199950,7 +194399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2845), 39, + ACTIONS(2933), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -199990,12 +194439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1860] = 3, + [2775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 21, + ACTIONS(2935), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -200015,8 +194463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2909), 39, - anon_sym_COLON_COLON, + ACTIONS(2937), 39, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -200055,16 +194503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [1928] = 5, + [2842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(2939), 1, anon_sym_BSLASH, - STATE(1808), 1, + STATE(1815), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, + ACTIONS(2835), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -200084,79 +194531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2806), 37, + ACTIONS(2833), 37, + sym_variable, anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [2000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2651), 40, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -200185,89 +194568,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [2068] = 7, + anon_sym_POUND, + [2913] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - anon_sym_BSLASH, - ACTIONS(2810), 1, - sym_string, - ACTIONS(2812), 1, - aux_sym_expression_tree_token1, - STATE(1840), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2806), 35, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [2144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - anon_sym_COLON_COLON, - ACTIONS(2915), 21, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -200283,8 +194605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2917), 38, - anon_sym_COMMA, + ACTIONS(2863), 33, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -200318,20 +194639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [2214] = 5, + [2992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(2945), 1, anon_sym_BSLASH, - STATE(1796), 1, + STATE(1817), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, + ACTIONS(2835), 21, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -200351,79 +194667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2806), 37, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, anon_sym_as3, - anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [2286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 21, - anon_sym_LT_LT, - anon_sym_COLON, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2919), 39, + ACTIONS(2833), 36, anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -200447,23 +194699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [2354] = 5, + anon_sym_POUND, + [3063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_BSLASH, - STATE(1796), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2820), 21, + ACTIONS(2948), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -200483,8 +194729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2818), 37, - anon_sym_COLON_COLON, + ACTIONS(2950), 39, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -200519,19 +194765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2426] = 5, + [3130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, - anon_sym_LT, - STATE(1867), 1, - sym_type_arguments, - ACTIONS(2886), 19, + ACTIONS(2824), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -200548,7 +194793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2868), 39, + ACTIONS(2822), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -200588,14 +194833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2498] = 5, + [3197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(977), 1, - anon_sym_BSLASH, - STATE(1833), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2820), 20, + ACTIONS(2952), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -200616,15 +194857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2818), 37, - sym_variable, - anon_sym_COLON_COLON, + ACTIONS(2954), 39, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -200653,31 +194895,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [2569] = 11, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [3264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2897), 1, + ACTIONS(2905), 1, anon_sym_COLON_COLON, - ACTIONS(2899), 1, + ACTIONS(2956), 1, anon_sym_COMMA, - STATE(1899), 1, - sym_type_arguments, - ACTIONS(2923), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 18, + ACTIONS(2959), 1, + anon_sym_GT, + ACTIONS(2931), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -200693,11 +194926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 32, + ACTIONS(2933), 37, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -200724,12 +194960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2652] = 3, + [3337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 20, + ACTIONS(2962), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -200750,7 +194988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2927), 39, + ACTIONS(2964), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -200790,10 +195028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2719] = 3, + [3404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 20, + ACTIONS(2820), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -200814,7 +195052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2931), 39, + ACTIONS(2818), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -200854,10 +195092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2786] = 3, + [3471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 20, + ACTIONS(2966), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -200878,7 +195116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2935), 39, + ACTIONS(2968), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -200918,80 +195156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2853] = 9, + [3538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2868), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2937), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_COLON, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 33, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [2932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2940), 20, + ACTIONS(2816), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201012,7 +195180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2942), 39, + ACTIONS(2814), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201052,77 +195220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [2999] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2923), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 33, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [3078] = 3, + [3605] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2843), 20, @@ -201186,11 +195284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3145] = 3, + [3672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 20, + ACTIONS(2835), 21, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -201210,8 +195309,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(947), 39, - anon_sym_COLON, + ACTIONS(2833), 38, + anon_sym_BSLASH, + anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -201246,14 +195346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3212] = 3, + [3739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 20, + ACTIONS(2874), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201274,7 +195372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2946), 39, + ACTIONS(2876), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201314,12 +195412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3279] = 5, + [3806] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(977), 1, anon_sym_BSLASH, - STATE(1833), 1, + STATE(1815), 1, aux_sym_qualified_identifier_repeat1, ACTIONS(2808), 20, anon_sym_LT_LT, @@ -201380,10 +195478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, anon_sym_POUND, - [3350] = 3, + [3877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 20, + ACTIONS(2970), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201404,7 +195502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2950), 39, + ACTIONS(2972), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201444,10 +195542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3417] = 3, + [3944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 20, + ACTIONS(2974), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201468,7 +195566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2954), 39, + ACTIONS(2976), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201508,10 +195606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3484] = 3, + [4011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 20, + ACTIONS(2978), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201532,7 +195630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2958), 39, + ACTIONS(2980), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201572,10 +195670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3551] = 3, + [4078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 20, + ACTIONS(2982), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201596,7 +195694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2962), 39, + ACTIONS(2984), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201636,22 +195734,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3618] = 6, + [4145] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2986), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 21, + ACTIONS(2861), 19, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -201668,75 +195770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 34, + ACTIONS(2863), 33, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [3691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2964), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2966), 39, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -201763,14 +195802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3758] = 3, + [4224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 20, + ACTIONS(2988), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201791,7 +195828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(947), 39, + ACTIONS(2990), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201831,10 +195868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3825] = 3, + [4291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 20, + ACTIONS(2843), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201855,7 +195892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2822), 39, + ACTIONS(2845), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201895,10 +195932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3892] = 3, + [4358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 20, + ACTIONS(2992), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201919,7 +195956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2970), 39, + ACTIONS(2994), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -201959,10 +195996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [3959] = 3, + [4425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 20, + ACTIONS(2996), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -201983,7 +196020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2974), 39, + ACTIONS(2998), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202023,10 +196060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4026] = 3, + [4492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 20, + ACTIONS(3000), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202047,7 +196084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2978), 39, + ACTIONS(3002), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202087,14 +196124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4093] = 5, + [4559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 1, - anon_sym_BSLASH, - STATE(1833), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2839), 20, + ACTIONS(3004), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202115,69 +196148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2837), 37, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_POUND, - [4164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2985), 39, + ACTIONS(3006), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202217,10 +196188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4231] = 3, + [4626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 20, + ACTIONS(3008), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202241,7 +196212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2989), 39, + ACTIONS(3010), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202281,10 +196252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4298] = 3, + [4693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 20, + ACTIONS(2839), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202305,7 +196276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2993), 39, + ACTIONS(2837), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202345,10 +196316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4365] = 3, + [4760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 20, + ACTIONS(3012), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202369,7 +196340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2997), 39, + ACTIONS(3014), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202409,74 +196380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4432] = 3, + [4827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 21, - anon_sym_LT_LT, - anon_sym_COLON, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2837), 38, - anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [4499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 20, + ACTIONS(3016), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202497,7 +196404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3001), 39, + ACTIONS(3018), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202537,142 +196444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4566] = 5, + [4894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - anon_sym_BSLASH, - STATE(1856), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2820), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2818), 36, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_POUND, - [4637] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1123), 1, - anon_sym_BSLASH, - STATE(1856), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2806), 36, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_POUND, - [4708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2843), 20, + ACTIONS(949), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202693,7 +196468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2845), 39, + ACTIONS(951), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202733,10 +196508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4775] = 3, + [4961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 20, + ACTIONS(3020), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202757,7 +196532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3005), 39, + ACTIONS(3022), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202797,10 +196572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4842] = 3, + [5028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 20, + ACTIONS(3024), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -202821,7 +196596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2830), 39, + ACTIONS(3026), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -202861,20 +196636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4909] = 6, + [5095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3009), 1, - anon_sym_LT, - STATE(1946), 1, - sym_type_arguments, - ACTIONS(2857), 20, + ACTIONS(3028), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -202891,7 +196660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 36, + ACTIONS(3030), 39, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -202926,16 +196696,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [4982] = 3, + [5162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 20, + ACTIONS(3032), 1, + anon_sym_COLON_COLON, + ACTIONS(3034), 1, + anon_sym_LT, + STATE(1901), 1, + sym_type_arguments, + ACTIONS(2885), 20, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -202952,8 +196730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2826), 39, - anon_sym_COLON, + ACTIONS(2887), 36, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -202988,14 +196765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5049] = 3, + [5235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3012), 20, + ACTIONS(3037), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203016,7 +196791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3014), 39, + ACTIONS(3039), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203056,10 +196831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5116] = 3, + [5302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 20, + ACTIONS(949), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203080,7 +196855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3018), 39, + ACTIONS(951), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203120,10 +196895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5183] = 3, + [5369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 20, + ACTIONS(3041), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203144,7 +196919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3022), 39, + ACTIONS(3043), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203184,10 +196959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5250] = 3, + [5436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 20, + ACTIONS(3045), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203208,7 +196983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3026), 39, + ACTIONS(3047), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203248,10 +197023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5317] = 3, + [5503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 20, + ACTIONS(3049), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203272,7 +197047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3030), 39, + ACTIONS(3051), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203312,20 +197087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5384] = 6, + [5570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, - anon_sym_COLON_COLON, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_GT, - ACTIONS(2968), 19, + ACTIONS(949), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -203341,7 +197111,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2970), 37, + ACTIONS(951), 39, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -203379,10 +197151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5457] = 3, + [5637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 20, + ACTIONS(977), 1, + anon_sym_BSLASH, + STATE(1815), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2828), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203403,16 +197179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(947), 39, - anon_sym_COLON, + ACTIONS(2826), 37, + sym_variable, + anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -203441,12 +197216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [5524] = 3, + anon_sym_POUND, + [5708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 20, + ACTIONS(3053), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203467,7 +197241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2814), 39, + ACTIONS(3055), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203507,10 +197281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5591] = 3, + [5775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 20, + ACTIONS(3057), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203531,7 +197305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3040), 39, + ACTIONS(3059), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203571,14 +197345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5658] = 5, + [5842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 1, - anon_sym_BSLASH, - STATE(1856), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2839), 21, + ACTIONS(3061), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203599,15 +197369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2837), 36, - anon_sym_COLON_COLON, + ACTIONS(3063), 39, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -203631,16 +197402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_POUND, - [5729] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [5909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 20, + ACTIONS(3065), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203661,7 +197433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3047), 39, + ACTIONS(3067), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203701,15 +197473,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5796] = 3, + [5976] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 20, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2911), 1, + anon_sym_COLON_COLON, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(1907), 1, + sym_type_arguments, + ACTIONS(2986), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -203725,16 +197512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3051), 39, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2863), 32, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -203761,14 +197543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5863] = 3, + [6059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 20, + ACTIONS(3069), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203789,7 +197569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3055), 39, + ACTIONS(3071), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203829,10 +197609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5930] = 3, + [6126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 20, + ACTIONS(3073), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203853,7 +197633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3059), 39, + ACTIONS(3075), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203893,10 +197673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [5997] = 3, + [6193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 20, + ACTIONS(3077), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203917,7 +197697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3063), 39, + ACTIONS(3079), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -203957,10 +197737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6064] = 3, + [6260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 20, + ACTIONS(1117), 1, + anon_sym_BSLASH, + STATE(1817), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2828), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -203981,16 +197765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3067), 39, - anon_sym_COLON, + anon_sym_as3, + ACTIONS(2826), 36, + anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -204014,17 +197797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [6131] = 3, + anon_sym_POUND, + [6331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 20, + ACTIONS(3081), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204045,7 +197827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3071), 39, + ACTIONS(3083), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204085,20 +197867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6198] = 6, + [6398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3073), 1, - anon_sym_LT, - STATE(1986), 1, - sym_type_arguments, - ACTIONS(2886), 20, + ACTIONS(3085), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204115,7 +197891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2868), 36, + ACTIONS(3087), 39, + anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -204150,12 +197927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6271] = 3, + [6465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 20, + ACTIONS(3089), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204176,7 +197955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(947), 39, + ACTIONS(3091), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204216,10 +197995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6338] = 3, + [6532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 20, + ACTIONS(3093), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204240,7 +198019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3078), 39, + ACTIONS(3095), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204280,10 +198059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6405] = 3, + [6599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 20, + ACTIONS(949), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204304,7 +198083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 39, + ACTIONS(951), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204344,10 +198123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6472] = 3, + [6666] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 20, + ACTIONS(1117), 1, + anon_sym_BSLASH, + STATE(1817), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204368,16 +198151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3082), 39, - anon_sym_COLON, + anon_sym_as3, + ACTIONS(2806), 36, + anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -204401,21 +198183,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [6539] = 3, + anon_sym_POUND, + [6737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 20, + ACTIONS(3032), 1, + anon_sym_COLON_COLON, + ACTIONS(3097), 1, + anon_sym_LT, + STATE(1953), 1, + sym_type_arguments, + ACTIONS(2874), 20, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204432,8 +198219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3086), 39, - anon_sym_COLON, + ACTIONS(2876), 36, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -204468,14 +198254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6606] = 3, + [6810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 20, + ACTIONS(3100), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204496,7 +198280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3090), 39, + ACTIONS(3102), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204536,10 +198320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6673] = 3, + [6877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 20, + ACTIONS(3104), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204560,7 +198344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3094), 39, + ACTIONS(3106), 39, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204600,14 +198384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6740] = 3, + [6944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 20, + ACTIONS(3097), 1, + anon_sym_LT, + STATE(1953), 1, + sym_type_arguments, + ACTIONS(2874), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204624,7 +198411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3098), 39, + ACTIONS(2876), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204660,15 +198447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6807] = 3, + [7014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 20, + ACTIONS(3032), 1, + anon_sym_COLON_COLON, + ACTIONS(2919), 21, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -204688,8 +198476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3102), 39, - anon_sym_COLON, + ACTIONS(2921), 36, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -204724,18 +198511,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - [6874] = 3, + [7082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 20, + ACTIONS(2865), 1, + anon_sym_LT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204752,7 +198543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3106), 39, + ACTIONS(2863), 35, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -204788,20 +198579,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [6941] = 3, + [7154] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 21, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_LBRACE, + ACTIONS(3112), 1, + anon_sym_LT, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(2452), 1, + sym_type_arguments, + ACTIONS(3115), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -204817,16 +198618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2909), 37, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2863), 30, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -204850,22 +198647,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [7007] = 6, + [7236] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2913), 1, + anon_sym_RPAREN, + ACTIONS(3119), 1, + anon_sym_COLON_COLON, + ACTIONS(3121), 1, anon_sym_LT, - STATE(1984), 1, + STATE(2417), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2887), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -204885,16 +198692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 35, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -204921,12 +198721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7079] = 4, + [7318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(3032), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 21, + ACTIONS(2897), 21, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, @@ -204948,7 +198748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2907), 36, + ACTIONS(2899), 36, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -204985,17 +198785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [7147] = 5, + [7386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 21, + ACTIONS(2835), 20, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -205015,15 +198809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 34, + ACTIONS(2833), 38, + sym_variable, + anon_sym_BSLASH, + anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205050,15 +198845,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7217] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [7452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(2959), 1, anon_sym_GT, - ACTIONS(2909), 2, + ACTIONS(2905), 2, anon_sym_COLON_COLON, anon_sym_COMMA, - ACTIONS(2968), 20, + ACTIONS(2931), 20, anon_sym_LT_LT, anon_sym_COLON, anon_sym_GT_GT, @@ -205079,7 +198877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2970), 35, + ACTIONS(2933), 35, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -205115,90 +198913,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [7287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - anon_sym_LBRACE, - ACTIONS(3108), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 37, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [7355] = 10, + [7522] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2847), 1, anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(3114), 1, - anon_sym_COLON_COLON, - ACTIONS(3116), 1, + ACTIONS(3121), 1, anon_sym_LT, - STATE(2357), 1, + ACTIONS(3124), 1, + anon_sym_COLON_COLON, + STATE(2311), 1, sym_type_arguments, ACTIONS(2868), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2887), 2, + sym_variable, + anon_sym_DOT_DOT_DOT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -205218,7 +198952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 30, + ACTIONS(2863), 30, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -205249,14 +198983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [7435] = 4, + [7602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(2915), 21, + ACTIONS(2835), 21, anon_sym_LT_LT, - anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -205276,15 +199007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2917), 36, + anon_sym_as3, + ACTIONS(2833), 37, + anon_sym_BSLASH, + anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205308,90 +199040,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [7503] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2899), 1, - anon_sym_RPAREN, - ACTIONS(3116), 1, - anon_sym_LT, - ACTIONS(3119), 1, - anon_sym_COLON_COLON, - STATE(2376), 1, - sym_type_arguments, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2868), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [7585] = 5, + anon_sym_POUND, + [7668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3034), 1, anon_sym_LT, - STATE(1946), 1, + STATE(1901), 1, sym_type_arguments, - ACTIONS(2857), 19, + ACTIONS(2885), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -205411,7 +199073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 37, + ACTIONS(2887), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -205449,18 +199111,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [7655] = 5, + [7738] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2913), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, anon_sym_LT, - STATE(1986), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(2886), 19, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -205476,9 +199146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2868), 37, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(2863), 33, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -205512,13 +199180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [7725] = 3, + [7816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 20, + ACTIONS(2907), 21, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -205538,16 +199205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2837), 38, - sym_variable, - anon_sym_BSLASH, + ACTIONS(2905), 37, anon_sym_COLON_COLON, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205574,33 +199241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_POUND, - [7791] = 11, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [7882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(3121), 1, - anon_sym_COLON_COLON, - ACTIONS(3123), 1, - anon_sym_LBRACE, - ACTIONS(3125), 1, - anon_sym_LT, ACTIONS(3130), 1, - anon_sym_POUND, - STATE(2407), 1, - sym_type_arguments, - ACTIONS(3128), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + anon_sym_LBRACE, + ACTIONS(3126), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -205616,12 +199269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2870), 30, + ACTIONS(3128), 37, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205645,14 +199302,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [7873] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [7950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 21, anon_sym_LT_LT, + anon_sym_COLON, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, @@ -205672,16 +199337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2837), 37, - anon_sym_BSLASH, - anon_sym_COLON_COLON, + ACTIONS(2863), 34, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205705,32 +199369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_POUND, - [7939] = 9, + [8020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2899), 1, - anon_sym_COMMA, - ACTIONS(2937), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 18, + ACTIONS(3132), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -205746,7 +199396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 33, + ACTIONS(3134), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -205780,10 +199432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [8017] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 20, + ACTIONS(3136), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -205804,7 +199458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3134), 37, + ACTIONS(3138), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -205842,15 +199496,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8082] = 3, + [8150] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2913), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2986), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -205866,16 +199531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3138), 37, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2863), 32, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -205904,18 +199564,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8147] = 4, + [8227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2913), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2861), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -205931,9 +199594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 35, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(2863), 35, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -205967,10 +199628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [8214] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [8300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 20, + ACTIONS(2935), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -205991,7 +199654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3142), 37, + ACTIONS(2937), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206029,21 +199692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8279] = 7, + [8365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2899), 1, - anon_sym_COMMA, - ACTIONS(2937), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2866), 18, + ACTIONS(3140), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -206059,7 +199716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 35, + ACTIONS(3142), 37, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -206095,10 +199754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8352] = 3, + [8430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 20, + ACTIONS(2982), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206119,7 +199778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3146), 37, + ACTIONS(2984), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206157,10 +199816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8417] = 3, + [8495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3148), 20, + ACTIONS(3081), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206181,7 +199840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3150), 37, + ACTIONS(3083), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206219,10 +199878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8482] = 3, + [8560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 20, + ACTIONS(3077), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206243,7 +199902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3154), 37, + ACTIONS(3079), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206281,32 +199940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8547] = 12, + [8625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3158), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - STATE(5071), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3144), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -206323,65 +199964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [8630] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - anon_sym_LBRACE, - ACTIONS(3160), 1, + ACTIONS(3146), 37, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(3163), 1, - anon_sym_GT, - ACTIONS(3108), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 35, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -206417,10 +200002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8701] = 3, + [8690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 20, + ACTIONS(3148), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206441,7 +200026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3168), 37, + ACTIONS(3150), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206479,10 +200064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8766] = 3, + [8755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 20, + ACTIONS(2874), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206503,7 +200088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3071), 37, + ACTIONS(2876), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206541,14 +200126,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8831] = 3, + [8820] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + STATE(5184), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -206565,16 +200168,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3172), 37, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -206601,12 +200197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [8896] = 3, + [8903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 20, + ACTIONS(3156), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206627,7 +200221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3176), 37, + ACTIONS(3158), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206665,17 +200259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [8961] = 6, + [8968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2923), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3041), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206696,12 +200283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 33, + ACTIONS(3043), 37, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -206730,10 +200321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9032] = 3, + [9033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 20, + ACTIONS(3160), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206754,7 +200345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3180), 37, + ACTIONS(3162), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206792,10 +200383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9097] = 3, + [9098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 20, + ACTIONS(3164), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206816,7 +200407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3184), 37, + ACTIONS(3166), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206854,15 +200445,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9162] = 3, + [9163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 20, + ACTIONS(3130), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + anon_sym_COMMA, + ACTIONS(3171), 1, + anon_sym_GT, + ACTIONS(3126), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -206878,9 +200474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3188), 37, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(3128), 35, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -206916,10 +200510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9227] = 3, + [9234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 20, + ACTIONS(3174), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -206940,7 +200534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3192), 37, + ACTIONS(3176), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -206978,10 +200572,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9292] = 3, + [9299] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + anon_sym_RPAREN, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1015), 1, + sym_inout_modifier, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3178), 1, + sym_variable, + ACTIONS(3180), 1, + anon_sym_LT_LT, + ACTIONS(3182), 1, + anon_sym_function, + ACTIONS(3184), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2527), 1, + sym_attribute_modifier, + STATE(2623), 1, + sym__type_constant, + STATE(2920), 1, + sym_visibility_modifier, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(4965), 1, + sym_parameter, + STATE(5738), 1, + sym_variadic_modifier, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(3983), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [9416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3194), 20, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(3186), 1, + anon_sym_COLON_COLON, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2843), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207002,16 +200692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3196), 37, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(2845), 32, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_as2, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -207035,15 +200721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [9357] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [9489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 20, + ACTIONS(3188), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207064,7 +200750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3200), 37, + ACTIONS(3190), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207102,10 +200788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9422] = 3, + [9554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 20, + ACTIONS(3192), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207126,7 +200812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3204), 37, + ACTIONS(3194), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207164,10 +200850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9487] = 3, + [9619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 20, + ACTIONS(3196), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207188,7 +200874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3208), 37, + ACTIONS(3198), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207226,10 +200912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9552] = 3, + [9684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3210), 20, + ACTIONS(3200), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207250,7 +200936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3212), 37, + ACTIONS(3202), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207288,10 +200974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9617] = 3, + [9749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 20, + ACTIONS(3204), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207312,7 +200998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3216), 37, + ACTIONS(3206), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207350,10 +201036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9682] = 3, + [9814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 20, + ACTIONS(2974), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207374,7 +201060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2946), 37, + ACTIONS(2976), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207412,10 +201098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9747] = 3, + [9879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3012), 20, + ACTIONS(2978), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207436,7 +201122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3014), 37, + ACTIONS(2980), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207474,10 +201160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9812] = 3, + [9944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 20, + ACTIONS(3208), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207498,7 +201184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2974), 37, + ACTIONS(3210), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207536,10 +201222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9877] = 3, + [10009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 20, + ACTIONS(3212), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207560,7 +201246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2978), 37, + ACTIONS(3214), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207598,10 +201284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [9942] = 3, + [10074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 20, + ACTIONS(3216), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207622,7 +201308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3220), 37, + ACTIONS(3218), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207660,10 +201346,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10007] = 3, + [10139] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3220), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + STATE(5251), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [10222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3222), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207684,7 +201441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3063), 37, + ACTIONS(3224), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207722,32 +201479,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10072] = 12, + [10287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2988), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3156), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2990), 37, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(3222), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - STATE(5192), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [10352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2992), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -207764,9 +201565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2994), 37, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -207793,10 +201601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [10155] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [10417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 20, + ACTIONS(2966), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207817,7 +201627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3226), 37, + ACTIONS(2968), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207855,10 +201665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10220] = 3, + [10482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 20, + ACTIONS(3057), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207879,7 +201689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3230), 37, + ACTIONS(3059), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207917,10 +201727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10285] = 3, + [10547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 20, + ACTIONS(3069), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -207941,7 +201751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3234), 37, + ACTIONS(3071), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -207979,10 +201789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10350] = 3, + [10612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 20, + ACTIONS(3089), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208003,7 +201813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3238), 37, + ACTIONS(3091), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208041,10 +201851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10415] = 3, + [10677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 20, + ACTIONS(3226), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208065,7 +201875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3242), 37, + ACTIONS(3228), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208103,26 +201913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10480] = 9, + [10742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2899), 1, - anon_sym_COMMA, - ACTIONS(2937), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2923), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 18, + ACTIONS(3000), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -208138,11 +201937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 32, + ACTIONS(3002), 37, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -208171,10 +201975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10557] = 3, + [10807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 20, + ACTIONS(3230), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208195,7 +201999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3246), 37, + ACTIONS(3232), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208233,10 +202037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10622] = 3, + [10872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 20, + ACTIONS(3234), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208257,7 +202061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 37, + ACTIONS(3236), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208295,10 +202099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10687] = 3, + [10937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 20, + ACTIONS(3238), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208319,7 +202123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3250), 37, + ACTIONS(3240), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208357,10 +202161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10752] = 3, + [11002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 20, + ACTIONS(3242), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208381,7 +202185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3082), 37, + ACTIONS(3244), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208419,32 +202223,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10817] = 12, + [11067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3246), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3156), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3248), 37, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(3252), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - STATE(5184), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [11132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3250), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -208461,9 +202309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(3252), 37, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -208490,10 +202345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [10900] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [11197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 20, + ACTIONS(3037), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208514,7 +202371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3256), 37, + ACTIONS(3039), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208552,10 +202409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [10965] = 3, + [11262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 20, + ACTIONS(3254), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208576,7 +202433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3067), 37, + ACTIONS(3256), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208614,7 +202471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11030] = 3, + [11327] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3258), 20, @@ -208676,7 +202533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11095] = 3, + [11392] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3262), 20, @@ -208738,7 +202595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11160] = 3, + [11457] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3266), 20, @@ -208800,10 +202657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11225] = 3, + [11522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208824,7 +202681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3094), 37, + ACTIONS(2863), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208862,10 +202719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11290] = 3, + [11587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 20, + ACTIONS(3024), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208886,7 +202743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3272), 37, + ACTIONS(3026), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208924,10 +202781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11355] = 3, + [11652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 20, + ACTIONS(3016), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -208948,7 +202805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2989), 37, + ACTIONS(3018), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -208986,10 +202843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11420] = 3, + [11717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 20, + ACTIONS(3270), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209010,7 +202867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3276), 37, + ACTIONS(3272), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209048,10 +202905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11485] = 3, + [11782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 20, + ACTIONS(3274), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209072,7 +202929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3280), 37, + ACTIONS(3276), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209110,32 +202967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11550] = 12, + [11847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3282), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - STATE(5127), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3061), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -209152,9 +202991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(3063), 37, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -209181,10 +203027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [11633] = 3, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [11912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 20, + ACTIONS(3278), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209205,7 +203053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3286), 37, + ACTIONS(3280), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209243,10 +203091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11698] = 3, + [11977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 20, + ACTIONS(3282), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209267,7 +203115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3290), 37, + ACTIONS(3284), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209305,10 +203153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11763] = 3, + [12042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 20, + ACTIONS(3286), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209329,7 +203177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3001), 37, + ACTIONS(3288), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209367,10 +203215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11828] = 3, + [12107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 20, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209391,7 +203242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3294), 37, + ACTIONS(2863), 35, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209427,12 +203278,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [11893] = 3, + [12174] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 20, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2760), 1, + anon_sym_async, + ACTIONS(3184), 1, + sym_xhp_class_identifier, + ACTIONS(3290), 1, + sym_variable, + ACTIONS(3292), 1, + anon_sym_LPAREN, + ACTIONS(3294), 1, + sym_inout_modifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(2906), 1, + sym_visibility_modifier, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(4118), 1, + sym_async_modifier, + STATE(4217), 1, + sym_parameters, + STATE(5774), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + STATE(6258), 1, + sym_variadic_modifier, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(5187), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [12291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209453,7 +203390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3298), 37, + ACTIONS(3022), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209491,10 +203428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [11958] = 3, + [12356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 20, + ACTIONS(3296), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209515,7 +203452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3302), 37, + ACTIONS(3298), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209553,10 +203490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12023] = 3, + [12421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 20, + ACTIONS(3300), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209577,7 +203514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3306), 37, + ACTIONS(3302), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209615,10 +203552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12088] = 3, + [12486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 20, + ACTIONS(3053), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209639,7 +203576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3102), 37, + ACTIONS(3055), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209677,10 +203614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12153] = 3, + [12551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 20, + ACTIONS(3126), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209701,7 +203638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3310), 37, + ACTIONS(3128), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209739,10 +203676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12218] = 3, + [12616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 20, + ACTIONS(3304), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209763,7 +203700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3086), 37, + ACTIONS(3306), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209801,10 +203738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12283] = 3, + [12681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 20, + ACTIONS(3308), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209825,7 +203762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2950), 37, + ACTIONS(3310), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209863,10 +203800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12348] = 3, + [12746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 20, + ACTIONS(3100), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209887,7 +203824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3051), 37, + ACTIONS(3102), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209925,10 +203862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12413] = 3, + [12811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 20, + ACTIONS(3312), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -209949,7 +203886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3090), 37, + ACTIONS(3314), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -209987,23 +203924,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12478] = 9, + [12876] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3110), 1, anon_sym_LBRACE, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_LT, - ACTIONS(3130), 1, + ACTIONS(3117), 1, anon_sym_POUND, - ACTIONS(3312), 1, + ACTIONS(3186), 1, anon_sym_COLON_COLON, - STATE(2554), 1, + STATE(2585), 1, sym_type_arguments, - ACTIONS(3128), 2, + ACTIONS(3115), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210024,7 +203961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2870), 30, + ACTIONS(2863), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -210055,10 +203992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [12555] = 3, + [12953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 20, + ACTIONS(3316), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210079,7 +204016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3316), 37, + ACTIONS(3318), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210117,10 +204054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12620] = 3, + [13018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 20, + ACTIONS(3320), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210141,7 +204078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3078), 37, + ACTIONS(3322), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210179,7 +204116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12685] = 12, + [13083] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -210188,20 +204125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(3324), 1, anon_sym_RPAREN, - STATE(1880), 1, + STATE(1888), 1, sym_type_arguments, - STATE(5010), 1, + STATE(5136), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210221,7 +204158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -210250,10 +204187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [12768] = 3, + [13166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 20, + ACTIONS(2927), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210274,7 +204211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3322), 37, + ACTIONS(2929), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210312,10 +204249,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12833] = 3, + [13231] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 20, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2760), 1, + anon_sym_async, + ACTIONS(3184), 1, + sym_xhp_class_identifier, + ACTIONS(3290), 1, + sym_variable, + ACTIONS(3292), 1, + anon_sym_LPAREN, + ACTIONS(3294), 1, + sym_inout_modifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(2906), 1, + sym_visibility_modifier, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(4016), 1, + sym_async_modifier, + STATE(4244), 1, + sym_parameters, + STATE(6014), 1, + sym__single_parameter, + STATE(6031), 1, + sym__single_parameter_parameters, + STATE(6258), 1, + sym_variadic_modifier, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(5187), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [13348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3326), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210336,7 +204361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3326), 37, + ACTIONS(3328), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210374,10 +204399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12898] = 3, + [13413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3328), 20, + ACTIONS(3330), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210398,7 +204423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3330), 37, + ACTIONS(3332), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210436,10 +204461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [12963] = 3, + [13478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 20, + ACTIONS(3334), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210460,7 +204485,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3106), 37, + ACTIONS(3336), 37, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [13543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3338), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3340), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210498,10 +204585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13028] = 3, + [13608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3332), 20, + ACTIONS(3342), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210522,7 +204609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3334), 37, + ACTIONS(3344), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210560,10 +204647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13093] = 3, + [13673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 20, + ACTIONS(3346), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210584,7 +204671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3338), 37, + ACTIONS(3348), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210622,10 +204709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13158] = 3, + [13738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 20, + ACTIONS(3350), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210646,7 +204733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3018), 37, + ACTIONS(3352), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210684,10 +204771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13223] = 3, + [13803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 20, + ACTIONS(3354), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210708,7 +204795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3022), 37, + ACTIONS(3356), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210746,10 +204833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13288] = 3, + [13868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 20, + ACTIONS(3104), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210770,7 +204857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3026), 37, + ACTIONS(3106), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210808,10 +204895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13353] = 3, + [13933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 20, + ACTIONS(3093), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210832,7 +204919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3030), 37, + ACTIONS(3095), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -210870,81 +204957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13418] = 12, + [13998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - STATE(5239), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [13501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2991), 20, + ACTIONS(3012), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -210965,7 +204981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2993), 37, + ACTIONS(3014), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211003,10 +205019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13566] = 3, + [14063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 20, + ACTIONS(3008), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211027,7 +205043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3344), 37, + ACTIONS(3010), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211065,81 +205081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13631] = 12, + [14128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - STATE(5140), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [13714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 20, + ACTIONS(3004), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211160,7 +205105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3350), 37, + ACTIONS(3006), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211198,10 +205143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13779] = 3, + [14193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 20, + ACTIONS(2996), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211222,7 +205167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3354), 37, + ACTIONS(2998), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211260,10 +205205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13844] = 3, + [14258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 20, + ACTIONS(3358), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211284,7 +205229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3358), 37, + ACTIONS(3360), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211322,76 +205267,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [13909] = 3, + [14323] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3362), 37, - anon_sym_COLON, + ACTIONS(3152), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3362), 1, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [13974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 20, + STATE(1888), 1, + sym_type_arguments, + STATE(5007), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -211408,16 +205309,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3366), 37, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -211444,16 +205338,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14039] = 3, + [14406] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3368), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + STATE(5176), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -211470,16 +205380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3370), 37, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -211506,12 +205409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14104] = 3, + [14489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(2986), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211532,16 +205440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3374), 37, - anon_sym_COLON, + ACTIONS(2863), 33, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -211570,10 +205474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14169] = 3, + [14560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3376), 20, + ACTIONS(3366), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211594,7 +205498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3378), 37, + ACTIONS(3368), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211632,10 +205536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14234] = 3, + [14625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 20, + ACTIONS(3370), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211656,7 +205560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2942), 37, + ACTIONS(3372), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211694,10 +205598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14299] = 3, + [14690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 20, + ACTIONS(3374), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211718,7 +205622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3110), 37, + ACTIONS(3376), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211756,10 +205660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14364] = 3, + [14755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 20, + ACTIONS(3378), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211780,7 +205684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2966), 37, + ACTIONS(3380), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211818,10 +205722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14429] = 3, + [14820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 20, + ACTIONS(3382), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211842,7 +205746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2859), 37, + ACTIONS(3384), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211880,10 +205784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14494] = 3, + [14885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 20, + ACTIONS(3386), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211904,7 +205808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3382), 37, + ACTIONS(3388), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -211942,10 +205846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14559] = 3, + [14950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 20, + ACTIONS(3390), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -211966,7 +205870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3040), 37, + ACTIONS(3392), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -212004,10 +205908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14624] = 3, + [15015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 20, + ACTIONS(2970), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -212028,7 +205932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3047), 37, + ACTIONS(2972), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -212066,22 +205970,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14689] = 7, + [15080] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, ACTIONS(2847), 1, anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - STATE(1880), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3394), 1, + anon_sym_RPAREN, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2843), 21, + STATE(5119), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -212098,11 +206012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2845), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -212127,19 +206038,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [14762] = 3, + [15163] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + STATE(5064), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -212156,16 +206083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3386), 37, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -212192,12 +206112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14827] = 3, + [15246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 20, + ACTIONS(3398), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -212218,7 +206136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2931), 37, + ACTIONS(3400), 37, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -212256,14 +206174,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [14892] = 3, + [15311] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 20, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3408), 1, + anon_sym_LT, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3402), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -212279,16 +206216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2954), 37, + ACTIONS(3404), 27, anon_sym_COLON, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -212311,175 +206244,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [14957] = 29, + [15393] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3421), 1, + anon_sym_RPAREN, + ACTIONS(3423), 1, + anon_sym_EQ_GT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3390), 6, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [15073] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, anon_sym_LPAREN, - ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3306), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(3480), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212493,80 +206308,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15191] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [15473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3427), 16, + sym_variable, + sym_pipe_variable, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_LT_LT_LT, anon_sym_LPAREN, - ACTIONS(3394), 1, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_AT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_POUND, + sym_xhp_class_identifier, + ACTIONS(3425), 40, + sym_identifier, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_self, + anon_sym_parent, + anon_sym_static, + anon_sym_LT_LT, + anon_sym_function, + sym_integer, + anon_sym_true, + anon_sym_True, + anon_sym_TRUE, + anon_sym_false, + anon_sym_False, + anon_sym_FALSE, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_list, + anon_sym_await, + anon_sym_async, + anon_sym_yield, + sym_xhp_identifier, + [15537] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3386), 6, - anon_sym_COLON, + ACTIONS(3332), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212580,27 +206461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15307] = 11, + [15653] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3121), 1, anon_sym_LT, - ACTIONS(3482), 1, - anon_sym_RPAREN, - ACTIONS(3484), 1, - anon_sym_EQ_GT, - STATE(1880), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2887), 2, + sym_variable, + anon_sym_DOT_DOT_DOT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -212620,8 +206496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 30, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -212649,80 +206527,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [15387] = 29, + [15727] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3386), 6, - anon_sym_COMMA, + ACTIONS(3360), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212736,162 +206614,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15503] = 29, + [15843] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3507), 1, + anon_sym_RPAREN, + ACTIONS(3509), 1, + anon_sym_EQ_GT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [15619] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3488), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3486), 21, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_PIPE_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -212906,71 +206678,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15727] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [15923] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3408), 1, anon_sym_LT, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3488), 1, - anon_sym_EQ, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 20, + ACTIONS(3402), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + ACTIONS(3404), 27, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -212978,6 +206735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -212991,75 +206755,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15839] = 25, + [16009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2986), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3456), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3492), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3490), 21, + anon_sym_STAR_STAR, + ACTIONS(2863), 33, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -213074,30 +206811,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [15947] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [16077] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + STATE(1776), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(3511), 2, anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3494), 1, - anon_sym_RPAREN, - ACTIONS(3496), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + anon_sym_SEMI, + ACTIONS(2828), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -213114,7 +206849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2826), 32, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -213143,67 +206879,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [16027] = 29, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + anon_sym_POUND, + [16147] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, + ACTIONS(1015), 1, + sym_inout_modifier, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2681), 1, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2687), 1, - anon_sym_async, - ACTIONS(3498), 1, + ACTIONS(3178), 1, sym_variable, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(3502), 1, - sym_inout_modifier, - ACTIONS(3504), 1, + ACTIONS(3180), 1, + anon_sym_LT_LT, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(3514), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2527), 1, + sym_attribute_modifier, + STATE(2623), 1, sym__type_constant, - STATE(2950), 1, + STATE(2920), 1, sym_visibility_modifier, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(4152), 1, - sym_async_modifier, - STATE(4340), 1, - sym_parameters, - STATE(5773), 1, - sym__single_parameter_parameters, - STATE(6014), 1, - sym__single_parameter, - STATE(6246), 1, + STATE(5514), 1, + sym_parameter, + STATE(6094), 1, sym_variadic_modifier, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5196), 5, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(4984), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -213230,27 +206968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [16143] = 11, + [16261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3506), 1, - anon_sym_RPAREN, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - STATE(1880), 1, + STATE(1957), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2986), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -213270,8 +206998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 33, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -213299,80 +207030,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [16223] = 29, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [16331] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3286), 6, - anon_sym_COMMA, + ACTIONS(3402), 10, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + ACTIONS(3404), 27, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213386,80 +207105,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16339] = 29, + [16419] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3518), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 6, - anon_sym_COLON, + ACTIONS(3516), 21, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213473,80 +207188,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16455] = 29, + [16527] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3520), 1, + anon_sym_RPAREN, + ACTIONS(3522), 1, + anon_sym_EQ_GT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3280), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213560,7 +207252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16571] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [16607] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -213569,18 +207266,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3512), 1, + ACTIONS(3524), 1, anon_sym_RPAREN, - ACTIONS(3514), 1, + ACTIONS(3526), 1, anon_sym_EQ_GT, - STATE(1880), 1, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -213600,7 +207297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -213629,80 +207326,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [16651] = 29, + [16687] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3408), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3402), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3338), 6, - anon_sym_COMMA, + ACTIONS(3404), 30, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213716,80 +207391,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16767] = 29, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [16765] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3516), 6, + ACTIONS(3166), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213803,80 +207481,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16883] = 29, + [16881] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 6, - anon_sym_COLON, + ACTIONS(3528), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -213890,34 +207568,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [16999] = 13, + [16997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3518), 1, + ACTIONS(3534), 1, anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 15, + ACTIONS(3530), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -213933,7 +207607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3486), 27, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3532), 27, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -213961,145 +207638,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17083] = 29, + [17079] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3154), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [17199] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3525), 1, - anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3521), 18, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3523), 30, + ACTIONS(3298), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214113,155 +207725,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [17277] = 14, + [17195] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 12, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - ACTIONS(3486), 27, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [17363] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3134), 6, - anon_sym_COMMA, + ACTIONS(3332), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214275,68 +207812,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17479] = 25, + [17311] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3402), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3488), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 21, + ACTIONS(3404), 21, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -214358,80 +207895,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17587] = 29, + [17419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(1117), 1, + anon_sym_BSLASH, + STATE(1865), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3528), 6, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2806), 33, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_as2, anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3432), 13, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214445,30 +207951,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17703] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [17487] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3408), 1, + anon_sym_LT, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3476), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(1814), 1, + ACTIONS(3417), 1, + anon_sym_is, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3488), 18, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 15, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -214484,11 +208001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3486), 27, - anon_sym_COMMA, + ACTIONS(3404), 27, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -214515,68 +208029,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17785] = 17, + [17571] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3472), 2, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 8, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3486), 25, - anon_sym_COMMA, + ACTIONS(3404), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_COLON, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214590,73 +208116,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17877] = 22, + [17687] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3458), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3464), 1, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 5, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3486), 21, + ACTIONS(3306), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214670,70 +208204,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [17979] = 20, + [17805] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3402), 1, + anon_sym_EQ, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3460), 1, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 6, + ACTIONS(3404), 20, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [17917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2876), 1, + anon_sym_COMMA, + ACTIONS(3130), 1, + anon_sym_LBRACE, + ACTIONS(3171), 1, + anon_sym_GT, + ACTIONS(3126), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 22, - anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3128), 34, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -214748,74 +208348,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18077] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [17987] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3458), 1, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3464), 1, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 4, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - ACTIONS(3486), 21, - anon_sym_COMMA, + ACTIONS(3356), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -214829,60 +208440,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18181] = 19, + [18103] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3543), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3539), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 6, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3541), 30, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -214892,6 +208487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -214906,71 +208505,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18277] = 21, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [18181] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3460), 1, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3464), 1, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3493), 1, + anon_sym_AMP, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3402), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 5, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3486), 22, - anon_sym_COMMA, + ACTIONS(3404), 21, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -214985,140 +208591,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18377] = 25, + [18289] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3446), 1, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3488), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 21, + ACTIONS(3244), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [18485] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_RPAREN, - ACTIONS(3535), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215132,83 +208678,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [18565] = 27, + [18405] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3488), 1, - anon_sym_EQ, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 20, + ACTIONS(3280), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215222,7 +208765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18677] = 29, + [18521] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, @@ -215233,56 +208776,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(1015), 1, sym_inout_modifier, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(3537), 1, + ACTIONS(3178), 1, sym_variable, - ACTIONS(3539), 1, + ACTIONS(3180), 1, anon_sym_LT_LT, - ACTIONS(3541), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(3184), 1, + sym_xhp_class_identifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(2765), 1, + STATE(2527), 1, sym_attribute_modifier, - STATE(2938), 1, + STATE(2623), 1, + sym__type_constant, + STATE(2920), 1, sym_visibility_modifier, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(4963), 1, + STATE(4965), 1, sym_parameter, - STATE(5739), 1, + STATE(5738), 1, sym_variadic_modifier, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3996), 5, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(4984), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -215309,80 +208851,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [18793] = 29, + [18635] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - STATE(1814), 1, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3491), 1, + anon_sym_CARET, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3154), 6, + ACTIONS(3402), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3404), 22, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215396,25 +208930,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [18909] = 9, + [18735] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2899), 1, - anon_sym_RPAREN, - ACTIONS(3116), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - STATE(2786), 1, + ACTIONS(3546), 1, + anon_sym_RPAREN, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2868), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -215434,7 +208970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -215463,80 +208999,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [18985] = 29, + [18815] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3518), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 6, - anon_sym_COMMA, + ACTIONS(3516), 21, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215550,27 +209082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19101] = 11, + [18923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3550), 1, anon_sym_LT, - ACTIONS(3543), 1, - anon_sym_RPAREN, - ACTIONS(3545), 1, - anon_sym_EQ_GT, - STATE(1880), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3530), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -215590,9 +209115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3532), 32, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -215619,34 +209148,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [19181] = 13, + [18997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3534), 1, anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 15, + ACTIONS(3530), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -215662,8 +209177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3486), 27, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3532), 32, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -215690,203 +209209,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19265] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [19071] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3476), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 10, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - ACTIONS(3486), 27, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [19353] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 12, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3475), 2, anon_sym_GT, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - ACTIONS(3486), 27, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [19439] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3549), 1, - anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3547), 18, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 30, + ACTIONS(3298), 6, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215900,83 +209301,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [19517] = 29, + [19187] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + ACTIONS(3553), 1, + anon_sym_EQ_GT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3150), 6, - anon_sym_COMMA, + ACTIONS(3306), 5, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -215990,7 +209389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19633] = 10, + [19305] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -215999,17 +209398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - STATE(1880), 1, + ACTIONS(3555), 1, + anon_sym_RPAREN, + ACTIONS(3557), 1, + anon_sym_EQ_GT, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -216029,7 +209429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -216058,27 +209458,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [19711] = 11, + [19385] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3559), 1, anon_sym_LT, - ACTIONS(3554), 1, - anon_sym_RPAREN, - ACTIONS(3556), 1, - anon_sym_EQ_GT, - STATE(1880), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3402), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -216097,10 +209495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 30, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -216122,35 +209523,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [19791] = 12, + [19463] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3549), 1, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3559), 1, anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3547), 18, + ACTIONS(3402), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -216169,8 +209568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 27, - anon_sym_COLON, + ACTIONS(3404), 27, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -216197,48 +209596,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [19873] = 6, + [19545] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - STATE(1776), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(3558), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - ACTIONS(2820), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2818), 32, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3402), 4, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + ACTIONS(3404), 21, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -216253,68 +209677,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - anon_sym_POUND, - [19943] = 19, + [19649] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - STATE(1814), 1, + ACTIONS(3473), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 6, + ACTIONS(3402), 6, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 23, + ACTIONS(3404), 23, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -216338,28 +209754,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20039] = 9, + [19745] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2937), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - STATE(2786), 1, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3128), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 8, + anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -216367,25 +209803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2870), 30, - anon_sym_LPAREN, - anon_sym_as2, + ACTIONS(3404), 25, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -216400,71 +209829,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [20115] = 23, + [19837] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3410), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3416), 1, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3280), 6, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [19953] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 4, + ACTIONS(3402), 4, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, - ACTIONS(3486), 21, + ACTIONS(3404), 21, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -216486,44 +209997,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20219] = 10, + [20057] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3476), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3530), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3473), 1, anon_sym_LT, - STATE(1814), 1, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3488), 18, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3475), 2, anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 6, + anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + ACTIONS(3404), 22, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [20155] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 30, + ACTIONS(3402), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3404), 21, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -216531,12 +210141,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [20257] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, anon_sym_AMP_AMP, + ACTIONS(3491), 1, + anon_sym_CARET, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3404), 21, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_PIPE_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -216551,10 +210235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [20297] = 11, + [20359] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -216563,18 +210244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3561), 1, + ACTIONS(3562), 1, anon_sym_RPAREN, - ACTIONS(3563), 1, + ACTIONS(3564), 1, anon_sym_EQ_GT, - STATE(1880), 1, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -216594,7 +210275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -216623,149 +210304,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [20377] = 29, + [20439] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3382), 6, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [20493] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - STATE(1814), 1, + ACTIONS(3473), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 6, + ACTIONS(3402), 8, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3404), 25, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -216774,6 +210362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -216788,65 +210379,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20591] = 22, + [20531] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + ACTIONS(3534), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3530), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3532), 30, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -216854,6 +210424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -216868,75 +210444,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20693] = 25, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [20609] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3396), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + ACTIONS(3566), 1, + anon_sym_RPAREN, + ACTIONS(3568), 1, + anon_sym_EQ_GT, + STATE(1888), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3492), 2, + [20689] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3570), 1, + anon_sym_RPAREN, + ACTIONS(3572), 1, + anon_sym_EQ_GT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3400), 3, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3490), 21, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -216951,80 +210580,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20801] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [20769] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3280), 6, + ACTIONS(3528), 6, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217038,68 +210672,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [20917] = 17, + [20885] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - STATE(1814), 1, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3424), 2, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 8, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3486), 25, - anon_sym_COLON, + ACTIONS(3532), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217113,34 +210759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21009] = 12, + [21001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3518), 1, - anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3488), 18, + ACTIONS(3574), 1, + anon_sym_COMMA, + ACTIONS(3577), 1, + anon_sym_GT, + ACTIONS(3316), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -217155,12 +210785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 27, - anon_sym_COLON, + anon_sym_STAR_STAR, + ACTIONS(3318), 35, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -217183,25 +210815,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21091] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [21069] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3518), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + ACTIONS(3580), 1, + anon_sym_RPAREN, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + STATE(1888), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3488), 18, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -217220,13 +210861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 30, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217248,78 +210886,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [21169] = 25, + [21149] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3396), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2913), 1, + anon_sym_RPAREN, + ACTIONS(3121), 1, anon_sym_LT, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2887), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3488), 2, anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3400), 3, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 21, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -217334,80 +210953,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21277] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [21225] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3402), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3134), 6, + ACTIONS(3404), 21, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217421,7 +211041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21393] = 11, + [21333] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -217430,18 +211050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3565), 1, + ACTIONS(3584), 1, anon_sym_RPAREN, - ACTIONS(3567), 1, + ACTIONS(3586), 1, anon_sym_EQ_GT, - STATE(1880), 1, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -217461,7 +211081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -217490,18 +211110,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [21473] = 5, + [21413] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_COMMA, - ACTIONS(3572), 1, - anon_sym_GT, - ACTIONS(3296), 19, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3588), 1, + anon_sym_RPAREN, + ACTIONS(3590), 1, + anon_sym_EQ_GT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -217517,14 +211150,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3298), 35, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217551,45 +211179,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [21541] = 15, + [21493] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, + ACTIONS(3413), 1, anon_sym_STAR_STAR, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - STATE(1814), 1, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 10, + ACTIONS(3244), 6, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [21609] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(3592), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -217598,13 +211300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - ACTIONS(3486), 27, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217626,81 +211329,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21629] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [21687] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3575), 1, - anon_sym_EQ_GT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3306), 5, - anon_sym_COLON, + ACTIONS(3356), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217714,72 +211421,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21747] = 21, + [21803] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3412), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3416), 1, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3428), 1, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 5, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3486), 22, - anon_sym_COLON, + ACTIONS(3594), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -217793,101 +211508,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [21847] = 9, + [21919] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1015), 1, + sym_inout_modifier, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3577), 1, - anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3547), 19, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3178), 1, + sym_variable, + ACTIONS(3180), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3510), 30, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3184), 1, + sym_xhp_class_identifier, + ACTIONS(3596), 1, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [21923] = 12, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2527), 1, + sym_attribute_modifier, + STATE(2623), 1, + sym__type_constant, + STATE(2920), 1, + sym_visibility_modifier, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(5514), 1, + sym_parameter, + STATE(6094), 1, + sym_variadic_modifier, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(4984), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [22033] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3577), 1, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2942), 1, anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + ACTIONS(3186), 1, + anon_sym_COLON_COLON, + STATE(2866), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3547), 18, + ACTIONS(3115), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -217902,13 +211628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 27, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2863), 30, + anon_sym_LPAREN, + anon_sym_as2, anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217930,7 +211656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22005] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [22109] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -217939,18 +211670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3580), 1, + ACTIONS(3598), 1, anon_sym_RPAREN, - ACTIONS(3582), 1, + ACTIONS(3600), 1, anon_sym_EQ_GT, - STATE(1880), 1, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -217970,7 +211701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -217999,58 +211730,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [22085] = 10, + [22189] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3577), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - STATE(1814), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3547), 18, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 30, + ACTIONS(3360), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218064,28 +211817,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [22163] = 10, + [22305] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3584), 1, + ACTIONS(3534), 1, anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3521), 18, + ACTIONS(3530), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -218104,7 +211852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3523), 30, + anon_sym_STAR_STAR, + ACTIONS(3532), 30, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -218135,80 +211884,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [22241] = 29, + [22381] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3286), 6, - anon_sym_COLON, + ACTIONS(3602), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218222,20 +211971,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22357] = 6, + [22497] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3112), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_GT, - ACTIONS(3108), 19, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3604), 1, + anon_sym_RPAREN, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -218251,15 +212011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3110), 34, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -218286,80 +212040,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [22427] = 29, + [22577] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3528), 6, + ACTIONS(3402), 6, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(3404), 22, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218373,80 +212118,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22543] = 29, + [22675] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3390), 6, - anon_sym_COMMA, + ACTIONS(3602), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218460,126 +212205,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22659] = 11, + [22791] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3587), 1, - anon_sym_RPAREN, - ACTIONS(3589), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [22739] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3591), 1, - anon_sym_RPAREN, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3475), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3594), 6, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218593,85 +212292,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [22819] = 29, + [22907] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 6, - anon_sym_COMMA, + ACTIONS(3190), 6, + anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3480), 13, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [23023] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3608), 1, + anon_sym_RPAREN, + ACTIONS(3610), 1, + anon_sym_EQ_GT, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218685,80 +212443,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [22935] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [23103] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3150), 6, - anon_sym_COLON, + ACTIONS(3190), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218772,18 +212535,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23051] = 5, + [23219] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - anon_sym_BSLASH, - STATE(1840), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3612), 1, + anon_sym_LT, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3539), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -218799,14 +212572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2806), 33, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_as2, + ACTIONS(3541), 30, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -218828,87 +212600,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [23119] = 29, + [23297] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3338), 6, + ACTIONS(3166), 6, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218922,57 +212690,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [23235] = 11, + [23413] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3595), 1, - anon_sym_RPAREN, - ACTIONS(3597), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3532), 6, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -218986,31 +212777,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [23315] = 8, + [23529] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3559), 1, anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3547), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 12, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -219019,12 +212821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3510), 32, + ACTIONS(3404), 27, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -219052,109 +212849,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [23389] = 29, + [23615] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2687), 1, - anon_sym_async, - ACTIONS(3498), 1, - sym_variable, - ACTIONS(3500), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3502), 1, - sym_inout_modifier, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(2950), 1, - sym_visibility_modifier, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, - sym_null, - STATE(4096), 1, - sym_async_modifier, - STATE(4258), 1, - sym_parameters, - STATE(6014), 1, - sym__single_parameter, - STATE(6030), 1, - sym__single_parameter_parameters, - STATE(6246), 1, - sym_variadic_modifier, - STATE(3443), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5196), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1001), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [23505] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3550), 1, anon_sym_LT, - STATE(1984), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2923), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3530), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -219173,13 +212886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 33, + ACTIONS(3532), 30, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -219201,29 +212914,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [23575] = 8, + [23693] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3116), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3550), 1, anon_sym_LT, - STATE(2786), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2868), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3530), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -219242,12 +212959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 30, + ACTIONS(3532), 27, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -219269,25 +212987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [23649] = 5, + [23775] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2923), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2861), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -219303,12 +213017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 33, - anon_sym_COMMA, + ACTIONS(2863), 34, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -219335,96 +213052,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [23717] = 3, + [23847] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 16, - sym_variable, - sym_pipe_variable, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_LT_LT_LT, + ACTIONS(3406), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_AT, - anon_sym_TILDE, - anon_sym_BANG, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_POUND, - sym_xhp_class_identifier, - ACTIONS(3599), 40, - sym_identifier, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_self, - anon_sym_parent, - anon_sym_static, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, - anon_sym_function, - sym_integer, - anon_sym_true, - anon_sym_True, - anon_sym_TRUE, - anon_sym_false, - anon_sym_False, - anon_sym_FALSE, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_list, - anon_sym_await, - anon_sym_async, - anon_sym_yield, - sym_xhp_identifier, - [23781] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3603), 1, - anon_sym_RPAREN, - ACTIONS(3605), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 10, anon_sym_QMARK, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -219433,14 +213097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 27, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -219462,119 +213125,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [23861] = 29, + [23935] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - STATE(1814), 1, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3559), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3516), 6, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_RBRACK, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [23977] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3607), 1, - anon_sym_RPAREN, - ACTIONS(3609), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3402), 15, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -219590,13 +213168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 27, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -219618,58 +213196,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [24057] = 7, + [24019] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2937), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2866), 18, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 34, - anon_sym_COLON, + ACTIONS(3404), 6, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -219683,28 +213283,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [24129] = 9, + [24135] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3550), 1, anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3547), 19, + ACTIONS(3530), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -219724,8 +213319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3510), 30, - anon_sym_COLON, + ACTIONS(3532), 30, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -219755,54 +213350,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [24205] = 8, + [24211] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3402), 1, + anon_sym_EQ, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - STATE(1814), 1, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3547), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3510), 32, - anon_sym_COLON, + ACTIONS(3404), 20, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -219816,61 +213435,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [24279] = 11, + [24323] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3611), 1, - anon_sym_RPAREN, - ACTIONS(3613), 1, - anon_sym_EQ_GT, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3402), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 21, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -219885,84 +213518,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [24359] = 29, + [24431] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3639), 1, - anon_sym_AMP, - ACTIONS(3649), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3338), 5, + ACTIONS(3402), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3404), 22, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -219976,79 +213597,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [24474] = 29, + [24531] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_CARET, - ACTIONS(3639), 1, - anon_sym_AMP, - ACTIONS(3649), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3516), 5, + ACTIONS(3402), 6, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(3404), 23, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, + anon_sym_RBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -220062,7 +213674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [24589] = 10, + [24627] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -220071,16 +213683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3655), 1, + ACTIONS(3615), 1, anon_sym_RPAREN, - STATE(1880), 1, + ACTIONS(3617), 1, + anon_sym_EQ_GT, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -220100,7 +213714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220129,105 +213743,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [24666] = 23, + [24707] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - sym_xhp_identifier, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3657), 1, - sym_identifier, - ACTIONS(3659), 1, - anon_sym_type, - ACTIONS(3663), 1, - anon_sym_shape, - ACTIONS(3665), 1, - anon_sym_namespace, - ACTIONS(3669), 1, - anon_sym_ctx, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3429), 1, - sym_null, - STATE(4491), 1, - sym__class_const_declarator, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3463), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3661), 9, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - ACTIONS(3667), 19, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - [24769] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3673), 1, - anon_sym_RPAREN, - STATE(1880), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3530), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -220246,10 +213780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3532), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -220271,33 +213805,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [24846] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [24784] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3675), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, + STATE(5184), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -220314,7 +213847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220343,25 +213876,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [24923] = 10, + [24859] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3649), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - ACTIONS(3677), 1, + ACTIONS(3626), 1, + anon_sym_QMARK, + ACTIONS(3628), 1, anon_sym_LT, - STATE(1814), 1, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, + anon_sym_PIPE, + ACTIONS(3646), 1, + anon_sym_CARET, + ACTIONS(3648), 1, + anon_sym_AMP, + ACTIONS(3658), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3650), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3652), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3332), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [24974] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3662), 1, + anon_sym_LT, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3521), 18, + ACTIONS(3402), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -220380,7 +213999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3523), 29, + ACTIONS(3404), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, @@ -220410,28 +214029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_ATrequired, anon_sym_ATlateinit, - [25000] = 10, + [25051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3680), 1, + ACTIONS(2956), 1, anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2905), 4, + sym_variable, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(2931), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -220448,7 +214060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2933), 30, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220477,14 +214089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [25077] = 5, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [25118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 1, + ACTIONS(3665), 1, anon_sym_BSLASH, STATE(2101), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2837), 11, + ACTIONS(2833), 11, sym_variable, anon_sym_COLON_COLON, anon_sym_COMMA, @@ -220496,7 +214110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ_GT, - ACTIONS(2839), 42, + ACTIONS(2835), 42, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -220508,141 +214122,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, anon_sym_include, anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [25144] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3629), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_CARET, - ACTIONS(3639), 1, - anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3492), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3621), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3490), 20, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [25251] = 10, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [25185] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3685), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3394), 1, anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, + STATE(5119), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -220659,7 +214190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -220688,23 +214219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [25328] = 9, + [25260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3158), 1, - anon_sym_RPAREN, - STATE(5071), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2986), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -220725,8 +214246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 33, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -220754,79 +214278,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [25403] = 29, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [25325] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3654), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 8, + anon_sym_QMARK, anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3404), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_COLON, - STATE(1814), 1, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [25416] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3646), 1, + anon_sym_CARET, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3134), 5, + ACTIONS(3402), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3404), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -220840,72 +214431,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [25518] = 25, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [25517] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3619), 1, + ACTIONS(3670), 1, anon_sym_LT, - ACTIONS(3629), 1, + STATE(2649), 1, + sym_arguments, + STATE(2880), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3649), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 27, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [25596] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3628), 1, + anon_sym_LT, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3488), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 20, + ACTIONS(3402), 6, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(3404), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -220922,25 +214578,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [25625] = 10, + [25693] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3687), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + ACTIONS(3672), 1, + anon_sym_RPAREN, + STATE(1888), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3488), 18, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -220959,10 +214615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -220984,22 +214640,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [25702] = 4, + [25770] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 2, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -221016,11 +214683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 33, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -221048,32 +214712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [25767] = 12, + [25847] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3687), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + ACTIONS(3676), 1, + anon_sym_RPAREN, + STATE(1888), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3488), 18, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -221092,10 +214749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -221117,135 +214774,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [25848] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1015), 1, - sym_inout_modifier, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(3537), 1, - sym_variable, - ACTIONS(3539), 1, - anon_sym_LT_LT, - ACTIONS(3690), 1, - anon_sym_RPAREN, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(2765), 1, - sym_attribute_modifier, - STATE(2938), 1, - sym_visibility_modifier, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, - sym_null, - STATE(5512), 1, - sym_parameter, - STATE(6090), 1, - sym_variadic_modifier, - STATE(3443), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4981), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1001), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [25961] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + [25924] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_RPAREN, + STATE(5064), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 8, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -221253,15 +214810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -221276,81 +214840,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [26052] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [25999] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3636), 1, anon_sym_PIPE_GT, - ACTIONS(3629), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + ACTIONS(3678), 1, + anon_sym_EQ_GT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 5, + ACTIONS(3306), 4, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_EQ_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3653), 13, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -221364,104 +214932,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [26167] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(983), 1, - anon_sym_RPAREN, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1015), 1, - sym_inout_modifier, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(3537), 1, - sym_variable, - ACTIONS(3539), 1, - anon_sym_LT_LT, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(2765), 1, - sym_attribute_modifier, - STATE(2938), 1, - sym_visibility_modifier, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, - sym_null, - STATE(4963), 1, - sym_parameter, - STATE(5739), 1, - sym_variadic_modifier, - STATE(3443), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4981), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1001), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [26280] = 5, + [26116] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, - anon_sym_GT, - ACTIONS(2909), 2, + ACTIONS(2841), 1, anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(2968), 20, + ACTIONS(3324), 1, + anon_sym_RPAREN, + STATE(5136), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -221477,11 +214969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2970), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -221506,19 +214995,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [26347] = 4, + [26191] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 3, - sym_variable, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, + anon_sym_LT, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3530), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3532), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [26266] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - ACTIONS(2968), 20, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, + anon_sym_RPAREN, + STATE(5176), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -221539,10 +215101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2970), 32, - anon_sym_COMMA, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -221570,156 +215130,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [26412] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1015), 1, - sym_inout_modifier, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(3537), 1, - sym_variable, - ACTIONS(3539), 1, - anon_sym_LT_LT, - ACTIONS(3692), 1, - anon_sym_RPAREN, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(2765), 1, - sym_attribute_modifier, - STATE(2938), 1, - sym_visibility_modifier, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, - sym_null, - STATE(5512), 1, - sym_parameter, - STATE(6090), 1, - sym_variadic_modifier, - STATE(3443), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4981), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1001), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [26525] = 22, + [26341] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_CARET, - ACTIONS(3649), 1, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3530), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3532), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -221736,21 +215199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [26626] = 5, + [26422] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, - anon_sym_RPAREN, - ACTIONS(2909), 4, - sym_variable, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(2968), 20, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3680), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -221767,7 +215237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2970), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -221796,115 +215266,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [26693] = 29, + [26499] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_CARET, - ACTIONS(3639), 1, - anon_sym_AMP, - ACTIONS(3649), 1, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, + ACTIONS(3662), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3621), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3386), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [26808] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_RPAREN, - STATE(5140), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3402), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -221920,10 +215308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -221945,73 +215333,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [26883] = 20, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [26580] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3619), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, + anon_sym_QMARK, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3633), 1, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3644), 1, + anon_sym_PIPE, + ACTIONS(3646), 1, + anon_sym_CARET, + ACTIONS(3648), 1, + anon_sym_AMP, + ACTIONS(3658), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 6, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(3486), 21, + ACTIONS(3602), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_COLON, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -222025,68 +215421,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [26980] = 23, + [26695] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3619), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 4, + ACTIONS(3402), 4, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, - ACTIONS(3486), 20, + ACTIONS(3404), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, @@ -222107,27 +215501,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [27083] = 9, + [26798] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3682), 1, anon_sym_RPAREN, - STATE(5239), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -222144,7 +215539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222173,60 +215568,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [27158] = 19, + [26875] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3649), 1, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3628), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 6, + ACTIONS(3402), 6, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 22, + ACTIONS(3404), 22, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, @@ -222249,63 +215644,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [27253] = 21, + [26970] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3619), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 5, + ACTIONS(3402), 5, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3486), 21, + ACTIONS(3404), 21, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, @@ -222327,68 +215722,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [27352] = 25, + [27069] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3619), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, + anon_sym_QMARK, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3629), 1, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, + ACTIONS(3658), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3488), 2, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3650), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3652), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3594), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [27184] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_LT, + ACTIONS(3638), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, + anon_sym_PIPE, + ACTIONS(3646), 1, + anon_sym_CARET, + ACTIONS(3648), 1, + anon_sym_AMP, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3402), 2, anon_sym_QMARK, anon_sym_EQ, - ACTIONS(3615), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 20, + ACTIONS(3404), 20, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, @@ -222409,27 +215890,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [27459] = 9, + [27291] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3684), 1, + sym_identifier, + ACTIONS(3686), 1, + anon_sym_type, + ACTIONS(3690), 1, + anon_sym_shape, + ACTIONS(3692), 1, + anon_sym_namespace, + ACTIONS(3696), 1, + anon_sym_ctx, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3429), 1, + sym_null, + STATE(4483), 1, + sym__class_const_declarator, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3460), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(3688), 9, + anon_sym_newtype, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + ACTIONS(3694), 19, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + [27394] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3700), 1, anon_sym_RPAREN, - STATE(5010), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -222446,7 +216008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222475,75 +216037,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [27534] = 27, + [27471] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3488), 1, - anon_sym_EQ, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3629), 1, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3532), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [27586] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3702), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 19, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -222557,25 +216185,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [27645] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [27663] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3252), 1, + ACTIONS(3362), 1, anon_sym_RPAREN, - STATE(5184), 1, + STATE(5007), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -222596,7 +216227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -222625,79 +216256,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [27720] = 29, + [27738] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3402), 1, + anon_sym_EQ, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 5, + ACTIONS(3404), 19, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, + anon_sym_PIPE_GT, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -222711,133 +216338,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [27835] = 13, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [27849] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3649), 1, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - ACTIONS(3687), 1, + ACTIONS(3626), 1, + anon_sym_QMARK, + ACTIONS(3628), 1, anon_sym_LT, - STATE(1814), 1, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, + anon_sym_PIPE, + ACTIONS(3646), 1, + anon_sym_CARET, + ACTIONS(3648), 1, + anon_sym_AMP, + ACTIONS(3658), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 15, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3630), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - ACTIONS(3486), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [27918] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 10, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - ACTIONS(3486), 26, + ACTIONS(3404), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -222851,9 +216426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [28005] = 11, + [27964] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -222862,18 +216435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(3694), 1, - anon_sym_LPAREN, - ACTIONS(3696), 1, + ACTIONS(2865), 1, anon_sym_LT, - STATE(2727), 1, - sym_arguments, - STATE(2802), 1, + ACTIONS(3704), 1, + anon_sym_RPAREN, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -222893,7 +216464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + ACTIONS(2863), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -222921,16 +216493,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [28084] = 6, + [28041] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, - anon_sym_COLON_COLON, - ACTIONS(3700), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3662), 1, anon_sym_LT, - STATE(2364), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2857), 20, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 15, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -222946,16 +216536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2859), 32, - anon_sym_LPAREN, - anon_sym_as2, + ACTIONS(3404), 26, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -222977,47 +216561,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [28153] = 14, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [28124] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3649), 1, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - ACTIONS(3687), 1, + ACTIONS(3628), 1, anon_sym_LT, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3623), 3, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 12, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3402), 10, anon_sym_QMARK, anon_sym_GT, anon_sym_EQ, @@ -223028,7 +216608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - ACTIONS(3486), 26, + ACTIONS(3404), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, @@ -223055,16 +216635,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_ATrequired, anon_sym_ATlateinit, - [28238] = 6, + [28211] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, - anon_sym_COLON_COLON, - ACTIONS(3703), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3619), 1, anon_sym_LT, - STATE(2408), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2886), 20, + ACTIONS(3530), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -223084,12 +216668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2868), 32, - anon_sym_LPAREN, - anon_sym_as2, + ACTIONS(3532), 31, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -223113,36 +216695,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [28307] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [28284] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3662), 1, anon_sym_LT, - ACTIONS(3706), 1, - anon_sym_RPAREN, - STATE(1880), 1, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 12, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -223151,14 +216744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 26, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -223180,32 +216769,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [28384] = 9, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [28369] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3282), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3706), 1, anon_sym_RPAREN, - STATE(5127), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -223222,7 +216809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -223251,54 +216838,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [28459] = 10, + [28446] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3708), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, anon_sym_PIPE, + ACTIONS(3646), 1, anon_sym_CARET, + ACTIONS(3648), 1, anon_sym_AMP, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3402), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3652), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -223313,53 +216918,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [28536] = 5, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [28553] = 29, ACTIONS(3), 1, sym_comment, - STATE(2511), 1, - sym_arguments, - STATE(5266), 1, - sym_type_arguments, - ACTIONS(945), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, + ACTIONS(3628), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3634), 1, anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, anon_sym_PIPE, + ACTIONS(3646), 1, anon_sym_CARET, + ACTIONS(3648), 1, anon_sym_AMP, + ACTIONS(3658), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3652), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(947), 32, - anon_sym_LPAREN, - anon_sym_as2, + ACTIONS(3244), 5, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -223373,21 +217006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [28603] = 5, + [28668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(2929), 1, anon_sym_COMMA, - ACTIONS(3572), 1, + ACTIONS(3577), 1, anon_sym_GT, - ACTIONS(3296), 19, + ACTIONS(3316), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -223407,7 +217033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3298), 34, + ACTIONS(3318), 34, anon_sym_COLON, anon_sym_RBRACE, anon_sym_SEMI, @@ -223442,18 +217068,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [28670] = 5, + [28735] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - anon_sym_BSLASH, - STATE(1840), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(945), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3708), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -223470,11 +217106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(947), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -223499,24 +217132,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [28737] = 5, + [28812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3312), 1, + ACTIONS(2959), 1, + anon_sym_GT, + ACTIONS(2905), 2, anon_sym_COLON_COLON, - ACTIONS(2843), 21, + anon_sym_COMMA, + ACTIONS(2931), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -223533,7 +217164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2845), 32, + ACTIONS(2933), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -223566,114 +217197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [28804] = 30, + [28879] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_CARET, - ACTIONS(3639), 1, - anon_sym_AMP, - ACTIONS(3649), 1, + ACTIONS(3622), 1, anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, ACTIONS(3710), 1, - anon_sym_EQ_GT, - STATE(1814), 1, + anon_sym_LT, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3621), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3306), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [28921] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(3696), 1, - anon_sym_LT, - ACTIONS(3712), 1, - anon_sym_LPAREN, - STATE(1937), 1, - sym_arguments, - STATE(2808), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3539), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -223692,9 +217234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 27, - anon_sym_LBRACK, + ACTIONS(3541), 29, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -223716,28 +217259,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [29000] = 9, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [28956] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3714), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + ACTIONS(3713), 1, + anon_sym_RPAREN, + STATE(1888), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3547), 19, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -223757,10 +217302,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3510), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -223782,35 +217326,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [29075] = 12, + [29033] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3714), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(3670), 1, anon_sym_LT, - STATE(1814), 1, + ACTIONS(3715), 1, + anon_sym_LPAREN, + STATE(1990), 1, sym_arguments, - STATE(5596), 1, + STATE(2883), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3547), 18, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -223829,10 +217370,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2863), 27, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -223854,27 +217394,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [29156] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [29112] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3714), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, + ACTIONS(3717), 1, + anon_sym_RPAREN, + STATE(1888), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3547), 18, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -223893,10 +217436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 29, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -223918,74 +217461,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [29233] = 29, + [29189] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3636), 1, anon_sym_PIPE_GT, - ACTIONS(3629), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -223995,7 +217538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3653), 13, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224009,165 +217552,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [29348] = 29, + [29304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3617), 1, + STATE(2495), 1, + sym_arguments, + STATE(4938), 1, + sym_type_arguments, + ACTIONS(949), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3619), 1, anon_sym_LT, - ACTIONS(3625), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3621), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3390), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [29463] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(951), 32, anon_sym_LPAREN, - ACTIONS(3404), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_EQ, - ACTIONS(3627), 1, anon_sym_PIPE_GT, - ACTIONS(3629), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_CARET, - ACTIONS(3639), 1, - anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3621), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3150), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224181,79 +217607,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [29578] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [29371] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3636), 1, anon_sym_PIPE_GT, - ACTIONS(3629), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 5, + ACTIONS(3166), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3653), 13, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224267,23 +217700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [29693] = 8, + [29486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3714), 1, - anon_sym_LT, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3547), 19, + ACTIONS(1117), 1, + anon_sym_BSLASH, + STATE(1865), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(949), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -224300,10 +217728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3510), 31, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_as3, + ACTIONS(951), 32, + anon_sym_LPAREN, + anon_sym_as2, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -224327,12 +217757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [29766] = 10, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [29553] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -224341,16 +217771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3717), 1, + ACTIONS(3719), 1, anon_sym_RPAREN, - STATE(1880), 1, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -224370,7 +217800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -224399,25 +217829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [29843] = 10, + [29630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(3721), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3723), 1, anon_sym_LT, - ACTIONS(3719), 1, - anon_sym_RPAREN, - STATE(1880), 1, + STATE(2431), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2874), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -224437,8 +217858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2876), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -224463,117 +217887,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [29920] = 29, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [29699] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(3619), 1, - anon_sym_LT, - ACTIONS(3625), 1, - anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_CARET, - ACTIONS(3639), 1, - anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1015), 1, + sym_inout_modifier, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3178), 1, + sym_variable, + ACTIONS(3180), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3621), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3643), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3647), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3154), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ_GT, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3653), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [30035] = 10, + ACTIONS(3184), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2527), 1, + sym_attribute_modifier, + STATE(2623), 1, + sym__type_constant, + STATE(2920), 1, + sym_visibility_modifier, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(5514), 1, + sym_parameter, + STATE(6094), 1, + sym_variadic_modifier, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(4984), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [29810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2905), 3, + sym_variable, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3721), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + anon_sym_DOT_DOT_DOT, + ACTIONS(2931), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -224590,8 +218004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2933), 32, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -224619,54 +218035,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [30112] = 10, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [29875] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3723), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, anon_sym_PIPE, + ACTIONS(3646), 1, anon_sym_CARET, + ACTIONS(3648), 1, anon_sym_AMP, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3518), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3652), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3516), 20, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -224681,30 +218117,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [30189] = 10, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [29982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(3721), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(3726), 1, anon_sym_LT, - ACTIONS(3725), 1, - anon_sym_RPAREN, - STATE(1880), 1, + STATE(2453), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2885), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -224724,8 +218148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2887), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -224750,58 +218177,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [30266] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3727), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + [30051] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3628), 1, + anon_sym_LT, + ACTIONS(3634), 1, anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, anon_sym_PIPE, + ACTIONS(3646), 1, anon_sym_CARET, + ACTIONS(3648), 1, anon_sym_AMP, + ACTIONS(3658), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3190), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224815,84 +218268,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [30343] = 29, + [30166] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3636), 1, anon_sym_PIPE_GT, - ACTIONS(3629), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3280), 5, + ACTIONS(3298), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3653), 13, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224906,79 +218354,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [30458] = 29, + [30281] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3636), 1, anon_sym_PIPE_GT, - ACTIONS(3629), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3286), 5, + ACTIONS(3280), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ_GT, anon_sym_ATrequired, anon_sym_ATlateinit, - ACTIONS(3653), 13, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -224992,7 +218440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [30573] = 10, + [30396] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, @@ -225001,16 +218449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2849), 1, anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, ACTIONS(3729), 1, anon_sym_RPAREN, - STATE(1880), 1, + STATE(1888), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -225030,7 +218478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -225059,28 +218507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [30650] = 10, + [30473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3186), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3731), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(3115), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -225097,8 +218538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2863), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -225123,26 +218567,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [30727] = 9, + [30542] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3222), 1, + ACTIONS(3220), 1, anon_sym_RPAREN, - STATE(5192), 1, + STATE(5251), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -225163,7 +218607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -225192,118 +218636,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [30802] = 6, + [30617] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3128), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, + ACTIONS(3628), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3634), 1, anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, anon_sym_PIPE, + ACTIONS(3646), 1, anon_sym_CARET, + ACTIONS(3648), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2870), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, + ACTIONS(3419), 2, + anon_sym_as3, anon_sym_QMARKas, - [30871] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - anon_sym_LBRACE, - ACTIONS(2849), 1, - anon_sym_POUND, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3733), 1, - anon_sym_RPAREN, - STATE(1880), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3630), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3360), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225317,84 +218722,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [30948] = 30, + [30732] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3617), 1, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3625), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3636), 1, anon_sym_PIPE_GT, - ACTIONS(3629), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3637), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3639), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3615), 2, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3621), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3641), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3735), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3737), 2, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3623), 3, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3647), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3653), 13, + ACTIONS(3356), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225408,102 +218808,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [31064] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - sym_xhp_identifier, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(3739), 1, - sym_identifier, - ACTIONS(3743), 1, - anon_sym_shape, - ACTIONS(3745), 1, - anon_sym_namespace, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3441), 1, - sym_null, - STATE(4957), 1, - sym_const_declarator, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3456), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3741), 10, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - ACTIONS(3747), 19, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - [31162] = 8, + [30847] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3482), 1, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3731), 1, anon_sym_RPAREN, - ACTIONS(3484), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -225520,7 +218846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -225549,79 +218875,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31234] = 30, + [30924] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2847), 1, + anon_sym_LBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3625), 1, + ACTIONS(3733), 1, + anon_sym_RPAREN, + STATE(1888), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_PIPE_GT, - ACTIONS(3629), 1, anon_sym_QMARK_QMARK, - ACTIONS(3631), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3633), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, anon_sym_PIPE, - ACTIONS(3637), 1, anon_sym_CARET, - ACTIONS(3639), 1, anon_sym_AMP, - ACTIONS(3649), 1, - anon_sym_STAR_STAR, - ACTIONS(3651), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3621), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3641), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3643), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3749), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3751), 2, - anon_sym_ATrequired, - anon_sym_ATlateinit, - ACTIONS(3623), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3647), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3653), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -225635,21 +218937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [31350] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [31001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3494), 1, - anon_sym_RPAREN, - ACTIONS(3496), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3186), 1, + anon_sym_COLON_COLON, + ACTIONS(2843), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -225670,8 +218970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2845), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -225696,24 +218999,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [31422] = 8, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [31068] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3222), 1, + ACTIONS(3220), 1, anon_sym_RPAREN, - STATE(5192), 1, + STATE(5251), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -225734,7 +219039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -225763,98 +219068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31494] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - sym_xhp_identifier, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(3739), 1, - sym_identifier, - ACTIONS(3743), 1, - anon_sym_shape, - ACTIONS(3745), 1, - anon_sym_namespace, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3441), 1, - sym_null, - STATE(4654), 1, - sym_const_declarator, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3464), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3741), 10, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - ACTIONS(3747), 19, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - [31592] = 8, + [31140] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3506), 1, - anon_sym_RPAREN, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3592), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -225875,7 +219102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -225904,69 +219131,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31664] = 27, + [31210] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1015), 1, - sym_inout_modifier, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(3537), 1, - sym_variable, - ACTIONS(3539), 1, - anon_sym_LT_LT, - STATE(2223), 1, + ACTIONS(3735), 1, + sym_identifier, + ACTIONS(3739), 1, + anon_sym_shape, + ACTIONS(3741), 1, + anon_sym_namespace, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(2765), 1, - sym_attribute_modifier, - STATE(2938), 1, - sym_visibility_modifier, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3449), 1, sym_null, - STATE(5512), 1, - sym_parameter, - STATE(6090), 1, - sym_variadic_modifier, - STATE(3443), 2, + STATE(5004), 1, + sym_const_declarator, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4981), 5, + STATE(3468), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(3737), 10, + anon_sym_type, + anon_sym_newtype, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + ACTIONS(3743), 19, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -225986,114 +219208,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [31774] = 32, + [31308] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, - anon_sym_RBRACE, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3753), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5145), 1, - aux_sym_array_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [31894] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3512), 1, + ACTIONS(3394), 1, anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + STATE(5119), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -226110,7 +219244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -226139,113 +219273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [31966] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 1, - anon_sym_RBRACK, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3755), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5132), 1, - aux_sym_array_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [32086] = 10, + [31382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3696), 1, + ACTIONS(3726), 1, anon_sym_LT, - ACTIONS(3712), 1, - anon_sym_LPAREN, - STATE(1937), 1, - sym_arguments, - STATE(5493), 1, + STATE(2453), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2885), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -226265,7 +219300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + anon_sym_as3, + ACTIONS(2887), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -226290,67 +219329,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [32162] = 21, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [31448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - sym_xhp_identifier, - ACTIONS(2663), 1, + ACTIONS(2833), 12, + sym_variable, anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(3739), 1, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2835), 42, sym_identifier, - ACTIONS(3743), 1, - anon_sym_shape, - ACTIONS(3745), 1, - anon_sym_namespace, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3441), 1, - sym_null, - STATE(5267), 1, - sym_const_declarator, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3457), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3741), 10, anon_sym_type, anon_sym_newtype, + anon_sym_shape, anon_sym_tuple, anon_sym_clone, anon_sym_new, anon_sym_print, + anon_sym_namespace, anon_sym_include, anon_sym_include_once, anon_sym_require, anon_sym_require_once, - ACTIONS(3747), 19, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -226370,14 +219388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [32260] = 5, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [31510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 1, - anon_sym_BSLASH, - STATE(2182), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2839), 21, + ACTIONS(3186), 1, + anon_sym_COLON_COLON, + ACTIONS(2843), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -226399,8 +219420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2837), 31, - anon_sym_COLON_COLON, + ACTIONS(2845), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -226431,98 +219451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [32326] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - sym_xhp_identifier, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(3739), 1, - sym_identifier, - ACTIONS(3743), 1, - anon_sym_shape, - ACTIONS(3745), 1, - anon_sym_namespace, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3441), 1, - sym_null, - STATE(4926), 1, - sym_const_declarator, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3462), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3741), 10, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - ACTIONS(3747), 19, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - [32424] = 8, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [31574] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3533), 1, + ACTIONS(3598), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, + ACTIONS(3600), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -226543,7 +219488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -226572,14 +219517,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [32496] = 5, + [31646] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3760), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2736), 1, anon_sym_BSLASH, - STATE(2215), 1, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + ACTIONS(3735), 1, + sym_identifier, + ACTIONS(3739), 1, + anon_sym_shape, + ACTIONS(3741), 1, + anon_sym_namespace, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3449), 1, + sym_null, + STATE(4855), 1, + sym_const_declarator, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3465), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(3737), 10, + anon_sym_type, + anon_sym_newtype, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + ACTIONS(3743), 19, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + [31744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3721), 1, + anon_sym_COLON_COLON, + ACTIONS(2897), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -226601,8 +219621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2806), 31, - anon_sym_COLON_COLON, + ACTIONS(2899), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -226633,145 +219652,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [32562] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3765), 1, - anon_sym_EQ, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(3762), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [32634] = 32, + [31808] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 1, - anon_sym_RBRACE, - ACTIONS(3392), 1, + ACTIONS(1501), 1, + anon_sym_RBRACK, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3768), 1, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3745), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5080), 1, + STATE(5189), 1, aux_sym_array_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -226785,176 +219742,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [32754] = 32, + [31928] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_RBRACK, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3770), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5041), 1, - aux_sym_array_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [32874] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3554), 1, + ACTIONS(3220), 1, anon_sym_RPAREN, - ACTIONS(3556), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [32946] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + STATE(5251), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -226971,7 +219778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -226997,112 +219804,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [33016] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1484), 1, - anon_sym_RBRACE, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3772), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4951), 1, - aux_sym_array_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [33136] = 8, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [32002] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3565), 1, + ACTIONS(3588), 1, anon_sym_RPAREN, - ACTIONS(3567), 1, + ACTIONS(3590), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227123,7 +219842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -227152,17 +219871,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33208] = 5, + [32074] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 1, - anon_sym_LT, - STATE(2408), 1, - sym_type_arguments, - ACTIONS(2886), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3584), 1, + anon_sym_RPAREN, + ACTIONS(3586), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -227179,11 +219906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2868), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -227208,26 +219932,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [33274] = 8, + [32146] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3561), 1, - anon_sym_RPAREN, - ACTIONS(3563), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(3750), 1, + anon_sym_EQ, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3747), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227235,7 +219958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, @@ -227248,7 +219970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -227277,12 +219999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33346] = 4, + [32218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, + ACTIONS(3186), 1, anon_sym_COLON_COLON, - ACTIONS(2915), 21, + ACTIONS(3115), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227304,7 +220029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2917), 32, + ACTIONS(2863), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -227335,19 +220060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [33410] = 6, + [32284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3723), 1, anon_sym_LT, - STATE(2718), 1, + STATE(2431), 1, sym_type_arguments, - ACTIONS(3128), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2874), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227368,7 +220088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2870), 30, + ACTIONS(2876), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -227399,21 +220119,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [33478] = 8, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [32350] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3282), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3566), 1, anon_sym_RPAREN, - STATE(5127), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(3568), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227434,7 +220156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -227463,26 +220185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33550] = 9, + [32422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3318), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - STATE(5010), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3721), 1, + anon_sym_COLON_COLON, + ACTIONS(2919), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -227499,8 +220211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2921), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -227525,101 +220240,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [33624] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3774), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [33740] = 4, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [32486] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2843), 21, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3604), 1, + anon_sym_RPAREN, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227640,11 +220280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2845), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -227669,26 +220306,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [33804] = 8, + [32558] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3543), 1, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, anon_sym_RPAREN, - ACTIONS(3545), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(5176), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227709,7 +220344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -227738,14 +220373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [33876] = 5, + [32630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, + ACTIONS(3112), 1, anon_sym_LT, - STATE(2364), 1, + STATE(2672), 1, sym_type_arguments, - ACTIONS(2857), 20, + ACTIONS(3115), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227766,7 +220404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2859), 32, + ACTIONS(2863), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -227797,14 +220435,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [33942] = 4, + [32698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3698), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 21, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3608), 1, + anon_sym_RPAREN, + ACTIONS(3610), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227825,11 +220470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2907), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -227854,15 +220496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [34006] = 3, + [32770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 21, + ACTIONS(2903), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -227884,7 +220524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2919), 33, + ACTIONS(2901), 33, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_as2, @@ -227918,52 +220558,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [34068] = 8, + [32832] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3318), 1, - anon_sym_RPAREN, - STATE(5010), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3753), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -227977,26 +220644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [34140] = 8, + [32948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, - anon_sym_RPAREN, - STATE(5239), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2843), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -228017,8 +220670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2845), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228043,31 +220699,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [34212] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3694), 1, - anon_sym_LPAREN, - ACTIONS(3696), 1, - anon_sym_LT, - STATE(2727), 1, - sym_arguments, - STATE(5743), 1, - sym_type_arguments, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + [33012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + anon_sym_BSLASH, + STATE(2237), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2808), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -228084,7 +220732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + anon_sym_as3, + ACTIONS(2806), 31, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228109,29 +220762,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [34288] = 9, + [33078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3282), 1, + ACTIONS(3362), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - STATE(5127), 1, + STATE(5007), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -228148,7 +220800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -228177,15 +220829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [34362] = 5, + [33150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 1, - anon_sym_COLON_COLON, - ACTIONS(3128), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 21, + ACTIONS(3755), 1, + anon_sym_BSLASH, + STATE(2237), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2828), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -228207,7 +220858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2870), 30, + ACTIONS(2826), 31, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -228238,103 +220890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [34428] = 21, + [33216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - sym_xhp_identifier, - ACTIONS(2663), 1, + ACTIONS(3755), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(3739), 1, - sym_identifier, - ACTIONS(3743), 1, - anon_sym_shape, - ACTIONS(3745), 1, - anon_sym_namespace, - STATE(2223), 1, + STATE(2197), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3441), 1, - sym_null, - STATE(5006), 1, - sym_const_declarator, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3467), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3741), 10, - anon_sym_type, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - ACTIONS(3747), 19, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - [34526] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - STATE(5239), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2808), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -228351,8 +220918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2806), 31, + anon_sym_COLON_COLON, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228377,28 +220948,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [34600] = 8, + [33282] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3591), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, anon_sym_RPAREN, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + STATE(5176), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -228415,7 +220987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -228444,21 +221016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [34672] = 8, + [33356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3587), 1, - anon_sym_RPAREN, - ACTIONS(3589), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2907), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -228479,8 +221040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2905), 33, + anon_sym_COLON_COLON, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228505,109 +221070,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [34744] = 32, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [33418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 1, - anon_sym_RBRACK, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3776), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5057), 1, - aux_sym_array_repeat1, - STATE(5596), 1, + ACTIONS(3154), 1, + anon_sym_RPAREN, + STATE(1957), 1, sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [34864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3760), 1, - anon_sym_BSLASH, - STATE(2182), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2820), 21, + STATE(5184), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -228624,12 +221111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2818), 31, - anon_sym_COLON_COLON, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228654,15 +221137,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [34930] = 4, + [33492] = 8, ACTIONS(3), 1, sym_comment, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2843), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3615), 1, + anon_sym_RPAREN, + ACTIONS(3617), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -228683,11 +221175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2845), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228712,15 +221201,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [34994] = 3, + [33564] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3747), 1, + anon_sym_RPAREN, + ACTIONS(3750), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_COMMA, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -228728,7 +221228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, @@ -228741,12 +221240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2909), 33, - anon_sym_COLON_COLON, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228771,19 +221266,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [35056] = 5, + [33638] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3760), 1, - anon_sym_BSLASH, - STATE(2182), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2808), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3394), 1, + anon_sym_RPAREN, + STATE(5119), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -228804,12 +221304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2806), 31, - anon_sym_COLON_COLON, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -228834,143 +221330,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [35122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2837), 12, - sym_variable, - anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2839), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [35184] = 32, + [33710] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 1, + ACTIONS(1526), 1, anon_sym_RBRACE, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3442), 1, - anon_sym_EQ_GT, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3778), 1, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3759), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4658), 1, + STATE(4642), 1, aux_sym_array_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -228984,316 +221421,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [35304] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - STATE(2101), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2818), 10, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2820), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [35370] = 22, + [33830] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - sym_xhp_identifier, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(1492), 1, + anon_sym_RBRACE, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3657), 1, - sym_identifier, - ACTIONS(3663), 1, - anon_sym_shape, - ACTIONS(3665), 1, - anon_sym_namespace, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(3780), 1, - anon_sym_type, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3429), 1, - sym_null, - STATE(5125), 1, - sym__class_const_declarator, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3459), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(3661), 9, - anon_sym_newtype, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - ACTIONS(3667), 19, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - [35470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - STATE(2101), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 10, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2808), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [35536] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_RPAREN, - STATE(5140), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3761), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4923), 1, + aux_sym_array_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [35608] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3607), 1, - anon_sym_RPAREN, - ACTIONS(3609), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229307,26 +221509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [35680] = 8, + [33950] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3611), 1, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, anon_sym_RPAREN, - ACTIONS(3613), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(5184), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -229347,7 +221544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229376,21 +221573,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [35752] = 8, + [34022] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3603), 1, + ACTIONS(3507), 1, anon_sym_RPAREN, - ACTIONS(3605), 1, + ACTIONS(3509), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -229411,7 +221608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229440,53 +221637,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [35824] = 21, + [34094] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, ACTIONS(1055), 1, sym_xhp_identifier, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(3739), 1, + ACTIONS(3735), 1, sym_identifier, - ACTIONS(3743), 1, + ACTIONS(3739), 1, anon_sym_shape, - ACTIONS(3745), 1, + ACTIONS(3741), 1, anon_sym_namespace, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3441), 1, + STATE(3449), 1, sym_null, - STATE(4796), 1, + STATE(4948), 1, sym_const_declarator, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3461), 5, + STATE(3469), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(3741), 10, + ACTIONS(3737), 10, anon_sym_type, anon_sym_newtype, anon_sym_tuple, @@ -229497,7 +221694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include_once, anon_sym_require, anon_sym_require_once, - ACTIONS(3747), 19, + ACTIONS(3743), 19, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -229517,81 +221714,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [35922] = 32, + [34192] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, - anon_sym_RBRACK, - ACTIONS(3392), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3442), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3684), 1, + sym_identifier, + ACTIONS(3690), 1, + anon_sym_shape, + ACTIONS(3692), 1, + anon_sym_namespace, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + ACTIONS(3763), 1, + anon_sym_type, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3429), 1, + sym_null, + STATE(4810), 1, + sym__class_const_declarator, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3464), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(3688), 9, + anon_sym_newtype, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + ACTIONS(3694), 19, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + [34292] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3520), 1, + anon_sym_RPAREN, + ACTIONS(3522), 1, anon_sym_EQ_GT, - ACTIONS(3444), 1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3782), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4545), 1, - aux_sym_array_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229605,53 +221851,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36042] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [34364] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3762), 1, - anon_sym_RPAREN, - ACTIONS(3765), 1, - anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_COMMA, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, + ACTIONS(3628), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_PIPE_GT, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, + ACTIONS(3640), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3642), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 1, anon_sym_PIPE, + ACTIONS(3646), 1, anon_sym_CARET, + ACTIONS(3648), 1, anon_sym_AMP, + ACTIONS(3658), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3630), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3765), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3767), 2, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3632), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3656), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -229665,26 +221942,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [36116] = 8, + [34480] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3595), 1, + ACTIONS(3421), 1, anon_sym_RPAREN, - ACTIONS(3597), 1, + ACTIONS(3423), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -229705,7 +221977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229734,26 +222006,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [36188] = 9, + [34552] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3158), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3524), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - STATE(5071), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(3526), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -229770,7 +222041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229799,53 +222070,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [36262] = 21, + [34624] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, ACTIONS(1055), 1, sym_xhp_identifier, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(3739), 1, + ACTIONS(3735), 1, sym_identifier, - ACTIONS(3743), 1, + ACTIONS(3739), 1, anon_sym_shape, - ACTIONS(3745), 1, + ACTIONS(3741), 1, anon_sym_namespace, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3441), 1, + STATE(3449), 1, sym_null, - STATE(4552), 1, + STATE(4796), 1, sym_const_declarator, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3460), 5, + STATE(3463), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(3741), 10, + ACTIONS(3737), 10, anon_sym_type, anon_sym_newtype, anon_sym_tuple, @@ -229856,7 +222127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include_once, anon_sym_require, anon_sym_require_once, - ACTIONS(3747), 19, + ACTIONS(3743), 19, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -229876,26 +222147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [36360] = 9, + [34722] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3252), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3570), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - STATE(5184), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(3572), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -229912,7 +222182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -229941,87 +222211,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [36434] = 8, + [34794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2736), 1, + anon_sym_BSLASH, + STATE(2101), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 10, + sym_variable, anon_sym_COLON_COLON, - ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(3252), 1, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(5184), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_EQ_EQ_GT, + ACTIONS(2808), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [36506] = 9, + anon_sym_extends, + anon_sym_implements, + [34860] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3670), 1, anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_RPAREN, - STATE(1984), 1, + ACTIONS(3715), 1, + anon_sym_LPAREN, + STATE(1990), 1, + sym_arguments, + STATE(5492), 1, sym_type_arguments, - STATE(5192), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -230041,8 +222310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, + ACTIONS(2863), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -230070,117 +222338,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [36580] = 8, + [34936] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3580), 1, - anon_sym_RPAREN, - ACTIONS(3582), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1482), 1, + anon_sym_RBRACE, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3769), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(5262), 1, + aux_sym_array_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [36652] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - STATE(5140), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -230194,26 +222426,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [36726] = 8, + [35056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2736), 1, + anon_sym_BSLASH, + STATE(2101), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2826), 10, + sym_variable, anon_sym_COLON_COLON, - ACTIONS(3156), 1, anon_sym_COMMA, - ACTIONS(3158), 1, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(5071), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2828), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [35122] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3555), 1, + anon_sym_RPAREN, + ACTIONS(3557), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -230234,7 +222522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -230263,79 +222551,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [36798] = 31, + [35194] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1531), 1, + anon_sym_RBRACK, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3786), 1, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3771), 1, anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5152), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(4505), 1, + aux_sym_array_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -230349,79 +222639,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [36915] = 31, + [35314] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1487), 1, + anon_sym_RBRACK, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3773), 1, anon_sym_COMMA, - ACTIONS(3792), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4742), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5258), 1, + aux_sym_array_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -230435,23 +222727,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [37032] = 7, + [35434] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3252), 1, + ACTIONS(3324), 1, anon_sym_RPAREN, - STATE(5184), 1, + STATE(1957), 1, + sym_type_arguments, + STATE(5136), 1, aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -230468,7 +222763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -230497,18 +222792,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [37101] = 5, + [35508] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(4615), 1, - sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + ACTIONS(3735), 1, + sym_identifier, + ACTIONS(3739), 1, + anon_sym_shape, + ACTIONS(3741), 1, + anon_sym_namespace, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3449), 1, + sym_null, + STATE(5146), 1, + sym_const_declarator, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3457), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(3737), 10, + anon_sym_type, + anon_sym_newtype, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + ACTIONS(3743), 19, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + [35606] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_RPAREN, + STATE(1957), 1, + sym_type_arguments, + STATE(5064), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -230525,8 +222905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -230555,82 +222934,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [37166] = 32, + [35680] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_as2, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3622), 1, + anon_sym_STAR_STAR, + ACTIONS(3626), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3628), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3636), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3638), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3640), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3642), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3644), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3646), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3648), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3658), 1, anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5592), 1, sym_type_arguments, - STATE(5969), 1, - sym_await_modifier, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3630), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3650), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3652), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3654), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3775), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3777), 2, + anon_sym_ATrequired, + anon_sym_ATlateinit, + ACTIONS(3632), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3656), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3660), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -230644,19 +223020,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [37285] = 7, + [35796] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3565), 1, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, anon_sym_RPAREN, - ACTIONS(3567), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(5064), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -230677,7 +223055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -230706,10 +223084,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [37354] = 3, + [35868] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3324), 1, + anon_sym_RPAREN, + STATE(5136), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -230730,11 +223119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2950), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -230759,19 +223145,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [37415] = 3, + [35940] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 21, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3362), 1, + anon_sym_RPAREN, + STATE(1957), 1, + sym_type_arguments, + STATE(5007), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -230788,13 +223184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2830), 32, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -230819,168 +223210,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [37476] = 31, + [36014] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3546), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5211), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [37593] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, anon_sym_LPAREN, - ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(4942), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -230994,23 +223272,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [37710] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [36086] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + ACTIONS(3735), 1, + sym_identifier, + ACTIONS(3739), 1, + anon_sym_shape, + ACTIONS(3741), 1, + anon_sym_namespace, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3449), 1, + sym_null, + STATE(4552), 1, + sym_const_declarator, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3456), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(3737), 10, + anon_sym_type, + anon_sym_newtype, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + ACTIONS(3743), 19, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + [36184] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3852), 1, - anon_sym_RBRACE, - ACTIONS(2878), 2, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + anon_sym_LT, + STATE(2649), 1, + sym_arguments, + STATE(5590), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -231027,8 +223392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, + ACTIONS(2863), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -231056,10 +223420,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [37779] = 3, + [36260] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 21, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(1055), 1, + sym_xhp_identifier, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + ACTIONS(3735), 1, + sym_identifier, + ACTIONS(3739), 1, + anon_sym_shape, + ACTIONS(3741), 1, + anon_sym_namespace, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3449), 1, + sym_null, + STATE(5021), 1, + sym_const_declarator, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3461), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(3737), 10, + anon_sym_type, + anon_sym_newtype, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + ACTIONS(3743), 19, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + [36358] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3562), 1, + anon_sym_RPAREN, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -231080,13 +223532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2814), 32, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -231111,80 +223558,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [37840] = 29, + [36430] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3580), 1, + anon_sym_RPAREN, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3854), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -231198,10 +223620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [37953] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [36502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 21, + ACTIONS(3779), 1, + anon_sym_BSLASH, + STATE(2237), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2835), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -231223,7 +223654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2954), 32, + ACTIONS(2833), 31, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231254,282 +223686,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [38014] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1609), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4495), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [38131] = 31, + [36568] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(1524), 1, + anon_sym_RBRACK, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3782), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5177), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5050), 1, + aux_sym_array_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [38248] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3680), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [38317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(805), 1, - anon_sym_LBRACE, - STATE(1165), 1, - sym_compound_statement, - ACTIONS(2649), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -231543,68 +223774,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [38382] = 14, + [36688] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(1496), 1, + anon_sym_RBRACE, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3856), 1, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - STATE(2511), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3537), 1, + anon_sym_EQ_GT, + ACTIONS(3784), 1, + anon_sym_COMMA, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5203), 1, + aux_sym_array_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3840), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3832), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 15, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - ACTIONS(3486), 24, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -231618,52 +223862,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [38465] = 8, + [36808] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3580), 1, + ACTIONS(1571), 1, anon_sym_RPAREN, - ACTIONS(3582), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4570), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -231677,15 +223948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [38536] = 3, + [36925] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 20, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, + anon_sym_RPAREN, + STATE(5184), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -231706,13 +223981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2814), 33, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -231740,10 +224010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [38597] = 3, + [36994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 21, + ACTIONS(3000), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -231765,7 +224035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3005), 32, + ACTIONS(3002), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231798,10 +224068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [38658] = 3, + [37055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 21, + ACTIONS(3100), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -231823,7 +224093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2927), 32, + ACTIONS(3102), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -231856,165 +224126,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [38719] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5093), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [38836] = 31, + [37116] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1609), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3861), 1, - anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4881), 1, + STATE(5038), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232028,10 +224212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [38953] = 3, + [37233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 21, + ACTIONS(3061), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -232053,7 +224237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2651), 32, + ACTIONS(3063), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -232086,80 +224270,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [39014] = 32, + [37294] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3863), 1, - anon_sym_as2, - STATE(2511), 1, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5592), 1, sym_type_arguments, - STATE(5783), 1, - sym_await_modifier, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3788), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232173,80 +224354,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39133] = 32, + [37407] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3865), 1, - anon_sym_as2, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5026), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - STATE(6022), 1, - sym_await_modifier, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232260,79 +224440,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39252] = 31, + [37524] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1595), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5104), 1, + STATE(5217), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232346,79 +224526,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39369] = 31, + [37641] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3869), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(3792), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5068), 1, + STATE(5224), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232432,19 +224612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39486] = 7, + [37758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3580), 1, - anon_sym_RPAREN, - ACTIONS(3582), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3049), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -232465,8 +224636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3051), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -232491,46 +224665,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [39555] = 15, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [37819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3856), 1, + ACTIONS(2970), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 12, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2972), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [37880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -232539,9 +224747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - ACTIONS(3486), 24, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3039), 32, + anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232563,64 +224779,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_await, - [39640] = 16, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [37941] = 28, ACTIONS(3), 1, sym_comment, + ACTIONS(3402), 1, + anon_sym_EQ, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3840), 2, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 10, + ACTIONS(3404), 17, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_await, + [38052] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3840), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(4919), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - ACTIONS(3486), 24, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232634,11 +224955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [39727] = 3, + [38169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 21, + ACTIONS(2974), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -232660,7 +224980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3040), 32, + ACTIONS(2976), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -232693,78 +225013,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [39788] = 30, + [38230] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(1583), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5230), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3486), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232778,10 +225099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [39903] = 3, + [38347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 21, + ACTIONS(2978), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -232803,7 +225124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2985), 32, + ACTIONS(2980), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -232836,75 +225157,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [39964] = 28, + [38408] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3488), 1, - anon_sym_EQ, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3842), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(4857), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 17, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -232918,80 +225243,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [40075] = 31, + [38525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3053), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + anon_sym_as3, + ACTIONS(3055), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4508), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, + anon_sym_await, + anon_sym_is, anon_sym_QMARKas, - ACTIONS(3440), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [38586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2839), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2837), 32, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233005,79 +225354,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40192] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [38647] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3871), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(3844), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4893), 1, + STATE(5003), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233091,10 +225445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40309] = 3, + [38764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 21, + ACTIONS(2988), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -233116,7 +225470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2826), 32, + ACTIONS(2990), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -233149,79 +225503,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [40370] = 31, + [38825] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3706), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5110), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233235,79 +225560,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40487] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [38894] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3873), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(4852), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3846), 1, + anon_sym_as2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + ACTIONS(3854), 1, + anon_sym_await, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + STATE(6022), 1, + sym_await_modifier, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233321,79 +225652,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40604] = 31, + [39013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2992), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3875), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5121), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2994), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233407,79 +225703,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40721] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [39074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3104), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5187), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3106), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233493,19 +225761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [40838] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_RPAREN, - STATE(5140), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + [39135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3093), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -233526,8 +225792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3095), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -233552,22 +225821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [40907] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3158), 1, - anon_sym_RPAREN, - STATE(5071), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + [39196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1209), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -233588,7 +225854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -233617,79 +225884,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [40976] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [39261] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3879), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5067), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3402), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3404), 18, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233703,79 +225966,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41093] = 31, + anon_sym_await, + [39368] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5042), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + ACTIONS(3854), 1, + anon_sym_await, + ACTIONS(3856), 1, + anon_sym_as2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + STATE(5915), 1, + sym_await_modifier, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233789,79 +226054,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41210] = 31, + [39487] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3858), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(4566), 1, + STATE(5207), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233875,79 +226140,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41327] = 31, + [39604] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1621), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3881), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5065), 1, + STATE(5080), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -233961,79 +226226,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41444] = 31, + [39721] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3608), 1, + anon_sym_RPAREN, + ACTIONS(3610), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3883), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5176), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + [39790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2833), 32, + anon_sym_BSLASH, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234047,18 +226341,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41561] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [39851] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1589), 1, - sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3608), 1, + anon_sym_RPAREN, + ACTIONS(3610), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -234075,8 +226380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -234105,81 +226409,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [41626] = 31, + [39922] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3860), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5063), 1, + STATE(5091), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234193,80 +226495,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41743] = 32, + [40039] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, ACTIONS(3800), 1, - anon_sym_QMARK, - ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3808), 1, - anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, - anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3885), 1, - anon_sym_as2, - STATE(2511), 1, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, - STATE(5915), 1, - sym_await_modifier, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3402), 5, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3404), 19, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234280,135 +226571,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [41862] = 31, + anon_sym_await, + [40138] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3887), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5035), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [41979] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_RPAREN, - STATE(5192), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3402), 6, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 20, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -234423,84 +226646,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [42048] = 31, + anon_sym_await, + [40233] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(1573), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5045), 1, + STATE(4621), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234514,24 +226733,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [42165] = 8, + [40350] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3603), 1, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3220), 1, anon_sym_RPAREN, - ACTIONS(3605), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + STATE(5251), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -234548,7 +226766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -234577,19 +226795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [42236] = 7, + [40419] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3543), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3719), 1, anon_sym_RPAREN, - ACTIONS(3545), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -234610,7 +226828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -234639,10 +226857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [42305] = 3, + [40488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 21, + ACTIONS(2816), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -234664,7 +226882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2942), 32, + ACTIONS(2814), 32, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -234695,107 +226915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [42366] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3889), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5062), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [42483] = 7, + [40549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3655), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3041), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -234816,8 +226939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3043), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -234842,82 +226968,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [42552] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [40610] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3862), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5060), 1, + STATE(5102), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -234931,10 +227059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [42669] = 3, + [40727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 21, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1139), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -234955,11 +227087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2966), 32, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -234984,15 +227114,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [42730] = 3, + [40792] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 21, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3362), 1, + anon_sym_RPAREN, + STATE(5007), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -235013,11 +227152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2931), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -235042,24 +227178,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [42791] = 7, + [40861] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3603), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3733), 1, anon_sym_RPAREN, - ACTIONS(3605), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -235080,7 +227214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -235109,158 +227243,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [42860] = 31, + [40930] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3864), 1, + anon_sym_LT, + STATE(2495), 1, sym_arguments, - STATE(5205), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5611), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3539), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [42977] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LT, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3488), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 18, + anon_sym_as3, + ACTIONS(3541), 26, anon_sym_as2, anon_sym_EQ_GT, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -235276,79 +227306,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_await, - [43084] = 31, + anon_sym_is, + anon_sym_QMARKas, + [41005] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RPAREN, - STATE(1814), 1, + ACTIONS(3867), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5216), 1, + STATE(4881), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235362,19 +227394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [43201] = 7, + [41122] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3675), 1, + ACTIONS(3598), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3600), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -235395,7 +227427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -235424,79 +227456,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [43270] = 31, + [41191] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5052), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3402), 4, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + ACTIONS(3404), 18, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235510,68 +227534,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [43387] = 22, + anon_sym_await, + [41294] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3822), 1, - anon_sym_CARET, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, + ACTIONS(3598), 1, + anon_sym_RPAREN, + ACTIONS(3600), 1, + anon_sym_EQ_GT, + STATE(1957), 1, sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3832), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 5, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 19, - anon_sym_as2, - anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -235586,67 +227593,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [43486] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [41365] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 6, + ACTIONS(3402), 6, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 20, + ACTIONS(3404), 19, anon_sym_as2, anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -235662,67 +227674,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_await, - [43581] = 24, + [41462] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3822), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 4, + ACTIONS(3402), 5, anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, - ACTIONS(3486), 18, + anon_sym_AMP, + ACTIONS(3404), 18, anon_sym_as2, anon_sym_EQ_GT, anon_sym_PIPE_GT, @@ -235741,21 +227752,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_await, - [43684] = 8, + [41563] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3869), 1, anon_sym_LT, - ACTIONS(3611), 1, - anon_sym_RPAREN, - ACTIONS(3613), 1, - anon_sym_EQ_GT, - STATE(1984), 1, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 15, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -235771,13 +227796,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 24, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235799,73 +227820,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_await, + [41646] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1637), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(5010), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [43755] = 21, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [41763] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3818), 1, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3834), 1, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + ACTIONS(3854), 1, + anon_sym_await, + ACTIONS(3872), 1, + anon_sym_as2, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, + STATE(6075), 1, + sym_await_modifier, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3488), 6, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(3486), 19, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_COLON, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -235879,27 +227994,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [43852] = 7, + [41882] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3611), 1, - anon_sym_RPAREN, - ACTIONS(3613), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3802), 2, anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 8, + anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -235907,22 +228044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 22, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -235937,84 +228066,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [43921] = 31, + anon_sym_await, + [41973] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3874), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5222), 1, + STATE(4825), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236028,79 +228153,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [44038] = 31, + [42090] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1641), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5044), 1, + STATE(5135), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236114,127 +228239,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [44155] = 23, + [42207] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LT, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3822), 1, - anon_sym_CARET, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3869), 1, + anon_sym_LT, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3832), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 5, - anon_sym_QMARK, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3486), 18, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_PIPE_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_await, - [44256] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LT, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3402), 18, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + anon_sym_QMARK, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3832), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3488), 8, - anon_sym_QMARK, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -236242,7 +228277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 22, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3404), 24, anon_sym_as2, anon_sym_EQ_GT, anon_sym_PIPE_GT, @@ -236250,6 +228290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -236265,24 +228307,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_await, - [44347] = 8, + [42288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3607), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3729), 1, anon_sym_RPAREN, - ACTIONS(3609), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -236299,7 +228340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -236328,31 +228369,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [44418] = 13, + [42357] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3856), 1, + ACTIONS(3869), 1, anon_sym_LT, - STATE(2511), 1, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3488), 18, + ACTIONS(3402), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -236371,7 +228406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 24, + anon_sym_as3, + ACTIONS(3404), 26, anon_sym_as2, anon_sym_EQ_GT, anon_sym_PIPE_GT, @@ -236396,17 +228432,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_await, - [44499] = 6, + anon_sym_is, + anon_sym_QMARKas, + [42432] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 1, + ACTIONS(2865), 1, anon_sym_LT, - STATE(2786), 1, + ACTIONS(3584), 1, + anon_sym_RPAREN, + ACTIONS(3586), 1, + anon_sym_EQ_GT, + STATE(1957), 1, sym_type_arguments, ACTIONS(2868), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(2866), 19, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -236426,10 +228468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 30, - anon_sym_COMMA, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -236457,49 +228497,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [44566] = 7, + [42503] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3607), 1, - anon_sym_RPAREN, - ACTIONS(3609), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, anon_sym_PIPE, + ACTIONS(3816), 1, anon_sym_CARET, + ACTIONS(3818), 1, anon_sym_AMP, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3402), 2, + anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3822), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3404), 18, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -236514,29 +228577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [44635] = 8, + anon_sym_await, + [42610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3565), 1, - anon_sym_RPAREN, - ACTIONS(3567), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2996), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -236553,8 +228602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2998), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -236579,82 +228631,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [44706] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [42671] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5013), 1, + STATE(4507), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236668,79 +228722,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [44823] = 31, + [42788] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5002), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + ACTIONS(3854), 1, + anon_sym_await, + ACTIONS(3876), 1, + anon_sym_as2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + STATE(5972), 1, + sym_await_modifier, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236754,79 +228809,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [44940] = 31, + [42907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3004), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + anon_sym_as3, + ACTIONS(3006), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4514), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, + anon_sym_await, + anon_sym_is, anon_sym_QMARKas, - ACTIONS(3440), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [42968] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3584), 1, + anon_sym_RPAREN, + ACTIONS(3586), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -236840,14 +228924,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45057] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [43037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(3130), 1, anon_sym_LBRACE, - STATE(1023), 1, - sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2876), 2, + sym_variable, + anon_sym_DOT_DOT_DOT, + ACTIONS(3126), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -236868,9 +228958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, + ACTIONS(3128), 30, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -236898,30 +228989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [45122] = 10, + [43102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3856), 1, - anon_sym_LT, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3488), 19, + ACTIONS(3008), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -236937,10 +229012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3486), 26, + ACTIONS(3010), 32, + anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -236962,22 +229040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [45197] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3282), 1, - anon_sym_RPAREN, - STATE(5127), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + [43163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -236998,8 +229071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2818), 32, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -237024,22 +229102,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [43224] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3878), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5058), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [43341] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - [45266] = 7, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + ACTIONS(3854), 1, + anon_sym_await, + ACTIONS(3880), 1, + anon_sym_as2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + STATE(6108), 1, + sym_await_modifier, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [43460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3673), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3024), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -237060,8 +229302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3026), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -237086,82 +229331,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [45335] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [43521] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3882), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(4983), 1, + STATE(5140), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237175,79 +229422,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45452] = 31, + [43638] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RPAREN, - STATE(1814), 1, + ACTIONS(3884), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(4882), 1, + STATE(5177), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237261,79 +229508,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45569] = 31, + [43755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3717), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3897), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5234), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237347,79 +229565,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45686] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [43824] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3899), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4525), 1, + STATE(5163), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237433,10 +229656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45803] = 3, + [43941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 21, + ACTIONS(3012), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -237458,7 +229681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2822), 32, + ACTIONS(3014), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -237491,79 +229714,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [45864] = 31, + [44002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2923), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4708), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2925), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237577,10 +229765,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [45981] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [44063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 21, + ACTIONS(395), 1, + anon_sym_LBRACE, + STATE(1662), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -237601,11 +229800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2830), 32, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -237630,77 +229827,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [46042] = 26, + [44128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(2820), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3488), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3486), 18, - anon_sym_as2, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2818), 33, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, @@ -237715,45 +229885,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [46149] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [44189] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3886), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(4782), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, anon_sym_as3, - ACTIONS(3018), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237767,21 +229976,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [46210] = 3, + [44306] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 21, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3421), 1, + anon_sym_RPAREN, + ACTIONS(3423), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -237798,11 +230010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2997), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -237827,83 +230036,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [46271] = 30, + [44377] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3808), 1, - anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3134), 3, + ACTIONS(3244), 3, anon_sym_as2, anon_sym_EQ_GT, anon_sym_await, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -237917,19 +230124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [46386] = 7, + [44492] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3685), 1, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + STATE(5176), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -237950,7 +230157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -237979,10 +230186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [46455] = 3, + [44561] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3421), 1, + anon_sym_RPAREN, + ACTIONS(3423), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -238003,11 +230219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2845), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -238032,84 +230245,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [46516] = 31, + [44630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3045), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4956), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3047), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238123,79 +230299,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [46633] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [44691] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1649), 1, + ACTIONS(1533), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4975), 1, + STATE(5213), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238209,44 +230392,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [46750] = 3, + [44808] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, anon_sym_QMARK, + ACTIONS(3800), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, anon_sym_PIPE, + ACTIONS(3816), 1, anon_sym_CARET, + ACTIONS(3818), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3828), 1, anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3022), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3528), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238260,17 +230477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [46811] = 3, + [44923] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 21, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_RPAREN, + STATE(5064), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -238291,11 +230510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3026), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -238320,26 +230536,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [46872] = 8, + [44992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3595), 1, + ACTIONS(3524), 1, anon_sym_RPAREN, - ACTIONS(3597), 1, + ACTIONS(3526), 1, anon_sym_EQ_GT, - STATE(1984), 1, + STATE(1957), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -238359,7 +230573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -238388,10 +230602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [46943] = 3, + [45063] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3524), 1, + anon_sym_RPAREN, + ACTIONS(3526), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -238412,11 +230635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3030), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -238441,15 +230661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [47004] = 3, + [45132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 21, + ACTIONS(2839), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -238471,7 +230689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2989), 32, + ACTIONS(2837), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -238504,10 +230722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [47065] = 3, + [45193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 21, + ACTIONS(2824), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -238529,7 +230747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(947), 32, + ACTIONS(2822), 32, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -238560,21 +230780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [47126] = 6, + [45254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 1, - anon_sym_COLON_COLON, - ACTIONS(3903), 1, - anon_sym_LT, - STATE(2650), 1, - sym_type_arguments, - ACTIONS(2886), 20, + ACTIONS(2935), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -238592,7 +230805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2868), 30, + ACTIONS(2937), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -238623,80 +230836,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [47193] = 32, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [45315] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(1653), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3906), 1, - anon_sym_as2, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5166), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - STATE(6075), 1, - sym_await_modifier, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238710,134 +230924,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [47312] = 31, + [45432] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3908), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(3888), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4912), 1, + STATE(5059), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [47429] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - anon_sym_LBRACE, - ACTIONS(2859), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(3108), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 30, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238851,84 +231010,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [47494] = 31, + [45549] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(1753), 1, anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5100), 1, + STATE(5041), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -238942,19 +231096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [47611] = 7, + [45666] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3595), 1, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3324), 1, anon_sym_RPAREN, - ACTIONS(3597), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(5136), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -238975,7 +231129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -239004,100 +231158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [47680] = 31, + [45735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3910), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5210), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [47797] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(689), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(858), 1, + STATE(1747), 1, sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -239118,7 +231186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, + ACTIONS(2798), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -239150,79 +231218,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [47862] = 31, + [45800] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(3890), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4966), 1, + STATE(5065), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239236,79 +231304,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [47979] = 31, + [45917] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 1, + ACTIONS(1547), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4925), 1, + STATE(4485), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239322,10 +231390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [48096] = 3, + [46034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 21, + ACTIONS(2796), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -239347,7 +231415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3001), 32, + ACTIONS(2798), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -239380,79 +231448,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [48157] = 31, + [46095] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4968), 1, + STATE(5063), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239466,114 +231534,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [48274] = 8, + [46212] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3591), 1, - anon_sym_RPAREN, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1795), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4541), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [48345] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3587), 1, - anon_sym_RPAREN, - ACTIONS(3589), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239587,84 +231620,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [48416] = 31, + [46329] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1761), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3914), 1, - anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5028), 1, + STATE(5109), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239678,79 +231706,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [48533] = 31, + [46446] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3892), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4972), 1, + STATE(5172), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239764,10 +231792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [48650] = 3, + [46563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 21, + ACTIONS(2843), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -239789,7 +231817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2946), 32, + ACTIONS(2845), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -239822,19 +231850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [48711] = 7, + [46624] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3591), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3680), 1, anon_sym_RPAREN, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -239855,7 +231883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -239884,44 +231912,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [48780] = 3, + [46693] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3894), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(4586), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, anon_sym_as3, - ACTIONS(2845), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -239935,23 +231998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [48841] = 6, + [46810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 1, + ACTIONS(3896), 1, anon_sym_COLON_COLON, - ACTIONS(3916), 1, + ACTIONS(3898), 1, anon_sym_LT, - STATE(2638), 1, + STATE(2698), 1, sym_type_arguments, - ACTIONS(2857), 20, + ACTIONS(2885), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -239972,7 +232028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2859), 30, + ACTIONS(2887), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -240003,44 +232059,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [48908] = 3, + [46877] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3901), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(4896), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3051), 32, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [46994] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(5055), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240054,26 +232231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [48969] = 7, + [47111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3587), 1, - anon_sym_RPAREN, - ACTIONS(3589), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1459), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -240094,7 +232259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -240123,49 +232289,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [49038] = 6, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [47176] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 1, - anon_sym_LBRACE, - ACTIONS(3160), 1, - anon_sym_RPAREN, - ACTIONS(2859), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3108), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3905), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(5244), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 28, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [47293] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(5222), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240179,36 +232463,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [49105] = 10, + [47410] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3919), 1, - anon_sym_LT, - STATE(2511), 1, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3521), 19, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 10, + anon_sym_QMARK, + anon_sym_GT, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_PIPE, @@ -240217,12 +232509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as3, - ACTIONS(3523), 26, + ACTIONS(3404), 24, anon_sym_as2, anon_sym_EQ_GT, anon_sym_PIPE_GT, @@ -240247,48 +232534,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [49180] = 5, + [47497] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, - anon_sym_LBRACE, - STATE(1354), 1, - sym_compound_statement, - ACTIONS(2649), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3907), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(5157), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240302,86 +232620,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [49245] = 31, + [47614] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(1793), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5166), 1, + STATE(5060), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240395,10 +232706,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49362] = 3, + [47731] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3012), 21, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3869), 1, + anon_sym_LT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3402), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + ACTIONS(3404), 24, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_await, + [47816] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3682), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [47885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -240420,7 +232863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3014), 32, + ACTIONS(3075), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -240453,80 +232896,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [49423] = 32, + [47946] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3922), 1, - anon_sym_as2, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(4902), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - STATE(5856), 1, - sym_await_modifier, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240540,44 +232982,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49542] = 3, + [48063] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3911), 1, + anon_sym_COMMA, + ACTIONS(3913), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(5196), 1, + aux_sym_list_expression_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, anon_sym_as3, - ACTIONS(3094), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240591,86 +233068,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [49603] = 31, + [48180] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3924), 1, - anon_sym_RPAREN, - STATE(1814), 1, + ACTIONS(3915), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5191), 1, + STATE(5025), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240684,46 +233154,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49720] = 5, + [48297] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - STATE(847), 1, - sym_compound_statement, - ACTIONS(2649), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1787), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(5052), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240737,86 +233240,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [49785] = 31, + [48414] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3926), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(3917), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4805), 1, + STATE(5114), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240830,51 +233326,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [49902] = 8, + [48531] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3543), 1, - anon_sym_RPAREN, - ACTIONS(3545), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1685), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4998), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [48648] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, anon_sym_LBRACK, - anon_sym_PIPE_GT, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, anon_sym_AMP_AMP, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3166), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -240888,19 +233497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [49973] = 3, + [48763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 20, + ACTIONS(3896), 1, + anon_sym_COLON_COLON, + ACTIONS(3919), 1, + anon_sym_LT, + STATE(2675), 1, + sym_type_arguments, + ACTIONS(2874), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -240917,13 +233526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2822), 33, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_as3, + ACTIONS(2876), 30, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -240948,21 +233555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [50034] = 5, + [48830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(4726), 1, - sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3555), 1, + anon_sym_RPAREN, + ACTIONS(3557), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -240979,8 +233592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -241009,81 +233621,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [50099] = 31, + [48901] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3928), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(4700), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + ACTIONS(3854), 1, + anon_sym_await, + ACTIONS(3922), 1, + anon_sym_as2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + STATE(5856), 1, + sym_await_modifier, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241097,24 +233708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [50216] = 8, + [49020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3482), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3555), 1, anon_sym_RPAREN, - ACTIONS(3484), 1, + ACTIONS(3557), 1, anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -241131,7 +233741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -241160,10 +233770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [50287] = 3, + [49089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 21, + ACTIONS(2962), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -241185,7 +233795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2814), 32, + ACTIONS(2964), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -241218,50 +233828,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [50348] = 7, + [49150] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, - anon_sym_RPAREN, - STATE(5239), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3926), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(5132), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241275,15 +233914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [50417] = 3, + [49267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 21, + ACTIONS(3089), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -241305,7 +233939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2974), 32, + ACTIONS(3091), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -241338,10 +233972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [50478] = 3, + [49328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 21, + ACTIONS(807), 1, + anon_sym_LBRACE, + STATE(945), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -241362,11 +234000,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3098), 32, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -241391,255 +234027,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [50539] = 30, + [49393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, - anon_sym_QMARK, - ACTIONS(3802), 1, - anon_sym_LT, - ACTIONS(3808), 1, - anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, - anon_sym_PIPE, - ACTIONS(3822), 1, - anon_sym_CARET, - ACTIONS(3824), 1, - anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3069), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3516), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3832), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3838), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [50654] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3930), 1, - anon_sym_COMMA, - ACTIONS(3932), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5051), 1, - aux_sym_list_expression_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [50771] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3071), 32, anon_sym_LPAREN, - ACTIONS(3404), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3934), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(4970), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241653,10 +234083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [50888] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [49454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 21, + ACTIONS(3057), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -241678,7 +234115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3063), 32, + ACTIONS(3059), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -241711,26 +234148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [50949] = 9, + [49515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3694), 1, - anon_sym_LPAREN, - ACTIONS(3696), 1, - anon_sym_LT, - STATE(2727), 1, - sym_arguments, - STATE(5743), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2966), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -241747,7 +234172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + anon_sym_as3, + ACTIONS(2968), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -241772,82 +234201,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [51022] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [49576] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3936), 1, + ACTIONS(3928), 1, anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5236), 1, + STATE(4993), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241861,130 +234292,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [51139] = 31, + [49693] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1561), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4832), 1, + STATE(5034), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [51256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2976), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2978), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -241998,17 +234378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [51317] = 3, + [49810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 21, + ACTIONS(2952), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -242030,7 +234403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3055), 32, + ACTIONS(2954), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -242063,79 +234436,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [51378] = 31, + [49871] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1611), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3930), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5008), 1, + STATE(5072), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242149,139 +234522,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [51495] = 5, + [49988] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - STATE(2221), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 9, - sym_variable, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(3580), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT, - anon_sym_EQ_EQ_GT, - ACTIONS(2808), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [51560] = 31, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [50057] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1785), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3940), 1, - anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4980), 1, + STATE(5044), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242295,20 +234670,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [51677] = 6, + [50174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3163), 1, - anon_sym_GT, - ACTIONS(3942), 1, - anon_sym_LBRACE, - ACTIONS(3108), 20, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3570), 1, + anon_sym_RPAREN, + ACTIONS(3572), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -242324,11 +234704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3110), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -242353,17 +234730,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [51744] = 3, + [50245] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 21, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_RPAREN, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -242380,11 +234767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2859), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -242409,84 +234793,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [51805] = 31, + [50316] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3570), 1, + anon_sym_RPAREN, + ACTIONS(3572), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5226), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242500,78 +234853,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [51922] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [50385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(2824), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3808), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3338), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + anon_sym_STAR_STAR, + ACTIONS(2822), 33, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242585,10 +234911,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52037] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [50446] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3932), 1, + anon_sym_RBRACE, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -242609,11 +234949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2970), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -242638,84 +234975,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [52098] = 31, + [50515] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3944), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(3934), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4969), 1, + STATE(5013), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242729,78 +235064,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52215] = 30, + [50632] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(1781), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5002), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3286), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242814,165 +235150,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52330] = 31, + [50749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2816), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3946), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5251), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [52447] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2814), 32, anon_sym_LPAREN, - ACTIONS(3404), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3948), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(4769), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -242986,10 +235201,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52564] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [50810] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3700), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -243010,11 +235241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3059), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -243039,84 +235267,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [52625] = 31, + [50879] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(1569), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4918), 1, + STATE(4777), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243130,79 +235356,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52742] = 31, + [50996] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1667), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(1691), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4758), 1, + STATE(4989), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243216,79 +235442,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52859] = 31, + [51113] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1685), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(1779), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4990), 1, + STATE(4983), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243302,19 +235528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [52976] = 7, + [51230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3723), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(807), 1, + anon_sym_LBRACE, + STATE(1265), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -243335,7 +235556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -243364,19 +235586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [53045] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(3318), 1, - anon_sym_RPAREN, - STATE(5010), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + [51295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -243397,8 +235612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3079), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -243423,13 +235641,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [51356] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3936), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(5045), 1, + aux_sym_list_expression_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [53114] = 3, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [51473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 21, + ACTIONS(3081), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -243451,7 +235757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3047), 32, + ACTIONS(3083), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -243484,10 +235790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [53175] = 3, + [51534] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3562), 1, + anon_sym_RPAREN, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -243508,11 +235823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(947), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -243537,26 +235849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [53236] = 7, + [51603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_GT, - ACTIONS(2937), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2866), 19, + ACTIONS(2982), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -243573,7 +235877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2870), 30, + ACTIONS(2984), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -243604,13 +235908,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [53305] = 4, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [51664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 2, + ACTIONS(2736), 1, + anon_sym_BSLASH, + STATE(2220), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 9, + sym_variable, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ_GT, + ACTIONS(2808), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [51729] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3702), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 21, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -243631,11 +236003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2870), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -243660,26 +236029,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [53368] = 7, + [51798] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3561), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3562), 1, anon_sym_RPAREN, - ACTIONS(3563), 1, + ACTIONS(3564), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -243696,7 +236066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -243725,19 +236095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [53437] = 7, + [51869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3706), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1641), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -243758,7 +236123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -243787,79 +236153,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [53506] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [51934] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1771), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3950), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5221), 1, + STATE(4956), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243873,79 +236241,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [53623] = 31, + [52051] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(1581), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5218), 1, + STATE(4997), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -243959,79 +236327,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [53740] = 31, + [52168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3672), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(4996), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244045,80 +236384,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [53857] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [52237] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, - anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3615), 1, + anon_sym_RPAREN, + ACTIONS(3617), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3954), 1, - anon_sym_as2, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - STATE(6108), 1, - sym_await_modifier, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244132,10 +236447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [53976] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [52308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 21, + ACTIONS(3065), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -244157,7 +236477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(947), 32, + ACTIONS(3067), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -244190,79 +236510,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [54037] = 31, + [52369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1613), 1, + ACTIONS(3130), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2876), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(3126), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4987), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(3128), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244276,21 +236566,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54154] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [52436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, anon_sym_LT, - ACTIONS(3561), 1, - anon_sym_RPAREN, - ACTIONS(3563), 1, - anon_sym_EQ_GT, - STATE(1984), 1, + STATE(2649), 1, + sym_arguments, + STATE(5590), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -244310,8 +236607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, + ACTIONS(2863), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -244339,79 +236635,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [54225] = 31, + [52509] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1687), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3956), 1, - anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4561), 1, + STATE(5151), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244425,79 +236721,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54342] = 31, + [52626] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3958), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3960), 1, + ACTIONS(3940), 1, anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5016), 1, + STATE(5036), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244511,79 +236807,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54459] = 31, + [52743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2820), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4763), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2818), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244597,79 +236858,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54576] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [52804] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + STATE(1990), 1, + sym_arguments, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4947), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 27, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244683,79 +236924,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54693] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [52877] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4944), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3404), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244769,24 +237014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [54810] = 8, + [52992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3554), 1, - anon_sym_RPAREN, - ACTIONS(3556), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2816), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -244803,8 +237038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2814), 33, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -244832,46 +237072,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [54881] = 3, + [53053] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1589), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2822), 32, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(1818), 1, + sym_arguments, + STATE(5061), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244885,85 +237158,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [54942] = 32, + [53170] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3842), 1, - anon_sym_await, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3962), 1, - anon_sym_as2, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(4982), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - STATE(5966), 1, - sym_await_modifier, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -244977,19 +237244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55061] = 7, + [53287] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3554), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3674), 1, anon_sym_RPAREN, - ACTIONS(3556), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -245010,7 +237277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -245039,79 +237306,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [55130] = 31, + [53356] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1663), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3676), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5000), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + [53425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2927), 21, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2929), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245125,18 +237419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55247] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2866), 20, + [53486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3028), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -245157,8 +237450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3030), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -245183,82 +237479,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [55314] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [53547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3020), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(5031), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3022), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245272,23 +237535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55431] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [53608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LT, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3547), 20, + ACTIONS(949), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -245306,9 +237567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3510), 28, + ACTIONS(951), 32, + anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -245335,79 +237598,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [55502] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [53669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2843), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5240), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2845), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245421,10 +237651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55619] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [53730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 21, + ACTIONS(3016), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -245446,7 +237683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2962), 32, + ACTIONS(3018), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -245479,79 +237716,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [55680] = 31, + [53791] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, + ACTIONS(1593), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5232), 1, + STATE(5156), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245565,78 +237802,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55797] = 30, + [53908] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3944), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5206), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3510), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245650,23 +237888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [55912] = 7, + [54025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2866), 19, + ACTIONS(689), 1, + anon_sym_LBRACE, + STATE(788), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -245683,7 +237916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -245712,79 +237946,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [55981] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [54090] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3969), 1, - anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5209), 1, + STATE(4925), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245798,79 +238034,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [56098] = 31, + [54207] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1695), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3971), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3973), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5059), 1, - aux_sym_list_expression_repeat1, - STATE(5596), 1, + STATE(4957), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245884,78 +238120,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [56215] = 30, + [54324] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, ACTIONS(3800), 1, - anon_sym_QMARK, - ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3808), 1, - anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3844), 1, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, + ACTIONS(3518), 2, + anon_sym_QMARK, + anon_sym_EQ, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3390), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3516), 18, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -245969,18 +238200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [56330] = 5, + anon_sym_await, + [54431] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, - anon_sym_LBRACE, - STATE(1288), 1, - sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3604), 1, + anon_sym_RPAREN, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -245997,8 +238235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246027,21 +238264,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [56395] = 7, + [54502] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3298), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [54617] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3719), 1, + ACTIONS(3604), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -246062,7 +238382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246091,78 +238411,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [56464] = 30, + [54686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(2824), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3808), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3528), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2822), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -246176,26 +238462,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [56579] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [54747] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3696), 1, - anon_sym_LT, - ACTIONS(3712), 1, - anon_sym_LPAREN, - STATE(1937), 1, - sym_arguments, - STATE(5493), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(3546), 1, + anon_sym_RPAREN, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -246212,7 +238502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + ACTIONS(2863), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246240,10 +238531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [56652] = 3, + [54816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 21, + ACTIONS(689), 1, + anon_sym_LBRACE, + STATE(849), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -246264,11 +238559,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3071), 32, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246293,78 +238586,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [56713] = 26, + [54881] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LT, - ACTIONS(3810), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3946), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5191), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3492), 2, - anon_sym_QMARK, - anon_sym_EQ, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [54998] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3948), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(4772), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3490), 18, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [55115] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(5205), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -246378,20 +238849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - [56820] = 7, + [55232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3708), 1, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3394), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + STATE(5119), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -246412,7 +238882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246441,78 +238911,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [56889] = 30, + [55301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(949), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3802), 1, anon_sym_LT, - ACTIONS(3808), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3382), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(951), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -246526,15 +238962,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57004] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [55362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 21, + ACTIONS(2876), 1, + anon_sym_COMMA, + ACTIONS(3171), 1, + anon_sym_GT, + ACTIONS(3950), 1, + anon_sym_LBRACE, + ACTIONS(3126), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -246551,9 +238999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2826), 32, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(3128), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -246584,19 +239030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [57065] = 7, + [55429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3533), 1, - anon_sym_RPAREN, - ACTIONS(3535), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2874), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -246617,8 +239054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2876), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -246643,81 +239083,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [57134] = 30, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [55490] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3952), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5076), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3150), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -246731,78 +239174,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57249] = 30, + [55607] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3808), 1, - anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, + ACTIONS(3834), 1, anon_sym_is, - ACTIONS(3846), 1, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, sym_arguments, - STATE(5752), 1, + STATE(5611), 1, sym_type_arguments, ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, + ACTIONS(3832), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3386), 3, + ACTIONS(3332), 3, anon_sym_as2, anon_sym_EQ_GT, anon_sym_await, - ACTIONS(3806), 3, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -246816,107 +239259,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57364] = 8, + [55722] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3533), 1, - anon_sym_RPAREN, - ACTIONS(3535), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1711), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4975), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [57435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2991), 21, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2993), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -246930,26 +239345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [57496] = 7, + [55839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3727), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(4718), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -246970,7 +239373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -246999,79 +239403,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [57565] = 31, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [55904] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(1729), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4741), 1, + STATE(4970), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247085,79 +239491,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57682] = 31, + [56021] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3975), 1, + ACTIONS(3954), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4646), 1, + STATE(4968), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247171,79 +239577,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57799] = 31, + [56138] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4960), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3280), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247257,19 +239662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [57916] = 7, + [56253] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3721), 1, + ACTIONS(3520), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3522), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -247290,7 +239695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247319,46 +239724,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [57985] = 3, + [56322] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(2826), 33, - sym_variable, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3956), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(4805), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247372,51 +239810,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [58046] = 5, + [56439] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_LBRACE, - STATE(1050), 1, - sym_compound_statement, - ACTIONS(2649), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, anon_sym_QMARK, + ACTIONS(3800), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, anon_sym_PIPE, + ACTIONS(3816), 1, anon_sym_CARET, + ACTIONS(3818), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3854), 1, + anon_sym_await, + ACTIONS(3958), 1, + anon_sym_as2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + STATE(5969), 1, + sym_await_modifier, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247430,25 +239897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [58111] = 5, + [56558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1645), 1, - sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3520), 1, + anon_sym_RPAREN, + ACTIONS(3522), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -247465,8 +239931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -247495,81 +239960,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [58176] = 31, + [56629] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3977), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(3960), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4920), 1, + STATE(5216), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247583,50 +240046,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58293] = 7, + [56746] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3725), 1, + ACTIONS(1625), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4599), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247640,84 +240132,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [58362] = 31, + [56863] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3962), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(4739), 1, + STATE(4769), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247731,10 +240218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58479] = 3, + [56980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 21, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(4608), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -247755,11 +240246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3106), 32, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -247784,51 +240273,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [58540] = 5, + [57045] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, - anon_sym_LBRACE, - STATE(1464), 1, - sym_compound_statement, - ACTIONS(2649), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1723), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4758), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247842,86 +240364,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [58605] = 31, + [57162] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1649), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3979), 1, - anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4793), 1, + STATE(5099), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -247935,79 +240450,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58722] = 31, + [57279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(949), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(951), 32, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [57340] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3964), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5213), 1, + STATE(4910), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -248021,10 +240594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [58839] = 3, + [57457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3507), 1, + anon_sym_RPAREN, + ACTIONS(3509), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -248045,11 +240627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3067), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248074,15 +240653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [58900] = 3, + [57526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 21, + ACTIONS(949), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -248104,7 +240681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(947), 32, + ACTIONS(951), 32, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -248137,23 +240714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [58961] = 7, + [57587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3729), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3507), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3509), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -248170,7 +240748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248199,15 +240777,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [59030] = 3, + [57658] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 21, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + anon_sym_GT, + ACTIONS(2942), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -248224,9 +240808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2837), 32, - anon_sym_BSLASH, - anon_sym_COLON_COLON, + ACTIONS(2863), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -248257,79 +240839,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [59091] = 31, + [57727] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, + ACTIONS(1639), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4722), 1, + STATE(4489), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -248343,23 +240925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [59208] = 7, + [57844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 1, - anon_sym_RPAREN, - ACTIONS(3116), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2868), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(2866), 19, + ACTIONS(2931), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -248376,8 +240949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2933), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248402,22 +240978,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [57905] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - [59277] = 7, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3190), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [58020] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3708), 1, anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -248438,7 +241101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248467,19 +241130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [59346] = 7, + [58089] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, + ACTIONS(2870), 1, anon_sym_EQ_EQ_GT, - ACTIONS(3717), 1, + ACTIONS(3731), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -248500,7 +241163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248529,50 +241192,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [59415] = 7, + [58158] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3733), 1, + ACTIONS(1703), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4739), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -248586,24 +241278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [59484] = 7, + [58275] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(3731), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3592), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -248624,7 +241310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248653,44 +241339,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [59553] = 3, + [58342] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, anon_sym_QMARK, + ACTIONS(3800), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, anon_sym_PIPE, + ACTIONS(3816), 1, anon_sym_CARET, + ACTIONS(3818), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3828), 1, anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3102), 32, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3306), 2, + anon_sym_as2, + anon_sym_await, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -248704,21 +241425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [59614] = 3, + [58459] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 21, + ACTIONS(2865), 1, + anon_sym_LT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(3592), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -248735,11 +241458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3086), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -248764,84 +241484,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [59675] = 31, + [58528] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1647), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3981), 1, - anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5171), 1, + STATE(4504), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -248855,25 +241573,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [59792] = 10, + [58645] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3704), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, anon_sym_LPAREN, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3964), 1, - anon_sym_LT, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3840), 2, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3547), 19, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [58714] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2887), 2, + sym_variable, + anon_sym_DOT_DOT_DOT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -248892,10 +241664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as3, - ACTIONS(3510), 26, - anon_sym_as2, - anon_sym_EQ_GT, + anon_sym_STAR_STAR, + ACTIONS(2863), 30, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -248917,22 +241691,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [59867] = 7, + [58781] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3506), 1, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(3713), 1, anon_sym_RPAREN, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -248953,7 +241729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -248982,136 +241758,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [59936] = 30, + [58850] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3808), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3968), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(5234), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3280), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3832), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3838), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [60051] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3512), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249125,84 +241844,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [60122] = 31, + [58967] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3970), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(4681), 1, + STATE(4952), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249216,79 +241930,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [60239] = 31, + [59084] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3972), 1, anon_sym_COMMA, - STATE(1814), 1, + ACTIONS(3974), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5206), 1, + STATE(5149), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249302,14 +242016,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [60356] = 3, + [59201] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 21, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3976), 1, + anon_sym_LT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3530), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -249327,11 +242053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2958), 32, - anon_sym_LPAREN, + ACTIONS(3532), 26, anon_sym_as2, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -249353,58 +242077,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_await, anon_sym_is, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [60417] = 8, + [59274] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3506), 1, - anon_sym_RPAREN, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3979), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5167), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249418,39 +242166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [60488] = 13, + [59391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3964), 1, - anon_sym_LT, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3547), 18, + ACTIONS(2948), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -249466,9 +242189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3510), 24, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2950), 32, + anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -249490,80 +242217,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_await, - [60569] = 31, + anon_sym_is, + anon_sym_QMARKas, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [59452] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1693), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5168), 1, + STATE(4712), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249577,14 +242310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [60686] = 3, + [59569] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 21, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3588), 1, + anon_sym_RPAREN, + ACTIONS(3590), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -249601,11 +242344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3090), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249630,84 +242370,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [60747] = 31, + [59640] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, + ACTIONS(1657), 1, anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(4712), 1, + STATE(4518), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249721,21 +242459,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [60864] = 8, + [59757] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3976), 1, anon_sym_LT, - ACTIONS(3494), 1, - anon_sym_RPAREN, - ACTIONS(3496), 1, - anon_sym_EQ_GT, - STATE(1984), 1, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3530), 18, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -249754,10 +242502,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3532), 24, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -249779,15 +242526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [60935] = 3, + anon_sym_await, + [59838] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3588), 1, + anon_sym_RPAREN, + ACTIONS(3590), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -249808,11 +242560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2935), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -249837,19 +242586,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [60996] = 3, + [59907] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 21, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3976), 1, + anon_sym_LT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3530), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -249865,13 +242626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3078), 32, - anon_sym_LPAREN, + ACTIONS(3532), 26, anon_sym_as2, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -249893,85 +242651,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_await, anon_sym_is, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [61057] = 30, + [59982] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, - anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(2913), 1, + anon_sym_RPAREN, + ACTIONS(3121), 1, anon_sym_LT, - ACTIONS(3808), 1, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2887), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_LBRACK, - ACTIONS(3812), 1, - anon_sym_PIPE_GT, - ACTIONS(3814), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, - anon_sym_AMP_AMP, - ACTIONS(3820), 1, anon_sym_PIPE, - ACTIONS(3822), 1, anon_sym_CARET, - ACTIONS(3824), 1, anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3804), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3154), 3, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_await, - ACTIONS(3806), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -249985,10 +242711,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61172] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [60051] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3615), 1, + anon_sym_RPAREN, + ACTIONS(3617), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -250009,11 +242749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3082), 32, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -250038,19 +242775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [61233] = 5, + [60120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - STATE(1642), 1, + STATE(1330), 1, sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -250071,7 +242806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, + ACTIONS(2798), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -250103,23 +242838,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARKas, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - [61298] = 7, + [60185] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3494), 1, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3602), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [60300] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1683), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4681), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [60417] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3566), 1, anon_sym_RPAREN, - ACTIONS(3496), 1, + ACTIONS(3568), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -250136,7 +243043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -250165,54 +243072,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [61367] = 9, + [60488] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - STATE(2511), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3981), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(4526), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3840), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3547), 20, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3435), 2, anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [60605] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, anon_sym_PIPE, + ACTIONS(3816), 1, anon_sym_CARET, + ACTIONS(3818), 1, anon_sym_AMP, + ACTIONS(3828), 1, + anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, + anon_sym_as3, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3822), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3360), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3852), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [60720] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_QMARK, + ACTIONS(3800), 1, + anon_sym_LT, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3812), 1, + anon_sym_AMP_AMP, + ACTIONS(3814), 1, + anon_sym_PIPE, + ACTIONS(3816), 1, + anon_sym_CARET, + ACTIONS(3818), 1, + anon_sym_AMP, + ACTIONS(3828), 1, anon_sym_STAR_STAR, + ACTIONS(3830), 1, + anon_sym_QMARK_COLON, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, - ACTIONS(3510), 26, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(3838), 1, + anon_sym_QMARKas, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3802), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3820), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3594), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250226,17 +243328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [61440] = 5, + [60835] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_LBRACE, - STATE(1105), 1, - sym_compound_statement, - ACTIONS(2649), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3566), 1, + anon_sym_RPAREN, + ACTIONS(3568), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -250257,8 +243361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2651), 31, - anon_sym_SEMI, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -250287,81 +243390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - [61505] = 31, + [60904] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3983), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5005), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3356), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250375,79 +243475,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61622] = 31, + [61019] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, - anon_sym_RPAREN, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(1814), 1, - sym_arguments, - STATE(4483), 1, - aux_sym_echo_statement_repeat1, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3532), 3, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_await, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250461,79 +243560,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61739] = 31, + [61134] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, - anon_sym_QMARK, - ACTIONS(3802), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3976), 1, anon_sym_LT, - ACTIONS(3808), 1, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3530), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3810), 1, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3532), 28, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [61205] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3814), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3816), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3818), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3820), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3822), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3824), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3834), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3844), 1, - anon_sym_is, - ACTIONS(3846), 1, - anon_sym_as3, - ACTIONS(3848), 1, - anon_sym_QMARKas, - ACTIONS(3985), 1, - anon_sym_EQ_GT, - STATE(2511), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, sym_arguments, - STATE(5752), 1, + STATE(4514), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3306), 2, - anon_sym_as2, - anon_sym_await, - ACTIONS(3794), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3804), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3826), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3828), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3830), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3840), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3806), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3832), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3838), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250547,19 +243709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [61856] = 7, + [61322] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3482), 1, - anon_sym_RPAREN, - ACTIONS(3484), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(321), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_compound_statement, + ACTIONS(2796), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -250580,7 +243737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2798), 31, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -250609,46 +243767,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [61925] = 3, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + [61387] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(4561), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2830), 33, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [61504] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(1818), 1, + sym_arguments, + STATE(4513), 1, + aux_sym_echo_statement_repeat1, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250662,84 +243941,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [61986] = 31, + [61621] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3987), 1, + ACTIONS(3985), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5159), 1, + STATE(4917), 1, aux_sym_echo_statement_repeat1, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250753,76 +244027,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [62103] = 29, + [61738] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3796), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3798), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3800), 1, anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3812), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3814), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3816), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3818), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3828), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3830), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3834), 1, + anon_sym_is, + ACTIONS(3836), 1, anon_sym_as3, + ACTIONS(3838), 1, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + anon_sym_PIPE_GT, + ACTIONS(3854), 1, + anon_sym_await, + ACTIONS(3987), 1, + anon_sym_as2, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + STATE(5785), 1, + sym_await_modifier, + ACTIONS(3794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3802), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3820), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3822), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3824), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3989), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3804), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3852), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -250836,21 +244114,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [62215] = 6, + [61857] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3673), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3546), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -250867,7 +244148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -250896,22 +244177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62281] = 7, + [61928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3733), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(3115), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -250928,8 +244204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2863), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -250954,20 +244233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [62349] = 6, + [61991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3733), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3085), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -250988,8 +244260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3087), 32, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -251014,20 +244289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [62415] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, - anon_sym_RPAREN, - ACTIONS(3484), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + [62052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2839), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -251048,8 +244318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2837), 33, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -251077,21 +244352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62481] = 8, + [62113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3712), 1, - anon_sym_LPAREN, - STATE(1937), 1, - sym_arguments, - STATE(5493), 1, + ACTIONS(3672), 1, + anon_sym_RPAREN, + STATE(1957), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -251111,7 +244384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + ACTIONS(2863), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -251139,21 +244413,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62551] = 6, + [62181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3706), 1, anon_sym_RPAREN, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -251170,7 +244445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -251199,110 +244474,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62617] = 8, + [62249] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, - anon_sym_LT, - ACTIONS(3712), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, - STATE(1937), 1, - sym_arguments, - STATE(2853), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3184), 1, + sym_xhp_class_identifier, + ACTIONS(3294), 1, + sym_inout_modifier, + ACTIONS(3989), 1, + sym_variable, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(2906), 1, + sym_visibility_modifier, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(6258), 1, + sym_variadic_modifier, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(1013), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(5187), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [62351] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(2870), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [62687] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3991), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251316,27 +244635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [62753] = 7, + [62463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3721), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2929), 2, + sym_variable, + anon_sym_DOT_DOT_DOT, + ACTIONS(3316), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -251353,8 +244662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(3318), 30, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -251382,17 +244693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62821] = 6, + [62525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3721), 1, + ACTIONS(3546), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -251413,7 +244724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -251442,131 +244753,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [62887] = 29, + [62591] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3991), 2, + ACTIONS(3993), 2, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [62999] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3533), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251580,81 +244836,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [63065] = 29, + [62703] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3993), 2, + ACTIONS(3995), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251668,76 +244919,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [63177] = 29, + [62815] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3995), 2, + ACTIONS(3997), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251751,21 +245002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [63289] = 6, + [62927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3731), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3999), 1, + anon_sym_EQ_GT, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -251782,7 +245034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -251811,21 +245063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63355] = 6, + [62995] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3719), 1, anon_sym_RPAREN, - ACTIONS(3563), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -251842,7 +245095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -251871,76 +245124,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63421] = 29, + [63063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3719), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3997), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -251954,76 +245179,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [63533] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [63129] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3608), 1, + anon_sym_RPAREN, + ACTIONS(3610), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3999), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252037,21 +245239,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [63645] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [63195] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3729), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3670), 1, + anon_sym_LT, + ACTIONS(3715), 1, + anon_sym_LPAREN, + STATE(1990), 1, + sym_arguments, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -252068,8 +245278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, + ACTIONS(2863), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -252097,76 +245306,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63711] = 29, + [63265] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3574), 1, + anon_sym_RPAREN, + ACTIONS(2929), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(3316), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(3318), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252180,22 +245360,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [63823] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [63329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3729), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3733), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -252212,7 +245396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252241,76 +245425,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [63891] = 29, + [63395] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3733), 1, + anon_sym_RPAREN, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + [63463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_RPAREN, + ACTIONS(3600), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(4003), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252324,22 +245541,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [64003] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [63529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3731), 1, + ACTIONS(3584), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(3586), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -252356,7 +245577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252385,17 +245606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64071] = 6, + [63595] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3729), 1, anon_sym_RPAREN, - ACTIONS(3589), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -252416,7 +245637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252445,20 +245666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64137] = 5, + [63661] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3729), 1, anon_sym_RPAREN, - ACTIONS(2989), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3296), 20, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -252475,7 +245698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3298), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252504,17 +245727,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64201] = 6, + [63729] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [63841] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3725), 1, + ACTIONS(3717), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -252535,7 +245841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252564,17 +245870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64267] = 6, + [63907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3566), 1, anon_sym_RPAREN, - ACTIONS(3582), 1, + ACTIONS(3568), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -252595,7 +245901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252624,76 +245930,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64333] = 29, + [63973] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(4005), 2, + ACTIONS(4004), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252707,12 +246013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [64445] = 4, + [64085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_LBRACE, - ACTIONS(3108), 21, + ACTIONS(3421), 1, + anon_sym_RPAREN, + ACTIONS(3423), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -252733,11 +246044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3110), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -252762,22 +246070,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [64507] = 7, + [64151] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3670), 1, anon_sym_LT, - ACTIONS(3725), 1, - anon_sym_RPAREN, - STATE(1984), 1, + ACTIONS(3715), 1, + anon_sym_LPAREN, + STATE(1990), 1, + sym_arguments, + STATE(2893), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -252797,8 +246107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, + ACTIONS(2863), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -252826,48 +246135,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64575] = 6, + [64221] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_RPAREN, - ACTIONS(3545), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(4006), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -252881,27 +246218,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [64641] = 7, + [64333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3719), 1, + ACTIONS(3524), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(3526), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -252918,7 +246249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -252947,49 +246278,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64709] = 7, + [64399] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3717), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(4008), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [64511] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, anon_sym_LPAREN, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(4010), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -253003,53 +246444,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [64777] = 6, + [64623] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3717), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(4012), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [64735] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, anon_sym_LPAREN, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(4014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -253063,22 +246610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [64843] = 6, + [64847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3719), 1, + ACTIONS(3580), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -253099,7 +246641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253128,21 +246670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64909] = 6, + [64913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3727), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3717), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253159,7 +246702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253188,19 +246731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [64975] = 7, + [64981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3898), 1, anon_sym_LT, - ACTIONS(3723), 1, - anon_sym_RPAREN, - STATE(1984), 1, + STATE(2698), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2885), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -253220,8 +246758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2887), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -253246,24 +246787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [65043] = 6, + [65045] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3723), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3680), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253280,7 +246822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253309,16 +246851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65109] = 5, + [65113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2866), 20, + ACTIONS(3896), 1, + anon_sym_COLON_COLON, + ACTIONS(2897), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -253339,8 +246877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2899), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -253365,13 +246906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [65173] = 3, + [65175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 20, + ACTIONS(3588), 1, + anon_sym_RPAREN, + ACTIONS(3590), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -253392,12 +246940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3063), 32, - sym_variable, - anon_sym_COMMA, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -253425,22 +246969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65233] = 7, + [65241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3727), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3680), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253457,7 +247000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253486,21 +247029,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65301] = 6, + [65307] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3713), 1, anon_sym_RPAREN, - ACTIONS(3567), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253517,7 +247061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253546,76 +247090,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65367] = 29, + [65375] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(4007), 2, + ACTIONS(4016), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -253629,13 +247173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [65479] = 4, + [65487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 2, - sym_variable, - anon_sym_DOT_DOT_DOT, - ACTIONS(3296), 20, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3713), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -253656,10 +247204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3298), 30, - anon_sym_COMMA, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -253687,21 +247233,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65541] = 6, + [65553] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3680), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3682), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253718,7 +247265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253747,22 +247294,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65607] = 7, + [65621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(4009), 1, - anon_sym_EQ_GT, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3682), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -253779,7 +247325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -253808,76 +247354,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [65675] = 29, + [65687] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(4012), 2, + ACTIONS(4018), 2, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3450), 3, + anon_sym_RPAREN, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -253891,159 +247437,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [65787] = 29, + [65799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3704), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(4014), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [65899] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, anon_sym_LPAREN, - ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(4016), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254057,76 +247492,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [66011] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [65865] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(4018), 2, + ACTIONS(4020), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254140,76 +247580,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [66123] = 29, + [65977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(3592), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(4020), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254223,19 +247634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [66235] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [66041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3919), 1, anon_sym_LT, - ACTIONS(3655), 1, - anon_sym_RPAREN, - STATE(1984), 1, + STATE(2675), 1, sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2874), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -254255,8 +247666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2876), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -254281,20 +247695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [66303] = 6, + [66105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, + ACTIONS(3555), 1, anon_sym_RPAREN, - ACTIONS(3605), 1, + ACTIONS(3557), 1, anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -254315,7 +247729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -254344,17 +247758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [66369] = 6, + [66171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(3896), 1, anon_sym_COLON_COLON, - ACTIONS(3655), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2919), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -254375,8 +247784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2921), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -254401,79 +247813,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [66435] = 29, + [66233] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, ACTIONS(4022), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254487,136 +247899,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [66547] = 6, + [66345] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_RPAREN, - ACTIONS(3556), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [66613] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, ACTIONS(4024), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254630,10 +247982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [66725] = 3, + [66457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 21, + ACTIONS(3570), 1, + anon_sym_RPAREN, + ACTIONS(3572), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -254654,12 +248013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3063), 31, - anon_sym_COMMA, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -254684,162 +248039,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [66785] = 29, + [66523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(2970), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3446), 1, anon_sym_LT, - ACTIONS(3452), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, anon_sym_PIPE, - ACTIONS(3464), 1, anon_sym_CARET, - ACTIONS(3466), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(4026), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [66897] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + ACTIONS(2972), 32, + sym_variable, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3404), 1, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(4028), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -254853,102 +248094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [67009] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(4030), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [67121] = 7, + [66583] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3675), 1, + ACTIONS(3708), 1, anon_sym_RPAREN, - STATE(1984), 1, + STATE(1957), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -254968,7 +248131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -254997,17 +248160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67189] = 6, + [66651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, - ACTIONS(3675), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2907), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -255028,8 +248184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2905), 31, + anon_sym_COLON_COLON, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255054,20 +248214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [67255] = 6, + [66711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 1, - anon_sym_RPAREN, - ACTIONS(3613), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2970), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -255088,8 +248241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2972), 31, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255114,22 +248271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [67321] = 7, + [66771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2865), 1, anon_sym_LT, - ACTIONS(3680), 1, + ACTIONS(3700), 1, anon_sym_RPAREN, - STATE(1984), 1, + STATE(1957), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -255149,7 +248306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -255178,17 +248335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67389] = 6, + [66839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, - anon_sym_RPAREN, - ACTIONS(3609), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3950), 1, + anon_sym_LBRACE, + ACTIONS(3126), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -255209,8 +248361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3128), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255235,20 +248390,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [67455] = 6, + [66901] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3708), 1, + ACTIONS(3700), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -255269,7 +248424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -255298,16 +248453,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67521] = 4, + [66967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 1, - anon_sym_COLON_COLON, - ACTIONS(2915), 21, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3704), 1, + anon_sym_RPAREN, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -255324,11 +248485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2917), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255353,22 +248511,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [67583] = 7, + [67035] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, + anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3708), 1, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_CARET, + ACTIONS(3453), 1, + anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(4026), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [67147] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3702), 1, anon_sym_RPAREN, - STATE(1984), 1, + STATE(1957), 1, sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -255388,7 +248629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -255417,48 +248658,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67651] = 6, + [67215] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - anon_sym_RPAREN, - ACTIONS(3597), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, + ACTIONS(3433), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, + ACTIONS(3463), 1, + anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(4028), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -255472,52 +248741,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [67717] = 5, + [67327] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 1, - anon_sym_LT, - STATE(2650), 1, - sym_type_arguments, - ACTIONS(2886), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, + ACTIONS(3465), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, anon_sym_as3, - ACTIONS(2868), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_QMARKas, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3435), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(4030), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -255531,27 +248824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [67781] = 7, + [67439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3706), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3708), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -255568,7 +248855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -255597,17 +248884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67849] = 6, + [67505] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(3685), 1, + ACTIONS(3702), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -255628,7 +248915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -255657,21 +248944,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67915] = 6, + [67571] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 1, - anon_sym_RPAREN, - ACTIONS(3496), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + anon_sym_LT, + STATE(2649), 1, + sym_arguments, + STATE(5590), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -255688,8 +248978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, + ACTIONS(2863), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255717,22 +249006,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [67981] = 7, + [67641] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3673), 1, + ACTIONS(3562), 1, anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -255749,7 +249037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -255778,24 +249066,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [68049] = 8, + [67707] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, - anon_sym_LPAREN, - ACTIONS(3696), 1, - anon_sym_LT, - STATE(2727), 1, - sym_arguments, - STATE(5743), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(3507), 1, + anon_sym_RPAREN, + ACTIONS(3509), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -255812,7 +249097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + ACTIONS(2863), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255840,18 +249126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [68119] = 5, + [67773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, - anon_sym_COMMA, - ACTIONS(3572), 1, - anon_sym_GT, - ACTIONS(3296), 20, + ACTIONS(3615), 1, + anon_sym_RPAREN, + ACTIONS(3617), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -255867,11 +249157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3298), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255896,27 +249183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [68183] = 8, + [67839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, - anon_sym_LPAREN, - ACTIONS(3696), 1, - anon_sym_LT, - STATE(2727), 1, - sym_arguments, - STATE(2843), 1, - sym_type_arguments, - ACTIONS(2878), 2, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3731), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 19, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -255933,7 +249217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 27, + ACTIONS(2863), 28, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -255961,95 +249246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [68253] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3444), 1, - anon_sym_QMARK, - ACTIONS(3446), 1, - anon_sym_LT, - ACTIONS(3452), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_PIPE_GT, - ACTIONS(3456), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, - anon_sym_AMP_AMP, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3464), 1, - anon_sym_CARET, - ACTIONS(3466), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_STAR_STAR, - ACTIONS(3478), 1, - anon_sym_QMARK_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3440), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3448), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3470), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(4032), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3450), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [68365] = 4, + [67905] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 1, + ACTIONS(2841), 1, anon_sym_COLON_COLON, - ACTIONS(2905), 21, + ACTIONS(3672), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -256070,11 +249277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2907), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -256099,17 +249303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [68427] = 3, + [67971] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 21, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3670), 1, + anon_sym_LT, + STATE(2649), 1, + sym_arguments, + STATE(2894), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -256126,12 +249340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2909), 31, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(2863), 27, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -256156,17 +249365,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [68487] = 5, + [68041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3916), 1, + ACTIONS(2865), 1, anon_sym_LT, - STATE(2638), 1, + ACTIONS(3731), 1, + anon_sym_RPAREN, + STATE(1957), 1, sym_type_arguments, - ACTIONS(2857), 20, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -256186,11 +249400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2859), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -256215,112 +249426,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [68551] = 7, + [68109] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LT, - ACTIONS(3685), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_type_arguments, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 19, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3439), 1, anon_sym_EQ, + ACTIONS(3441), 1, + anon_sym_PIPE_GT, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, + ACTIONS(3445), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3447), 1, + anon_sym_AMP_AMP, + ACTIONS(3449), 1, anon_sym_PIPE, + ACTIONS(3451), 1, anon_sym_CARET, + ACTIONS(3453), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_is, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [68619] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3591), 1, - anon_sym_RPAREN, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3435), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(4032), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256334,81 +249512,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [68685] = 29, + [68221] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3417), 1, anon_sym_is, - ACTIONS(3444), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3446), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3452), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3454), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3456), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3462), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3466), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3478), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3440), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3468), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3470), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3472), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, ACTIONS(4034), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3450), 3, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3474), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256422,17 +249595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [68797] = 6, + [68333] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2841), 1, anon_sym_COLON_COLON, ACTIONS(3706), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -256453,7 +249626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -256482,15 +249655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [68863] = 5, + [68399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3708), 1, + ACTIONS(3604), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -256511,7 +249686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -256540,75 +249715,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [68926] = 29, + [68465] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3433), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3441), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3443), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3445), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3447), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3449), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3451), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3453), 1, anon_sym_AMP, - ACTIONS(3428), 1, + ACTIONS(3463), 1, anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3465), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4036), 1, - anon_sym_COLON, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3435), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3459), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(4036), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3437), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3467), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256622,19 +249798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [69037] = 5, + [68577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3676), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -256651,7 +249830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -256680,75 +249859,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [69100] = 29, + [68645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3520), 1, + anon_sym_RPAREN, + ACTIONS(3522), 1, + anon_sym_EQ_GT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4038), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256762,10 +249914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [69211] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [68711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 21, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -256786,11 +249950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3047), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -256815,78 +249976,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [69270] = 29, + [68777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, + ACTIONS(3676), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4040), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -256900,15 +250034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [69381] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [68843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 21, + ACTIONS(2929), 1, + anon_sym_COMMA, + ACTIONS(3577), 1, + anon_sym_GT, + ACTIONS(3316), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT, - anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, @@ -256925,7 +250067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2942), 30, + ACTIONS(3318), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -256956,14 +250098,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [69440] = 3, + [68907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 21, + ACTIONS(2865), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_RPAREN, + STATE(1957), 1, + sym_type_arguments, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 19, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -256980,11 +250130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2966), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -257009,13 +250156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [69499] = 3, + [68975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 21, + ACTIONS(2982), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -257037,7 +250184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2931), 30, + ACTIONS(2984), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -257068,157 +250215,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [69558] = 29, + [69034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3000), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4042), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [69669] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3002), 30, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4044), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257232,157 +250266,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [69780] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [69093] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4046), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(4038), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [69891] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4048), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257396,15 +250353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70002] = 5, + [69204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3278), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -257425,8 +250377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3280), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -257451,78 +250406,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [70065] = 29, + [69263] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4050), 1, - anon_sym_RPAREN, - STATE(1814), 1, + ACTIONS(4040), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257536,75 +250491,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70176] = 29, + [69374] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4052), 1, + ACTIONS(4042), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257618,75 +250573,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70287] = 29, + [69485] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4054), 1, - anon_sym_RPAREN, - STATE(1814), 1, + ACTIONS(4044), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257700,75 +250655,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70398] = 29, + [69596] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4056), 1, + ACTIONS(4046), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257782,75 +250737,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70509] = 29, + [69707] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4058), 1, + ACTIONS(4048), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257864,75 +250819,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70620] = 29, + [69818] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4060), 1, + ACTIONS(4050), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -257946,75 +250901,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70731] = 29, + [69929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4052), 1, + anon_sym_COLON_COLON, + ACTIONS(2899), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2897), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [69990] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4062), 1, + ACTIONS(4054), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258028,75 +251040,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70842] = 29, + [70101] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4064), 1, + ACTIONS(4056), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258110,75 +251122,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [70953] = 29, + [70212] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4066), 1, + ACTIONS(4058), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258192,100 +251204,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [71064] = 3, + [70323] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3067), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + ACTIONS(4060), 1, + anon_sym_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, + ACTIONS(3419), 2, + anon_sym_as3, anon_sym_QMARKas, - [71123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3284), 21, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3475), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3286), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258299,15 +251286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [71182] = 3, + [70434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 21, + ACTIONS(3089), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -258329,7 +251311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2989), 30, + ACTIONS(3091), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258360,10 +251342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71241] = 3, + [70493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 21, + ACTIONS(3069), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -258385,7 +251367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3001), 30, + ACTIONS(3071), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258416,92 +251398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71300] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4068), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [71411] = 3, + [70552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 21, + ACTIONS(3057), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -258523,7 +251423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3051), 30, + ACTIONS(3059), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258554,10 +251454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71470] = 3, + [70611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 21, + ACTIONS(2966), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -258579,7 +251479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3310), 30, + ACTIONS(2968), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258610,157 +251510,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [71529] = 29, + [70670] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4070), 1, + ACTIONS(4062), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [71640] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4072), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258774,157 +251592,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [71751] = 29, + [70781] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4074), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(4064), 1, + anon_sym_RBRACE, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [71862] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4076), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -258938,10 +251674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [71973] = 3, + [70892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 21, + ACTIONS(3330), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -258963,7 +251699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3242), 30, + ACTIONS(3332), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -258994,92 +251730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72032] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4078), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [72143] = 3, + [70951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 21, + ACTIONS(3296), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259101,7 +251755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2047), 30, + ACTIONS(3298), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259132,10 +251786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72202] = 3, + [71010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 21, + ACTIONS(3338), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259157,7 +251811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2051), 30, + ACTIONS(3340), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259188,10 +251842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72261] = 3, + [71069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 21, + ACTIONS(2035), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259213,7 +251867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2859), 30, + ACTIONS(2037), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259244,10 +251898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72320] = 3, + [71128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 21, + ACTIONS(2039), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259269,7 +251923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3154), 30, + ACTIONS(2041), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259300,75 +251954,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72379] = 29, + [71187] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4080), 1, - anon_sym_RBRACE, - STATE(1814), 1, + ACTIONS(4066), 1, + anon_sym_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [71298] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4068), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -259382,72 +252118,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [72490] = 4, + [71409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, - ACTIONS(2917), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + ACTIONS(3308), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2915), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [72551] = 5, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3310), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [71468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3674), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259468,7 +252203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -259497,15 +252232,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [72614] = 5, + [71531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3041), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3043), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [71590] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3676), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259526,7 +252317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -259555,10 +252346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [72677] = 3, + [71653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 21, + ACTIONS(3350), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259580,7 +252371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3082), 30, + ACTIONS(3352), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259611,15 +252402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [72736] = 5, + [71712] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, + ACTIONS(3672), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259640,7 +252431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -259669,75 +252460,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [72799] = 29, + [71775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3316), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4084), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3318), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -259751,75 +252511,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [72910] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [71834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3077), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4086), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3079), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -259833,75 +252567,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [73021] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [71893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3382), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4088), 1, - anon_sym_RPAREN, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3384), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, + anon_sym_await, + anon_sym_is, anon_sym_QMARKas, - ACTIONS(3400), 3, + [71952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3083), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -259915,10 +252679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [73132] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [72011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 21, + ACTIONS(3104), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259940,7 +252709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3204), 30, + ACTIONS(3106), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -259971,10 +252740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73191] = 3, + [72070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 21, + ACTIONS(3200), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -259996,7 +252765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3030), 30, + ACTIONS(3202), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260027,10 +252796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73250] = 3, + [72129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 21, + ACTIONS(3300), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260052,7 +252821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3234), 30, + ACTIONS(3302), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260083,15 +252852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73309] = 5, + [72188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3132), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260112,8 +252876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3134), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -260138,13 +252905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [73372] = 3, + [72247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 21, + ACTIONS(3136), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260166,7 +252933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3078), 30, + ACTIONS(3138), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260197,10 +252964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73431] = 3, + [72306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 21, + ACTIONS(3258), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260222,7 +252989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3280), 30, + ACTIONS(3260), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260253,10 +253020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73490] = 3, + [72365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 21, + ACTIONS(3250), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260278,7 +253045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3090), 30, + ACTIONS(3252), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260309,15 +253076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73549] = 5, + [72424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, - anon_sym_RBRACE, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3196), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260338,8 +253100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3198), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -260364,13 +253129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [73612] = 3, + [72483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 21, + ACTIONS(3226), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260392,7 +253157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3086), 30, + ACTIONS(3228), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260423,15 +253188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73671] = 5, + [72542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3230), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260452,8 +253212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3232), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -260478,13 +253241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [73734] = 3, + [72601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 21, + ACTIONS(3188), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260506,7 +253269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3102), 30, + ACTIONS(3190), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260537,75 +253300,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73793] = 29, + [72660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3024), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3026), 30, anon_sym_LPAREN, - ACTIONS(3394), 1, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [72719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3312), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3314), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [72778] = 29, + ACTIONS(3), 1, + sym_comment, ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4090), 1, + ACTIONS(4070), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -260619,10 +253494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [73904] = 3, + [72889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 21, + ACTIONS(3140), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260644,7 +253519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3094), 30, + ACTIONS(3142), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260675,10 +253550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [73963] = 3, + [72948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 21, + ACTIONS(3704), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260699,8 +253579,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, anon_sym_as3, - ACTIONS(3272), 30, + anon_sym_QMARKas, + [73011] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3702), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [73074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3320), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3322), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260731,10 +253722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74022] = 3, + [73133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 21, + ACTIONS(2927), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260756,7 +253747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3026), 30, + ACTIONS(2929), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260787,66 +253778,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74081] = 3, + [73192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 9, - sym_variable, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + ACTIONS(3266), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2911), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [74140] = 3, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3268), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [73251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 21, + ACTIONS(3216), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260868,7 +253859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2946), 30, + ACTIONS(3218), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260899,10 +253890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74199] = 3, + [73310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 21, + ACTIONS(3126), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -260924,7 +253915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3290), 30, + ACTIONS(3128), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -260955,75 +253946,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74258] = 29, + [73369] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4092), 1, - anon_sym_EQ_GT, - STATE(1814), 1, + ACTIONS(4072), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -261037,10 +254028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [74369] = 3, + [73480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 21, + ACTIONS(3700), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261061,11 +254057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3142), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -261090,13 +254083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [74428] = 3, + [73543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 21, + ACTIONS(3020), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261118,7 +254111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3040), 30, + ACTIONS(3022), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -261149,10 +254142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74487] = 3, + [73602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3012), 21, + ACTIONS(3160), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261174,7 +254167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3014), 30, + ACTIONS(3162), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -261205,15 +254198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74546] = 5, + [73661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3721), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3212), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261234,8 +254222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3214), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -261260,78 +254251,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [74609] = 29, + [73720] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4094), 1, - anon_sym_COLON, - STATE(1814), 1, + ACTIONS(4074), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -261345,75 +254336,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [74720] = 29, + [73831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3016), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4096), 1, - anon_sym_RBRACE, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3018), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -261427,10 +254387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [74831] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [73890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 21, + ACTIONS(3304), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261452,7 +254417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3326), 30, + ACTIONS(3306), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -261483,10 +254448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74890] = 3, + [73949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 21, + ACTIONS(3192), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261508,7 +254473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3022), 30, + ACTIONS(3194), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -261539,10 +254504,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [74949] = 3, + [74008] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4076), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [74119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3332), 21, + ACTIONS(2974), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261564,7 +254611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3334), 30, + ACTIONS(2976), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -261595,44 +254642,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75008] = 3, + [74178] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4078), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3018), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -261646,80 +254724,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [75067] = 29, + [74289] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4098), 1, - anon_sym_COLON, - STATE(1814), 1, + ACTIONS(4080), 1, + anon_sym_RPAREN, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -261733,75 +254806,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75178] = 29, + [74400] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4100), 1, - anon_sym_RBRACK, - STATE(1814), 1, + ACTIONS(4082), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -261815,15 +254888,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75289] = 5, + [74511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(2972), 9, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2970), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [74570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261844,8 +254968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(2937), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -261870,13 +254997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [75352] = 3, + [74629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 21, + ACTIONS(3282), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -261898,7 +255025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2870), 30, + ACTIONS(3284), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -261929,44 +255056,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75411] = 3, + [74688] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4084), 1, + anon_sym_RBRACE, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3192), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -261980,15 +255138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [75470] = 3, + [74799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 21, + ACTIONS(2978), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262010,7 +255163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2974), 30, + ACTIONS(2980), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -262041,10 +255194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75529] = 3, + [74858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 21, + ACTIONS(2988), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262066,7 +255219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3226), 30, + ACTIONS(2990), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -262097,10 +255250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75588] = 3, + [74917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 21, + ACTIONS(3164), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262122,7 +255275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2978), 30, + ACTIONS(3166), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -262153,157 +255306,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [75647] = 29, + [74976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(2992), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4102), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [75758] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2994), 30, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4104), 1, - anon_sym_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -262317,15 +255357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [75869] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [75035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 1, + ACTIONS(3708), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262346,7 +255391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -262375,15 +255420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [75932] = 5, + [75098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3723), 1, + ACTIONS(3731), 1, anon_sym_RPAREN, - ACTIONS(2878), 2, + ACTIONS(2868), 2, anon_sym_QMARK_DASH_GT, anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262404,7 +255449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + ACTIONS(2863), 28, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PIPE_GT, @@ -262433,10 +255478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as3, anon_sym_QMARKas, - [75995] = 3, + [75161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 21, + ACTIONS(3148), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262458,7 +255503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3168), 30, + ACTIONS(3150), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -262489,75 +255534,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76054] = 29, + [75220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(2874), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4106), 1, - anon_sym_COLON, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(2876), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -262571,10 +255585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76165] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [75279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 21, + ACTIONS(3222), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262596,7 +255615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3374), 30, + ACTIONS(3224), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -262627,75 +255646,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76224] = 29, + [75338] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4108), 1, + ACTIONS(4086), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -262709,75 +255728,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76335] = 29, + [75449] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4110), 1, + ACTIONS(4088), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -262791,75 +255810,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76446] = 29, + [75560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3037), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4112), 1, - anon_sym_RBRACK, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3039), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -262873,75 +255861,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76557] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [75619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3370), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4114), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3372), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -262955,10 +255917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [76668] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [75678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 21, + ACTIONS(3144), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -262980,7 +255947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3106), 30, + ACTIONS(3146), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -263011,15 +255978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76727] = 5, + [75737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3717), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3378), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263040,8 +256002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3380), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -263066,13 +256031,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [75796] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4090), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - [76790] = 3, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [75907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 21, + ACTIONS(3053), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263094,7 +256141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3354), 30, + ACTIONS(3055), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -263125,10 +256172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [76849] = 3, + [75966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 21, + ACTIONS(3682), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263149,11 +256201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3302), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -263178,78 +256227,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [76908] = 29, + [76029] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4116), 1, - anon_sym_RBRACE, - STATE(1814), 1, + ACTIONS(4092), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -263263,44 +256312,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77019] = 3, + [76140] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4094), 1, + anon_sym_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3322), 30, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [76251] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4096), 1, + anon_sym_EQ_GT, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -263314,80 +256476,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [77078] = 29, + [76362] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4118), 1, + ACTIONS(4098), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -263401,44 +256558,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77189] = 3, + [76473] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4100), 1, + anon_sym_RBRACK, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3172), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -263452,20 +256640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [77248] = 5, + [76584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3246), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263486,8 +256664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3248), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -263512,13 +256693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [77311] = 3, + [76643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 21, + ACTIONS(3238), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263540,7 +256721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3110), 30, + ACTIONS(3240), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -263571,75 +256752,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [77370] = 29, + [76702] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4120), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(4102), 1, + anon_sym_RBRACE, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -263653,75 +256834,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77481] = 29, + [76813] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4122), 1, + ACTIONS(4104), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [76924] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4106), 1, + anon_sym_RBRACE, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -263735,10 +256998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77592] = 3, + [77035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 21, + ACTIONS(3713), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263759,11 +257027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3264), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -263788,13 +257053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [77651] = 3, + [77098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3368), 21, + ACTIONS(3680), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263815,11 +257085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3370), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -263844,78 +257111,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [77710] = 29, + [77161] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4124), 1, - anon_sym_SEMI, - STATE(1814), 1, + ACTIONS(4108), 1, + anon_sym_COLON, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -263929,10 +257196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [77821] = 3, + [77272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 21, + ACTIONS(3717), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -263953,11 +257225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3256), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -263982,13 +257251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [77880] = 3, + [77335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 21, + ACTIONS(3012), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264010,7 +257279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3298), 30, + ACTIONS(3014), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264041,10 +257310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [77939] = 3, + [77394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 21, + ACTIONS(3061), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264066,7 +257335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3294), 30, + ACTIONS(3063), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264097,10 +257366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [77998] = 3, + [77453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 21, + ACTIONS(3262), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264122,7 +257391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3268), 30, + ACTIONS(3264), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264153,10 +257422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78057] = 3, + [77512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 21, + ACTIONS(3008), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264178,7 +257447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3350), 30, + ACTIONS(3010), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264209,182 +257478,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78116] = 29, + [77571] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - STATE(1814), 1, + ACTIONS(4110), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3438), 2, + ACTIONS(3419), 2, anon_sym_as3, anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [78227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3218), 21, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3475), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3220), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [78286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_DOT, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3212), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -264398,15 +257560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [78345] = 3, + [77682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3376), 21, + ACTIONS(3242), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264428,7 +257585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3378), 30, + ACTIONS(3244), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264459,10 +257616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78404] = 3, + [77741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3328), 21, + ACTIONS(3004), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264484,7 +257641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3330), 30, + ACTIONS(3006), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264515,10 +257672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78463] = 3, + [77800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3314), 21, + ACTIONS(3174), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264540,7 +257697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3316), 30, + ACTIONS(3176), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264571,75 +257728,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78522] = 29, + [77859] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4128), 1, - anon_sym_RBRACE, - STATE(1814), 1, + ACTIONS(4112), 1, + anon_sym_SEMI, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -264653,10 +257810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [78633] = 3, + [77970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 21, + ACTIONS(2996), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264678,7 +257835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3362), 30, + ACTIONS(2998), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264709,10 +257866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78692] = 3, + [78029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 21, + ACTIONS(3366), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264734,7 +257891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3344), 30, + ACTIONS(3368), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264765,10 +257922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78751] = 3, + [78088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 21, + ACTIONS(3398), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264790,7 +257947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3260), 30, + ACTIONS(3400), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264821,10 +257978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78810] = 3, + [78147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 21, + ACTIONS(3204), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264846,7 +258003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3134), 30, + ACTIONS(3206), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264877,10 +258034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78869] = 3, + [78206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 21, + ACTIONS(3254), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -264902,7 +258059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3246), 30, + ACTIONS(3256), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -264933,157 +258090,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [78928] = 29, + [78265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3286), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4130), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [79039] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3288), 30, anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3406), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4132), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -265097,75 +258141,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79150] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [78324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3342), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4134), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3344), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -265179,75 +258197,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79261] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [78383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3358), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4136), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + anon_sym_as3, + ACTIONS(3360), 30, + anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -265261,75 +258253,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79372] = 29, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_await, + anon_sym_is, + anon_sym_QMARKas, + [78442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3729), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(3396), 1, anon_sym_LT, - ACTIONS(3402), 1, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, anon_sym_PIPE, - ACTIONS(3416), 1, anon_sym_CARET, - ACTIONS(3418), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4138), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(3426), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -265343,10 +258311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79483] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [78505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 21, + ACTIONS(2861), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -265368,7 +258341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3216), 30, + ACTIONS(2863), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -265399,10 +258372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [79542] = 3, + [78564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 21, + ACTIONS(3354), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -265424,7 +258397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3208), 30, + ACTIONS(3356), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -265455,10 +258428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [79601] = 3, + [78623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 21, + ACTIONS(3274), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -265480,7 +258453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3250), 30, + ACTIONS(3276), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -265511,66 +258484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [79660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3063), 9, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3061), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [79719] = 3, + [78682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 21, + ACTIONS(3208), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -265592,7 +258509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3306), 30, + ACTIONS(3210), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -265623,75 +258540,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [79778] = 29, + [78741] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4140), 1, - anon_sym_RBRACE, - STATE(1814), 1, + ACTIONS(4114), 1, + anon_sym_RBRACK, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -265705,10 +258622,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [79889] = 3, + [78852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 21, + ACTIONS(2905), 9, + sym_variable, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2907), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [78911] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -265729,11 +258707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3200), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -265758,13 +258733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [79948] = 3, + [78974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 21, + ACTIONS(3390), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -265786,7 +258761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2954), 30, + ACTIONS(3392), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -265817,100 +258792,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [80007] = 3, + [79033] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3366), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, + ACTIONS(4116), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, + ACTIONS(3419), 2, + anon_sym_as3, anon_sym_QMARKas, - [80066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 21, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, + ACTIONS(3475), 2, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3176), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -265924,20 +258874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [80125] = 5, + [79144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3100), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -265958,8 +258898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3102), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -265984,13 +258927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [80188] = 3, + [79203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 21, + ACTIONS(3334), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266012,7 +258955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3180), 30, + ACTIONS(3336), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -266043,10 +258986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [80247] = 3, + [79262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 21, + ACTIONS(3234), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266068,7 +259011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3386), 30, + ACTIONS(3236), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -266099,15 +259042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [80306] = 5, + [79321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_RPAREN, - ACTIONS(2878), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, + ACTIONS(3270), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266128,8 +259066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(2870), 28, + anon_sym_as3, + ACTIONS(3272), 30, anon_sym_LPAREN, + anon_sym_as2, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -266154,13 +259095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_await, anon_sym_is, - anon_sym_as3, anon_sym_QMARKas, - [80369] = 3, + [79380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 21, + ACTIONS(3156), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266182,7 +259123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(2993), 30, + ACTIONS(3158), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -266213,10 +259154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [80428] = 3, + [79439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 21, + ACTIONS(3346), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266238,7 +259179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3276), 30, + ACTIONS(3348), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -266269,44 +259210,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [80487] = 3, + [79498] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4118), 1, + anon_sym_EQ_GT, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3338), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -266320,15 +259292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [80546] = 3, + [79609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 21, + ACTIONS(3719), 1, + anon_sym_RPAREN, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266349,11 +259321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(2950), 30, + ACTIONS(2863), 28, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_PIPE_GT, anon_sym_PIPE_PIPE, @@ -266378,47 +259347,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_await, anon_sym_is, + anon_sym_as3, anon_sym_QMARKas, - [80605] = 3, + [79672] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4120), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3071), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -266432,126 +259432,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [80664] = 24, + [79783] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3502), 1, - sym_inout_modifier, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(4142), 1, - sym_variable, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(2950), 1, - sym_visibility_modifier, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, - sym_null, - STATE(6246), 1, - sym_variadic_modifier, - STATE(3443), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1013), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5196), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1001), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [80765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3182), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4122), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3184), 30, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [79894] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4124), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -266565,80 +259596,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [80824] = 29, + [80005] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4144), 1, + ACTIONS(4126), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -266652,10 +259678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [80935] = 3, + [80116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3148), 21, + ACTIONS(3386), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266677,7 +259703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3150), 30, + ACTIONS(3388), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -266708,44 +259734,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [80994] = 3, + [80175] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4128), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3188), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -266759,15 +259816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [81053] = 3, + [80286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3194), 21, + ACTIONS(3093), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266789,7 +259841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3196), 30, + ACTIONS(3095), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -266820,44 +259872,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [81112] = 3, + [80345] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4130), 1, + anon_sym_RBRACE, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3146), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -266871,15 +259954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [81171] = 3, + [80456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 21, + ACTIONS(3374), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -266901,7 +259979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3230), 30, + ACTIONS(3376), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -266932,44 +260010,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [81230] = 3, + [80515] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4132), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3382), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -266983,49 +260092,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [81289] = 3, + [80626] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4134), 1, + anon_sym_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3238), 30, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [80737] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, + ACTIONS(3411), 1, anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4136), 1, + anon_sym_RPAREN, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -267039,15 +260256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [81348] = 3, + [80848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 21, + ACTIONS(3326), 21, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, @@ -267069,7 +260281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_as3, - ACTIONS(3138), 30, + ACTIONS(3328), 30, anon_sym_LPAREN, anon_sym_as2, anon_sym_EQ_GT, @@ -267100,75 +260312,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_is, anon_sym_QMARKas, - [81407] = 29, + [80907] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4146), 1, + ACTIONS(4138), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -267182,132 +260394,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [81518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, - ACTIONS(2907), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2905), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [81579] = 29, + [81018] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3473), 1, anon_sym_LT, - ACTIONS(3402), 1, + ACTIONS(3479), 1, anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, + ACTIONS(3481), 1, anon_sym_PIPE_GT, - ACTIONS(3408), 1, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, + ACTIONS(3485), 1, anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, + ACTIONS(3487), 1, anon_sym_AMP_AMP, - ACTIONS(3414), 1, + ACTIONS(3489), 1, anon_sym_PIPE, - ACTIONS(3416), 1, + ACTIONS(3491), 1, anon_sym_CARET, - ACTIONS(3418), 1, + ACTIONS(3493), 1, anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, + ACTIONS(3503), 1, anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(4148), 1, + ACTIONS(4140), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(5596), 1, + STATE(5592), 1, sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, + ACTIONS(3475), 2, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(3420), 2, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3422), 2, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, + ACTIONS(3477), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(3426), 3, + ACTIONS(3501), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3432), 13, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -267321,44 +260476,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - [81690] = 3, + [81129] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 21, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, + ACTIONS(3473), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3479), 1, anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, anon_sym_PIPE, + ACTIONS(3491), 1, anon_sym_CARET, + ACTIONS(3493), 1, anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4142), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_as3, - ACTIONS(3358), 30, - anon_sym_LPAREN, - anon_sym_as2, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3497), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, anon_sym_QMARK_QMARK_EQ, anon_sym_DOT_EQ, anon_sym_PIPE_EQ, @@ -267372,620 +260558,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_await, - anon_sym_is, - anon_sym_QMARKas, - [81749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3030), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3028), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [81807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2964), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [81865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2946), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2944), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [81923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3026), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3024), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [81981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3082), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3080), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2978), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2976), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2859), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2857), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3020), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2999), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82271] = 3, + [81240] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3076), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3090), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4144), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3088), 42, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_use, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82387] = 3, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [81351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 8, + ACTIONS(4052), 1, + anon_sym_COLON_COLON, + ACTIONS(2921), 8, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -267994,7 +260654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_GT, anon_sym_EQ_EQ_GT, - ACTIONS(3084), 42, + ACTIONS(2919), 42, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -268037,34 +260697,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_extends, anon_sym_implements, - [82445] = 3, + [81412] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4146), 1, anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [81523] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3100), 42, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [81586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_RBRACE, + ACTIONS(2868), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [81649] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(4148), 1, + anon_sym_SEMI, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [81760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 9, + sym_variable, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4150), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268087,39 +261021,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82503] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [81818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 8, + ACTIONS(4156), 9, sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3092), 42, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4154), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268142,39 +261076,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [81876] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3411), 1, + anon_sym_LBRACK, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82561] = 3, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + STATE(1818), 1, + sym_arguments, + STATE(5592), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [81984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 8, + ACTIONS(4160), 9, sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3012), 42, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4158), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268197,39 +261211,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82619] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 8, + ACTIONS(4164), 9, sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2940), 42, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4162), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268252,39 +261266,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82677] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 8, + ACTIONS(4168), 9, sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2972), 42, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4166), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268307,39 +261321,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82735] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 8, + ACTIONS(4172), 9, sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2987), 42, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4170), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268362,95 +261376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [82793] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3404), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - STATE(1814), 1, - sym_arguments, - STATE(5596), 1, - sym_type_arguments, - ACTIONS(3388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [82901] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 8, + ACTIONS(3063), 8, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -268459,7 +261399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_GT, anon_sym_EQ_EQ_GT, - ACTIONS(3104), 42, + ACTIONS(3061), 42, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -268502,10 +261442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_extends, anon_sym_implements, - [82959] = 3, + [82274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 8, + ACTIONS(2968), 8, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -268514,7 +261454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_GT, anon_sym_EQ_EQ_GT, - ACTIONS(3038), 42, + ACTIONS(2966), 42, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -268557,34 +261497,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_extends, anon_sym_implements, - [83017] = 3, + [82332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 8, + ACTIONS(4176), 9, sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3045), 42, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4174), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268607,97 +261541,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [83075] = 6, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 1, - anon_sym_LBRACE, - ACTIONS(3694), 1, - anon_sym_LPAREN, - STATE(2747), 1, - sym_arguments, - ACTIONS(3108), 20, + ACTIONS(4180), 9, + sym_variable, + anon_sym_BSLASH, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [83139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(2929), 42, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4178), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268720,39 +261596,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [83197] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 8, + ACTIONS(4184), 9, sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3069), 42, + anon_sym_BSLASH, + anon_sym_LT_LT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4182), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -268775,15 +261651,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [83255] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 8, + ACTIONS(3018), 8, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -268792,7 +261674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_GT, anon_sym_EQ_EQ_GT, - ACTIONS(3049), 42, + ACTIONS(3016), 42, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -268835,228 +261717,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_extends, anon_sym_implements, - [83313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3128), 2, - anon_sym_QMARK_DASH_GT, - anon_sym_DASH_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [83373] = 28, + [82564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_LT, - ACTIONS(3402), 1, - anon_sym_EQ, - ACTIONS(3406), 1, - anon_sym_PIPE_GT, - ACTIONS(3408), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3412), 1, - anon_sym_AMP_AMP, - ACTIONS(3414), 1, - anon_sym_PIPE, - ACTIONS(3416), 1, - anon_sym_CARET, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3428), 1, - anon_sym_STAR_STAR, - ACTIONS(3430), 1, - anon_sym_QMARK_COLON, - ACTIONS(3436), 1, - anon_sym_is, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LBRACK, - STATE(2511), 1, - sym_arguments, - STATE(5752), 1, - sym_type_arguments, - ACTIONS(3388), 2, + ACTIONS(4188), 9, + sym_variable, + anon_sym_BSLASH, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(3420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3422), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3424), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(3434), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3438), 2, - anon_sym_as3, - anon_sym_QMARKas, - ACTIONS(3400), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(3426), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3432), 13, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - [83481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - anon_sym_LBRACE, - ACTIONS(3712), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - STATE(1912), 1, - sym_arguments, - ACTIONS(3108), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_AT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [83545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 8, - sym_variable, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - anon_sym_EQ_EQ_GT, - ACTIONS(3016), 42, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4186), 41, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, anon_sym_require, - anon_sym_require_once, + anon_sym_static, anon_sym_use, - anon_sym_as, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -269079,15 +261761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - anon_sym_where, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [83603] = 3, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [82622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 9, + ACTIONS(4192), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269097,7 +261785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4150), 40, + ACTIONS(4190), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269134,32 +261822,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [83660] = 3, + [82680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 9, + ACTIONS(3010), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4154), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3008), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -269182,20 +261877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [83717] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 9, + ACTIONS(4196), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269205,7 +261895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4158), 40, + ACTIONS(4194), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269242,14 +261932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [83774] = 3, + [82796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4164), 9, + ACTIONS(4200), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269259,7 +261950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4162), 40, + ACTIONS(4198), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269296,14 +261987,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [83831] = 3, + [82854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4168), 9, + ACTIONS(3022), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3020), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [82912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4204), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269313,7 +262060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4166), 40, + ACTIONS(4202), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269350,14 +262097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [83888] = 3, + [82970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 9, + ACTIONS(4208), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269367,7 +262115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4170), 40, + ACTIONS(4206), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269404,14 +262152,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [83945] = 3, + [83028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 9, + ACTIONS(3006), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3004), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4212), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269421,7 +262225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4174), 40, + ACTIONS(4210), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269458,14 +262262,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84002] = 3, + [83144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 9, + ACTIONS(3059), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3057), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4216), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269475,7 +262335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4178), 40, + ACTIONS(4214), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269512,14 +262372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84059] = 3, + [83260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4184), 9, + ACTIONS(4220), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269529,7 +262390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4182), 40, + ACTIONS(4218), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269566,14 +262427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84116] = 3, + [83318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 9, + ACTIONS(4224), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269583,7 +262445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4186), 40, + ACTIONS(4222), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269620,14 +262482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84173] = 3, + [83376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 9, + ACTIONS(4228), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269637,7 +262500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4190), 40, + ACTIONS(4226), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269674,14 +262537,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84230] = 3, + [83434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 9, + ACTIONS(3071), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3069), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4232), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269691,7 +262610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4194), 40, + ACTIONS(4230), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269728,14 +262647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84287] = 3, + [83550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 9, + ACTIONS(4236), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269745,7 +262665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4198), 40, + ACTIONS(4234), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269782,32 +262702,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84344] = 3, + [83608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 9, + ACTIONS(3091), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4158), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3089), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -269830,38 +262757,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [84401] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 9, + ACTIONS(3014), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2049), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3012), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -269884,20 +262812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [84458] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [83724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 9, + ACTIONS(4240), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269907,7 +262830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4202), 40, + ACTIONS(4238), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269944,14 +262867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84515] = 3, + [83782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 9, + ACTIONS(4244), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -269961,7 +262885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4206), 40, + ACTIONS(4242), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -269998,14 +262922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84572] = 3, + [83840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4212), 9, + ACTIONS(4248), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270015,7 +262940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4210), 40, + ACTIONS(4246), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270052,14 +262977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84629] = 3, + [83898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 9, + ACTIONS(4252), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270069,7 +262995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4214), 40, + ACTIONS(4250), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270106,14 +263032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84686] = 3, + [83956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4220), 9, + ACTIONS(4256), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270123,7 +263050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4218), 40, + ACTIONS(4254), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270160,14 +263087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84743] = 3, + [84014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 9, + ACTIONS(4260), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270177,7 +263105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4222), 40, + ACTIONS(4258), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270214,69 +263142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84800] = 4, + [84072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, - anon_sym_EQ_GT, - ACTIONS(2866), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(2870), 28, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [84859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4228), 9, + ACTIONS(4204), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270286,7 +263160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4226), 40, + ACTIONS(4202), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270323,14 +263197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84916] = 3, + [84130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 9, + ACTIONS(4264), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270340,7 +263215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4230), 40, + ACTIONS(4262), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270377,32 +263252,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [84973] = 3, + [84188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4236), 9, + ACTIONS(3039), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4234), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3037), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -270425,20 +263307,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [85030] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [84246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4240), 9, + ACTIONS(3102), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3100), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [84304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4268), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270448,7 +263380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4238), 40, + ACTIONS(4266), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270485,14 +263417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85087] = 3, + [84362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 9, + ACTIONS(2037), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270502,7 +263435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4242), 40, + ACTIONS(2035), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270539,14 +263472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85144] = 3, + [84420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 9, + ACTIONS(4272), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270556,7 +263490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4246), 40, + ACTIONS(4270), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270593,14 +263527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85201] = 3, + [84478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 9, + ACTIONS(4276), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270610,7 +263545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4250), 40, + ACTIONS(4274), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270647,14 +263582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85258] = 3, + [84536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 9, + ACTIONS(4208), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270664,7 +263600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4254), 40, + ACTIONS(4206), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270701,14 +263637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85315] = 3, + [84594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 9, + ACTIONS(4280), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270718,7 +263655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4258), 40, + ACTIONS(4278), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270755,14 +263692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85372] = 3, + [84652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 9, + ACTIONS(4284), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270772,7 +263710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2045), 40, + ACTIONS(4282), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270809,14 +263747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85429] = 3, + [84710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 9, + ACTIONS(4288), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270826,7 +263765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4262), 40, + ACTIONS(4286), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270863,70 +263802,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85486] = 5, + [84768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, - anon_sym_LPAREN, - STATE(2747), 1, - sym_arguments, - ACTIONS(3108), 20, + ACTIONS(4292), 9, + sym_variable, + anon_sym_BSLASH, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_AT, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [85547] = 3, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(4290), 41, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_require, + anon_sym_static, + anon_sym_use, + anon_sym_function, + anon_sym_const, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [84826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4268), 9, + ACTIONS(4296), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270936,7 +263875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4266), 40, + ACTIONS(4294), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -270973,14 +263912,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85604] = 3, + [84884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 9, + ACTIONS(2984), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2982), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [84942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2927), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [85000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4300), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -270990,7 +264040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4194), 40, + ACTIONS(4298), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271027,14 +264077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85661] = 3, + [85058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 9, + ACTIONS(4304), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271044,7 +264095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4270), 40, + ACTIONS(4302), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271081,14 +264132,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85718] = 3, + [85116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4276), 9, + ACTIONS(2998), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2996), 42, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [85174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4308), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271098,7 +264205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4274), 40, + ACTIONS(4306), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271135,32 +264242,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85775] = 3, + [85232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 9, + ACTIONS(3083), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4278), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3081), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -271183,20 +264297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [85832] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [85290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 9, + ACTIONS(4312), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271206,7 +264315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4282), 40, + ACTIONS(4310), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271243,14 +264352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85889] = 3, + [85348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 9, + ACTIONS(2041), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271260,7 +264370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4286), 40, + ACTIONS(2039), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271297,14 +264407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [85946] = 3, + [85406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 9, + ACTIONS(4316), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271314,7 +264425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4290), 40, + ACTIONS(4314), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271351,14 +264462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86003] = 3, + [85464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 9, + ACTIONS(4320), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271368,7 +264480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4294), 40, + ACTIONS(4318), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271405,70 +264517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3712), 1, - anon_sym_LPAREN, - STATE(1912), 1, - sym_arguments, - ACTIONS(3108), 20, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(3110), 27, - anon_sym_LBRACK, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DOT_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_is, - anon_sym_as3, - anon_sym_QMARKas, - [86121] = 3, + [85522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 9, + ACTIONS(4324), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271478,7 +264535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4298), 40, + ACTIONS(4322), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271515,32 +264572,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86178] = 3, + [85580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 9, + ACTIONS(3079), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4302), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3077), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -271563,20 +264627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [86235] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [85638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 9, + ACTIONS(4328), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271586,7 +264645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4306), 40, + ACTIONS(4326), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271623,14 +264682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86292] = 3, + [85696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4312), 9, + ACTIONS(4332), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271640,7 +264700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4310), 40, + ACTIONS(4330), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271677,14 +264737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86349] = 3, + [85754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 9, + ACTIONS(4336), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271694,7 +264755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4314), 40, + ACTIONS(4334), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271731,14 +264792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86406] = 3, + [85812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 9, + ACTIONS(4340), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271748,7 +264810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4318), 40, + ACTIONS(4338), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271785,14 +264847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86463] = 3, + [85870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 9, + ACTIONS(4344), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271802,7 +264865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4322), 40, + ACTIONS(4342), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271839,14 +264902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86520] = 3, + [85928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 9, + ACTIONS(4348), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271856,7 +264920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4326), 40, + ACTIONS(4346), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271893,14 +264957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86577] = 3, + [85986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 9, + ACTIONS(4352), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271910,7 +264975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4330), 40, + ACTIONS(4350), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -271947,14 +265012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86634] = 3, + [86044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 9, + ACTIONS(4356), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -271964,7 +265030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4334), 40, + ACTIONS(4354), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272001,14 +265067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86691] = 3, + [86102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 9, + ACTIONS(4360), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272018,7 +265085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4338), 40, + ACTIONS(4358), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272055,14 +265122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86748] = 3, + [86160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 9, + ACTIONS(4364), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272072,7 +265140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4342), 40, + ACTIONS(4362), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272109,14 +265177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86805] = 3, + [86218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 9, + ACTIONS(4368), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272126,7 +265195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4346), 40, + ACTIONS(4366), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272163,32 +265232,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [86862] = 3, + [86276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 9, + ACTIONS(2976), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4350), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2974), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -272211,38 +265287,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [86919] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [86334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 9, + ACTIONS(3002), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4354), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3000), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -272265,20 +265342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [86976] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [86392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4360), 9, + ACTIONS(4372), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272288,7 +265360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4358), 40, + ACTIONS(4370), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272325,14 +265397,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87033] = 3, + [86450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 9, + ACTIONS(4376), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272342,7 +265415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4362), 40, + ACTIONS(4374), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272379,14 +265452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87090] = 3, + [86508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 9, + ACTIONS(4380), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272396,7 +265470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4366), 40, + ACTIONS(4378), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272433,14 +265507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87147] = 3, + [86566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 9, + ACTIONS(4384), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272450,7 +265525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4370), 40, + ACTIONS(4382), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272487,14 +265562,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87204] = 3, + [86624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 9, + ACTIONS(3115), 2, + anon_sym_QMARK_DASH_GT, + anon_sym_DASH_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [86684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4388), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272504,7 +265636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4374), 40, + ACTIONS(4386), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272541,14 +265673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87261] = 3, + [86742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 9, + ACTIONS(4392), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272558,7 +265691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4378), 40, + ACTIONS(4390), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272595,32 +265728,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87318] = 3, + [86800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 9, + ACTIONS(2876), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4382), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2874), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -272643,20 +265783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [87375] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [86858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 9, + ACTIONS(4396), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272666,7 +265801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4386), 40, + ACTIONS(4394), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272703,14 +265838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87432] = 3, + [86916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 9, + ACTIONS(4400), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272720,7 +265856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4390), 40, + ACTIONS(4398), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272757,14 +265893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87489] = 3, + [86974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 9, + ACTIONS(4404), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272774,7 +265911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4394), 40, + ACTIONS(4402), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272811,14 +265948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87546] = 3, + [87032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 9, + ACTIONS(4408), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -272828,7 +265966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4398), 40, + ACTIONS(4406), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -272865,32 +266003,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87603] = 3, + [87090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 9, + ACTIONS(2980), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4402), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2978), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -272913,38 +266058,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [87660] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [87148] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 9, - sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, + ACTIONS(3413), 1, + anon_sym_STAR_STAR, + ACTIONS(3417), 1, + anon_sym_is, + ACTIONS(3471), 1, anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4406), 40, + ACTIONS(3473), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_EQ, + ACTIONS(3481), 1, + anon_sym_PIPE_GT, + ACTIONS(3483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3487), 1, + anon_sym_AMP_AMP, + ACTIONS(3489), 1, + anon_sym_PIPE, + ACTIONS(3491), 1, + anon_sym_CARET, + ACTIONS(3493), 1, + anon_sym_AMP, + ACTIONS(3503), 1, + anon_sym_QMARK_COLON, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LBRACK, + STATE(2495), 1, + sym_arguments, + STATE(5611), 1, + sym_type_arguments, + ACTIONS(3415), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3419), 2, + anon_sym_as3, + anon_sym_QMARKas, + ACTIONS(3469), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3475), 2, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(3495), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3497), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3499), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(3477), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(3501), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3505), 13, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + [87256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3106), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3104), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -272967,38 +266193,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [87717] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [87314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 9, + ACTIONS(3095), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4410), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(3093), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -273021,20 +266248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [87774] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [87372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 9, + ACTIONS(4412), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273044,7 +266266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4414), 40, + ACTIONS(4410), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273081,14 +266303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87831] = 3, + [87430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 9, + ACTIONS(4416), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273098,7 +266321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4418), 40, + ACTIONS(4414), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273135,14 +266358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87888] = 3, + [87488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 9, + ACTIONS(4420), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273152,7 +266376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4422), 40, + ACTIONS(4418), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273189,14 +266413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [87945] = 3, + [87546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 9, + ACTIONS(4424), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273206,7 +266431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4426), 40, + ACTIONS(4422), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273243,32 +266468,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88002] = 3, + [87604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 9, + ACTIONS(2994), 8, sym_variable, - anon_sym_BSLASH, - anon_sym_LT_LT, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(4430), 40, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2992), 42, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, anon_sym_require, - anon_sym_static, + anon_sym_require_once, anon_sym_use, - anon_sym_function, - anon_sym_const, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -273291,20 +266523,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - anon_sym_attribute, - anon_sym_children, - anon_sym_category, - [88059] = 3, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [87662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 9, + ACTIONS(3130), 1, + anon_sym_LBRACE, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(2762), 1, + sym_arguments, + ACTIONS(3126), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3128), 27, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [87726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4428), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273314,7 +266599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4434), 40, + ACTIONS(4426), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273351,14 +266636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88116] = 3, + [87784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 9, + ACTIONS(4432), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273368,7 +266654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4438), 40, + ACTIONS(4430), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273405,14 +266691,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88173] = 3, + [87842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 9, + ACTIONS(3130), 1, + anon_sym_LBRACE, + ACTIONS(3715), 1, + anon_sym_LPAREN, + STATE(1991), 1, + sym_arguments, + ACTIONS(3126), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3128), 27, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [87906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4436), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273422,7 +266767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4442), 40, + ACTIONS(4434), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273459,14 +266804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88230] = 3, + [87964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 9, + ACTIONS(4440), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273476,7 +266822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4446), 40, + ACTIONS(4438), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273513,14 +266859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88287] = 3, + [88022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 9, + ACTIONS(4444), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273530,7 +266877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4450), 40, + ACTIONS(4442), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273567,14 +266914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88344] = 3, + [88080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4456), 9, + ACTIONS(4448), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273584,7 +266932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4454), 40, + ACTIONS(4446), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273621,14 +266969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88401] = 3, + [88138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 9, + ACTIONS(4452), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273638,7 +266987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4458), 40, + ACTIONS(4450), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273675,14 +267024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88458] = 3, + [88196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 9, + ACTIONS(4456), 9, sym_variable, anon_sym_BSLASH, anon_sym_LT_LT, @@ -273692,7 +267042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(4462), 40, + ACTIONS(4454), 41, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -273729,60 +267079,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_xhp_identifier, anon_sym_attribute, anon_sym_children, anon_sym_category, - [88515] = 21, + [88254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2990), 8, + sym_variable, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + anon_sym_EQ_EQ_GT, + ACTIONS(2988), 42, sym_identifier, - ACTIONS(2657), 1, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, - ACTIONS(2659), 1, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4466), 1, - anon_sym_RBRACE, - ACTIONS(4468), 1, - anon_sym_abstract, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2945), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_use, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273802,127 +267134,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [88606] = 21, + anon_sym_super, + anon_sym_where, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [88312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(4460), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2671), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4470), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [88697] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(4458), 41, sym_identifier, - ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4472), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2903), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + anon_sym_require, + anon_sym_static, + anon_sym_use, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -273942,127 +267183,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, sym_xhp_identifier, - [88788] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(4464), 9, + sym_variable, anon_sym_BSLASH, - ACTIONS(2671), 1, + anon_sym_LT_LT, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4474), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2929), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [88879] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(4462), 41, sym_identifier, - ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4476), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + anon_sym_require, + anon_sym_static, + anon_sym_use, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274082,197 +267238,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, sym_xhp_identifier, - [88970] = 21, + anon_sym_attribute, + anon_sym_children, + anon_sym_category, + [88428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(3715), 1, + anon_sym_LPAREN, + STATE(1991), 1, + sym_arguments, + ACTIONS(3126), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3128), 27, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [88489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4478), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [89061] = 21, + STATE(2762), 1, + sym_arguments, + ACTIONS(3126), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(3128), 27, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [88550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(3999), 1, + anon_sym_EQ_GT, + ACTIONS(2861), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(2863), 28, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4480), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2910), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [89152] = 21, + anon_sym_LBRACK, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DOT_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_is, + anon_sym_as3, + anon_sym_QMARKas, + [88609] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(4470), 1, + anon_sym_static, + ACTIONS(4473), 1, + anon_sym_abstract, + ACTIONS(4476), 1, + sym_final_modifier, + ACTIONS(4479), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + STATE(2896), 5, + sym__member_modifier, + sym_abstract_modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_method_declaration_repeat1, + ACTIONS(4468), 7, + sym_variable, anon_sym_BSLASH, - ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3671), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4482), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(4466), 29, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -274292,51 +267472,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_async, sym_xhp_identifier, - [89243] = 21, + [88675] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4484), 1, + ACTIONS(4482), 1, anon_sym_RBRACE, - STATE(2223), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274363,50 +267544,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89334] = 21, + [88766] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4486), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2930), 2, + STATE(2915), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274433,50 +267614,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89425] = 21, + [88857] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4488), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274503,50 +267684,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89516] = 21, + [88948] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4490), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274573,50 +267754,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89607] = 21, + [89039] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4492), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2919), 2, + STATE(2899), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274643,50 +267824,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89698] = 21, + [89130] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4494), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2946), 2, + STATE(2900), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274713,50 +267894,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89789] = 21, + [89221] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4496), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274783,50 +267964,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89880] = 21, + [89312] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4498), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2935), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274853,50 +268034,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [89971] = 21, + [89403] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4500), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2909), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -274923,126 +268104,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90062] = 21, + [89494] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, ACTIONS(4502), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [90153] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, + sym_variable, ACTIONS(4504), 1, - anon_sym_RBRACE, - STATE(2223), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(6086), 1, + sym_variadic_modifier, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5106), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -275063,190 +268175,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90244] = 21, + [89587] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, ACTIONS(4506), 1, anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2912), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1055), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [90335] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 1, - sym_identifier, - ACTIONS(4511), 1, - anon_sym_shape, - ACTIONS(4514), 1, - anon_sym_namespace, - ACTIONS(4517), 1, - anon_sym_BSLASH, - ACTIONS(4520), 1, - anon_sym_RBRACE, - ACTIONS(4522), 1, - anon_sym_LPAREN, - ACTIONS(4528), 1, - anon_sym_AT, - ACTIONS(4531), 1, - anon_sym_QMARK, - ACTIONS(4534), 1, - anon_sym_TILDE, - ACTIONS(4540), 1, - anon_sym_abstract, - ACTIONS(4543), 1, - sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(4525), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5379), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(4537), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [90426] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4546), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(2926), 2, + STATE(2903), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275273,50 +268245,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90517] = 21, + [89678] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4548), 1, + ACTIONS(4508), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2912), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275343,50 +268315,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90608] = 21, + [89769] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4550), 1, + ACTIONS(4510), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275413,50 +268385,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90699] = 21, + [89860] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4552), 1, + ACTIONS(4512), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2918), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275483,50 +268455,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90790] = 21, + [89951] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4554), 1, + ACTIONS(4514), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2946), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275553,50 +268525,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90881] = 21, + [90042] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4556), 1, + ACTIONS(4516), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2904), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275623,50 +268595,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [90972] = 21, + [90133] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4558), 1, + ACTIONS(4518), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2914), 2, + STATE(2921), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275693,50 +268665,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91063] = 21, + [90224] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4560), 1, + ACTIONS(4520), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2932), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275763,50 +268735,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91154] = 21, + [90315] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4562), 1, + ACTIONS(4522), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275833,50 +268805,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91245] = 21, + [90406] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4564), 1, + ACTIONS(4524), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2950), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275903,50 +268875,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91336] = 21, + [90497] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4566), 1, - anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(2952), 1, + aux_sym_where_clause_repeat1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2924), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3481), 1, + sym_where_constraint, + ACTIONS(4526), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5022), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -275973,50 +268945,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91427] = 21, + [90588] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4568), 1, + ACTIONS(4528), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2951), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276043,50 +269015,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91518] = 21, + [90679] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4570), 1, + ACTIONS(4530), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2924), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276113,56 +269085,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91609] = 21, + [90770] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, - anon_sym_abstract, - ACTIONS(4572), 1, - anon_sym_RBRACE, - STATE(2223), 1, + ACTIONS(3294), 1, + sym_inout_modifier, + ACTIONS(3989), 1, + sym_variable, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(2916), 2, - sym_typed_enumerator, - aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(6258), 1, + sym_variadic_modifier, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5187), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276183,50 +269156,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91700] = 21, + [90863] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4574), 1, + ACTIONS(4532), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2934), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276253,50 +269226,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91791] = 21, + [90954] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4576), 1, + ACTIONS(4534), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2904), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276323,50 +269296,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91882] = 21, + [91045] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4578), 1, + ACTIONS(4536), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2913), 2, + STATE(2930), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276393,50 +269366,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [91973] = 21, + [91136] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4580), 1, + ACTIONS(4538), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276463,50 +269436,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92064] = 21, + [91227] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4582), 1, + ACTIONS(4540), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2910), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276533,50 +269506,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92155] = 21, + [91318] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4584), 1, + ACTIONS(4542), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2954), 2, + STATE(2935), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276603,50 +269576,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92246] = 21, + [91409] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4586), 1, + ACTIONS(4544), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2906), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276673,57 +269646,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92337] = 22, + [91500] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3502), 1, - sym_inout_modifier, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4142), 1, - sym_variable, - STATE(2223), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4546), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(6246), 1, - sym_variadic_modifier, - STATE(3443), 2, + STATE(2941), 2, + sym_typed_enumerator, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5196), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -276744,50 +269716,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92430] = 21, + [91591] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4588), 1, + ACTIONS(4548), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2921), 2, + STATE(2955), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276814,50 +269786,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92521] = 21, + [91682] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4590), 1, + ACTIONS(4550), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2907), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276884,50 +269856,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92612] = 21, + [91773] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4592), 1, + ACTIONS(4552), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2897), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -276954,50 +269926,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92703] = 21, + [91864] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4594), 1, + ACTIONS(4554), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2900), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277024,50 +269996,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92794] = 21, + [91955] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4556), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(2957), 1, - aux_sym_where_clause_repeat1, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3503), 1, - sym_where_constraint, - ACTIONS(4596), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(3450), 2, + STATE(2938), 2, + sym_typed_enumerator, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5034), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277094,50 +270066,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92885] = 21, + [92046] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4598), 1, + ACTIONS(4558), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2955), 2, + STATE(2937), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277164,50 +270136,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [92976] = 21, + [92137] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4600), 1, + ACTIONS(4560), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277234,50 +270206,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93067] = 21, + [92228] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4602), 1, + ACTIONS(4562), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277304,50 +270276,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93158] = 21, + [92319] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4604), 1, + ACTIONS(4564), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2949), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277374,50 +270346,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93249] = 21, + [92410] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4606), 1, + ACTIONS(4566), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2932), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277444,50 +270416,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93340] = 21, + [92501] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4608), 1, + ACTIONS(4568), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2940), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277514,57 +270486,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93431] = 22, + [92592] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4610), 1, - sym_variable, - ACTIONS(4612), 1, - sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4570), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(6103), 1, - sym_variadic_modifier, - STATE(3443), 2, + STATE(2943), 2, + sym_typed_enumerator, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5114), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277585,42 +270556,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93524] = 8, + [92683] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, - anon_sym_static, - ACTIONS(4621), 1, - anon_sym_abstract, - ACTIONS(4624), 1, - sym_final_modifier, - ACTIONS(4627), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - STATE(2951), 5, - sym__member_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - aux_sym_method_declaration_repeat1, - ACTIONS(4616), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4614), 29, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_function, - anon_sym_const, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4572), 1, + anon_sym_RBRACE, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3241), 1, + sym_null, + STATE(2943), 2, + sym_typed_enumerator, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(5478), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -277640,52 +270625,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, sym_xhp_identifier, - [93589] = 21, + [92774] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4630), 1, + ACTIONS(4574), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2901), 2, + STATE(2931), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277712,50 +270696,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93680] = 21, + [92865] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 1, + sym_identifier, + ACTIONS(4579), 1, + anon_sym_shape, + ACTIONS(4582), 1, + anon_sym_namespace, + ACTIONS(4585), 1, + anon_sym_BSLASH, + ACTIONS(4588), 1, + anon_sym_RBRACE, + ACTIONS(4590), 1, + anon_sym_LPAREN, + ACTIONS(4596), 1, + anon_sym_AT, + ACTIONS(4599), 1, + anon_sym_QMARK, + ACTIONS(4602), 1, + anon_sym_TILDE, + ACTIONS(4608), 1, + anon_sym_abstract, + ACTIONS(4611), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3241), 1, + sym_null, + STATE(2943), 2, + sym_typed_enumerator, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(4593), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5478), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(4605), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [92956] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2925), 2, + STATE(2936), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277782,50 +270836,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93771] = 21, + [93047] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4634), 1, + ACTIONS(4616), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277852,50 +270906,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93862] = 21, + [93138] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4636), 1, + ACTIONS(4618), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2916), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277922,50 +270976,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [93953] = 21, + [93229] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4468), 1, + ACTIONS(4484), 1, anon_sym_abstract, - ACTIONS(4638), 1, + ACTIONS(4620), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2928), 2, + STATE(2943), 2, sym_typed_enumerator, aux_sym_abstract_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5379), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -277992,118 +271046,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94044] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4640), 1, - sym_identifier, - ACTIONS(4643), 1, - anon_sym_shape, - ACTIONS(4646), 1, - anon_sym_namespace, - ACTIONS(4649), 1, - anon_sym_BSLASH, - ACTIONS(4654), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, - anon_sym_AT, - ACTIONS(4663), 1, - anon_sym_QMARK, - ACTIONS(4666), 1, - anon_sym_TILDE, - ACTIONS(4672), 1, - sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(2957), 1, - aux_sym_where_clause_repeat1, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, - sym_null, - STATE(3503), 1, - sym_where_constraint, - ACTIONS(4652), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(3450), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(4657), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5034), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(4669), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [94135] = 20, + [93320] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4675), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4622), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2984), 2, + STATE(2943), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278130,48 +271116,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94223] = 20, + [93411] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4677), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4624), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2945), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278198,116 +271186,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94311] = 20, + [93502] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(4679), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(4681), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(4683), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(4685), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(4687), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(4693), 1, - anon_sym_enum, - ACTIONS(4695), 1, - sym_xhp_class_identifier, - STATE(3644), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3661), 1, - sym_qualified_identifier, - STATE(3712), 1, - sym_null, - STATE(3771), 1, - sym__type_constant, - STATE(5461), 1, - sym_xhp_class_attribute, - STATE(3444), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(4689), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(3804), 6, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - sym_xhp_enum_type, - ACTIONS(4691), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [94399] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4697), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4626), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2943), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278334,48 +271256,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94487] = 20, + [93593] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4699), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4628), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2943), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278402,54 +271326,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94575] = 20, + [93684] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(4630), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(4633), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(4636), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(4639), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(4644), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(4650), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(4653), 1, + anon_sym_QMARK, + ACTIONS(4656), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(4662), 1, sym_xhp_class_identifier, - ACTIONS(4701), 1, - anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(2952), 1, + aux_sym_where_clause_repeat1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3481), 1, + sym_where_constraint, + ACTIONS(4642), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(4647), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5022), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(4659), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -278470,48 +271396,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94663] = 20, + [93775] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4701), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4665), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2986), 2, + STATE(2948), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278538,48 +271466,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94751] = 20, + [93866] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4697), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4667), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3014), 2, + STATE(2947), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278606,48 +271536,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94839] = 20, + [93957] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4703), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4669), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3011), 2, + STATE(2943), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278674,48 +271606,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [94927] = 20, + [94048] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4705), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4671), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2979), 2, + STATE(2927), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278742,48 +271676,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95015] = 20, + [94139] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4707), 1, + ACTIONS(4484), 1, + anon_sym_abstract, + ACTIONS(4673), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2897), 2, sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + aux_sym_abstract_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5478), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278810,48 +271746,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95103] = 20, + [94230] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4709), 1, + ACTIONS(4675), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278878,48 +271814,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95191] = 20, + [94318] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4711), 1, + ACTIONS(4677), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2972), 2, + STATE(3007), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -278946,54 +271882,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95279] = 20, + [94406] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4713), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(4716), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(4719), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(4722), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(4725), 1, - anon_sym_RBRACE, - ACTIONS(4727), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(4733), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(4736), 1, - anon_sym_QMARK, - ACTIONS(4739), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(4745), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4679), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4730), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(4742), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279014,48 +271950,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95367] = 20, + [94494] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4748), 1, + ACTIONS(4679), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2964), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279082,48 +272018,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95455] = 20, + [94582] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4707), 1, + ACTIONS(4681), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3019), 2, + STATE(2968), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279150,48 +272086,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95543] = 20, + [94670] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4750), 1, + ACTIONS(4683), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2968), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279218,48 +272154,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95631] = 20, + [94758] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4752), 1, + ACTIONS(4685), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2962), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279286,48 +272222,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95719] = 20, + [94846] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4748), 1, + ACTIONS(4683), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2959), 2, + STATE(2967), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279354,48 +272290,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95807] = 20, + [94934] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4754), 1, + ACTIONS(4687), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3009), 2, + STATE(2969), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279422,48 +272358,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95895] = 20, + [95022] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4752), 1, + ACTIONS(4689), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279490,48 +272426,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [95983] = 20, + [95110] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4754), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279558,48 +272494,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96071] = 20, + [95198] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4756), 1, + ACTIONS(4693), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3004), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279626,48 +272562,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96159] = 20, + [95286] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4758), 1, + ACTIONS(4693), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2985), 2, + STATE(2972), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279694,48 +272630,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96247] = 20, + [95374] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4760), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2989), 2, + STATE(2973), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279762,55 +272698,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96335] = 21, + [95462] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4142), 1, - sym_variable, - STATE(2223), 1, + ACTIONS(4695), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(6246), 1, - sym_variadic_modifier, - STATE(3443), 2, + STATE(2993), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5196), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -279831,48 +272766,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96425] = 20, + [95550] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4762), 1, + ACTIONS(4697), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279899,48 +272834,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96513] = 20, + [95638] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4760), 1, + ACTIONS(4699), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -279967,48 +272902,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96601] = 20, + [95726] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4764), 1, + ACTIONS(3989), 1, + sym_variable, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(6258), 1, + sym_variadic_modifier, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5187), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [95816] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + ACTIONS(4701), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2982), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280035,48 +273039,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96689] = 20, + [95904] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4766), 1, + ACTIONS(4703), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3015), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280103,55 +273107,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96777] = 21, + [95992] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4610), 1, - sym_variable, - STATE(2223), 1, + ACTIONS(4705), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(6103), 1, - sym_variadic_modifier, - STATE(3443), 2, + STATE(3017), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5114), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280172,48 +273175,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96867] = 20, + [96080] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4768), 1, + ACTIONS(4707), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2974), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280240,48 +273243,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [96955] = 20, + [96168] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4770), 1, + ACTIONS(4707), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2992), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280308,48 +273311,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97043] = 20, + [96256] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4772), 1, + ACTIONS(4709), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280376,48 +273379,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97131] = 20, + [96344] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4766), 1, + ACTIONS(4711), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280444,48 +273447,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97219] = 20, + [96432] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4774), 1, + ACTIONS(4713), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2977), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280512,54 +273515,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97307] = 20, + [96520] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(4679), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(4681), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(4683), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(4685), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(4687), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(4693), 1, - anon_sym_enum, - ACTIONS(4695), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(3644), 1, + ACTIONS(4715), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(3661), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, sym_qualified_identifier, - STATE(3712), 1, + STATE(3241), 1, sym_null, - STATE(3771), 1, - sym__type_constant, - STATE(4482), 1, - sym_xhp_class_attribute, - STATE(3444), 2, + STATE(2988), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4689), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3804), 6, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - sym_xhp_enum_type, - ACTIONS(4691), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -280580,48 +273583,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97395] = 20, + [96608] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4776), 1, + ACTIONS(4713), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280648,48 +273651,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97483] = 20, + [96696] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4774), 1, + ACTIONS(4711), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3001), 2, + STATE(2996), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280716,48 +273719,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97571] = 20, + [96784] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4778), 1, + ACTIONS(4717), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3005), 2, + STATE(2997), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280784,48 +273787,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97659] = 20, + [96872] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4780), 1, + ACTIONS(4719), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2978), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280852,48 +273855,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97747] = 20, + [96960] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4782), 1, + ACTIONS(4719), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2992), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280920,48 +273923,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97835] = 20, + [97048] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4784), 1, + ACTIONS(4721), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2963), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -280988,48 +273991,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [97923] = 20, + [97136] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4786), 1, + ACTIONS(4723), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2958), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281056,48 +274059,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98011] = 20, + [97224] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4788), 1, + ACTIONS(4725), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2961), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281124,48 +274127,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98099] = 20, + [97312] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4727), 1, + sym_identifier, + ACTIONS(4730), 1, + anon_sym_shape, + ACTIONS(4733), 1, + anon_sym_namespace, + ACTIONS(4736), 1, + anon_sym_BSLASH, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(4741), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_AT, + ACTIONS(4750), 1, + anon_sym_QMARK, + ACTIONS(4753), 1, + anon_sym_TILDE, + ACTIONS(4759), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3241), 1, + sym_null, + STATE(2993), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(4744), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5481), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(4756), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [97400] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4790), 1, + ACTIONS(4675), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2999), 2, + STATE(2995), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281192,48 +274263,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98187] = 20, + [97488] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4675), 1, + ACTIONS(4762), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281260,48 +274331,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98275] = 20, + [97576] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4790), 1, + ACTIONS(4764), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281328,48 +274399,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98363] = 20, + [97664] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4792), 1, + ACTIONS(4766), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2991), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281396,48 +274467,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98451] = 20, + [97752] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4792), 1, + ACTIONS(4766), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(3001), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281464,48 +274535,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98539] = 20, + [97840] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4794), 1, + ACTIONS(4768), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3017), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281532,54 +274603,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98627] = 20, + [97928] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(4772), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(4774), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(4776), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(4778), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(4784), 1, + anon_sym_enum, + ACTIONS(4786), 1, sym_xhp_class_identifier, - ACTIONS(4796), 1, - anon_sym_RBRACE, - STATE(2223), 1, + STATE(3616), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, + STATE(3666), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3726), 1, sym_null, - STATE(2971), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3756), 1, + sym__type_constant, + STATE(4593), 1, + sym_xhp_class_attribute, + STATE(3441), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(4780), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(4011), 6, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + sym_xhp_enum_type, + ACTIONS(4782), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281600,48 +274671,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98715] = 20, + [98016] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4798), 1, + ACTIONS(4788), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2995), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281668,48 +274739,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98803] = 20, + [98104] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4798), 1, + ACTIONS(4790), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2999), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281736,48 +274807,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98891] = 20, + [98192] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4800), 1, + ACTIONS(4790), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281804,55 +274875,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [98979] = 21, + [98280] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4802), 1, - sym_variable, - STATE(2223), 1, + ACTIONS(4792), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(6233), 1, - sym_variadic_modifier, - STATE(3443), 2, + STATE(2985), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4679), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -281873,48 +274943,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99069] = 20, + [98368] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4804), 1, + ACTIONS(4794), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2990), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -281941,48 +275011,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99157] = 20, + [98456] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4806), 1, + ACTIONS(4796), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -282009,48 +275079,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99245] = 20, + [98544] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4808), 1, + ACTIONS(4794), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3007), 2, + STATE(2993), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -282077,48 +275147,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99333] = 20, + [98632] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4810), 1, + ACTIONS(4798), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2980), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -282145,54 +275215,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99421] = 20, + [98720] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4810), 1, - anon_sym_RBRACE, - STATE(2223), 1, + ACTIONS(4800), 1, + sym_variable, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(3012), 2, - sym_typed_enumerator, - aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(6241), 1, + sym_variadic_modifier, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(4644), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282213,48 +275284,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99509] = 20, + [98810] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4812), 1, + ACTIONS(4802), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(2971), 2, + STATE(2963), 2, sym_typed_enumerator, aux_sym_enum_class_declaration_repeat1, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5599), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -282281,53 +275352,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99597] = 20, + [98898] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4804), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3237), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3003), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6308), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282348,53 +275420,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99684] = 20, + [98986] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4816), 1, - anon_sym_RPAREN, - ACTIONS(4818), 1, - sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4806), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(3443), 2, + STATE(2981), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282415,53 +275488,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99771] = 20, + [99074] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4808), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3316), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3006), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6333), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282482,53 +275556,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99858] = 20, + [99162] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4808), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3313), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(2993), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6360), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282549,53 +275624,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [99945] = 20, + [99250] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4502), 1, + sym_variable, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3175), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(6086), 1, + sym_variadic_modifier, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6046), 5, + STATE(5106), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282616,53 +275693,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100032] = 20, + [99340] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(4770), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(4772), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(4774), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(4776), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(4778), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(4784), 1, + anon_sym_enum, + ACTIONS(4786), 1, sym_xhp_class_identifier, - ACTIONS(4820), 1, - anon_sym_RPAREN, - ACTIONS(4822), 1, - sym_inout_modifier, - STATE(2223), 1, + STATE(3616), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3775), 1, + STATE(3666), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3726), 1, sym_null, - STATE(3443), 2, + STATE(3756), 1, + sym__type_constant, + STATE(5307), 1, + sym_xhp_class_attribute, + STATE(3441), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(4780), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4140), 5, + STATE(4011), 6, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + sym_xhp_enum_type, + ACTIONS(4782), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282683,53 +275761,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100119] = 20, + [99428] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4824), 1, - anon_sym_LT_LT, - STATE(2223), 1, + ACTIONS(4806), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3267), 1, - sym_attribute_modifier, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(2993), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4166), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282750,53 +275829,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100206] = 20, + [99516] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4826), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4810), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(3443), 2, + STATE(3014), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282817,53 +275897,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100293] = 20, + [99604] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4828), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4812), 1, + anon_sym_RBRACE, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(3443), 2, + STATE(2960), 2, + sym_typed_enumerator, + aux_sym_enum_class_declaration_repeat1, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(5481), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282884,53 +275965,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100380] = 20, + [99692] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + anon_sym_RPAREN, + ACTIONS(4816), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3348), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5836), 5, + STATE(4055), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -282951,47 +276032,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100467] = 20, + [99779] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4830), 1, anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283018,47 +276099,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100554] = 20, + [99866] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4832), 1, + ACTIONS(4822), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283085,53 +276166,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100641] = 20, + [99953] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4834), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3177), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4339), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283152,120 +276233,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100728] = 20, + [100040] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, + ACTIONS(4826), 1, anon_sym_extends, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3351), 1, + STATE(3154), 1, sym_extends_clause, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5829), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [100815] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4836), 1, - anon_sym_RPAREN, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(6298), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283286,53 +276300,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100902] = 20, + [100127] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, + ACTIONS(4826), 1, anon_sym_extends, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3197), 1, + STATE(3157), 1, sym_extends_clause, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6192), 5, + STATE(6308), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283353,47 +276367,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [100989] = 20, + [100214] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4838), 1, - anon_sym_RPAREN, - ACTIONS(4840), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4828), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4049), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283420,53 +276434,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101076] = 20, + [100301] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4824), 1, - anon_sym_LT_LT, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4830), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3383), 1, - sym_attribute_modifier, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4287), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283487,47 +276501,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101163] = 20, + [100388] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4842), 1, - anon_sym_RPAREN, - ACTIONS(4844), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4832), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4055), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283554,53 +276568,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101250] = 20, + [100475] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4846), 1, - anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(2917), 1, + aux_sym_where_clause_repeat1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(3443), 2, + STATE(3481), 1, + sym_where_constraint, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(5022), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283621,47 +276635,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101337] = 20, + [100562] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4848), 1, + ACTIONS(4834), 1, anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4836), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4086), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283688,47 +276702,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101424] = 20, + [100649] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4850), 1, - anon_sym_RPAREN, - ACTIONS(4852), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4838), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4093), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283755,47 +276769,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101511] = 20, + [100736] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4854), 1, + ACTIONS(4840), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283822,53 +276836,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101598] = 20, + [100823] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4842), 1, + anon_sym_RPAREN, + ACTIONS(4844), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3366), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6191), 5, + STATE(4103), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -283889,47 +276903,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101685] = 20, + [100910] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4856), 1, + ACTIONS(4846), 1, anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4848), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4084), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -283956,53 +276970,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101772] = 20, + [100997] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4850), 1, + anon_sym_RPAREN, + ACTIONS(4852), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3191), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6175), 5, + STATE(4105), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284023,53 +277037,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101859] = 20, + [101084] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4858), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3182), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(6057), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284090,47 +277104,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [101946] = 20, + [101171] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4860), 1, + ACTIONS(4854), 1, anon_sym_RPAREN, - ACTIONS(4862), 1, + ACTIONS(4856), 1, sym_inout_modifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4137), 5, + STATE(4123), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284157,53 +277171,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102033] = 20, + [101258] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4864), 1, - anon_sym_RPAREN, - ACTIONS(4866), 1, - sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3196), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4032), 5, + STATE(6360), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284224,53 +277238,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102120] = 20, + [101345] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4868), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3199), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(6334), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -284291,47 +277305,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102207] = 20, + [101432] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4870), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284358,47 +277372,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102294] = 20, + [101519] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4872), 1, + ACTIONS(4860), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284425,47 +277439,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102381] = 20, + [101606] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4874), 1, + ACTIONS(4862), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284492,47 +277506,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102468] = 20, + [101693] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4876), 1, + ACTIONS(4864), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284559,47 +277573,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102555] = 20, + [101780] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4878), 1, - anon_sym_RPAREN, - ACTIONS(4880), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4866), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4062), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284626,47 +277640,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102642] = 20, + [101867] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4882), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284693,181 +277707,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102729] = 20, + [101954] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4824), 1, - anon_sym_LT_LT, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3398), 1, - sym_attribute_modifier, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4328), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [102816] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2695), 1, - sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3370), 1, - sym_extends_clause, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5861), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [102903] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4884), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284894,47 +277774,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [102990] = 20, + [102041] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4886), 1, - anon_sym_RPAREN, - ACTIONS(4888), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4872), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4064), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -284961,114 +277841,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103077] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2695), 1, - sym_xhp_class_identifier, - ACTIONS(4824), 1, - anon_sym_LT_LT, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3225), 1, - sym_attribute_modifier, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4392), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [103164] = 20, + [102128] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4890), 1, + ACTIONS(4874), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -285095,53 +277908,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103251] = 20, + [102215] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4876), 1, + anon_sym_RPAREN, + ACTIONS(4878), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3155), 1, - sym_extends_clause, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5944), 5, + STATE(4060), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285162,47 +277975,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103338] = 20, + [102302] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4892), 1, + ACTIONS(4880), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -285229,47 +278042,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103425] = 20, + [102389] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4894), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4884), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4059), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -285296,47 +278109,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103512] = 20, + [102476] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4896), 1, + ACTIONS(4886), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -285363,53 +278176,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103599] = 20, + [102563] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, ACTIONS(4824), 1, anon_sym_LT_LT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3261), 1, + STATE(3377), 1, sym_attribute_modifier, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4190), 5, + STATE(4241), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285430,187 +278243,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103686] = 20, + [102650] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3178), 1, - sym_extends_clause, + STATE(3419), 1, + sym_attribute_modifier, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(6074), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [103773] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4898), 1, - anon_sym_RPAREN, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, - sym_null, - STATE(3443), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4345), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1001), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [103860] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3504), 1, - sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4900), 1, - anon_sym_RPAREN, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4342), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285631,53 +278310,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [103947] = 20, + [102737] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4902), 1, - anon_sym_RPAREN, - ACTIONS(4904), 1, - sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3246), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4115), 5, + STATE(6194), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285698,47 +278377,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104034] = 20, + [102824] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4906), 1, + ACTIONS(4888), 1, anon_sym_RPAREN, - ACTIONS(4908), 1, + ACTIONS(4890), 1, sym_inout_modifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4092), 5, + STATE(4027), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -285765,53 +278444,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104121] = 20, + [102911] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, - anon_sym_extends, - STATE(2223), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3206), 1, - sym_extends_clause, + STATE(3243), 1, + sym_attribute_modifier, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5924), 5, + STATE(4301), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285832,47 +278511,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104208] = 20, + [102998] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4910), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -285899,53 +278578,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104295] = 20, + [103085] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4814), 1, + ACTIONS(4826), 1, anon_sym_extends, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3232), 1, + STATE(3415), 1, sym_extends_clause, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6297), 5, + STATE(6041), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -285966,47 +278645,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104382] = 20, + [103172] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4912), 1, + ACTIONS(4894), 1, anon_sym_RPAREN, - ACTIONS(4914), 1, + ACTIONS(4896), 1, sym_inout_modifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4114), 5, + STATE(4026), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286033,47 +278712,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104469] = 20, + [103259] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4916), 1, - anon_sym_RPAREN, - ACTIONS(4918), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4898), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4098), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286100,53 +278779,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104556] = 20, + [103346] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4920), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3253), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(6181), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286167,47 +278846,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104643] = 20, + [103433] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4922), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286234,53 +278913,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104730] = 20, + [103520] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4924), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3356), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4424), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286301,47 +278980,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104817] = 20, + [103607] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4926), 1, + ACTIONS(4902), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286368,47 +279047,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104904] = 20, + [103694] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4928), 1, + ACTIONS(4904), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286435,53 +279114,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [104991] = 20, + [103781] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4930), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4824), 1, + anon_sym_LT_LT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3236), 1, + sym_attribute_modifier, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4220), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286502,53 +279181,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105078] = 20, + [103868] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4906), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(2943), 1, - aux_sym_where_clause_repeat1, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(3503), 1, - sym_where_constraint, - STATE(3450), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5034), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286569,53 +279248,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105165] = 20, + [103955] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - ACTIONS(4932), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3271), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(6064), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286636,47 +279315,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105252] = 20, + [104042] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4934), 1, + ACTIONS(4908), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286703,53 +279382,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105339] = 20, + [104129] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4824), 1, - anon_sym_LT_LT, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4910), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3339), 1, - sym_attribute_modifier, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4332), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -286770,47 +279449,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105426] = 20, + [104216] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4936), 1, - anon_sym_RPAREN, - ACTIONS(4938), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4912), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4110), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286837,47 +279516,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105513] = 20, + [104303] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4940), 1, - anon_sym_RPAREN, - ACTIONS(4942), 1, + ACTIONS(4820), 1, sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4914), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4108), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286904,47 +279583,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105600] = 20, + [104390] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, + ACTIONS(4820), 1, sym_inout_modifier, - ACTIONS(4944), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3846), 1, sym_null, - STATE(3443), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -286971,116 +279650,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105687] = 19, + [104477] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4946), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, + STATE(3212), 1, + sym_extends_clause, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(4811), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [105771] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(4950), 1, - anon_sym_GT, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4895), 5, + STATE(5942), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287101,51 +279717,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105855] = 19, + [104564] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4952), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4918), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287166,51 +279784,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [105939] = 19, + [104651] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(4954), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4920), 1, + anon_sym_RPAREN, + ACTIONS(4922), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(3437), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4040), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287231,51 +279851,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106023] = 19, + [104738] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4956), 1, + ACTIONS(4924), 1, anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4926), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4039), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287296,51 +279918,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106107] = 19, + [104825] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4958), 1, + ACTIONS(4928), 1, anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4930), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4022), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287361,51 +279985,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106191] = 19, + [104912] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4960), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, + STATE(3414), 1, + sym_extends_clause, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5175), 5, + STATE(6056), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287426,51 +280052,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106275] = 19, + [104999] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(4962), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3176), 1, + sym_extends_clause, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(5804), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287491,51 +280119,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106359] = 19, + [105086] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4964), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, + STATE(3169), 1, + sym_extends_clause, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(5822), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287556,51 +280186,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106443] = 19, + [105173] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4966), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4932), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287621,51 +280253,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106527] = 19, + [105260] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4968), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4934), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4902), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287686,51 +280320,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106611] = 19, + [105347] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4970), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4936), 1, + anon_sym_RPAREN, + ACTIONS(4938), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4596), 5, + STATE(4025), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287751,51 +280387,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106695] = 19, + [105434] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4972), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4826), 1, + anon_sym_extends, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, + STATE(3184), 1, + sym_extends_clause, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4840), 5, + STATE(5930), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287816,51 +280454,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106779] = 19, + [105521] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(4974), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4940), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(3437), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4623), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287881,51 +280521,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106863] = 19, + [105608] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(1057), 1, - anon_sym_GT, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4942), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(3437), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5250), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -287946,51 +280588,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [106947] = 19, + [105695] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4976), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + ACTIONS(4944), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5246), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288011,45 +280655,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107031] = 19, + [105782] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4948), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -288076,51 +280720,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107115] = 19, + [105866] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(4980), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4950), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288141,45 +280785,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107199] = 19, + [105950] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(4982), 1, + ACTIONS(4952), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5231), 5, + STATE(5027), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -288206,51 +280850,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107283] = 19, + [106034] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4052), 1, + anon_sym_COLON_COLON, + ACTIONS(4954), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2887), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(2885), 37, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + [106092] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4984), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(4956), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288271,51 +280967,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107367] = 19, + [106176] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4818), 1, - sym_inout_modifier, - STATE(2223), 1, + ACTIONS(4958), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4345), 5, + STATE(4840), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288336,38 +281032,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107451] = 6, + [106260] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, - ACTIONS(4986), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2868), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2886), 37, - sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2730), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2732), 1, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_as, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(4960), 1, + anon_sym_GT, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3241), 1, + sym_null, + STATE(3452), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(3781), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288387,52 +281096,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [107509] = 19, + sym_xhp_identifier, + [106344] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4988), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(4962), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4869), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288453,51 +281162,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107593] = 19, + [106428] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(1057), 1, + anon_sym_GT, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4990), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4567), 5, + STATE(5255), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288518,51 +281227,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107677] = 19, + [106512] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4992), 1, + ACTIONS(4964), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288583,51 +281292,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107761] = 19, + [106596] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4994), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4966), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4811), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288648,51 +281357,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107845] = 19, + [106680] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4996), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(4968), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288713,51 +281422,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [107929] = 19, + [106764] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(3541), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(4970), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5241), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288778,45 +281487,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108013] = 19, + [106848] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(4998), 1, + ACTIONS(4972), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4573), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -288843,45 +281552,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108097] = 19, + [106932] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(5000), 1, + ACTIONS(4974), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5027), 5, + STATE(5090), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -288908,51 +281617,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108181] = 19, + [107016] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5002), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4976), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4596), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -288973,51 +281682,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108265] = 19, + [107100] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5004), 1, + ACTIONS(4978), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289038,51 +281747,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108349] = 19, + [107184] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5006), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4980), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4567), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289103,45 +281812,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108433] = 19, + [107268] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(5008), 1, + ACTIONS(4982), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -289168,51 +281877,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108517] = 19, + [107352] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5010), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4984), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289233,38 +281942,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108601] = 6, + [107436] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, - ACTIONS(4986), 1, - anon_sym_LT, - STATE(2788), 1, - sym_type_arguments, - ACTIONS(2859), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2857), 37, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2730), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2732), 1, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_as, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + ACTIONS(4986), 1, + anon_sym_RPAREN, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(3781), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289284,52 +282006,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [108659] = 19, + sym_xhp_identifier, + [107520] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5012), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4988), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5024), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289350,51 +282072,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108743] = 19, + [107604] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5014), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4990), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289415,51 +282137,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108827] = 19, + [107688] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5016), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4992), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4932), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289480,51 +282202,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108911] = 19, + [107772] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(5018), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(4994), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4817), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289545,51 +282267,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [108995] = 19, + [107856] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(5020), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5106), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289610,51 +282332,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109079] = 19, + [107940] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5022), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4998), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(5029), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289675,51 +282397,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109163] = 19, + [108024] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5024), 1, + ACTIONS(5000), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289740,51 +282462,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109247] = 19, + [108108] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(5026), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5002), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289805,51 +282527,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109331] = 19, + [108192] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5028), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(4820), 1, + sym_inout_modifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(3437), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4573), 5, + STATE(4237), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289870,51 +282592,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109415] = 19, + [108276] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5030), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(5004), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -289935,45 +282657,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109499] = 19, + [108360] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(5032), 1, + ACTIONS(5006), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -290000,51 +282722,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109583] = 19, + [108444] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5034), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(5008), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4979), 5, + STATE(5040), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290065,51 +282787,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109667] = 19, + [108528] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5036), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(5010), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290130,51 +282852,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109751] = 19, + [108612] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5038), 1, + ACTIONS(5012), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290195,51 +282917,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109835] = 19, + [108696] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(5040), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5014), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290260,51 +282982,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [109919] = 19, + [108780] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5042), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(5016), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290325,51 +283047,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110003] = 19, + [108864] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5044), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(5018), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4974), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290390,45 +283112,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110087] = 19, + [108948] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(5046), 1, + ACTIONS(5020), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -290455,51 +283177,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110171] = 19, + [109032] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5048), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4609), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290520,51 +283242,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110255] = 19, + [109116] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - ACTIONS(5050), 1, - anon_sym_GT, - STATE(2223), 1, + ACTIONS(5024), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4817), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290585,51 +283307,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110339] = 19, + [109200] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(5052), 1, - anon_sym_function, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5026), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4633), 5, + STATE(4981), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290650,45 +283372,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110423] = 19, + [109284] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(5054), 1, + ACTIONS(5028), 1, anon_sym_GT, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3437), 2, + STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -290715,51 +283437,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110507] = 19, + [109368] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5056), 1, + ACTIONS(5030), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290780,51 +283502,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110591] = 19, + [109452] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - ACTIONS(5058), 1, - anon_sym_RPAREN, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5032), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4996), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290845,51 +283567,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110675] = 19, + [109536] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5060), 1, + ACTIONS(5034), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290910,51 +283632,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110759] = 19, + [109620] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5062), 1, + ACTIONS(5036), 1, anon_sym_function, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4864), 5, + STATE(4969), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -290975,49 +283697,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110843] = 18, + [109704] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6382), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291038,49 +283762,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [110924] = 18, + [109788] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5040), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6241), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291101,49 +283827,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111005] = 18, + [109872] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5042), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5931), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291164,49 +283892,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111086] = 18, + [109956] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5044), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5933), 5, + STATE(5095), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291227,49 +283957,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111167] = 18, + [110040] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5046), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5029), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291290,49 +284022,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111248] = 18, + [110124] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5048), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4048), 5, + STATE(4808), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291353,49 +284087,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111329] = 18, + [110208] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5050), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5986), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291416,49 +284152,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111410] = 18, + [110292] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5052), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4049), 5, + STATE(4897), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291479,49 +284217,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111491] = 18, + [110376] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5054), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5948), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291542,49 +284282,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111572] = 18, + [110460] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4052), 1, + anon_sym_COLON_COLON, + ACTIONS(4954), 1, + anon_sym_LT, + STATE(2798), 1, + sym_type_arguments, + ACTIONS(2876), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(2874), 37, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + [110518] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(3182), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5608), 5, + STATE(5254), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291605,49 +284399,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111653] = 18, + [110602] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5056), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5039), 5, + STATE(5162), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291668,49 +284464,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111734] = 18, + [110686] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5058), 1, + anon_sym_function, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6040), 5, + STATE(5078), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291731,49 +284529,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111815] = 18, + [110770] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + ACTIONS(5060), 1, + anon_sym_GT, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6050), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291794,49 +284594,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111896] = 18, + [110854] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(5062), 1, + anon_sym_RPAREN, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6125), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291857,49 +284659,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [111977] = 18, + [110938] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5594), 5, + STATE(6032), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291920,49 +284722,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112058] = 18, + [111019] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6037), 5, + STATE(5866), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -291983,49 +284785,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112139] = 18, + [111100] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6036), 5, + STATE(6297), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292046,49 +284848,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112220] = 18, + [111181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2837), 6, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_EQ, + anon_sym_LBRACK, + ACTIONS(2839), 37, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + [111232] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4061), 5, + STATE(6300), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292109,49 +284959,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112301] = 18, + [111313] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6153), 5, + STATE(6302), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292172,49 +285022,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112382] = 18, + [111394] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4062), 5, + STATE(5928), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292235,49 +285085,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112463] = 18, + [111475] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6163), 5, + STATE(5215), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292298,49 +285148,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112544] = 18, + [111556] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4089), 5, + STATE(6105), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292361,49 +285211,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112625] = 18, + [111637] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6187), 5, + STATE(6315), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292424,49 +285274,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112706] = 18, + [111718] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6041), 5, + STATE(5344), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292487,49 +285337,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112787] = 18, + [111799] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6024), 5, + STATE(5227), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292550,49 +285400,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112868] = 18, + [111880] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6056), 5, + STATE(5810), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292613,49 +285463,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [112949] = 18, + [111961] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6064), 5, + STATE(5161), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292676,49 +285526,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113030] = 18, + [112042] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5098), 5, + STATE(5919), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292739,49 +285589,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113111] = 18, + [112123] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6021), 5, + STATE(5979), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292802,49 +285652,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113192] = 18, + [112204] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5564), 5, + STATE(5326), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292865,49 +285715,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113273] = 18, + [112285] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5954), 5, + STATE(5812), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -292928,43 +285778,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113354] = 18, + [112366] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3241), 1, sym_null, - STATE(3450), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5524), 5, + STATE(5658), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -292991,49 +285841,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113435] = 18, + [112447] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5108), 5, + STATE(4332), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293054,49 +285904,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113516] = 18, + [112528] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6225), 5, + STATE(4986), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293117,49 +285967,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113597] = 18, + [112609] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6015), 5, + STATE(5846), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293180,43 +286030,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113678] = 18, + [112690] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5510), 5, + STATE(5787), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [112771] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3241), 1, + sym_null, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5692), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, @@ -293243,49 +286156,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113759] = 18, + [112852] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5802), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [112933] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6198), 5, + STATE(4241), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293306,49 +286282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113840] = 18, + [113014] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4597), 5, + STATE(4995), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293369,49 +286345,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [113921] = 18, + [113095] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6070), 5, + STATE(5827), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293432,49 +286408,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114002] = 18, + [113176] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6172), 5, + STATE(5830), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293495,49 +286471,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114083] = 18, + [113257] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6200), 5, + STATE(5678), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293558,49 +286534,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114164] = 18, + [113338] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6206), 5, + STATE(6145), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293621,49 +286597,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114245] = 18, + [113419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(5068), 1, + anon_sym_const, + ACTIONS(5066), 7, + sym_variable, anon_sym_BSLASH, - ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(3504), 1, sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3775), 1, - sym_qualified_identifier, - STATE(3827), 1, - sym_null, - STATE(3443), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(5064), 35, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_static, + anon_sym_function, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4092), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293683,50 +286638,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, sym_xhp_identifier, - [114326] = 18, + [113472] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6218), 5, + STATE(5925), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293747,49 +286709,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114407] = 18, + [113553] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6183), 5, + STATE(5908), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293810,49 +286772,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114488] = 18, + [113634] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6185), 5, + STATE(5642), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293873,49 +286835,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114569] = 18, + [113715] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5165), 5, + STATE(5934), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293936,49 +286898,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114650] = 18, + [113796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(5073), 7, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(2653), 1, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5071), 36, sym_identifier, - ACTIONS(2657), 1, anon_sym_shape, - ACTIONS(2659), 1, anon_sym_namespace, - ACTIONS(2663), 1, + anon_sym_static, + anon_sym_function, + anon_sym_const, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + [113847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5077), 7, + sym_variable, anon_sym_BSLASH, - ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(5075), 36, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_static, + anon_sym_function, + anon_sym_const, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + [113898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5081), 7, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5079), 36, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_static, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5984), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -293998,50 +287034,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, sym_xhp_identifier, - [114731] = 18, + [113949] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6219), 5, + STATE(5780), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294062,49 +287105,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114812] = 18, + [114030] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6195), 5, + STATE(5905), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294125,49 +287168,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [114893] = 18, + [114111] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5678), 5, + STATE(5646), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [114192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5085), 7, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5083), 36, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_static, + anon_sym_function, + anon_sym_const, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294187,50 +287271,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, sym_xhp_identifier, - [114974] = 18, + [114243] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4107), 5, + STATE(4953), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294251,49 +287342,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115055] = 18, + [114324] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5437), 5, + STATE(6373), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294314,49 +287405,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115136] = 18, + [114405] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6066), 5, + STATE(5687), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294377,49 +287468,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115217] = 18, + [114486] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5923), 5, + STATE(6353), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294440,49 +287531,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115298] = 18, + [114567] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5173), 5, + STATE(6348), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294503,49 +287594,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115379] = 18, + [114648] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6222), 5, + STATE(5228), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294566,49 +287657,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115460] = 18, + [114729] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6223), 5, + STATE(5602), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294629,49 +287720,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115541] = 18, + [114810] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6224), 5, + STATE(6329), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294692,49 +287783,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115622] = 18, + [114891] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3241), 1, + sym_null, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5364), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1055), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [114972] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5754), 5, + STATE(5924), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294755,49 +287909,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115703] = 18, + [115053] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4108), 5, + STATE(5959), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294818,49 +287972,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115784] = 18, + [115134] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4113), 5, + STATE(5208), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294881,49 +288035,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115865] = 18, + [115215] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5978), 5, + STATE(4471), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -294944,49 +288098,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [115946] = 18, + [115296] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, + sym_qualified_identifier, + STATE(3241), 1, + sym_null, + STATE(3454), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5423), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1055), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [115377] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5779), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [115458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5089), 7, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5087), 36, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_static, + anon_sym_function, + anon_sym_const, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + [115509] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(5091), 1, + sym_identifier, + ACTIONS(5093), 1, + anon_sym_shape, + ACTIONS(5095), 1, + anon_sym_namespace, + ACTIONS(5097), 1, + anon_sym_BSLASH, + ACTIONS(5099), 1, + anon_sym_LPAREN, + ACTIONS(5105), 1, + sym_xhp_class_identifier, + STATE(3439), 1, + sym_qualified_identifier, + STATE(3451), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3458), 1, + sym_null, + STATE(3472), 1, + sym__type_constant, + STATE(3453), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(5101), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5580), 5, + STATE(3515), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(5103), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295007,49 +288335,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116027] = 18, + [115590] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4114), 5, + STATE(5935), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295070,49 +288398,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116108] = 18, + [115671] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5973), 5, + STATE(5401), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295133,49 +288461,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116189] = 18, + [115752] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5584), 5, + STATE(6072), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295196,49 +288524,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116270] = 18, + [115833] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(5064), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(5066), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(5068), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(5070), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(5072), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(5078), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(3448), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(3453), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(3468), 1, + STATE(3547), 1, sym_null, - STATE(3473), 1, - sym__type_constant, - STATE(3449), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(5074), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3492), 5, + STATE(5870), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5076), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295259,49 +288587,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116351] = 18, + [115914] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5768), 5, + STATE(5873), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295322,49 +288650,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116432] = 18, + [115995] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5423), 5, + STATE(6330), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295385,49 +288713,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116513] = 18, + [116076] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6113), 5, + STATE(5165), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295448,49 +288776,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116594] = 18, + [116157] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4136), 5, + STATE(5032), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295511,49 +288839,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116675] = 18, + [116238] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6068), 5, + STATE(5947), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295574,49 +288902,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116756] = 18, + [116319] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4332), 5, + STATE(4453), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295637,49 +288965,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116837] = 18, + [116400] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5422), 5, + STATE(5784), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295700,49 +289028,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116918] = 18, + [116481] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3241), 1, sym_null, - STATE(3443), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4137), 5, + STATE(5608), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295763,49 +289091,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [116999] = 18, + [116562] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6276), 5, + STATE(6165), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295826,49 +289154,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117080] = 18, + [116643] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6137), 5, + STATE(5962), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295889,49 +289217,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117161] = 18, + [116724] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5790), 5, + STATE(5039), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -295952,49 +289280,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117242] = 18, + [116805] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5798), 5, + STATE(4062), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296015,49 +289343,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117323] = 18, + [116886] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6292), 5, + STATE(5786), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296078,49 +289406,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117404] = 18, + [116967] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5802), 5, + STATE(4030), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296141,49 +289469,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117485] = 18, + [117048] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5778), 5, + STATE(5437), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296204,49 +289532,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117566] = 18, + [117129] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6300), 5, + STATE(4183), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296267,49 +289595,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117647] = 18, + [117210] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4958), 5, + STATE(5855), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296330,49 +289658,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117728] = 18, + [117291] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6302), 5, + STATE(4027), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296393,49 +289721,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117809] = 18, + [117372] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5214), 5, + STATE(5594), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296456,34 +289784,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [117890] = 3, + [117453] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 6, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_EQ, - anon_sym_LBRACK, - ACTIONS(2816), 37, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2730), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2732), 1, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_as, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6197), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296503,50 +289846,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [117941] = 18, + sym_xhp_identifier, + [117534] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5953), 5, + STATE(4214), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296567,49 +289910,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118022] = 18, + [117615] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3760), 1, - anon_sym_BSLASH, - ACTIONS(5080), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(5082), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(5084), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(5086), 1, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(5090), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2218), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2354), 1, - sym_qualified_identifier, - STATE(2593), 1, + STATE(2623), 1, sym__type_constant, - STATE(2596), 1, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, sym_null, - STATE(3445), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1141), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(2738), 5, + STATE(4021), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5088), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296630,49 +289973,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118103] = 18, + [117696] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4955), 5, + STATE(5791), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296693,49 +290036,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118184] = 18, + [117777] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4022), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296756,49 +290099,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118265] = 18, + [117858] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6303), 5, + STATE(4038), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296819,49 +290162,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118346] = 18, + [117939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2887), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(2885), 37, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + [117994] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6323), 5, + STATE(5793), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296882,49 +290275,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118427] = 18, + [118075] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5344), 5, + STATE(4236), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -296945,49 +290338,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118508] = 18, + [118156] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5225), 5, + STATE(5797), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297008,49 +290401,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118589] = 18, + [118237] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6189), 5, + STATE(5147), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297071,49 +290464,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118670] = 18, + [118318] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6190), 5, + STATE(6189), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297134,49 +290527,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118751] = 18, + [118399] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(5064), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(5066), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(5068), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(5070), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(5072), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(5078), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(3448), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(3453), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(3468), 1, + STATE(3547), 1, sym_null, - STATE(3473), 1, - sym__type_constant, - STATE(3449), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(5074), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3511), 5, + STATE(5803), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5076), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297197,49 +290590,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118832] = 18, + [118480] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6160), 5, + STATE(6119), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297260,49 +290653,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118913] = 18, + [118561] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5805), 5, + STATE(5806), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297323,49 +290716,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [118994] = 18, + [118642] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6088), 5, + STATE(4039), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297386,49 +290779,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119075] = 18, + [118723] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6082), 5, + STATE(6116), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297449,49 +290842,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119156] = 18, + [118804] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5785), 5, + STATE(6183), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297512,49 +290905,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119237] = 18, + [118885] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6081), 5, + STATE(6175), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297575,49 +290968,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119318] = 18, + [118966] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5930), 5, + STATE(5832), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297638,49 +291031,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119399] = 18, + [119047] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5326), 5, + STATE(6158), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297701,49 +291094,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119480] = 18, + [119128] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6337), 5, + STATE(4054), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297764,49 +291157,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119561] = 18, + [119209] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6073), 5, + STATE(6066), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297827,49 +291220,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119642] = 18, + [119290] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4230), 5, + STATE(6169), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297890,49 +291283,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119723] = 18, + [119371] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6427), 5, + STATE(5917), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -297953,49 +291346,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119804] = 18, + [119452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_LT, + STATE(2798), 1, + sym_type_arguments, + ACTIONS(2876), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(2874), 37, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + [119507] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6452), 5, + STATE(5978), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298016,49 +291459,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119885] = 18, + [119588] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5834), 5, + STATE(4262), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298079,49 +291522,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [119966] = 18, + [119669] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6457), 5, + STATE(5847), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298142,34 +291585,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120047] = 3, + [119750] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 6, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_EQ, - anon_sym_LBRACK, - ACTIONS(2824), 37, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2730), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2732), 1, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_as, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6301), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298189,50 +291647,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [120098] = 18, + sym_xhp_identifier, + [119831] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4392), 5, + STATE(6323), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298253,49 +291711,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120179] = 18, + [119912] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6399), 5, + STATE(5854), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298316,49 +291774,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120260] = 18, + [119993] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6373), 5, + STATE(4276), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298379,49 +291837,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120341] = 18, + [120074] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6035), 5, + STATE(6388), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298442,49 +291900,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120422] = 18, + [120155] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6357), 5, + STATE(5916), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298505,49 +291963,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120503] = 18, + [120236] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6353), 5, + STATE(6372), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298568,49 +292026,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120584] = 18, + [120317] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6346), 5, + STATE(6053), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298631,49 +292089,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120665] = 18, + [120398] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + ACTIONS(4946), 1, + sym_identifier, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, STATE(3452), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6341), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298694,49 +292152,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120746] = 18, + [120479] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2657), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3846), 1, sym_null, - STATE(3437), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3796), 5, + STATE(4055), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298757,49 +292215,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120827] = 18, + [120560] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6010), 5, + STATE(6232), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298820,49 +292278,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120908] = 18, + [120641] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6340), 5, + STATE(5903), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298883,49 +292341,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [120989] = 18, + [120722] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6339), 5, + STATE(6215), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -298946,49 +292404,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121070] = 18, + [120803] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6029), 5, + STATE(4298), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299009,49 +292467,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121151] = 18, + [120884] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6028), 5, + STATE(6201), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299072,49 +292530,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121232] = 18, + [120965] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5879), 5, + STATE(5859), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299135,49 +292593,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121313] = 18, + [121046] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6020), 5, + STATE(6079), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299198,49 +292656,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121394] = 18, + [121127] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5935), 5, + STATE(5864), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299261,97 +292719,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2826), 6, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_EQ, - anon_sym_LBRACK, - ACTIONS(2828), 37, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_as, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - anon_sym_super, - [121526] = 18, + [121208] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6298), 5, + STATE(5899), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299372,49 +292782,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121607] = 18, + [121289] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6169), 5, + STATE(5828), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299435,49 +292845,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121688] = 18, + [121370] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6031), 5, + STATE(5691), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299498,112 +292908,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121769] = 18, + [121451] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(5982), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [121850] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, - sym_xhp_class_identifier, - ACTIONS(4948), 1, - sym_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, - sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3437), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4212), 5, + STATE(5711), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299624,49 +292971,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [121931] = 18, + [121532] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4276), 5, + STATE(5762), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299687,49 +293034,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122012] = 18, + [121613] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4032), 5, + STATE(5894), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299750,49 +293097,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122093] = 18, + [121694] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5919), 5, + STATE(5875), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299813,49 +293160,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122174] = 18, + [121775] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6267), 5, + STATE(5837), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299876,49 +293223,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122255] = 18, + [121856] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6263), 5, + STATE(5869), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -299939,49 +293286,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122336] = 18, + [121937] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6409), 5, + STATE(5964), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300002,49 +293349,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122417] = 18, + [122018] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6065), 5, + STATE(6015), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300065,49 +293412,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122498] = 18, + [122099] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4416), 5, + STATE(6021), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300128,112 +293475,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122579] = 18, + [122180] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - STATE(6304), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [122660] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5094), 1, - anon_sym_shape, - ACTIONS(5096), 1, - anon_sym_LPAREN, - ACTIONS(5100), 1, - sym_xhp_class_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(1789), 1, - sym_qualified_identifier, - STATE(1805), 1, - sym__type_constant, - STATE(1809), 1, + STATE(3547), 1, sym_null, - STATE(3439), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1229), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(1837), 5, + STATE(5954), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5098), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300254,49 +293538,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122741] = 18, + [122261] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5275), 5, + STATE(5937), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300317,49 +293601,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122822] = 18, + [122342] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5976), 5, + STATE(5852), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300380,49 +293664,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122903] = 18, + [122423] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2913), 1, - anon_sym_BSLASH, - ACTIONS(5102), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(5106), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(5108), 1, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(5112), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(1806), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(1864), 1, - sym_qualified_identifier, - STATE(1882), 1, + STATE(2623), 1, sym__type_constant, - STATE(1885), 1, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, sym_null, - STATE(3451), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(91), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(1935), 5, + STATE(5850), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5110), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300443,49 +293727,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [122984] = 18, + [122504] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5975), 5, + STATE(5790), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300506,49 +293790,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123065] = 18, + [122585] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6215), 5, + STATE(5849), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300569,49 +293853,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123146] = 18, + [122666] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5967), 5, + STATE(5842), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300632,49 +293916,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123227] = 18, + [122747] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6177), 5, + STATE(5841), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300695,49 +293979,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123308] = 18, + [122828] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6181), 5, + STATE(5805), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300758,49 +294042,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123389] = 18, + [122909] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6320), 5, + STATE(5783), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300821,49 +294105,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123470] = 18, + [122990] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5912), 5, + STATE(5756), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300884,49 +294168,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123551] = 18, + [123071] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4355), 5, + STATE(5555), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -300947,49 +294231,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123632] = 18, + [123152] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5641), 5, + STATE(5815), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301010,49 +294294,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123713] = 18, + [123233] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6156), 5, + STATE(5270), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301073,49 +294357,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123794] = 18, + [123314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2814), 6, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_EQ, + anon_sym_LBRACK, + ACTIONS(2816), 37, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_as, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + anon_sym_super, + [123365] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6362), 5, + STATE(5874), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301136,49 +294468,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123875] = 18, + [123446] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4998), 5, + STATE(4088), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301199,49 +294531,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [123956] = 18, + [123527] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6356), 5, + STATE(5877), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301262,49 +294594,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124037] = 18, + [123608] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6345), 5, + STATE(4334), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [123689] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(5091), 1, + sym_identifier, + ACTIONS(5093), 1, + anon_sym_shape, + ACTIONS(5095), 1, + anon_sym_namespace, + ACTIONS(5097), 1, + anon_sym_BSLASH, + ACTIONS(5099), 1, + anon_sym_LPAREN, + ACTIONS(5105), 1, + sym_xhp_class_identifier, + STATE(3439), 1, + sym_qualified_identifier, + STATE(3451), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3458), 1, + sym_null, + STATE(3472), 1, + sym__type_constant, + STATE(3453), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(5101), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3512), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(5103), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301325,49 +294720,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124118] = 18, + [123770] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5228), 5, + STATE(6077), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301388,49 +294783,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124199] = 18, + [123851] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6148), 5, + STATE(5879), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301451,49 +294846,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124280] = 18, + [123932] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(5064), 1, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(5981), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [124013] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(5066), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(5068), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(5070), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(5072), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(5078), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(3448), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(3453), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3093), 1, sym_qualified_identifier, - STATE(3468), 1, + STATE(3241), 1, sym_null, - STATE(3473), 1, - sym__type_constant, - STATE(3449), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(5074), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(3516), 5, + STATE(5510), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5076), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301514,49 +294972,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124361] = 18, + [124094] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5929), 5, + STATE(5913), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301577,49 +295035,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124442] = 18, + [124175] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6141), 5, + STATE(5921), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301640,49 +295098,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124523] = 18, + [124256] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5922), 5, + STATE(6148), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301703,49 +295161,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124604] = 18, + [124337] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6329), 5, + STATE(4123), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301766,49 +295224,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124685] = 18, + [124418] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5363), 5, + STATE(4312), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301829,49 +295287,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124766] = 18, + [124499] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6138), 5, + STATE(5988), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301892,49 +295350,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124847] = 18, + [124580] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6136), 5, + STATE(6230), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -301955,49 +295413,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [124928] = 18, + [124661] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5208), 5, + STATE(5922), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302018,49 +295476,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125009] = 18, + [124742] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5921), 5, + STATE(6328), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302081,49 +295539,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125090] = 18, + [124823] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6135), 5, + STATE(6292), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302144,49 +295602,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125171] = 18, + [124904] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(3755), 1, + anon_sym_BSLASH, + ACTIONS(5107), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(5109), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(5111), 1, anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(5113), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(5117), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2195), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, + STATE(2354), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(2560), 1, sym_null, - STATE(3452), 2, + STATE(2562), 1, + sym__type_constant, + STATE(3445), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(1135), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6132), 5, + STATE(2736), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(5115), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302207,49 +295665,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125252] = 18, + [124985] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6131), 5, + STATE(6356), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302270,49 +295728,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125333] = 18, + [125066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(5121), 7, + sym_variable, anon_sym_BSLASH, - ACTIONS(2671), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(2695), 1, sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(5119), 36, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_static, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6150), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302332,50 +295768,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, sym_xhp_identifier, - [125414] = 18, + [125117] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5913), 5, + STATE(6450), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302396,49 +295839,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125495] = 18, + [125198] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6077), 5, + STATE(5929), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302459,49 +295902,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125576] = 18, + [125279] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5417), 5, + STATE(6068), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302522,49 +295965,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125657] = 18, + [125360] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6230), 5, + STATE(6457), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302585,49 +296028,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125738] = 18, + [125441] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3111), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(3547), 1, sym_null, - STATE(3450), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5692), 5, + STATE(5104), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302648,49 +296091,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125819] = 18, + [125522] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3698), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3093), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3241), 1, sym_null, - STATE(3452), 2, + STATE(3454), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5875), 5, + STATE(5524), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1055), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302711,49 +296154,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125900] = 18, + [125603] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4434), 5, + STATE(6294), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302774,49 +296217,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [125981] = 18, + [125684] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4094), 5, + STATE(6268), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302837,49 +296280,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126062] = 18, + [125765] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5841), 5, + STATE(6265), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302900,49 +296343,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126143] = 18, + [125846] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5664), 5, + STATE(4082), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -302963,49 +296406,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126224] = 18, + [125927] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4985), 5, + STATE(6262), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303026,49 +296469,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126305] = 18, + [126008] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5215), 5, + STATE(6256), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303089,49 +296532,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126386] = 18, + [126089] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4192), 5, + STATE(6326), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303152,33 +296595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126467] = 5, + [126170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2868), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2886), 37, + ACTIONS(5125), 7, + sym_variable, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(5123), 36, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_as, + anon_sym_static, + anon_sym_function, + anon_sym_const, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -303201,50 +296635,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [126522] = 18, + anon_sym_async, + anon_sym_abstract, + sym_final_modifier, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_xhp_identifier, + [126221] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4161), 5, + STATE(6123), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303265,49 +296706,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126603] = 18, + [126302] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5833), 5, + STATE(4218), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303328,49 +296769,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126684] = 18, + [126383] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5832), 5, + STATE(6125), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303391,17 +296832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126765] = 3, + [126464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 6, + ACTIONS(2818), 6, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_GT, anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(2832), 37, + ACTIONS(2820), 37, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -303439,49 +296880,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, anon_sym_super, - [126816] = 18, + [126515] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5823), 5, + STATE(6103), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303502,49 +296943,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126897] = 18, + [126596] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6461), 5, + STATE(4084), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303565,49 +297006,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [126978] = 18, + [126677] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5852), 5, + STATE(6126), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303628,49 +297069,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127059] = 18, + [126758] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5837), 5, + STATE(6127), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303691,49 +297132,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127140] = 18, + [126839] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5877), 5, + STATE(3781), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303754,49 +297195,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127221] = 18, + [126920] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5874), 5, + STATE(6129), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303817,49 +297258,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127302] = 18, + [127001] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6011), 5, + STATE(6132), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303880,49 +297321,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127383] = 18, + [127082] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6119), 5, + STATE(4342), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -303943,49 +297384,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127464] = 18, + [127163] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5529), 5, + STATE(5967), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304006,49 +297447,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127545] = 18, + [127244] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5782), 5, + STATE(5769), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304069,49 +297510,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127626] = 18, + [127325] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5786), 5, + STATE(5975), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304132,49 +297573,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127707] = 18, + [127406] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5890), 5, + STATE(6143), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304195,49 +297636,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127788] = 18, + [127487] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5791), 5, + STATE(6149), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304258,49 +297699,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127869] = 18, + [127568] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5793), 5, + STATE(5976), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304321,49 +297762,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [127950] = 18, + [127649] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6116), 5, + STATE(5982), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304384,49 +297825,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128031] = 18, + [127730] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5955), 5, + STATE(5794), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304447,49 +297888,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128112] = 18, + [127811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2822), 6, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_EQ, + anon_sym_LBRACK, + ACTIONS(2824), 37, sym_identifier, - ACTIONS(2657), 1, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, - ACTIONS(2659), 1, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2695), 1, - sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, - sym_qualified_identifier, - STATE(3546), 1, - sym_null, - STATE(3452), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, + anon_sym_as, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5797), 5, - sym_type_specifier, - sym_tuple_type_specifier, - sym_function_type_specifier, - sym_shape_type_specifier, - sym_type_constant, - ACTIONS(2685), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304509,37 +297935,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [128193] = 5, + anon_sym_super, + [127862] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, - anon_sym_LT, - STATE(2788), 1, - sym_type_arguments, - ACTIONS(2859), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2857), 37, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2730), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2732), 1, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, - anon_sym_as, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(4523), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304559,50 +297998,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_super, - [128248] = 18, + sym_xhp_identifier, + [127943] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5869), 5, + STATE(6155), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304623,49 +298062,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128329] = 18, + [128024] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5839), 5, + STATE(4564), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304686,49 +298125,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128410] = 18, + [128105] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(1117), 1, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(1123), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2681), 1, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(5114), 1, - sym_identifier, - ACTIONS(5116), 1, - anon_sym_shape, - ACTIONS(5118), 1, - anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(1841), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2136), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, sym_qualified_identifier, - STATE(2193), 1, + STATE(3547), 1, sym_null, - STATE(2195), 1, - sym__type_constant, - STATE(3455), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1199), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(2342), 5, + STATE(6190), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(5120), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304749,49 +298188,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128491] = 18, + [128186] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5762), 5, + STATE(6076), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304812,49 +298251,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128572] = 18, + [128267] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(1111), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(1117), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(5127), 1, + sym_identifier, + ACTIONS(5129), 1, + anon_sym_shape, + ACTIONS(5131), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(1871), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, + STATE(2157), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(2173), 1, sym_null, - STATE(3452), 2, + STATE(2178), 1, + sym__type_constant, + STATE(3444), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(1239), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5803), 5, + STATE(2322), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(5133), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304875,49 +298314,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128653] = 18, + [128348] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4267), 5, + STATE(6195), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -304938,49 +298377,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128734] = 18, + [128429] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2909), 1, + anon_sym_BSLASH, + ACTIONS(5137), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(5139), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(5141), 1, anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(5147), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(1801), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3544), 1, + STATE(1849), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(1880), 1, + sym__type_constant, + STATE(1885), 1, sym_null, - STATE(3452), 2, + STATE(3443), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5806), 5, + STATE(1938), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(5145), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305001,49 +298440,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128815] = 18, + [128510] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6013), 5, + STATE(6276), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305064,49 +298503,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128896] = 18, + [128591] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6033), 5, + STATE(6225), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305127,49 +298566,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [128977] = 18, + [128672] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(5149), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(5151), 1, anon_sym_shape, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(5153), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(3671), 1, + ACTIONS(5157), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, - sym__type_constant, - STATE(3111), 1, + STATE(1793), 1, sym_qualified_identifier, - STATE(3346), 1, + STATE(1795), 1, + sym__type_constant, + STATE(1796), 1, sym_null, - STATE(3450), 2, + STATE(3455), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(1195), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5711), 5, + STATE(1810), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1055), 20, + ACTIONS(5155), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305190,49 +298629,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129058] = 18, + [128753] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4272), 5, + STATE(4220), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305253,49 +298692,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129139] = 18, + [128834] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4286), 5, + STATE(6007), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305316,49 +298755,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129220] = 18, + [128915] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5864), 5, + STATE(6345), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305379,49 +298818,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129301] = 18, + [128996] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6152), 5, + STATE(5910), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305442,49 +298881,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129382] = 18, + [129077] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4190), 5, + STATE(6254), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305505,49 +298944,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129463] = 18, + [129158] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6162), 5, + STATE(6004), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305568,49 +299007,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129544] = 18, + [129239] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5993), 5, + STATE(5097), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305631,49 +299070,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129625] = 18, + [129320] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6249), 5, + STATE(6020), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305694,49 +299133,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129706] = 18, + [129401] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6257), 5, + STATE(6028), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305757,49 +299196,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129787] = 18, + [129482] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5867), 5, + STATE(6218), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305820,49 +299259,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129868] = 18, + [129563] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6305), 5, + STATE(6131), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305883,49 +299322,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [129949] = 18, + [129644] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4425), 5, + STATE(6288), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -305946,49 +299385,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130030] = 18, + [129725] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6268), 5, + STATE(6029), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306009,49 +299448,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130111] = 18, + [129806] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5883), 5, + STATE(6166), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306072,49 +299511,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130192] = 18, + [129887] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5855), 5, + STATE(6006), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306135,49 +299574,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130273] = 18, + [129968] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6294), 5, + STATE(5951), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306198,49 +299637,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130354] = 18, + [130049] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3544), 1, + STATE(3800), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3846), 1, sym_null, - STATE(3452), 2, + STATE(3448), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5844), 5, + STATE(4102), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(1001), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306261,49 +299700,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130435] = 18, + [130130] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(3184), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, + sym__type_constant, + STATE(3800), 1, + sym_qualified_identifier, + STATE(3846), 1, + sym_null, + STATE(3448), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(4103), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(1001), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [130211] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5859), 5, + STATE(6293), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306324,49 +299826,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130516] = 18, + [130292] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5854), 5, + STATE(6335), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306387,49 +299889,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130597] = 18, + [130373] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4287), 5, + STATE(6234), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306450,49 +299952,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130678] = 18, + [130454] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5917), 5, + STATE(6035), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306513,49 +300015,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130759] = 18, + [130535] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6396), 5, + STATE(6137), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306576,49 +300078,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130840] = 18, + [130616] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5905), 5, + STATE(6427), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306639,49 +300141,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [130921] = 18, + [130697] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6327), 5, + STATE(6336), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306702,49 +300204,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131002] = 18, + [130778] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5900), 5, + STATE(6337), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306765,49 +300267,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131083] = 18, + [130859] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5899), 5, + STATE(6338), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306828,49 +300330,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131164] = 18, + [130940] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5896), 5, + STATE(6339), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306891,49 +300393,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131245] = 18, + [131021] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5860), 5, + STATE(6340), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -306954,49 +300456,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131326] = 18, + [131102] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6334), 5, + STATE(6346), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [131183] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(5091), 1, + sym_identifier, + ACTIONS(5093), 1, + anon_sym_shape, + ACTIONS(5095), 1, + anon_sym_namespace, + ACTIONS(5097), 1, + anon_sym_BSLASH, + ACTIONS(5099), 1, + anon_sym_LPAREN, + ACTIONS(5105), 1, + sym_xhp_class_identifier, + STATE(3439), 1, + sym_qualified_identifier, + STATE(3451), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3458), 1, + sym_null, + STATE(3472), 1, + sym__type_constant, + STATE(3453), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(5101), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + STATE(3497), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(5103), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307017,49 +300582,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131407] = 18, + [131264] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5850), 5, + STATE(6369), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307080,49 +300645,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131488] = 18, + [131345] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6348), 5, + STATE(6451), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307143,49 +300708,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131569] = 18, + [131426] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5843), 5, + STATE(6383), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307206,49 +300771,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131650] = 18, + [131507] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6388), 5, + STATE(6452), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307269,49 +300834,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131731] = 18, + [131588] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5774), 5, + STATE(6073), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307332,49 +300897,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131812] = 18, + [131669] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5815), 5, + STATE(6412), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307395,49 +300960,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131893] = 18, + [131750] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3504), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, - STATE(3775), 1, + STATE(3544), 1, sym_qualified_identifier, - STATE(3827), 1, + STATE(3547), 1, sym_null, - STATE(3443), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(4204), 5, + STATE(5765), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(1001), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307458,49 +301023,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [131974] = 18, + [131831] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6386), 5, + STATE(6037), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307521,49 +301086,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132055] = 18, + [131912] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5847), 5, + STATE(5764), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307584,49 +301149,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132136] = 18, + [131993] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5810), 5, + STATE(6081), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307647,49 +301212,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132217] = 18, + [132074] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(6227), 5, + STATE(6462), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307710,49 +301275,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132298] = 18, + [132155] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2726), 1, sym_identifier, - ACTIONS(2657), 1, + ACTIONS(2730), 1, anon_sym_shape, - ACTIONS(2659), 1, + ACTIONS(2732), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(2736), 1, anon_sym_BSLASH, - ACTIONS(2671), 1, + ACTIONS(2744), 1, anon_sym_LPAREN, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2695), 1, + ACTIONS(2768), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(2653), 1, + STATE(2623), 1, sym__type_constant, STATE(3544), 1, sym_qualified_identifier, - STATE(3546), 1, + STATE(3547), 1, sym_null, - STATE(3452), 2, + STATE(3440), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - STATE(5784), 5, + STATE(4301), 5, sym_type_specifier, sym_tuple_type_specifier, sym_function_type_specifier, sym_shape_type_specifier, sym_type_constant, - ACTIONS(2685), 20, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307773,38 +301338,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [132379] = 7, + [132236] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(5126), 1, - anon_sym_EQ, - STATE(2221), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 2, - anon_sym_COLON_COLON, - anon_sym_LT, - ACTIONS(5124), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2808), 35, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, + ACTIONS(2730), 1, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(2732), 1, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2744), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(2768), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6088), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307824,28 +301400,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [132437] = 4, + sym_xhp_identifier, + [132317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, - anon_sym_const, - ACTIONS(5130), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5128), 34, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6319), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307865,34 +301463,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, sym_xhp_identifier, - [132489] = 3, + [132398] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5135), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(5788), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307912,34 +301526,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, sym_xhp_identifier, - [132539] = 3, + [132479] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5139), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6082), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -307959,34 +301589,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, sym_xhp_identifier, - [132589] = 3, + [132560] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5143), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6046), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308006,34 +301652,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, sym_xhp_identifier, - [132639] = 3, + [132641] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5147), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6226), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308053,34 +301715,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, sym_xhp_identifier, - [132689] = 3, + [132722] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5151), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6040), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308100,34 +301778,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, sym_xhp_identifier, - [132739] = 3, + [132803] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 7, - sym_variable, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_shape, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, + ACTIONS(2744), 1, anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, + ACTIONS(2768), 1, sym_xhp_class_identifier, - ACTIONS(5155), 35, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2623), 1, + sym__type_constant, + STATE(3544), 1, + sym_qualified_identifier, + STATE(3547), 1, + sym_null, + STATE(3440), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + STATE(6200), 5, + sym_type_specifier, + sym_tuple_type_specifier, + sym_function_type_specifier, + sym_shape_type_specifier, + sym_type_constant, + ACTIONS(2758), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308147,31 +301841,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, sym_xhp_identifier, - [132789] = 3, + [132884] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 7, - sym_variable, + ACTIONS(2736), 1, anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(5159), 35, + ACTIONS(5161), 1, + anon_sym_EQ, + STATE(2220), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 2, + anon_sym_COLON_COLON, + anon_sym_LT, + ACTIONS(5159), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2808), 35, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, - anon_sym_static, - anon_sym_function, - anon_sym_const, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -308194,26 +301893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_abstract, - sym_final_modifier, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_xhp_identifier, - [132839] = 6, + [132942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(4954), 1, anon_sym_LT, ACTIONS(5165), 1, anon_sym_EQ, - STATE(2786), 1, + STATE(2866), 1, sym_type_arguments, ACTIONS(5163), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2886), 35, + ACTIONS(2885), 35, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -308249,32 +301941,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [132893] = 6, + [132996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(5081), 8, + sym_variable, anon_sym_BSLASH, - ACTIONS(5167), 1, - anon_sym_EQ, - STATE(2221), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 2, - anon_sym_COLON_COLON, - anon_sym_LT, - ACTIONS(2808), 35, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_DOT_DOT_DOT, + sym_xhp_class_identifier, + ACTIONS(5079), 32, sym_identifier, - anon_sym_type, - anon_sym_newtype, anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -308297,10 +301979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [132947] = 3, + anon_sym_async, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_inout_modifier, + sym_xhp_identifier, + [133044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 8, + ACTIONS(5073), 8, sym_variable, anon_sym_BSLASH, anon_sym_LPAREN, @@ -308309,7 +301998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5159), 31, + ACTIONS(5071), 32, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -308339,12 +302028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_inout_modifier, sym_xhp_identifier, - [132994] = 3, + [133092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 8, + ACTIONS(5077), 8, sym_variable, anon_sym_BSLASH, anon_sym_LPAREN, @@ -308353,7 +302043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5143), 31, + ACTIONS(5075), 32, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -308383,12 +302073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_inout_modifier, sym_xhp_identifier, - [133041] = 3, + [133140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 8, + ACTIONS(5085), 8, sym_variable, anon_sym_BSLASH, anon_sym_LPAREN, @@ -308397,7 +302088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5155), 31, + ACTIONS(5083), 32, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -308427,24 +302118,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_inout_modifier, sym_xhp_identifier, - [133088] = 3, + [133188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 8, - sym_variable, + ACTIONS(2736), 1, anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_DOT_DOT_DOT, - sym_xhp_class_identifier, - ACTIONS(5139), 31, + ACTIONS(5167), 1, + anon_sym_EQ, + STATE(2220), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 2, + anon_sym_COLON_COLON, + anon_sym_LT, + ACTIONS(2808), 35, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -308467,31 +302169,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_async, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_inout_modifier, - sym_xhp_identifier, - [133135] = 5, + [133242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, + ACTIONS(5085), 8, + sym_variable, anon_sym_BSLASH, - STATE(3438), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2818), 10, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(2820), 26, + ACTIONS(5083), 31, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -308517,11 +302207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_inout_modifier, sym_xhp_identifier, - [133185] = 3, + [133289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 8, + ACTIONS(5081), 8, sym_variable, anon_sym_BSLASH, anon_sym_LPAREN, @@ -308530,7 +302225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5159), 30, + ACTIONS(5079), 31, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -308559,45 +302254,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_protected, anon_sym_private, + anon_sym_internal, sym_inout_modifier, sym_xhp_identifier, - [133231] = 17, + [133336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(5077), 8, + sym_variable, anon_sym_BSLASH, - ACTIONS(2681), 1, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(4948), 1, + anon_sym_DOT_DOT_DOT, + sym_xhp_class_identifier, + ACTIONS(5075), 31, sym_identifier, - ACTIONS(5172), 1, anon_sym_shape, - ACTIONS(5174), 1, - anon_sym_LPAREN, - ACTIONS(5178), 1, - sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2777), 1, - sym__type_constant, - STATE(3125), 1, - sym_qualified_identifier, - STATE(3368), 1, - sym_null, - STATE(3510), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5176), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308617,26 +302295,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_inout_modifier, sym_xhp_identifier, - [133305] = 5, + [133383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(5073), 8, + sym_variable, anon_sym_BSLASH, - STATE(3438), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2837), 10, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(2839), 26, + ACTIONS(5071), 31, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -308662,44 +302339,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + sym_inout_modifier, sym_xhp_identifier, - [133355] = 17, + [133430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(5169), 1, + anon_sym_COLON_COLON, + ACTIONS(5171), 1, + anon_sym_LT, + STATE(3495), 1, + sym_type_arguments, + ACTIONS(2887), 9, anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2681), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(5092), 1, + sym_xhp_class_identifier, + ACTIONS(2885), 26, sym_identifier, - ACTIONS(5183), 1, anon_sym_shape, - ACTIONS(5185), 1, - anon_sym_LPAREN, - ACTIONS(5189), 1, - sym_xhp_class_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(1785), 1, - sym_qualified_identifier, - STATE(1797), 1, - sym__type_constant, - STATE(1798), 1, - sym_null, - STATE(3510), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(1229), 3, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5187), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308720,32 +302391,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133429] = 6, + [133482] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_COLON_COLON, - ACTIONS(5193), 1, - anon_sym_LT, - STATE(3491), 1, - sym_type_arguments, - ACTIONS(2859), 9, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2857), 26, - sym_identifier, + ACTIONS(5173), 1, anon_sym_shape, - anon_sym_namespace, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5179), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2775), 1, + sym__type_constant, + STATE(3545), 1, + sym_qualified_identifier, + STATE(3546), 1, + sym_null, + STATE(3511), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5177), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308766,32 +302448,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133481] = 5, + [133556] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_EQ, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2886), 35, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(4770), 1, sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, + ACTIONS(4774), 1, anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, + ACTIONS(4776), 1, + anon_sym_BSLASH, + ACTIONS(5181), 1, + anon_sym_shape, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5187), 1, + sym_xhp_class_identifier, + STATE(3616), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3657), 1, + sym_qualified_identifier, + STATE(3697), 1, + sym_null, + STATE(3760), 1, + sym__type_constant, + STATE(3511), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(4780), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5185), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308811,19 +302504,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [133531] = 3, + sym_xhp_identifier, + [133630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 8, - sym_variable, + ACTIONS(5189), 1, anon_sym_BSLASH, + STATE(3450), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 10, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_DOT_DOT_DOT, + anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(5143), 30, + ACTIONS(2808), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -308849,48 +302549,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_inout_modifier, sym_xhp_identifier, - [133577] = 17, + [133680] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(5172), 1, + ACTIONS(2909), 1, + anon_sym_BSLASH, + ACTIONS(5137), 1, + sym_identifier, + ACTIONS(5141), 1, + anon_sym_namespace, + ACTIONS(5192), 1, anon_sym_shape, - ACTIONS(5174), 1, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(5199), 1, + ACTIONS(5198), 1, sym_xhp_class_identifier, - STATE(2223), 1, + STATE(1801), 1, aux_sym_qualified_identifier_repeat1, - STATE(2777), 1, - sym__type_constant, - STATE(3793), 1, + STATE(1872), 1, sym_qualified_identifier, - STATE(3906), 1, + STATE(1875), 1, sym_null, - STATE(3510), 2, + STATE(1876), 1, + sym__type_constant, + STATE(3511), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5197), 20, + ACTIONS(5196), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308911,43 +302607,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133651] = 17, + [133754] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, + ACTIONS(1111), 1, + anon_sym_namespace, + ACTIONS(1117), 1, + anon_sym_BSLASH, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(4679), 1, + ACTIONS(5127), 1, sym_identifier, - ACTIONS(4683), 1, - anon_sym_namespace, - ACTIONS(4685), 1, - anon_sym_BSLASH, - ACTIONS(5201), 1, + ACTIONS(5200), 1, anon_sym_shape, - ACTIONS(5203), 1, + ACTIONS(5202), 1, anon_sym_LPAREN, - ACTIONS(5207), 1, + ACTIONS(5206), 1, sym_xhp_class_identifier, - STATE(3644), 1, + STATE(1871), 1, aux_sym_qualified_identifier_repeat1, - STATE(3659), 1, + STATE(2153), 1, sym_qualified_identifier, - STATE(3709), 1, + STATE(2185), 1, sym_null, - STATE(3758), 1, + STATE(2187), 1, sym__type_constant, - STATE(3510), 2, + STATE(3511), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(4689), 3, + ACTIONS(1239), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5205), 20, + ACTIONS(5204), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -308968,43 +302664,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133725] = 17, + [133828] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(3760), 1, + ACTIONS(3755), 1, anon_sym_BSLASH, - ACTIONS(5080), 1, + ACTIONS(5107), 1, sym_identifier, - ACTIONS(5084), 1, + ACTIONS(5111), 1, anon_sym_namespace, - ACTIONS(5209), 1, + ACTIONS(5208), 1, anon_sym_shape, - ACTIONS(5211), 1, + ACTIONS(5210), 1, anon_sym_LPAREN, - ACTIONS(5215), 1, + ACTIONS(5214), 1, sym_xhp_class_identifier, - STATE(2218), 1, + STATE(2195), 1, aux_sym_qualified_identifier_repeat1, STATE(2373), 1, sym_qualified_identifier, - STATE(2605), 1, - sym__type_constant, - STATE(2607), 1, + STATE(2574), 1, sym_null, - STATE(3510), 2, + STATE(2576), 1, + sym__type_constant, + STATE(3511), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1141), 3, + ACTIONS(1135), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5213), 20, + ACTIONS(5212), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -309025,14 +302721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133799] = 5, + [133902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 1, + ACTIONS(5216), 1, anon_sym_BSLASH, - STATE(3435), 1, + STATE(3446), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 10, + ACTIONS(2833), 10, anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_LBRACE, @@ -309043,7 +302739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(2808), 26, + ACTIONS(2835), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -309070,19 +302766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [133849] = 3, + [133952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 8, - sym_variable, + ACTIONS(5169), 1, + anon_sym_COLON_COLON, + ACTIONS(5171), 1, + anon_sym_LT, + STATE(3476), 1, + sym_type_arguments, + ACTIONS(2876), 9, anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5155), 30, + ACTIONS(2874), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -309108,33 +302811,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_inout_modifier, sym_xhp_identifier, - [133895] = 5, + [134004] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 1, + ACTIONS(989), 1, + anon_sym_QMARK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, anon_sym_BSLASH, - STATE(3438), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 10, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, - anon_sym_LT, + ACTIONS(5173), 1, + anon_sym_shape, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5221), 1, sym_xhp_class_identifier, - ACTIONS(2808), 26, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2775), 1, + sym__type_constant, + STATE(3772), 1, + sym_qualified_identifier, + STATE(3938), 1, + sym_null, + STATE(3511), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + ACTIONS(5219), 20, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [134078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_LT, + ACTIONS(5223), 1, + anon_sym_EQ, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2885), 35, sym_identifier, + anon_sym_type, + anon_sym_newtype, anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -309157,44 +302914,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [133945] = 17, + [134128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2681), 1, + ACTIONS(5225), 1, + anon_sym_BSLASH, + STATE(3446), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2826), 10, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(5064), 1, + anon_sym_LT, + sym_xhp_class_identifier, + ACTIONS(2828), 26, sym_identifier, - ACTIONS(5068), 1, - anon_sym_namespace, - ACTIONS(5070), 1, - anon_sym_BSLASH, - ACTIONS(5220), 1, anon_sym_shape, - ACTIONS(5222), 1, - anon_sym_LPAREN, - ACTIONS(5226), 1, - sym_xhp_class_identifier, - STATE(3440), 1, - sym_qualified_identifier, - STATE(3448), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3469), 1, - sym_null, - STATE(3472), 1, - sym__type_constant, - STATE(3510), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(5074), 3, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5224), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -309215,43 +302959,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134019] = 17, + [134178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_QMARK, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2659), 1, - anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(5189), 1, anon_sym_BSLASH, - ACTIONS(2681), 1, + STATE(3446), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 10, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(2683), 1, + anon_sym_QMARK, anon_sym_TILDE, - ACTIONS(5172), 1, - anon_sym_shape, - ACTIONS(5174), 1, - anon_sym_LPAREN, - ACTIONS(5178), 1, + anon_sym_LT, sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2777), 1, - sym__type_constant, - STATE(3125), 1, - sym_qualified_identifier, - STATE(3368), 1, - sym_null, - STATE(3510), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(2808), 26, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5176), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -309272,43 +303004,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134093] = 17, + [134228] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2681), 1, + ACTIONS(2732), 1, + anon_sym_namespace, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(2913), 1, - anon_sym_BSLASH, - ACTIONS(5102), 1, + ACTIONS(4946), 1, sym_identifier, - ACTIONS(5106), 1, - anon_sym_namespace, - ACTIONS(5228), 1, + ACTIONS(5173), 1, anon_sym_shape, - ACTIONS(5230), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5234), 1, + ACTIONS(5230), 1, sym_xhp_class_identifier, - STATE(1806), 1, + STATE(2217), 1, aux_sym_qualified_identifier_repeat1, - STATE(1845), 1, - sym_qualified_identifier, - STATE(1877), 1, + STATE(2775), 1, sym__type_constant, - STATE(1884), 1, + STATE(3146), 1, + sym_qualified_identifier, + STATE(3260), 1, sym_null, - STATE(3510), 2, + STATE(3511), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(91), 3, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(5232), 20, + ACTIONS(5228), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -309329,39 +303061,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134167] = 17, + [134302] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(2653), 1, + ACTIONS(2754), 1, + anon_sym_AT, + ACTIONS(2756), 1, + anon_sym_TILDE, + ACTIONS(5091), 1, sym_identifier, - ACTIONS(2659), 1, + ACTIONS(5095), 1, anon_sym_namespace, - ACTIONS(2663), 1, + ACTIONS(5097), 1, anon_sym_BSLASH, - ACTIONS(2681), 1, - anon_sym_AT, - ACTIONS(2683), 1, - anon_sym_TILDE, - ACTIONS(5172), 1, + ACTIONS(5232), 1, anon_sym_shape, - ACTIONS(5174), 1, + ACTIONS(5234), 1, anon_sym_LPAREN, ACTIONS(5238), 1, sym_xhp_class_identifier, - STATE(2223), 1, - aux_sym_qualified_identifier_repeat1, - STATE(2777), 1, - sym__type_constant, - STATE(3545), 1, + STATE(3447), 1, sym_qualified_identifier, - STATE(3547), 1, + STATE(3451), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3467), 1, sym_null, - STATE(3510), 2, + STATE(3471), 1, + sym__type_constant, + STATE(3511), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(2679), 3, + ACTIONS(5101), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -309386,71 +303118,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134241] = 6, + [134376] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_COLON_COLON, - ACTIONS(5193), 1, - anon_sym_LT, - STATE(3476), 1, - sym_type_arguments, - ACTIONS(2868), 9, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_AT, + ACTIONS(989), 1, anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2886), 26, + ACTIONS(2726), 1, sym_identifier, - anon_sym_shape, + ACTIONS(2732), 1, anon_sym_namespace, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_xhp_identifier, - [134293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 8, - sym_variable, + ACTIONS(2736), 1, anon_sym_BSLASH, - anon_sym_LPAREN, + ACTIONS(2754), 1, anon_sym_AT, - anon_sym_QMARK, + ACTIONS(2756), 1, anon_sym_TILDE, - anon_sym_DOT_DOT_DOT, - sym_xhp_class_identifier, - ACTIONS(5139), 30, - sym_identifier, + ACTIONS(5173), 1, anon_sym_shape, - anon_sym_namespace, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, + sym_xhp_class_identifier, + STATE(2217), 1, + aux_sym_qualified_identifier_repeat1, + STATE(2775), 1, + sym__type_constant, + STATE(3146), 1, + sym_qualified_identifier, + STATE(3260), 1, + sym_null, + STATE(3511), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(2752), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(5228), 20, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -309470,25 +303174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - sym_inout_modifier, sym_xhp_identifier, - [134339] = 17, + [134450] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, ACTIONS(989), 1, anon_sym_QMARK, - ACTIONS(1117), 1, - anon_sym_namespace, - ACTIONS(1123), 1, - anon_sym_BSLASH, - ACTIONS(2681), 1, + ACTIONS(2754), 1, anon_sym_AT, - ACTIONS(2683), 1, + ACTIONS(2756), 1, anon_sym_TILDE, - ACTIONS(5114), 1, + ACTIONS(5149), 1, sym_identifier, ACTIONS(5240), 1, anon_sym_shape, @@ -309496,18 +303196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(5246), 1, sym_xhp_class_identifier, - STATE(1841), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(2134), 1, + STATE(1789), 1, sym_qualified_identifier, - STATE(2202), 1, + STATE(1797), 1, sym_null, - STATE(2203), 1, + STATE(1806), 1, sym__type_constant, - STATE(3510), 2, + STATE(3511), 2, sym__type_modifier, aux_sym_type_specifier_repeat1, - ACTIONS(1199), 3, + ACTIONS(1195), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, @@ -309532,20 +303232,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134413] = 6, + [134524] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, sym_identifier, - STATE(4976), 1, + STATE(4568), 1, sym_const_declarator, - STATE(5812), 1, + STATE(5798), 1, sym_null, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, + ACTIONS(3737), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309577,20 +303277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134464] = 6, + [134575] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, sym_identifier, - STATE(5245), 1, + STATE(5011), 1, sym_const_declarator, - STATE(5812), 1, + STATE(5798), 1, sym_null, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, + ACTIONS(3737), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309622,20 +303322,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134515] = 6, + [134626] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 1, + anon_sym_LT, + STATE(3495), 1, + sym_type_arguments, + ACTIONS(2887), 9, + anon_sym_BSLASH, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + sym_xhp_class_identifier, + ACTIONS(2885), 26, + sym_identifier, + anon_sym_shape, + anon_sym_namespace, + anon_sym_null, + anon_sym_Null, + anon_sym_NULL, + anon_sym_array, + anon_sym_varray, + anon_sym_darray, + anon_sym_vec, + anon_sym_dict, + anon_sym_keyset, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_num, + anon_sym_string, + anon_sym_arraykey, + anon_sym_void, + anon_sym_nonnull, + anon_sym_mixed, + anon_sym_dynamic, + anon_sym_noreturn, + anon_sym_nothing, + anon_sym_resource, + sym_xhp_identifier, + [134675] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5250), 1, sym_identifier, - STATE(4515), 1, + STATE(4490), 1, sym_null, - STATE(5451), 1, + STATE(5298), 1, sym__class_const_declarator, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3661), 31, + ACTIONS(3688), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309667,20 +303411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134566] = 6, + [134726] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5250), 1, sym_identifier, - STATE(4515), 1, + STATE(4490), 1, sym_null, - STATE(5083), 1, + STATE(4581), 1, sym__class_const_declarator, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3661), 31, + ACTIONS(3688), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309712,20 +303456,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134617] = 6, + [134777] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, sym_identifier, - STATE(4568), 1, + STATE(5079), 1, sym_const_declarator, - STATE(5812), 1, + STATE(5798), 1, sym_null, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, + ACTIONS(3737), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309757,20 +303501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134668] = 6, + [134828] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, sym_identifier, - STATE(4812), 1, + STATE(5582), 1, sym_const_declarator, - STATE(5812), 1, + STATE(5798), 1, sym_null, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, + ACTIONS(3737), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309802,20 +303546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134719] = 6, + [134879] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, sym_identifier, - STATE(4901), 1, + STATE(4812), 1, sym_const_declarator, - STATE(5812), 1, + STATE(5798), 1, sym_null, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, + ACTIONS(3737), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309847,20 +303591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134770] = 6, + [134930] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5250), 1, sym_identifier, - STATE(4515), 1, + STATE(4490), 1, sym_null, - STATE(4989), 1, + STATE(5129), 1, sym__class_const_declarator, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3661), 31, + ACTIONS(3688), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309892,20 +303636,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134821] = 6, + [134981] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, sym_identifier, - STATE(4631), 1, + STATE(5248), 1, sym_const_declarator, - STATE(5812), 1, + STATE(5798), 1, sym_null, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, + ACTIONS(3737), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -309937,32 +303681,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134872] = 6, + [135032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5248), 1, + ACTIONS(2833), 11, + anon_sym_BSLASH, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_AT, + anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_LT, + sym_xhp_class_identifier, + ACTIONS(2835), 26, sym_identifier, - STATE(5578), 1, - sym_const_declarator, - STATE(5812), 1, - sym_null, - ACTIONS(91), 3, + anon_sym_shape, + anon_sym_namespace, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, - anon_sym_type, - anon_sym_newtype, - anon_sym_shape, - anon_sym_tuple, - anon_sym_clone, - anon_sym_new, - anon_sym_print, - anon_sym_namespace, - anon_sym_include, - anon_sym_include_once, - anon_sym_require, - anon_sym_require_once, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -309982,12 +303722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [134923] = 3, + sym_xhp_identifier, + [135077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 11, + ACTIONS(5171), 1, + anon_sym_LT, + STATE(3476), 1, + sym_type_arguments, + ACTIONS(2876), 9, anon_sym_BSLASH, - anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, @@ -309995,9 +303739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(2839), 26, + ACTIONS(2874), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310024,20 +303767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [134968] = 6, + [135126] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, sym_identifier, - STATE(5244), 1, + STATE(5264), 1, sym_const_declarator, - STATE(5812), 1, + STATE(5798), 1, sym_null, ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, - ACTIONS(3741), 31, + ACTIONS(3737), 31, anon_sym_type, anon_sym_newtype, anon_sym_shape, @@ -310069,30 +303812,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - [135019] = 5, + [135177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_LT, - STATE(3476), 1, - sym_type_arguments, - ACTIONS(2868), 9, - anon_sym_BSLASH, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - sym_xhp_class_identifier, - ACTIONS(2886), 26, + ACTIONS(5248), 1, sym_identifier, - anon_sym_shape, - anon_sym_namespace, + STATE(4890), 1, + sym_const_declarator, + STATE(5798), 1, + sym_null, + ACTIONS(91), 3, anon_sym_null, anon_sym_Null, anon_sym_NULL, + ACTIONS(3737), 31, + anon_sym_type, + anon_sym_newtype, + anon_sym_shape, + anon_sym_tuple, + anon_sym_clone, + anon_sym_new, + anon_sym_print, + anon_sym_namespace, + anon_sym_include, + anon_sym_include_once, + anon_sym_require, + anon_sym_require_once, anon_sym_array, anon_sym_varray, anon_sym_darray, @@ -310112,16 +303857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - sym_xhp_identifier, - [135068] = 5, + [135228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_LT, - STATE(3491), 1, - sym_type_arguments, - ACTIONS(2859), 9, + ACTIONS(2905), 10, anon_sym_BSLASH, + anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, @@ -310130,7 +303871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2857), 26, + ACTIONS(2907), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310157,10 +303898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135117] = 3, + [135272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 10, + ACTIONS(5169), 1, + anon_sym_COLON_COLON, + ACTIONS(2921), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310169,9 +303912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, - anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(3061), 26, + ACTIONS(2919), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310198,12 +303940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135161] = 3, + [135318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 10, - anon_sym_BSLASH, + ACTIONS(5169), 1, anon_sym_COLON_COLON, + ACTIONS(2899), 9, + anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, @@ -310212,7 +303955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2911), 26, + ACTIONS(2897), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310239,12 +303982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135205] = 4, + [135364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_COLON_COLON, - ACTIONS(2907), 9, + ACTIONS(2972), 10, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310253,8 +303994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_LT, sym_xhp_class_identifier, - ACTIONS(2905), 26, + ACTIONS(2970), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310281,12 +304023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135251] = 4, + [135408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_COLON_COLON, - ACTIONS(2917), 9, + ACTIONS(3102), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310296,7 +304036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2915), 26, + ACTIONS(3100), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310323,10 +304063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135297] = 3, + [135451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 9, + ACTIONS(3079), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310336,7 +304076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2964), 26, + ACTIONS(3077), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310363,10 +304103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135340] = 3, + [135494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 9, + ACTIONS(3022), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310376,7 +304116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3024), 26, + ACTIONS(3020), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310403,10 +304143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135383] = 3, + [135537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 9, + ACTIONS(2998), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310416,7 +304156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2857), 26, + ACTIONS(2996), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310443,10 +304183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135426] = 3, + [135580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 9, + ACTIONS(3002), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310456,7 +304196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2976), 26, + ACTIONS(3000), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310483,10 +304223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135469] = 3, + [135623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 9, + ACTIONS(3095), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310496,7 +304236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2940), 26, + ACTIONS(3093), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310523,10 +304263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135512] = 3, + [135666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 9, + ACTIONS(3106), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310536,7 +304276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3012), 26, + ACTIONS(3104), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310563,12 +304303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135555] = 3, + [135709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 9, - anon_sym_BSLASH, + ACTIONS(5256), 1, anon_sym_COMMA, + ACTIONS(5254), 8, + anon_sym_BSLASH, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LPAREN, @@ -310576,7 +304317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2972), 26, + ACTIONS(5252), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310603,7 +304344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135598] = 3, + [135754] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3018), 9, @@ -310643,10 +304384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135641] = 3, + [135797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 9, + ACTIONS(3059), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310656,7 +304397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3104), 26, + ACTIONS(3057), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310683,10 +304424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135684] = 3, + [135840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 9, + ACTIONS(3014), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310696,7 +304437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2816), 26, + ACTIONS(3012), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310723,10 +304464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135727] = 3, + [135883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 9, + ACTIONS(2990), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310736,7 +304477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3069), 26, + ACTIONS(2988), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310763,10 +304504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135770] = 3, + [135926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 9, + ACTIONS(2822), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310776,7 +304517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2929), 26, + ACTIONS(2824), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310803,10 +304544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135813] = 3, + [135969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 9, + ACTIONS(3039), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310816,7 +304557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3049), 26, + ACTIONS(3037), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310843,10 +304584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135856] = 3, + [136012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 9, + ACTIONS(3010), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310856,7 +304597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2824), 26, + ACTIONS(3008), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310883,10 +304624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135899] = 3, + [136055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 9, + ACTIONS(2837), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310896,7 +304637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3080), 26, + ACTIONS(2839), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310923,10 +304664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135942] = 3, + [136098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 9, + ACTIONS(3063), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310936,7 +304677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2828), 26, + ACTIONS(3061), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -310963,10 +304704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [135985] = 3, + [136141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 9, + ACTIONS(3091), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -310976,7 +304717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3020), 26, + ACTIONS(3089), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311003,10 +304744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136028] = 3, + [136184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 9, + ACTIONS(3071), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311016,7 +304757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2999), 26, + ACTIONS(3069), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311043,10 +304784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136071] = 3, + [136227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 9, + ACTIONS(2980), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311056,7 +304797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5252), 26, + ACTIONS(2978), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311083,10 +304824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136114] = 3, + [136270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 9, + ACTIONS(2968), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311096,7 +304837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2944), 26, + ACTIONS(2966), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311123,10 +304864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136157] = 3, + [136313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 9, + ACTIONS(2876), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311136,7 +304877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2832), 26, + ACTIONS(2874), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311163,10 +304904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136200] = 3, + [136356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 9, + ACTIONS(2814), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311176,7 +304917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(2987), 26, + ACTIONS(2816), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311203,10 +304944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136243] = 3, + [136399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 9, + ACTIONS(5260), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311216,7 +304957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3092), 26, + ACTIONS(5258), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311243,10 +304984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136286] = 3, + [136442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 9, + ACTIONS(2929), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311256,7 +304997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3045), 26, + ACTIONS(2927), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311283,10 +305024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136329] = 3, + [136485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 9, + ACTIONS(2984), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311296,7 +305037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3038), 26, + ACTIONS(2982), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311323,10 +305064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136372] = 3, + [136528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 9, + ACTIONS(3006), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311336,7 +305077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3100), 26, + ACTIONS(3004), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311363,50 +305104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136415] = 3, + [136571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 8, - sym_variable, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_AT, - anon_sym_QMARK, - anon_sym_TILDE, - anon_sym_DOT_DOT_DOT, - sym_xhp_class_identifier, - ACTIONS(5151), 27, - sym_identifier, - anon_sym_shape, - anon_sym_namespace, - anon_sym_null, - anon_sym_Null, - anon_sym_NULL, - anon_sym_array, - anon_sym_varray, - anon_sym_darray, - anon_sym_vec, - anon_sym_dict, - anon_sym_keyset, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_num, - anon_sym_string, - anon_sym_arraykey, - anon_sym_void, - anon_sym_nonnull, - anon_sym_mixed, - anon_sym_dynamic, - anon_sym_noreturn, - anon_sym_nothing, - anon_sym_resource, - sym_inout_modifier, - sym_xhp_identifier, - [136458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3086), 9, + ACTIONS(2976), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311416,7 +305117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3084), 26, + ACTIONS(2974), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311443,10 +305144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136501] = 3, + [136614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 9, + ACTIONS(2994), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311456,7 +305157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3088), 26, + ACTIONS(2992), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311483,21 +305184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136544] = 4, + [136657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_COMMA, - ACTIONS(5258), 8, + ACTIONS(5125), 8, + sym_variable, anon_sym_BSLASH, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, + anon_sym_DOT_DOT_DOT, sym_xhp_class_identifier, - ACTIONS(5256), 26, + ACTIONS(5123), 27, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311523,11 +305222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + sym_inout_modifier, sym_xhp_identifier, - [136589] = 3, + [136700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 9, + ACTIONS(2818), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311537,7 +305237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3076), 26, + ACTIONS(2820), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311564,10 +305264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136632] = 3, + [136743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 9, + ACTIONS(3083), 9, anon_sym_BSLASH, anon_sym_COMMA, anon_sym_LBRACE, @@ -311577,7 +305277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(3028), 26, + ACTIONS(3081), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311604,10 +305304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136675] = 3, + [136786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 8, + ACTIONS(4642), 8, anon_sym_BSLASH, anon_sym_LBRACE, anon_sym_SEMI, @@ -311643,7 +305343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136717] = 5, + [136828] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5268), 1, @@ -311684,7 +305384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136763] = 3, + [136874] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5273), 7, @@ -311723,7 +305423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_resource, anon_sym_abstract, sym_xhp_identifier, - [136805] = 5, + [136916] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5279), 1, @@ -311764,23 +305464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136851] = 7, + [136962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5285), 1, + ACTIONS(5283), 7, + anon_sym_BSLASH, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_AT, - ACTIONS(5288), 1, anon_sym_QMARK, - ACTIONS(5291), 1, anon_sym_TILDE, - STATE(3510), 2, - sym__type_modifier, - aux_sym_type_specifier_repeat1, - ACTIONS(5283), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, sym_xhp_class_identifier, - ACTIONS(5281), 26, + ACTIONS(5281), 27, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311806,22 +305501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, + anon_sym_abstract, sym_xhp_identifier, - [136901] = 5, + [137004] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5279), 1, - anon_sym_COMMA, - STATE(3509), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5296), 6, - anon_sym_BSLASH, - anon_sym_LPAREN, + ACTIONS(5289), 1, anon_sym_AT, + ACTIONS(5292), 1, anon_sym_QMARK, + ACTIONS(5295), 1, anon_sym_TILDE, + STATE(3511), 2, + sym__type_modifier, + aux_sym_type_specifier_repeat1, + ACTIONS(5287), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, sym_xhp_class_identifier, - ACTIONS(5294), 26, + ACTIONS(5285), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311848,18 +305546,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [136947] = 3, + [137054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 7, + ACTIONS(5279), 1, + anon_sym_COMMA, + STATE(3509), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5300), 6, anon_sym_BSLASH, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5298), 27, + ACTIONS(5298), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311885,9 +305586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_nothing, anon_sym_resource, - anon_sym_abstract, sym_xhp_identifier, - [136989] = 3, + [137100] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5304), 7, @@ -311926,10 +305626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_resource, anon_sym_abstract, sym_xhp_identifier, - [137031] = 3, + [137142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 7, + ACTIONS(5304), 7, anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, @@ -311937,7 +305637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5271), 26, + ACTIONS(5302), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -311964,18 +305664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137072] = 3, + [137183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 7, + ACTIONS(5266), 7, anon_sym_BSLASH, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5298), 26, + ACTIONS(5264), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312002,18 +305702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137113] = 3, + [137224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 7, + ACTIONS(5273), 7, anon_sym_BSLASH, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5264), 26, + ACTIONS(5271), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312040,17 +305740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137154] = 3, + [137265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 6, + ACTIONS(1251), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5139), 26, + ACTIONS(1253), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312077,17 +305777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137194] = 3, + [137305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 6, + ACTIONS(5073), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5155), 26, + ACTIONS(5071), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312114,17 +305814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137234] = 3, + [137345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 6, + ACTIONS(1245), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5143), 26, + ACTIONS(1247), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312151,17 +305851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137274] = 3, + [137385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 6, + ACTIONS(5081), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5306), 26, + ACTIONS(5079), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312188,17 +305888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137314] = 3, + [137425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1249), 6, + ACTIONS(5077), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(1253), 26, + ACTIONS(5075), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312225,17 +305925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137354] = 3, + [137465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 6, + ACTIONS(5308), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(5159), 26, + ACTIONS(5306), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312262,17 +305962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137394] = 3, + [137505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 6, + ACTIONS(5085), 6, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_AT, anon_sym_QMARK, anon_sym_TILDE, sym_xhp_class_identifier, - ACTIONS(1261), 26, + ACTIONS(5083), 26, sym_identifier, anon_sym_shape, anon_sym_namespace, @@ -312299,7 +305999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nothing, anon_sym_resource, sym_xhp_identifier, - [137434] = 19, + [137545] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -312324,22 +306024,22 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, ACTIONS(5332), 1, sym_xhp_modifier, - STATE(3905), 1, + STATE(3923), 1, sym_async_modifier, - STATE(4070), 1, + STATE(4141), 1, sym_abstract_modifier, - STATE(4258), 1, + STATE(4244), 1, sym_parameters, - STATE(4961), 1, + STATE(4803), 1, sym__function_declaration_header, STATE(6014), 1, sym__single_parameter, - STATE(6030), 1, + STATE(6031), 1, sym__single_parameter_parameters, ACTIONS(5312), 2, anon_sym_type, anon_sym_newtype, - [137493] = 19, + [137604] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -312364,22 +306064,22 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, ACTIONS(5348), 1, sym_xhp_modifier, - STATE(3905), 1, + STATE(3923), 1, sym_async_modifier, - STATE(4016), 1, + STATE(4052), 1, sym_abstract_modifier, - STATE(4258), 1, + STATE(4244), 1, sym_parameters, - STATE(4653), 1, + STATE(4559), 1, sym__function_declaration_header, STATE(6014), 1, sym__single_parameter, - STATE(6030), 1, + STATE(6031), 1, sym__single_parameter_parameters, ACTIONS(5334), 2, anon_sym_type, anon_sym_newtype, - [137552] = 19, + [137663] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -312404,22 +306104,22 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, ACTIONS(5364), 1, sym_xhp_modifier, - STATE(3905), 1, + STATE(3923), 1, sym_async_modifier, - STATE(4029), 1, + STATE(4139), 1, sym_abstract_modifier, - STATE(4258), 1, + STATE(4244), 1, sym_parameters, - STATE(4559), 1, + STATE(4862), 1, sym__function_declaration_header, STATE(6014), 1, sym__single_parameter, - STATE(6030), 1, + STATE(6031), 1, sym__single_parameter_parameters, ACTIONS(5350), 2, anon_sym_type, anon_sym_newtype, - [137611] = 19, + [137722] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -312444,22 +306144,22 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, ACTIONS(5380), 1, sym_xhp_modifier, - STATE(3905), 1, + STATE(3923), 1, sym_async_modifier, - STATE(4052), 1, + STATE(4120), 1, sym_abstract_modifier, - STATE(4258), 1, + STATE(4244), 1, sym_parameters, - STATE(4803), 1, + STATE(5047), 1, sym__function_declaration_header, STATE(6014), 1, sym__single_parameter, - STATE(6030), 1, + STATE(6031), 1, sym__single_parameter_parameters, ACTIONS(5366), 2, anon_sym_type, anon_sym_newtype, - [137670] = 19, + [137781] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -312484,22 +306184,22 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, ACTIONS(5396), 1, sym_xhp_modifier, - STATE(3905), 1, + STATE(3923), 1, sym_async_modifier, - STATE(4135), 1, + STATE(4035), 1, sym_abstract_modifier, - STATE(4258), 1, + STATE(4244), 1, sym_parameters, - STATE(5264), 1, + STATE(5111), 1, sym__function_declaration_header, STATE(6014), 1, sym__single_parameter, - STATE(6030), 1, + STATE(6031), 1, sym__single_parameter_parameters, ACTIONS(5382), 2, anon_sym_type, anon_sym_newtype, - [137729] = 19, + [137840] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -312524,22 +306224,22 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, ACTIONS(5412), 1, sym_xhp_modifier, - STATE(3905), 1, + STATE(3923), 1, sym_async_modifier, - STATE(4127), 1, + STATE(4158), 1, sym_abstract_modifier, - STATE(4258), 1, + STATE(4244), 1, sym_parameters, - STATE(4919), 1, + STATE(4934), 1, sym__function_declaration_header, STATE(6014), 1, sym__single_parameter, - STATE(6030), 1, + STATE(6031), 1, sym__single_parameter_parameters, ACTIONS(5398), 2, anon_sym_type, anon_sym_newtype, - [137788] = 19, + [137899] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -312564,27 +306264,27 @@ static const uint16_t ts_small_parse_table[] = { sym_final_modifier, ACTIONS(5428), 1, sym_xhp_modifier, - STATE(3905), 1, + STATE(3923), 1, sym_async_modifier, - STATE(4162), 1, + STATE(4028), 1, sym_abstract_modifier, - STATE(4258), 1, + STATE(4244), 1, sym_parameters, - STATE(5085), 1, + STATE(5094), 1, sym__function_declaration_header, STATE(6014), 1, sym__single_parameter, - STATE(6030), 1, + STATE(6031), 1, sym__single_parameter_parameters, ACTIONS(5414), 2, anon_sym_type, anon_sym_newtype, - [137847] = 13, + [137958] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, @@ -312594,11 +306294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string, ACTIONS(5436), 1, sym_xhp_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5502), 1, + STATE(5056), 1, sym_field_initializer, - STATE(6127), 1, + STATE(6122), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312611,37 +306311,15 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5145), 4, - sym_variable, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5143), 13, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_function, - anon_sym_reify, - anon_sym_async, - anon_sym_trait, - anon_sym_interface, - anon_sym_class, - anon_sym_enum, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [137917] = 3, + [138003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 4, + ACTIONS(5073), 4, sym_variable, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5139), 13, + ACTIONS(5071), 13, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -312655,12 +306333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [137942] = 13, + [138028] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, @@ -312670,11 +306348,11 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_identifier, ACTIONS(5438), 1, anon_sym_RPAREN, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5502), 1, + STATE(5483), 1, sym_field_initializer, - STATE(6127), 1, + STATE(6122), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312687,15 +306365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [137987] = 3, + [138073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 4, + ACTIONS(5085), 4, sym_variable, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 13, + ACTIONS(5083), 13, sym_identifier, anon_sym_type, anon_sym_newtype, @@ -312709,12 +306387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [138012] = 13, + [138098] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, @@ -312724,11 +306402,11 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_identifier, ACTIONS(5440), 1, anon_sym_RPAREN, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5139), 1, + STATE(5483), 1, sym_field_initializer, - STATE(6127), 1, + STATE(6122), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312741,12 +306419,34 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [138057] = 13, + [138143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5077), 4, + sym_variable, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5075), 13, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_function, + anon_sym_reify, + anon_sym_async, + anon_sym_trait, + anon_sym_interface, + anon_sym_class, + anon_sym_enum, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [138168] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, @@ -312756,11 +306456,11 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_identifier, ACTIONS(5442), 1, anon_sym_RPAREN, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5502), 1, + STATE(5483), 1, sym_field_initializer, - STATE(6127), 1, + STATE(6122), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312773,12 +306473,34 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [138102] = 13, + [138213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5081), 4, + sym_variable, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5079), 13, + sym_identifier, + anon_sym_type, + anon_sym_newtype, + anon_sym_function, + anon_sym_reify, + anon_sym_async, + anon_sym_trait, + anon_sym_interface, + anon_sym_class, + anon_sym_enum, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [138238] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, @@ -312788,11 +306510,11 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_identifier, ACTIONS(5444), 1, anon_sym_RPAREN, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4962), 1, + STATE(5483), 1, sym_field_initializer, - STATE(6127), 1, + STATE(6122), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312805,12 +306527,12 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [138147] = 13, + [138283] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, @@ -312820,11 +306542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_identifier, ACTIONS(5446), 1, anon_sym_RPAREN, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5502), 1, + STATE(5124), 1, sym_field_initializer, - STATE(6127), 1, + STATE(6122), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312837,12 +306559,12 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [138192] = 13, + [138328] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(5436), 1, sym_xhp_identifier, @@ -312852,11 +306574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(5452), 1, anon_sym_ctx, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5229), 1, + STATE(5220), 1, sym_capability, - STATE(5332), 1, + STATE(5350), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312869,34 +306591,12 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [138237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5161), 4, - sym_variable, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5159), 13, - sym_identifier, - anon_sym_type, - anon_sym_newtype, - anon_sym_function, - anon_sym_reify, - anon_sym_async, - anon_sym_trait, - anon_sym_interface, - anon_sym_class, - anon_sym_enum, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [138262] = 12, + [138373] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, @@ -312904,11 +306604,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string, ACTIONS(5436), 1, sym_xhp_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5502), 1, + STATE(5483), 1, sym_field_initializer, - STATE(6127), 1, + STATE(6122), 1, sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, @@ -312921,12 +306621,12 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [138304] = 12, + [138415] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(5436), 1, sym_xhp_identifier, @@ -312934,12 +306634,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(5452), 1, anon_sym_ctx, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(5332), 1, - sym_scoped_identifier, - STATE(5408), 1, + STATE(5285), 1, sym_capability, + STATE(5350), 1, + sym_scoped_identifier, STATE(6118), 2, sym_qualified_identifier, sym_scope_identifier, @@ -312951,18 +306651,18 @@ static const uint16_t ts_small_parse_table[] = { sym_variable, sym_pipe_variable, sym_xhp_class_identifier, - [138346] = 6, + [138457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(2885), 1, anon_sym_EQ, - ACTIONS(4082), 1, + ACTIONS(4052), 1, anon_sym_COLON_COLON, ACTIONS(5454), 1, anon_sym_LT, - STATE(2786), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(2868), 10, + ACTIONS(2887), 10, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -312973,18 +306673,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [138374] = 6, + [138485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, + ACTIONS(2874), 1, anon_sym_EQ, - ACTIONS(4082), 1, + ACTIONS(4052), 1, anon_sym_COLON_COLON, ACTIONS(5454), 1, anon_sym_LT, - STATE(2788), 1, + STATE(2798), 1, sym_type_arguments, - ACTIONS(2859), 10, + ACTIONS(2876), 10, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -312995,16 +306695,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [138402] = 5, + [138513] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(2874), 1, anon_sym_EQ, ACTIONS(5454), 1, anon_sym_LT, - STATE(2786), 1, + STATE(2798), 1, sym_type_arguments, - ACTIONS(2868), 10, + ACTIONS(2876), 10, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -313015,16 +306715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [138427] = 5, + [138538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, + ACTIONS(2885), 1, anon_sym_EQ, ACTIONS(5454), 1, anon_sym_LT, - STATE(2788), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(2859), 10, + ACTIONS(2887), 10, sym_variable, anon_sym_COMMA, anon_sym_LBRACE, @@ -313035,7 +306735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_GT, anon_sym_extends, anon_sym_implements, - [138452] = 11, + [138563] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313046,21 +306746,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5464), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138488] = 11, + [138599] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313070,22 +306770,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5466), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138524] = 11, + [138635] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313095,22 +306795,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5468), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138560] = 11, + [138671] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313120,22 +306820,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5470), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138596] = 11, + [138707] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313146,21 +306846,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5472), 1, anon_sym_SEMI, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138632] = 11, + [138743] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313171,21 +306871,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5474), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138668] = 11, + [138779] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313195,22 +306895,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5476), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138704] = 11, + [138815] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313221,21 +306921,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5478), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138740] = 11, + [138851] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313246,21 +306946,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5480), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138776] = 11, + [138887] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313271,21 +306971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5482), 1, anon_sym_SEMI, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138812] = 11, + [138923] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313295,22 +306995,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5484), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138848] = 11, + [138959] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313320,22 +307020,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5486), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138884] = 11, + [138995] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313345,22 +307045,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5488), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138920] = 11, + [139031] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313371,21 +307071,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5490), 1, anon_sym_SEMI, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138956] = 11, + [139067] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313395,22 +307095,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5492), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [138992] = 11, + [139103] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313421,21 +307121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5494), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139028] = 11, + [139139] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313446,21 +307146,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5496), 1, anon_sym_SEMI, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139064] = 11, + [139175] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313470,22 +307170,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5498), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139100] = 11, + [139211] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313495,22 +307195,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5500), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139136] = 11, + [139247] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313521,21 +307221,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5502), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139172] = 11, + [139283] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313546,21 +307246,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5504), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139208] = 11, + [139319] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313571,21 +307271,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5506), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139244] = 11, + [139355] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313595,22 +307295,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5508), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139280] = 11, + [139391] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313621,21 +307321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5510), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139316] = 11, + [139427] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313646,21 +307346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5512), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139352] = 11, + [139463] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313671,21 +307371,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5514), 1, anon_sym_SEMI, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139388] = 11, + [139499] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313696,21 +307396,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5516), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139424] = 11, + [139535] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313720,22 +307420,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5518), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139460] = 11, + [139571] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313745,22 +307445,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5520), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139496] = 11, + [139607] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313771,21 +307471,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5522), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139532] = 11, + [139643] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313795,22 +307495,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5524), 1, - anon_sym_RBRACE, - STATE(3787), 1, + anon_sym_SEMI, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139568] = 11, + [139679] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313820,22 +307520,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5526), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139604] = 11, + [139715] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313845,22 +307545,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5462), 1, anon_sym_BSLASH, ACTIONS(5528), 1, - anon_sym_SEMI, - STATE(3787), 1, + anon_sym_RBRACE, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139640] = 11, + [139751] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313871,21 +307571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5530), 1, anon_sym_RBRACE, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139676] = 11, + [139787] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313896,44 +307596,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(5532), 1, anon_sym_SEMI, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(3886), 1, - sym_use_type, - STATE(4301), 1, - sym__namespace_identifier, - STATE(5095), 1, - sym_use_clause, - ACTIONS(5458), 3, - anon_sym_type, - anon_sym_function, - anon_sym_const, - [139712] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5460), 1, - anon_sym_namespace, - ACTIONS(5462), 1, - anon_sym_BSLASH, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5190), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139745] = 10, + [139823] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313942,44 +307619,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5112), 1, + STATE(4638), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139778] = 10, - ACTIONS(3), 1, + [139856] = 10, + ACTIONS(5534), 1, + anon_sym_LBRACE, + ACTIONS(5536), 1, + anon_sym_LT, + ACTIONS(5538), 1, + sym_xhp_comment, + ACTIONS(5540), 1, + sym_xhp_string, + ACTIONS(5542), 1, + anon_sym_LT_SLASH, + ACTIONS(5544), 1, sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5460), 1, - anon_sym_namespace, - ACTIONS(5462), 1, - anon_sym_BSLASH, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(3886), 1, - sym_use_type, - STATE(4301), 1, - sym__namespace_identifier, - STATE(5183), 1, - sym_use_clause, - ACTIONS(5458), 3, - anon_sym_type, - anon_sym_function, - anon_sym_const, - [139811] = 10, + STATE(1935), 1, + sym_xhp_close, + STATE(3601), 1, + sym_xhp_open, + STATE(4048), 1, + sym_xhp_open_close, + STATE(3604), 3, + sym_braced_expression, + sym_xhp_expression, + aux_sym_xhp_expression_repeat1, + [139889] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -313988,21 +307665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3820), 1, + STATE(3979), 1, sym_use_type, - STATE(4274), 1, + STATE(4185), 1, sym__namespace_identifier, - STATE(4655), 1, + STATE(5020), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139844] = 10, + [139922] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314011,21 +307688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5089), 1, + STATE(5053), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139877] = 10, + [139955] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314034,13 +307711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, STATE(5185), 1, sym_use_clause, @@ -314048,7 +307725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_function, anon_sym_const, - [139910] = 10, + [139988] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314057,44 +307734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(3821), 1, + STATE(3855), 1, sym_use_type, - STATE(4322), 1, + STATE(3864), 1, + sym_qualified_identifier, + STATE(4171), 1, sym__namespace_identifier, - STATE(4865), 1, + STATE(4795), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [139943] = 10, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5536), 1, - anon_sym_LT, - ACTIONS(5538), 1, - sym_xhp_comment, - ACTIONS(5540), 1, - sym_xhp_string, - ACTIONS(5542), 1, - anon_sym_LT_SLASH, - ACTIONS(5544), 1, - sym_comment, - STATE(1973), 1, - sym_xhp_close, - STATE(3605), 1, - sym_xhp_open, - STATE(4058), 1, - sym_xhp_open_close, - STATE(3610), 3, - sym_braced_expression, - sym_xhp_expression, - aux_sym_xhp_expression_repeat1, - [139976] = 10, + [140021] = 10, ACTIONS(5534), 1, anon_sym_LBRACE, ACTIONS(5536), 1, @@ -314107,17 +307761,17 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_string, ACTIONS(5550), 1, anon_sym_LT_SLASH, - STATE(3605), 1, + STATE(3601), 1, sym_xhp_open, - STATE(4058), 1, + STATE(4048), 1, sym_xhp_open_close, - STATE(4099), 1, + STATE(4095), 1, sym_xhp_close, - STATE(3613), 3, + STATE(3621), 3, sym_braced_expression, sym_xhp_expression, aux_sym_xhp_expression_repeat1, - [140009] = 10, + [140054] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314126,21 +307780,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5126), 1, + STATE(5115), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140042] = 10, + [140087] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314149,21 +307803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5007), 1, + STATE(5169), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140075] = 10, + [140120] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314172,21 +307826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3806), 1, - sym_use_type, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(4471), 1, + STATE(3910), 1, + sym_use_type, + STATE(4182), 1, sym__namespace_identifier, - STATE(4971), 1, + STATE(4951), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140108] = 10, + [140153] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314195,44 +307849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3822), 1, + STATE(3950), 1, sym_use_type, - STATE(4243), 1, + STATE(4180), 1, sym__namespace_identifier, - STATE(5268), 1, + STATE(4849), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140141] = 10, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5536), 1, - anon_sym_LT, - ACTIONS(5544), 1, - sym_comment, - ACTIONS(5552), 1, - sym_xhp_comment, - ACTIONS(5554), 1, - sym_xhp_string, - ACTIONS(5556), 1, - anon_sym_LT_SLASH, - STATE(2737), 1, - sym_xhp_close, - STATE(3605), 1, - sym_xhp_open, - STATE(4058), 1, - sym_xhp_open_close, - STATE(3607), 3, - sym_braced_expression, - sym_xhp_expression, - aux_sym_xhp_expression_repeat1, - [140174] = 10, + [140186] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314241,21 +307872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5095), 1, + STATE(5200), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140207] = 10, + [140219] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314264,21 +307895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3818), 1, + STATE(3899), 1, sym_use_type, - STATE(4360), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(4795), 1, + STATE(5175), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140240] = 10, + [140252] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314287,21 +307918,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3858), 1, + sym_use_type, + STATE(3864), 1, + sym_qualified_identifier, + STATE(4175), 1, + sym__namespace_identifier, + STATE(4551), 1, + sym_use_clause, + ACTIONS(5458), 3, + anon_sym_type, + anon_sym_function, + anon_sym_const, + [140285] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5460), 1, + anon_sym_namespace, + ACTIONS(5462), 1, + anon_sym_BSLASH, + STATE(3797), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3875), 1, sym_use_type, - STATE(4301), 1, + STATE(4178), 1, sym__namespace_identifier, - STATE(4669), 1, + STATE(5158), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140273] = 10, + [140318] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314310,21 +307964,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5237), 1, + STATE(5005), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140306] = 10, + [140351] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314333,21 +307987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3830), 1, + STATE(3899), 1, sym_use_type, - STATE(4196), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(4954), 1, + STATE(5237), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140339] = 10, + [140384] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314356,21 +308010,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5070), 1, + STATE(5000), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140372] = 10, + [140417] = 10, + ACTIONS(5534), 1, + anon_sym_LBRACE, + ACTIONS(5536), 1, + anon_sym_LT, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(5550), 1, + anon_sym_LT_SLASH, + ACTIONS(5552), 1, + sym_xhp_comment, + ACTIONS(5554), 1, + sym_xhp_string, + STATE(3601), 1, + sym_xhp_open, + STATE(4045), 1, + sym_xhp_close, + STATE(4048), 1, + sym_xhp_open_close, + STATE(3589), 3, + sym_braced_expression, + sym_xhp_expression, + aux_sym_xhp_expression_repeat1, + [140450] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314379,21 +308056,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5200), 1, + STATE(5088), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140405] = 10, + [140483] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314402,44 +308079,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5054), 1, + STATE(5250), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140438] = 10, + [140516] = 10, ACTIONS(5534), 1, anon_sym_LBRACE, ACTIONS(5536), 1, anon_sym_LT, + ACTIONS(5542), 1, + anon_sym_LT_SLASH, ACTIONS(5544), 1, sym_comment, - ACTIONS(5550), 1, - anon_sym_LT_SLASH, - ACTIONS(5558), 1, + ACTIONS(5546), 1, sym_xhp_comment, - ACTIONS(5560), 1, + ACTIONS(5548), 1, sym_xhp_string, - STATE(3605), 1, + STATE(1908), 1, + sym_xhp_close, + STATE(3601), 1, sym_xhp_open, - STATE(4058), 1, + STATE(4048), 1, sym_xhp_open_close, - STATE(4069), 1, + STATE(3621), 3, + sym_braced_expression, + sym_xhp_expression, + aux_sym_xhp_expression_repeat1, + [140549] = 10, + ACTIONS(5534), 1, + anon_sym_LBRACE, + ACTIONS(5536), 1, + anon_sym_LT, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(5556), 1, + sym_xhp_comment, + ACTIONS(5558), 1, + sym_xhp_string, + ACTIONS(5560), 1, + anon_sym_LT_SLASH, + STATE(2714), 1, sym_xhp_close, - STATE(3591), 3, + STATE(3601), 1, + sym_xhp_open, + STATE(4048), 1, + sym_xhp_open_close, + STATE(3607), 3, sym_braced_expression, sym_xhp_expression, aux_sym_xhp_expression_repeat1, - [140471] = 10, + [140582] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314448,21 +308148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5230), 1, + STATE(5112), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140504] = 10, + [140615] = 10, ACTIONS(5534), 1, anon_sym_LBRACE, ACTIONS(5536), 1, @@ -314473,19 +308173,19 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_comment, ACTIONS(5548), 1, sym_xhp_string, - ACTIONS(5556), 1, + ACTIONS(5560), 1, anon_sym_LT_SLASH, - STATE(2724), 1, + STATE(2730), 1, sym_xhp_close, - STATE(3605), 1, + STATE(3601), 1, sym_xhp_open, - STATE(4058), 1, + STATE(4048), 1, sym_xhp_open_close, - STATE(3613), 3, + STATE(3621), 3, sym_braced_expression, sym_xhp_expression, aux_sym_xhp_expression_repeat1, - [140537] = 10, + [140648] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314494,21 +308194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3819), 1, + STATE(3872), 1, sym_use_type, - STATE(4315), 1, + STATE(4230), 1, sym__namespace_identifier, - STATE(4551), 1, + STATE(4974), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140570] = 10, + [140681] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5456), 1, @@ -314517,44 +308217,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_namespace, ACTIONS(5462), 1, anon_sym_BSLASH, - STATE(3787), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(3864), 1, sym_qualified_identifier, - STATE(3886), 1, + STATE(3899), 1, sym_use_type, - STATE(4301), 1, + STATE(4308), 1, sym__namespace_identifier, - STATE(5003), 1, + STATE(5082), 1, sym_use_clause, ACTIONS(5458), 3, anon_sym_type, anon_sym_function, anon_sym_const, - [140603] = 10, - ACTIONS(5534), 1, - anon_sym_LBRACE, - ACTIONS(5536), 1, - anon_sym_LT, - ACTIONS(5542), 1, - anon_sym_LT_SLASH, - ACTIONS(5544), 1, + [140714] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(5546), 1, - sym_xhp_comment, - ACTIONS(5548), 1, - sym_xhp_string, - STATE(1933), 1, - sym_xhp_close, - STATE(3605), 1, - sym_xhp_open, - STATE(4058), 1, - sym_xhp_open_close, - STATE(3613), 3, - sym_braced_expression, - sym_xhp_expression, - aux_sym_xhp_expression_repeat1, - [140636] = 11, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5460), 1, + anon_sym_namespace, + ACTIONS(5462), 1, + anon_sym_BSLASH, + STATE(3797), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3864), 1, + sym_qualified_identifier, + STATE(3899), 1, + sym_use_type, + STATE(4308), 1, + sym__namespace_identifier, + STATE(5062), 1, + sym_use_clause, + ACTIONS(5458), 3, + anon_sym_type, + anon_sym_function, + anon_sym_const, + [140747] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -314567,54 +308267,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(843), 1, + STATE(1470), 1, sym_member_declarations, - STATE(3719), 1, + STATE(3680), 1, sym_type_parameters, - STATE(4000), 1, + STATE(3838), 1, sym_extends_clause, - STATE(4429), 1, + STATE(4307), 1, sym_implements_clause, - STATE(5720), 1, + STATE(5511), 1, sym_where_clause, - [140670] = 4, + [140781] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 1, - anon_sym_BSLASH, - STATE(3654), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2818), 8, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5564), 1, anon_sym_LT, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [140690] = 9, - ACTIONS(5544), 1, - sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, + anon_sym_implements, ACTIONS(5572), 1, anon_sym_LBRACE, - ACTIONS(5575), 1, - anon_sym_LT, - ACTIONS(5578), 1, - sym_xhp_comment, - ACTIONS(5581), 1, - sym_xhp_string, - ACTIONS(5584), 1, - anon_sym_LT_SLASH, - STATE(3605), 1, - sym_xhp_open, - STATE(4058), 1, - sym_xhp_open_close, - STATE(3613), 3, - sym_braced_expression, - sym_xhp_expression, - aux_sym_xhp_expression_repeat1, - [140720] = 11, + STATE(1100), 1, + sym_member_declarations, + STATE(3672), 1, + sym_type_parameters, + STATE(3969), 1, + sym_extends_clause, + STATE(4468), 1, + sym_implements_clause, + STATE(5340), 1, + sym_where_clause, + [140815] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314625,19 +308311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1500), 1, + STATE(1339), 1, sym_member_declarations, - STATE(3738), 1, + STATE(3741), 1, sym_type_parameters, - STATE(3918), 1, + STATE(3883), 1, sym_extends_clause, - STATE(4241), 1, + STATE(4404), 1, sym_implements_clause, - STATE(5671), 1, + STATE(5445), 1, sym_where_clause, - [140754] = 11, + [140849] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314648,23 +308334,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(999), 1, + STATE(1618), 1, sym_member_declarations, - STATE(3705), 1, + STATE(3715), 1, sym_type_parameters, - STATE(3845), 1, + STATE(3866), 1, sym_extends_clause, - STATE(4383), 1, + STATE(4285), 1, sym_implements_clause, - STATE(5470), 1, + STATE(5361), 1, sym_where_clause, - [140788] = 11, + [140883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_BSLASH, + STATE(3653), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2826), 8, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [140903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_BSLASH, + STATE(3653), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 8, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [140923] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, @@ -314673,17 +308389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(786), 1, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(1395), 1, sym_member_declarations, - STATE(3713), 1, + STATE(3691), 1, sym_type_parameters, - STATE(3992), 1, + STATE(3835), 1, sym_extends_clause, - STATE(4361), 1, + STATE(4234), 1, sym_implements_clause, - STATE(5651), 1, + STATE(5726), 1, sym_where_clause, - [140822] = 11, + [140957] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314694,19 +308412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1735), 1, + STATE(929), 1, sym_member_declarations, - STATE(3750), 1, + STATE(3675), 1, sym_type_parameters, - STATE(3889), 1, + STATE(3842), 1, sym_extends_clause, - STATE(4294), 1, + STATE(4249), 1, sym_implements_clause, - STATE(5689), 1, + STATE(5494), 1, sym_where_clause, - [140856] = 11, + [140991] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314717,19 +308435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(3684), 1, + STATE(728), 1, + sym_member_declarations, + STATE(3742), 1, sym_type_parameters, - STATE(3809), 1, + STATE(3987), 1, sym_extends_clause, - STATE(4460), 1, + STATE(4348), 1, sym_implements_clause, - STATE(4554), 1, - sym_member_declarations, - STATE(5276), 1, + STATE(5705), 1, sym_where_clause, - [140890] = 11, + [141025] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314740,22 +308458,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1030), 1, + STATE(1254), 1, sym_member_declarations, - STATE(3749), 1, + STATE(3718), 1, sym_type_parameters, - STATE(3891), 1, + STATE(3809), 1, sym_extends_clause, - STATE(4309), 1, + STATE(4374), 1, sym_implements_clause, - STATE(5538), 1, + STATE(5553), 1, sym_where_clause, - [140924] = 2, + [141059] = 9, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(5582), 1, + anon_sym_LBRACE, + ACTIONS(5585), 1, + anon_sym_LT, + ACTIONS(5588), 1, + sym_xhp_comment, + ACTIONS(5591), 1, + sym_xhp_string, + ACTIONS(5594), 1, + anon_sym_LT_SLASH, + STATE(3601), 1, + sym_xhp_open, + STATE(4048), 1, + sym_xhp_open_close, + STATE(3621), 3, + sym_braced_expression, + sym_xhp_expression, + aux_sym_xhp_expression_repeat1, + [141089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 10, + ACTIONS(5596), 10, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, @@ -314766,7 +308505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_extends, anon_sym_implements, - [140940] = 11, + [141105] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314777,21 +308516,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1431), 1, + STATE(841), 1, sym_member_declarations, - STATE(3724), 1, + STATE(3749), 1, sym_type_parameters, - STATE(3858), 1, + STATE(3953), 1, sym_extends_clause, - STATE(4369), 1, + STATE(4356), 1, sym_implements_clause, - STATE(5489), 1, + STATE(5637), 1, sym_where_clause, - [140974] = 11, + [141139] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, @@ -314800,19 +308541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1144), 1, + STATE(1575), 1, sym_member_declarations, - STATE(3682), 1, + STATE(3745), 1, sym_type_parameters, - STATE(3923), 1, + STATE(4008), 1, sym_extends_clause, - STATE(4223), 1, + STATE(4250), 1, sym_implements_clause, - STATE(5455), 1, + STATE(5513), 1, sym_where_clause, - [141008] = 11, + [141173] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314823,19 +308562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1255), 1, + STATE(972), 1, sym_member_declarations, - STATE(3681), 1, + STATE(3740), 1, sym_type_parameters, - STATE(3921), 1, + STATE(4006), 1, sym_extends_clause, - STATE(4234), 1, + STATE(4172), 1, sym_implements_clause, - STATE(5452), 1, + STATE(5352), 1, sym_where_clause, - [141042] = 11, + [141207] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314846,19 +308585,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1114), 1, - sym_member_declarations, - STATE(3673), 1, + STATE(3668), 1, sym_type_parameters, - STATE(3902), 1, + STATE(3968), 1, sym_extends_clause, - STATE(4275), 1, + STATE(4371), 1, sym_implements_clause, - STATE(5431), 1, + STATE(4751), 1, + sym_member_declarations, + STATE(5580), 1, sym_where_clause, - [141076] = 11, + [141241] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314869,19 +308608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1752), 1, + STATE(923), 1, sym_member_declarations, - STATE(3671), 1, + STATE(3727), 1, sym_type_parameters, - STATE(3894), 1, + STATE(3867), 1, sym_extends_clause, - STATE(4297), 1, + STATE(4398), 1, sym_implements_clause, - STATE(5375), 1, + STATE(5468), 1, sym_where_clause, - [141110] = 11, + [141275] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_BSLASH, + STATE(3615), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 8, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [141295] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314894,40 +308649,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1277), 1, - sym_member_declarations, - STATE(3683), 1, + STATE(3708), 1, sym_type_parameters, - STATE(3929), 1, + STATE(4004), 1, sym_extends_clause, - STATE(4198), 1, + STATE(4451), 1, sym_implements_clause, - STATE(5479), 1, + STATE(4588), 1, + sym_member_declarations, + STATE(5357), 1, sym_where_clause, - [141144] = 11, + [141329] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_member_declarations, - STATE(3740), 1, - sym_type_parameters, - STATE(3931), 1, - sym_extends_clause, - STATE(4314), 1, - sym_implements_clause, - STATE(5613), 1, - sym_where_clause, - [141178] = 11, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(2006), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4852), 1, + sym_compound_statement, + STATE(5199), 1, + sym_qualified_identifier, + ACTIONS(2033), 3, + anon_sym_elseif, + anon_sym_else, + anon_sym_while, + [141359] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314938,19 +308691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(1538), 1, sym_member_declarations, - STATE(3674), 1, + STATE(3710), 1, sym_type_parameters, - STATE(3810), 1, + STATE(3877), 1, sym_extends_clause, - STATE(4466), 1, + STATE(4245), 1, sym_implements_clause, - STATE(5400), 1, + STATE(5550), 1, sym_where_clause, - [141212] = 11, + [141393] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314961,19 +308714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1583), 1, + STATE(1231), 1, sym_member_declarations, - STATE(3692), 1, + STATE(3704), 1, sym_type_parameters, - STATE(3950), 1, + STATE(3850), 1, sym_extends_clause, - STATE(4178), 1, + STATE(4390), 1, sym_implements_clause, - STATE(5574), 1, + STATE(5488), 1, sym_where_clause, - [141246] = 11, + [141427] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -314984,19 +308737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(1328), 1, sym_member_declarations, - STATE(3700), 1, + STATE(3731), 1, sym_type_parameters, - STATE(3832), 1, + STATE(3803), 1, sym_extends_clause, - STATE(4420), 1, + STATE(4198), 1, sym_implements_clause, - STATE(5352), 1, + STATE(5562), 1, sym_where_clause, - [141280] = 11, + [141461] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315007,19 +308760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(3696), 1, + STATE(1606), 1, + sym_member_declarations, + STATE(3711), 1, sym_type_parameters, - STATE(3814), 1, + STATE(3898), 1, sym_extends_clause, - STATE(4451), 1, + STATE(4358), 1, sym_implements_clause, - STATE(4603), 1, - sym_member_declarations, - STATE(5285), 1, + STATE(5755), 1, sym_where_clause, - [141314] = 11, + [141495] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315030,63 +308783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1461), 1, + STATE(1129), 1, sym_member_declarations, - STATE(3725), 1, + STATE(3713), 1, sym_type_parameters, - STATE(4005), 1, + STATE(3931), 1, sym_extends_clause, - STATE(4442), 1, + STATE(4436), 1, sym_implements_clause, - STATE(5750), 1, + STATE(5390), 1, sym_where_clause, - [141348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5600), 10, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_extends, - anon_sym_implements, - [141364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5602), 10, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_extends, - anon_sym_implements, - [141380] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4685), 1, - anon_sym_BSLASH, - STATE(3612), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 8, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [141400] = 11, + [141529] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315097,23 +308806,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(970), 1, + STATE(1198), 1, sym_member_declarations, - STATE(3741), 1, + STATE(3747), 1, sym_type_parameters, - STATE(3848), 1, + STATE(3891), 1, sym_extends_clause, - STATE(4374), 1, + STATE(4416), 1, sym_implements_clause, - STATE(5358), 1, + STATE(5431), 1, sym_where_clause, - [141434] = 11, + [141563] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, @@ -315122,17 +308829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(730), 1, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1121), 1, sym_member_declarations, - STATE(3694), 1, + STATE(3720), 1, sym_type_parameters, - STATE(3964), 1, + STATE(3921), 1, sym_extends_clause, - STATE(4231), 1, + STATE(4429), 1, sym_implements_clause, - STATE(5572), 1, + STATE(5399), 1, sym_where_clause, - [141468] = 11, + [141597] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315145,17 +308854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1346), 1, - sym_member_declarations, - STATE(3689), 1, + STATE(3685), 1, sym_type_parameters, - STATE(3947), 1, + STATE(3984), 1, sym_extends_clause, - STATE(4176), 1, + STATE(4465), 1, sym_implements_clause, - STATE(5459), 1, + STATE(4546), 1, + sym_member_declarations, + STATE(5296), 1, sym_where_clause, - [141502] = 11, + [141631] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315166,23 +308875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1219), 1, + STATE(864), 1, sym_member_declarations, - STATE(3730), 1, + STATE(3719), 1, sym_type_parameters, - STATE(3969), 1, + STATE(3805), 1, sym_extends_clause, - STATE(4238), 1, + STATE(4370), 1, sym_implements_clause, - STATE(5675), 1, + STATE(5563), 1, sym_where_clause, - [141536] = 11, + [141665] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, @@ -315191,17 +308898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(870), 1, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1226), 1, sym_member_declarations, - STATE(3703), 1, + STATE(3732), 1, sym_type_parameters, - STATE(3977), 1, + STATE(3902), 1, sym_extends_clause, - STATE(4304), 1, + STATE(4422), 1, sym_implements_clause, - STATE(5570), 1, + STATE(5419), 1, sym_where_clause, - [141570] = 11, + [141699] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315212,21 +308921,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(3748), 1, + STATE(3725), 1, sym_type_parameters, - STATE(3831), 1, + STATE(3934), 1, sym_extends_clause, - STATE(4414), 1, + STATE(4337), 1, sym_implements_clause, - STATE(4709), 1, + STATE(4778), 1, sym_member_declarations, - STATE(5338), 1, + STATE(5709), 1, sym_where_clause, - [141604] = 11, + [141733] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, @@ -315235,19 +308946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1704), 1, + STATE(1653), 1, sym_member_declarations, - STATE(3677), 1, + STATE(3729), 1, sym_type_parameters, - STATE(3805), 1, + STATE(3871), 1, sym_extends_clause, - STATE(4464), 1, + STATE(4296), 1, sym_implements_clause, - STATE(5425), 1, + STATE(5505), 1, sym_where_clause, - [141638] = 11, + [141767] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315258,35 +308967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1001), 1, + STATE(723), 1, sym_member_declarations, - STATE(3723), 1, + STATE(3683), 1, sym_type_parameters, - STATE(3870), 1, + STATE(3822), 1, sym_extends_clause, - STATE(4341), 1, + STATE(4382), 1, sym_implements_clause, - STATE(5387), 1, + STATE(5533), 1, sym_where_clause, - [141672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4685), 1, - anon_sym_BSLASH, - STATE(3654), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 8, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [141692] = 11, + [141801] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315297,21 +308990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(3714), 1, + STATE(956), 1, + sym_member_declarations, + STATE(3728), 1, sym_type_parameters, - STATE(3873), 1, + STATE(3912), 1, sym_extends_clause, - STATE(4337), 1, + STATE(4317), 1, sym_implements_clause, - STATE(4771), 1, - sym_member_declarations, - STATE(5388), 1, + STATE(5684), 1, sym_where_clause, - [141726] = 11, + [141835] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, @@ -315320,19 +309015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1730), 1, + STATE(1738), 1, sym_member_declarations, - STATE(3669), 1, + STATE(3737), 1, sym_type_parameters, - STATE(3890), 1, + STATE(3884), 1, sym_extends_clause, - STATE(4302), 1, + STATE(4284), 1, sym_implements_clause, - STATE(5397), 1, + STATE(5280), 1, sym_where_clause, - [141760] = 11, + [141869] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315343,63 +309036,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1711), 1, + STATE(1426), 1, sym_member_declarations, - STATE(3731), 1, + STATE(3676), 1, sym_type_parameters, - STATE(3943), 1, + STATE(3888), 1, sym_extends_clause, - STATE(4177), 1, + STATE(4283), 1, sym_implements_clause, - STATE(5278), 1, + STATE(5281), 1, sym_where_clause, - [141794] = 11, + [141903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5600), 10, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(5566), 1, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_as, anon_sym_where, - ACTIONS(5568), 1, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5570), 1, anon_sym_implements, - STATE(807), 1, - sym_member_declarations, - STATE(3728), 1, - sym_type_parameters, - STATE(4001), 1, - sym_extends_clause, - STATE(4473), 1, - sym_implements_clause, - STATE(5269), 1, - sym_where_clause, - [141828] = 9, + [141919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(747), 1, + ACTIONS(5602), 10, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(2043), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4661), 1, - sym_qualified_identifier, - STATE(4823), 1, - sym_compound_statement, - ACTIONS(2033), 3, - anon_sym_elseif, - anon_sym_else, - anon_sym_while, - [141858] = 11, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_extends, + anon_sym_implements, + [141935] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315410,19 +309087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1397), 1, + STATE(746), 1, sym_member_declarations, - STATE(3711), 1, + STATE(3730), 1, sym_type_parameters, - STATE(3985), 1, + STATE(4010), 1, sym_extends_clause, - STATE(4325), 1, + STATE(4338), 1, sym_implements_clause, - STATE(5714), 1, + STATE(5732), 1, sym_where_clause, - [141892] = 11, + [141969] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315433,19 +309110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(3739), 1, + STATE(3716), 1, sym_type_parameters, - STATE(3854), 1, + STATE(3998), 1, sym_extends_clause, - STATE(4371), 1, + STATE(4414), 1, sym_implements_clause, - STATE(4738), 1, + STATE(4709), 1, sym_member_declarations, - STATE(5367), 1, + STATE(5439), 1, sym_where_clause, - [141926] = 11, + [142003] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315456,21 +309133,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1066), 1, + STATE(1040), 1, sym_member_declarations, - STATE(3672), 1, + STATE(3703), 1, sym_type_parameters, - STATE(3896), 1, + STATE(3940), 1, sym_extends_clause, - STATE(4295), 1, + STATE(4439), 1, sym_implements_clause, - STATE(5405), 1, + STATE(5374), 1, sym_where_clause, - [141960] = 11, + [142037] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, @@ -315479,26 +309158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1374), 1, + STATE(1574), 1, sym_member_declarations, - STATE(3699), 1, + STATE(3695), 1, sym_type_parameters, - STATE(3973), 1, + STATE(3952), 1, sym_extends_clause, - STATE(4249), 1, + STATE(4269), 1, sym_implements_clause, - STATE(5547), 1, + STATE(5377), 1, sym_where_clause, - [141994] = 4, + [142071] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5604), 1, anon_sym_BSLASH, - STATE(3654), 1, + STATE(3653), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2837), 8, + ACTIONS(2833), 8, anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_SEMI, @@ -315507,265 +309184,339 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [142014] = 9, + [142091] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1551), 1, + sym_member_declarations, + STATE(3743), 1, + sym_type_parameters, + STATE(3834), 1, + sym_extends_clause, + STATE(4353), 1, + sym_implements_clause, + STATE(5716), 1, + sym_where_clause, + [142125] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(5607), 1, + anon_sym_RPAREN, + ACTIONS(5609), 1, + anon_sym_LT, + ACTIONS(5611), 1, + anon_sym_LBRACK, + STATE(1818), 1, + sym_arguments, + STATE(3671), 1, + sym_type_arguments, + ACTIONS(2887), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [142152] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(5607), 1, + ACTIONS(5613), 1, sym_identifier, - ACTIONS(5609), 1, + ACTIONS(5615), 1, anon_sym_RBRACE, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(3656), 1, + STATE(3659), 1, aux_sym_trait_use_clause_repeat1, - STATE(6285), 1, + STATE(6306), 1, sym_qualified_identifier, - STATE(6273), 2, + STATE(6320), 2, sym_trait_select_clause, sym_trait_alias_clause, - [142043] = 9, + [142181] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5617), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 1, + anon_sym_LT, + STATE(3973), 1, + sym_type_arguments, + ACTIONS(2876), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [142202] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(5607), 1, + ACTIONS(5613), 1, sym_identifier, - ACTIONS(5611), 1, + ACTIONS(5621), 1, anon_sym_RBRACE, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, STATE(3663), 1, aux_sym_trait_use_clause_repeat1, - STATE(6285), 1, + STATE(6306), 1, sym_qualified_identifier, - STATE(6273), 2, + STATE(6320), 2, sym_trait_select_clause, sym_trait_alias_clause, - [142072] = 9, + [142231] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(5607), 1, + ACTIONS(5613), 1, sym_identifier, - ACTIONS(5611), 1, + ACTIONS(5621), 1, anon_sym_RBRACE, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(3662), 1, + STATE(3660), 1, aux_sym_trait_use_clause_repeat1, - STATE(6285), 1, + STATE(6306), 1, sym_qualified_identifier, - STATE(6273), 2, + STATE(6320), 2, sym_trait_select_clause, sym_trait_alias_clause, - [142101] = 8, + [142260] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(5613), 1, - anon_sym_RPAREN, - ACTIONS(5615), 1, - anon_sym_LT, - ACTIONS(5617), 1, - anon_sym_LBRACK, - STATE(1814), 1, - sym_arguments, - STATE(3680), 1, - sym_type_arguments, - ACTIONS(2868), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [142128] = 5, + ACTIONS(5623), 1, + sym_identifier, + ACTIONS(5626), 1, + anon_sym_namespace, + ACTIONS(5629), 1, + anon_sym_BSLASH, + ACTIONS(5632), 1, + anon_sym_RBRACE, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3660), 1, + aux_sym_trait_use_clause_repeat1, + STATE(6306), 1, + sym_qualified_identifier, + STATE(6320), 2, + sym_trait_select_clause, + sym_trait_alias_clause, + [142289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, + ACTIONS(2833), 9, + anon_sym_BSLASH, anon_sym_COLON_COLON, - ACTIONS(5621), 1, - anon_sym_LT, - STATE(3836), 1, - sym_type_arguments, - ACTIONS(2859), 6, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [142149] = 8, + [142304] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - ACTIONS(5617), 1, + ACTIONS(5611), 1, anon_sym_LBRACK, - ACTIONS(5623), 1, + ACTIONS(5634), 1, anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(3680), 1, + STATE(3671), 1, sym_type_arguments, - ACTIONS(2868), 3, + ACTIONS(2887), 3, sym_variable, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - [142176] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5619), 1, - anon_sym_COLON_COLON, - ACTIONS(5621), 1, - anon_sym_LT, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(2868), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [142197] = 9, + [142331] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(5607), 1, - sym_identifier, - ACTIONS(5625), 1, - anon_sym_RBRACE, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3663), 1, - aux_sym_trait_use_clause_repeat1, - STATE(6285), 1, - sym_qualified_identifier, - STATE(6273), 2, - sym_trait_select_clause, - sym_trait_alias_clause, - [142226] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5627), 1, + ACTIONS(5613), 1, sym_identifier, - ACTIONS(5630), 1, - anon_sym_namespace, - ACTIONS(5633), 1, - anon_sym_BSLASH, ACTIONS(5636), 1, anon_sym_RBRACE, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(3663), 1, + STATE(3660), 1, aux_sym_trait_use_clause_repeat1, - STATE(6285), 1, + STATE(6306), 1, sym_qualified_identifier, - STATE(6273), 2, + STATE(6320), 2, sym_trait_select_clause, sym_trait_alias_clause, - [142255] = 8, + [142360] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - ACTIONS(5617), 1, + ACTIONS(5611), 1, anon_sym_LBRACK, ACTIONS(5638), 1, anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(3680), 1, + STATE(3671), 1, sym_type_arguments, - ACTIONS(2868), 3, + ACTIONS(2887), 3, sym_variable, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - [142282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2837), 9, - anon_sym_BSLASH, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [142297] = 7, + [142387] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - ACTIONS(5617), 1, + ACTIONS(5611), 1, anon_sym_LBRACK, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(3680), 1, + STATE(3671), 1, sym_type_arguments, - ACTIONS(2868), 4, + ACTIONS(2887), 4, sym_variable, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, - [142322] = 8, + [142412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5617), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 1, + anon_sym_LT, + STATE(3994), 1, + sym_type_arguments, + ACTIONS(2887), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [142433] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - ACTIONS(5617), 1, + ACTIONS(5611), 1, anon_sym_LBRACK, ACTIONS(5640), 1, anon_sym_RPAREN, - STATE(1814), 1, + STATE(1818), 1, sym_arguments, - STATE(3680), 1, + STATE(3671), 1, sym_type_arguments, - ACTIONS(2868), 3, + ACTIONS(2887), 3, sym_variable, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - [142349] = 9, + [142460] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, + ACTIONS(5570), 1, + anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1368), 1, + STATE(3993), 1, + sym_extends_clause, + STATE(4410), 1, + sym_implements_clause, + STATE(4823), 1, sym_member_declarations, - STATE(3971), 1, + STATE(5446), 1, + sym_where_clause, + [142488] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5642), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_GT, + ACTIONS(5646), 1, + sym_xhp_identifier, + ACTIONS(5648), 1, + anon_sym_SLASH_GT, + STATE(3714), 2, + sym_xhp_attribute, + aux_sym_xhp_open_repeat1, + STATE(4277), 2, + sym_braced_expression, + sym_xhp_spread_expression, + [142512] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(1579), 1, + sym_member_declarations, + STATE(4002), 1, sym_type_parameters, - STATE(4240), 1, - sym_extends_clause, - STATE(5545), 1, + STATE(4261), 1, + sym_implements_clause, + STATE(5527), 1, sym_where_clause, - [142377] = 9, + [142540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_LBRACK, + STATE(1820), 1, + sym_arguments, + ACTIONS(2876), 5, + sym_variable, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_GT, + [142560] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -315774,55 +309525,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1624), 1, + STATE(1081), 1, sym_member_declarations, - STATE(3813), 1, + STATE(3997), 1, sym_extends_clause, - STATE(4462), 1, + STATE(4473), 1, sym_implements_clause, - STATE(5432), 1, + STATE(5282), 1, sym_where_clause, - [142405] = 9, + [142588] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(3880), 1, - sym_type_parameters, - STATE(4330), 1, - sym_implements_clause, - STATE(4773), 1, + ACTIONS(5568), 1, + anon_sym_extends, + STATE(1577), 1, sym_member_declarations, - STATE(5391), 1, + STATE(4003), 1, + sym_type_parameters, + STATE(4248), 1, + sym_extends_clause, + STATE(5518), 1, sym_where_clause, - [142433] = 9, + [142616] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1451), 1, + STATE(926), 1, sym_member_declarations, - STATE(3951), 1, + STATE(3837), 1, + sym_type_parameters, + STATE(4242), 1, sym_extends_clause, - STATE(4210), 1, - sym_implements_clause, - STATE(5343), 1, + STATE(5433), 1, sym_where_clause, - [142461] = 9, + [142644] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -315831,17 +309582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1113), 1, + STATE(967), 1, sym_member_declarations, - STATE(3901), 1, + STATE(3999), 1, sym_extends_clause, - STATE(4278), 1, + STATE(4170), 1, sym_implements_clause, - STATE(5429), 1, + STATE(5436), 1, sym_where_clause, - [142489] = 9, + [142672] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -315850,53 +309601,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1136), 1, + STATE(1557), 1, sym_member_declarations, - STATE(3920), 1, + STATE(3991), 1, sym_extends_clause, - STATE(4236), 1, + STATE(4345), 1, sym_implements_clause, - STATE(5449), 1, + STATE(5735), 1, sym_where_clause, - [142517] = 9, + [142700] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1517), 1, + STATE(1035), 1, sym_member_declarations, - STATE(3835), 1, - sym_extends_clause, - STATE(4412), 1, + STATE(3945), 1, + sym_type_parameters, + STATE(4442), 1, sym_implements_clause, - STATE(5635), 1, + STATE(5369), 1, sym_where_clause, - [142545] = 7, + [142728] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, - sym__heredoc_start_newline, - ACTIONS(5646), 1, - sym__heredoc_end_newline, - ACTIONS(5648), 1, - sym__heredoc_end, - ACTIONS(5650), 1, - sym__embedded_opening_brace, - ACTIONS(5642), 2, - sym__heredoc_body, - sym_variable, - STATE(3759), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [142569] = 9, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(2033), 1, + anon_sym_while, + STATE(1507), 1, + sym_compound_statement, + STATE(2006), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4921), 1, + sym_qualified_identifier, + [142756] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315905,36 +309658,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1432), 1, + STATE(1036), 1, sym_member_declarations, - STATE(4010), 1, + STATE(3944), 1, sym_type_parameters, - STATE(4395), 1, + STATE(4440), 1, sym_extends_clause, - STATE(5660), 1, + STATE(5373), 1, sym_where_clause, - [142597] = 9, + [142784] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1744), 1, + STATE(1454), 1, sym_member_declarations, - STATE(3875), 1, + STATE(3826), 1, sym_extends_clause, - STATE(4319), 1, + STATE(4316), 1, sym_implements_clause, - STATE(5376), 1, + STATE(5603), 1, sym_where_clause, - [142625] = 9, + [142812] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315943,17 +309696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1003), 1, + STATE(886), 1, sym_member_declarations, - STATE(3852), 1, + STATE(3827), 1, sym_type_parameters, - STATE(4373), 1, + STATE(4383), 1, sym_extends_clause, - STATE(5481), 1, + STATE(5529), 1, sym_where_clause, - [142653] = 9, + [142840] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -315962,32 +309715,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(887), 1, sym_member_declarations, - STATE(3849), 1, + STATE(3830), 1, sym_type_parameters, - STATE(4376), 1, + STATE(4384), 1, sym_implements_clause, - STATE(5477), 1, + STATE(5528), 1, sym_where_clause, - [142681] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(5652), 1, - anon_sym_LBRACK, - STATE(1843), 1, - sym_arguments, - ACTIONS(2859), 5, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_GT, - [142701] = 9, + [142868] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -315996,17 +309734,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1239), 1, + STATE(866), 1, sym_member_declarations, - STATE(3908), 1, + STATE(3808), 1, sym_extends_clause, - STATE(4260), 1, + STATE(4373), 1, sym_implements_clause, - STATE(5443), 1, + STATE(5548), 1, sym_where_clause, - [142729] = 9, + [142896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5652), 1, + anon_sym_LBRACE, + ACTIONS(5657), 1, + sym_xhp_identifier, + ACTIONS(5655), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(3684), 2, + sym_xhp_attribute, + aux_sym_xhp_open_repeat1, + STATE(4277), 2, + sym_braced_expression, + sym_xhp_spread_expression, + [142918] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316015,112 +309769,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1170), 1, - sym_member_declarations, - STATE(3933), 1, + STATE(3974), 1, sym_extends_clause, - STATE(4187), 1, + STATE(4466), 1, sym_implements_clause, - STATE(5480), 1, + STATE(4493), 1, + sym_member_declarations, + STATE(5320), 1, sym_where_clause, - [142757] = 9, + [142946] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1261), 1, + STATE(957), 1, sym_member_declarations, - STATE(3922), 1, + STATE(3916), 1, + sym_type_parameters, + STATE(4325), 1, sym_extends_clause, - STATE(4228), 1, - sym_implements_clause, - STATE(5456), 1, + STATE(5694), 1, sym_where_clause, - [142785] = 9, + [142974] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(3817), 1, - sym_extends_clause, - STATE(4433), 1, - sym_implements_clause, - STATE(4513), 1, + STATE(959), 1, sym_member_declarations, - STATE(5302), 1, + STATE(3928), 1, + sym_type_parameters, + STATE(4331), 1, + sym_implements_clause, + STATE(5708), 1, sym_where_clause, - [142813] = 9, + [143002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 1, - sym_identifier, - ACTIONS(5656), 1, - anon_sym_LT_LT, - ACTIONS(5658), 1, - anon_sym_GT, - ACTIONS(5660), 1, - anon_sym_PLUS, ACTIONS(5662), 1, - anon_sym_DASH, - ACTIONS(5664), 1, - anon_sym_reify, - STATE(4423), 1, - sym_attribute_modifier, - STATE(5488), 1, - sym_type_parameter, - [142841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - STATE(2221), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 6, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_super, - [142859] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(2033), 1, - anon_sym_while, - STATE(1465), 1, - sym_compound_statement, - STATE(2043), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4928), 1, - sym_qualified_identifier, - [142887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5668), 1, anon_sym_EQ, - ACTIONS(5666), 7, + ACTIONS(5660), 7, anon_sym_COLON, anon_sym_LBRACE, anon_sym_SEMI, @@ -316128,7 +309830,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_EQ_EQ_GT, - [142903] = 9, + [143018] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 1, + sym__heredoc_start_newline, + ACTIONS(5668), 1, + sym__heredoc_end_newline, + ACTIONS(5670), 1, + sym__heredoc_end, + ACTIONS(5672), 1, + sym__embedded_opening_brace, + ACTIONS(5664), 2, + sym__heredoc_body, + sym_variable, + STATE(3764), 2, + sym_embedded_braced_expression, + aux_sym_heredoc_repeat1, + [143042] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 1, + sym_identifier, + ACTIONS(5676), 1, + anon_sym_LT_LT, + ACTIONS(5678), 1, + anon_sym_GT, + ACTIONS(5680), 1, + anon_sym_PLUS, + ACTIONS(5682), 1, + anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_reify, + STATE(4299), 1, + sym_attribute_modifier, + STATE(5570), 1, + sym_type_parameter, + [143070] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316137,93 +309875,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1278), 1, + STATE(1422), 1, sym_member_declarations, - STATE(3930), 1, + STATE(3847), 1, sym_extends_clause, - STATE(4194), 1, - sym_implements_clause, - STATE(5482), 1, - sym_where_clause, - [142931] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - STATE(733), 1, - sym_member_declarations, - STATE(3957), 1, - sym_type_parameters, - STATE(4218), 1, + STATE(4260), 1, sym_implements_clause, - STATE(5531), 1, + STATE(5480), 1, sym_where_clause, - [142959] = 9, + [143098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - STATE(732), 1, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1228), 1, sym_member_declarations, - STATE(3959), 1, + STATE(3856), 1, sym_type_parameters, - STATE(4221), 1, + STATE(4394), 1, sym_extends_clause, - STATE(5533), 1, + STATE(5476), 1, sym_where_clause, - [142987] = 9, + [143126] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1438), 1, + STATE(1230), 1, sym_member_declarations, - STATE(3869), 1, - sym_extends_clause, - STATE(4363), 1, + STATE(3853), 1, + sym_type_parameters, + STATE(4393), 1, sym_implements_clause, - STATE(5490), 1, + STATE(5485), 1, sym_where_clause, - [143015] = 9, + [143154] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 1, - sym_identifier, - ACTIONS(5656), 1, - anon_sym_LT_LT, - ACTIONS(5660), 1, - anon_sym_PLUS, - ACTIONS(5662), 1, - anon_sym_DASH, - ACTIONS(5664), 1, - anon_sym_reify, - ACTIONS(5670), 1, - anon_sym_GT, - STATE(4423), 1, - sym_attribute_modifier, - STATE(5488), 1, - sym_type_parameter, - [143043] = 9, + ACTIONS(5672), 1, + sym__embedded_opening_brace, + ACTIONS(5688), 1, + sym__heredoc_start_newline, + ACTIONS(5690), 1, + sym__heredoc_end_newline, + ACTIONS(5692), 1, + sym__heredoc_end, + ACTIONS(5686), 2, + sym__heredoc_body, + sym_variable, + STATE(3766), 2, + sym_embedded_braced_expression, + aux_sym_heredoc_repeat1, + [143178] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -316234,53 +309951,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(734), 1, + STATE(1740), 1, sym_member_declarations, - STATE(3976), 1, + STATE(3889), 1, sym_extends_clause, - STATE(4284), 1, + STATE(4282), 1, sym_implements_clause, - STATE(5565), 1, + STATE(5284), 1, sym_where_clause, - [143071] = 9, + [143206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - STATE(875), 1, - sym_member_declarations, - STATE(3980), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(3971), 1, sym_type_parameters, - STATE(4312), 1, - sym_implements_clause, - STATE(5585), 1, + STATE(4378), 1, + sym_extends_clause, + STATE(4743), 1, + sym_member_declarations, + STATE(5547), 1, sym_where_clause, - [143099] = 9, + [143234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5619), 1, + anon_sym_LT, + STATE(3973), 1, + sym_type_arguments, + ACTIONS(2876), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [143252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2736), 1, + anon_sym_BSLASH, + STATE(2220), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 6, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_super, + [143270] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(3803), 1, - sym_extends_clause, - STATE(4469), 1, - sym_implements_clause, - STATE(4562), 1, + STATE(1584), 1, sym_member_declarations, - STATE(5272), 1, + STATE(3941), 1, + sym_type_parameters, + STATE(4274), 1, + sym_extends_clause, + STATE(5360), 1, sym_where_clause, - [143127] = 9, + [143298] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -316289,17 +310034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - STATE(737), 1, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(1583), 1, sym_member_declarations, - STATE(3981), 1, + STATE(3943), 1, sym_type_parameters, - STATE(4313), 1, - sym_extends_clause, - STATE(5573), 1, + STATE(4273), 1, + sym_implements_clause, + STATE(5365), 1, sym_where_clause, - [143155] = 9, + [143326] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -316308,36 +310053,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1736), 1, + STATE(1632), 1, sym_member_declarations, - STATE(3878), 1, + STATE(3893), 1, sym_type_parameters, - STATE(4326), 1, + STATE(4279), 1, sym_extends_clause, - STATE(5691), 1, + STATE(5290), 1, sym_where_clause, - [143183] = 9, + [143354] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(1585), 1, sym_member_declarations, - STATE(3948), 1, - sym_extends_clause, - STATE(4179), 1, + STATE(3895), 1, + sym_type_parameters, + STATE(4278), 1, sym_implements_clause, - STATE(5513), 1, + STATE(5294), 1, sym_where_clause, - [143211] = 9, + [143382] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316346,36 +310091,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1118), 1, sym_member_declarations, - STATE(3841), 1, + STATE(3924), 1, sym_extends_clause, - STATE(4388), 1, + STATE(4431), 1, sym_implements_clause, - STATE(5469), 1, + STATE(5396), 1, sym_where_clause, - [143239] = 9, + [143410] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1487), 1, + STATE(1199), 1, sym_member_declarations, - STATE(3874), 1, - sym_type_parameters, - STATE(4336), 1, + STATE(3887), 1, + sym_extends_clause, + STATE(4412), 1, sym_implements_clause, - STATE(5662), 1, + STATE(5441), 1, sym_where_clause, - [143267] = 9, + [143438] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -316384,53 +310129,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1434), 1, + STATE(863), 1, sym_member_declarations, - STATE(4003), 1, + STATE(3908), 1, sym_type_parameters, - STATE(4409), 1, + STATE(4368), 1, sym_implements_clause, - STATE(5668), 1, + STATE(5593), 1, sym_where_clause, - [143295] = 9, + [143466] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5570), 1, - anon_sym_implements, - STATE(750), 1, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(862), 1, sym_member_declarations, - STATE(3990), 1, + STATE(3904), 1, + sym_type_parameters, + STATE(4366), 1, sym_extends_clause, - STATE(4354), 1, - sym_implements_clause, - STATE(5639), 1, + STATE(5584), 1, sym_where_clause, - [143323] = 7, + [143494] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, + ACTIONS(5642), 1, anon_sym_LBRACE, - ACTIONS(5674), 1, + ACTIONS(5644), 1, anon_sym_GT, - ACTIONS(5676), 1, + ACTIONS(5646), 1, sym_xhp_identifier, - ACTIONS(5678), 1, + ACTIONS(5694), 1, anon_sym_SLASH_GT, - STATE(3721), 2, + STATE(3733), 2, sym_xhp_attribute, aux_sym_xhp_open_repeat1, - STATE(4357), 2, + STATE(4277), 2, sym_braced_expression, sym_xhp_spread_expression, - [143347] = 9, + [143518] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316439,99 +310184,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1029), 1, - sym_member_declarations, - STATE(3887), 1, + STATE(3990), 1, sym_extends_clause, - STATE(4280), 1, + STATE(4459), 1, sym_implements_clause, - STATE(5530), 1, + STATE(4555), 1, + sym_member_declarations, + STATE(5289), 1, sym_where_clause, - [143375] = 7, + [143546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5574), 1, anon_sym_LBRACE, - ACTIONS(5676), 1, - sym_xhp_identifier, - ACTIONS(5680), 1, - anon_sym_GT, - ACTIONS(5682), 1, - anon_sym_SLASH_GT, - STATE(3744), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4357), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [143399] = 3, + STATE(1128), 1, + sym_member_declarations, + STATE(3918), 1, + sym_type_parameters, + STATE(4166), 1, + sym_implements_clause, + STATE(5403), 1, + sym_where_clause, + [143574] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5686), 1, - anon_sym_EQ, - ACTIONS(5684), 7, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_use, - anon_sym_as, + ACTIONS(5566), 1, anon_sym_where, - anon_sym_EQ_EQ_GT, - [143415] = 9, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1436), 1, + sym_member_declarations, + STATE(3857), 1, + sym_extends_clause, + STATE(4223), 1, + sym_implements_clause, + STATE(5744), 1, + sym_where_clause, + [143602] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1369), 1, + STATE(1548), 1, sym_member_declarations, - STATE(3972), 1, - sym_type_parameters, - STATE(4247), 1, + STATE(3882), 1, + sym_extends_clause, + STATE(4253), 1, sym_implements_clause, - STATE(5546), 1, + STATE(5491), 1, sym_where_clause, - [143443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5621), 1, - anon_sym_LT, - STATE(3836), 1, - sym_type_arguments, - ACTIONS(2859), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [143461] = 9, + [143630] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1716), 1, + STATE(1132), 1, sym_member_declarations, - STATE(3802), 1, + STATE(3917), 1, sym_type_parameters, - STATE(4437), 1, - sym_implements_clause, - STATE(5286), 1, + STATE(4428), 1, + sym_extends_clause, + STATE(5405), 1, sym_where_clause, - [143489] = 9, + [143658] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316540,50 +310279,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1375), 1, + STATE(1109), 1, sym_member_declarations, - STATE(3974), 1, + STATE(3963), 1, sym_extends_clause, - STATE(4257), 1, + STATE(4452), 1, sym_implements_clause, - STATE(5548), 1, + STATE(5351), 1, sym_where_clause, - [143517] = 4, + [143686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 1, - anon_sym_LT, - STATE(3823), 1, - sym_type_arguments, - ACTIONS(2868), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(5642), 1, + anon_sym_LBRACE, + ACTIONS(5646), 1, sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [143535] = 9, + ACTIONS(5696), 1, + anon_sym_GT, + ACTIONS(5698), 1, + anon_sym_SLASH_GT, + STATE(3684), 2, + sym_xhp_attribute, + aux_sym_xhp_open_repeat1, + STATE(4277), 2, + sym_braced_expression, + sym_xhp_spread_expression, + [143710] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(844), 1, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1608), 1, sym_member_declarations, - STATE(4008), 1, + STATE(3814), 1, sym_extends_clause, - STATE(4418), 1, + STATE(4379), 1, sym_implements_clause, - STATE(5700), 1, + STATE(5544), 1, sym_where_clause, - [143563] = 9, + [143738] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316592,17 +310334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(3855), 1, + STATE(4009), 1, sym_extends_clause, - STATE(4367), 1, + STATE(4447), 1, sym_implements_clause, - STATE(4740), 1, + STATE(4589), 1, sym_member_declarations, STATE(5368), 1, sym_where_clause, - [143591] = 9, + [143766] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -316611,178 +310353,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(3851), 1, + STATE(3970), 1, sym_type_parameters, STATE(4375), 1, sym_implements_clause, - STATE(4737), 1, + STATE(4746), 1, sym_member_declarations, - STATE(5366), 1, + STATE(5552), 1, sym_where_clause, - [143619] = 9, + [143794] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5598), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1398), 1, + STATE(1232), 1, sym_member_declarations, - STATE(3986), 1, - sym_type_parameters, - STATE(4331), 1, + STATE(3849), 1, sym_extends_clause, - STATE(5619), 1, + STATE(4388), 1, + sym_implements_clause, + STATE(5509), 1, sym_where_clause, - [143647] = 9, + [143822] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1400), 1, + STATE(843), 1, sym_member_declarations, - STATE(3988), 1, - sym_type_parameters, - STATE(4342), 1, + STATE(3946), 1, + sym_extends_clause, + STATE(4359), 1, sym_implements_clause, - STATE(5620), 1, + STATE(5632), 1, sym_where_clause, - [143675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5690), 1, - anon_sym_EQ, - ACTIONS(5688), 7, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_use, - anon_sym_as, - anon_sym_where, - anon_sym_EQ_EQ_GT, - [143691] = 9, + [143850] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(813), 1, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1221), 1, sym_member_declarations, - STATE(3993), 1, + STATE(3802), 1, sym_extends_clause, - STATE(4450), 1, + STATE(4423), 1, sym_implements_clause, - STATE(5735), 1, + STATE(5416), 1, sym_where_clause, - [143719] = 7, + [143878] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, + ACTIONS(5642), 1, anon_sym_LBRACE, - ACTIONS(5676), 1, + ACTIONS(5646), 1, sym_xhp_identifier, - ACTIONS(5680), 1, + ACTIONS(5696), 1, anon_sym_GT, - ACTIONS(5692), 1, + ACTIONS(5700), 1, anon_sym_SLASH_GT, - STATE(3744), 2, + STATE(3684), 2, sym_xhp_attribute, aux_sym_xhp_open_repeat1, - STATE(4357), 2, + STATE(4277), 2, sym_braced_expression, sym_xhp_spread_expression, - [143743] = 7, + [143902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, + ACTIONS(5642), 1, anon_sym_LBRACE, - ACTIONS(5676), 1, - sym_xhp_identifier, - ACTIONS(5680), 1, + ACTIONS(5644), 1, anon_sym_GT, - ACTIONS(5694), 1, + ACTIONS(5646), 1, + sym_xhp_identifier, + ACTIONS(5702), 1, anon_sym_SLASH_GT, - STATE(3744), 2, + STATE(3721), 2, sym_xhp_attribute, aux_sym_xhp_open_repeat1, - STATE(4357), 2, + STATE(4277), 2, sym_braced_expression, sym_xhp_spread_expression, - [143767] = 9, + [143926] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(3850), 1, - sym_type_parameters, - STATE(4378), 1, - sym_extends_clause, - STATE(4736), 1, - sym_member_declarations, - STATE(5364), 1, - sym_where_clause, - [143795] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(1257), 1, sym_member_declarations, - STATE(3892), 1, - sym_extends_clause, - STATE(4300), 1, + STATE(3897), 1, + sym_type_parameters, + STATE(4369), 1, sym_implements_clause, - STATE(5404), 1, + STATE(5581), 1, sym_where_clause, - [143823] = 9, + [143954] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1703), 1, + STATE(1255), 1, sym_member_declarations, - STATE(3872), 1, + STATE(3804), 1, + sym_type_parameters, + STATE(4372), 1, sym_extends_clause, - STATE(4467), 1, - sym_implements_clause, - STATE(5426), 1, + STATE(5574), 1, sym_where_clause, - [143851] = 9, + [143982] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316791,55 +310501,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1721), 1, - sym_member_declarations, - STATE(3864), 1, + STATE(3960), 1, sym_extends_clause, - STATE(4327), 1, + STATE(4367), 1, sym_implements_clause, - STATE(5372), 1, + STATE(4755), 1, + sym_member_declarations, + STATE(5619), 1, sym_where_clause, - [143879] = 9, + [144010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, + ACTIONS(5619), 1, anon_sym_LT, + STATE(3994), 1, + sym_type_arguments, + ACTIONS(2887), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [144028] = 9, + ACTIONS(3), 1, + sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5586), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1715), 1, + STATE(1298), 1, sym_member_declarations, - STATE(4004), 1, - sym_type_parameters, - STATE(4465), 1, + STATE(3854), 1, sym_extends_clause, - STATE(5282), 1, + STATE(4392), 1, + sym_implements_clause, + STATE(5479), 1, sym_where_clause, - [143907] = 9, + [144056] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5590), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1545), 1, + STATE(933), 1, sym_member_declarations, - STATE(3935), 1, - sym_type_parameters, - STATE(4195), 1, + STATE(3845), 1, sym_extends_clause, - STATE(5557), 1, + STATE(4256), 1, + sym_implements_clause, + STATE(5490), 1, sym_where_clause, - [143935] = 9, + [144084] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -316850,34 +310574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - STATE(782), 1, + STATE(1518), 1, sym_member_declarations, - STATE(3960), 1, + STATE(3843), 1, sym_extends_clause, - STATE(4217), 1, + STATE(4305), 1, sym_implements_clause, - STATE(5693), 1, - sym_where_clause, - [143963] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_member_declarations, - STATE(3881), 1, - sym_type_parameters, - STATE(4324), 1, - sym_extends_clause, - STATE(5393), 1, + STATE(5503), 1, sym_where_clause, - [143991] = 9, + [144112] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316886,17 +310591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1286), 1, + STATE(761), 1, sym_member_declarations, - STATE(3997), 1, + STATE(3816), 1, sym_extends_clause, - STATE(4474), 1, + STATE(4322), 1, sym_implements_clause, - STATE(5709), 1, + STATE(5688), 1, sym_where_clause, - [144019] = 9, + [144140] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -316905,50 +310610,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1471), 1, + STATE(1379), 1, sym_member_declarations, - STATE(3989), 1, + STATE(3831), 1, sym_extends_clause, - STATE(4350), 1, + STATE(4228), 1, sym_implements_clause, - STATE(5707), 1, + STATE(5737), 1, sym_where_clause, - [144047] = 9, + [144168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1549), 1, + STATE(1338), 1, sym_member_declarations, - STATE(3937), 1, - sym_type_parameters, - STATE(4183), 1, + STATE(3885), 1, + sym_extends_clause, + STATE(4409), 1, sym_implements_clause, - STATE(5558), 1, + STATE(5440), 1, sym_where_clause, - [144075] = 4, + [144196] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - STATE(1772), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 6, - anon_sym_COLON_COLON, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(5642), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - [144093] = 9, + ACTIONS(5646), 1, + sym_xhp_identifier, + ACTIONS(5696), 1, + anon_sym_GT, + ACTIONS(5704), 1, + anon_sym_SLASH_GT, + STATE(3684), 2, + sym_xhp_attribute, + aux_sym_xhp_open_repeat1, + STATE(4277), 2, + sym_braced_expression, + sym_xhp_spread_expression, + [144220] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -316957,34 +310665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5592), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(3879), 1, + STATE(1525), 1, + sym_member_declarations, + STATE(3925), 1, sym_type_parameters, - STATE(4333), 1, + STATE(4365), 1, sym_extends_clause, - STATE(4772), 1, - sym_member_declarations, - STATE(5390), 1, + STATE(5618), 1, sym_where_clause, - [144121] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5650), 1, - sym__embedded_opening_brace, - ACTIONS(5698), 1, - sym__heredoc_start_newline, - ACTIONS(5700), 1, - sym__heredoc_end_newline, - ACTIONS(5702), 1, - sym__heredoc_end, - ACTIONS(5696), 2, - sym__heredoc_body, - sym_variable, - STATE(3797), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [144145] = 9, + [144248] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -316993,72 +310684,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1002), 1, + STATE(1528), 1, sym_member_declarations, - STATE(3876), 1, + STATE(3955), 1, sym_type_parameters, - STATE(4329), 1, + STATE(4363), 1, sym_implements_clause, - STATE(5389), 1, + STATE(5620), 1, sym_where_clause, - [144173] = 7, + [144276] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - anon_sym_LBRACE, ACTIONS(5674), 1, - anon_sym_GT, + sym_identifier, ACTIONS(5676), 1, - sym_xhp_identifier, - ACTIONS(5704), 1, - anon_sym_SLASH_GT, - STATE(3720), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4357), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [144197] = 9, + anon_sym_LT_LT, + ACTIONS(5680), 1, + anon_sym_PLUS, + ACTIONS(5682), 1, + anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_reify, + ACTIONS(5706), 1, + anon_sym_GT, + STATE(4299), 1, + sym_attribute_modifier, + STATE(5570), 1, + sym_type_parameter, + [144304] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1436), 1, + STATE(1654), 1, sym_member_declarations, - STATE(3934), 1, + STATE(3873), 1, sym_extends_clause, - STATE(4359), 1, + STATE(4293), 1, sym_implements_clause, - STATE(5701), 1, + STATE(5395), 1, sym_where_clause, - [144225] = 9, + [144332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + STATE(1774), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 6, + anon_sym_COLON_COLON, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + [144350] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(3833), 1, - sym_extends_clause, - STATE(4410), 1, - sym_implements_clause, - STATE(4715), 1, + STATE(927), 1, sym_member_declarations, - STATE(5339), 1, + STATE(3840), 1, + sym_type_parameters, + STATE(4247), 1, + sym_implements_clause, + STATE(5523), 1, sym_where_clause, - [144253] = 9, + [144378] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -317067,17 +310774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1207), 1, + STATE(920), 1, sym_member_declarations, - STATE(3963), 1, + STATE(3937), 1, sym_extends_clause, - STATE(4222), 1, + STATE(4194), 1, sym_implements_clause, - STATE(5690), 1, + STATE(5554), 1, sym_where_clause, - [144281] = 9, + [144406] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -317086,88 +310793,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1355), 1, sym_member_declarations, - STATE(3866), 1, + STATE(3870), 1, sym_extends_clause, - STATE(4346), 1, + STATE(4400), 1, sym_implements_clause, - STATE(5383), 1, + STATE(5464), 1, sym_where_clause, - [144309] = 9, + [144434] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5596), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(968), 1, + STATE(741), 1, sym_member_declarations, - STATE(3846), 1, - sym_type_parameters, - STATE(4381), 1, + STATE(4005), 1, sym_extends_clause, - STATE(5357), 1, + STATE(4341), 1, + sym_implements_clause, + STATE(5743), 1, sym_where_clause, - [144337] = 9, + [144462] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(967), 1, + STATE(1623), 1, sym_member_declarations, - STATE(3842), 1, - sym_type_parameters, - STATE(4384), 1, + STATE(3862), 1, + sym_extends_clause, + STATE(4295), 1, sym_implements_clause, - STATE(5356), 1, + STATE(5424), 1, sym_where_clause, - [144365] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5706), 1, - anon_sym_LBRACE, - ACTIONS(5711), 1, - sym_xhp_identifier, - ACTIONS(5709), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(3744), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4357), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [144387] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_LBRACE, - ACTIONS(5674), 1, - anon_sym_GT, - ACTIONS(5676), 1, - sym_xhp_identifier, - ACTIONS(5714), 1, - anon_sym_SLASH_GT, - STATE(3706), 2, - sym_xhp_attribute, - aux_sym_xhp_open_repeat1, - STATE(4357), 2, - sym_braced_expression, - sym_xhp_spread_expression, - [144411] = 9, + [144490] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, @@ -317176,36 +310850,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_member_declarations, - STATE(3857), 1, + STATE(3919), 1, sym_type_parameters, - STATE(4382), 1, + STATE(4330), 1, sym_implements_clause, - STATE(5347), 1, + STATE(4780), 1, + sym_member_declarations, + STATE(5697), 1, sym_where_clause, - [144439] = 9, + [144518] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_member_declarations, - STATE(3843), 1, - sym_type_parameters, - STATE(4402), 1, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(1572), 1, + sym_member_declarations, + STATE(3954), 1, sym_extends_clause, - STATE(5350), 1, + STATE(4268), 1, + sym_implements_clause, + STATE(5379), 1, sym_where_clause, - [144467] = 9, + [144546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5710), 1, + anon_sym_EQ, + ACTIONS(5708), 7, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_use, + anon_sym_as, + anon_sym_where, + anon_sym_EQ_EQ_GT, + [144562] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -317214,17 +310901,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(3815), 1, + STATE(1130), 1, + sym_member_declarations, + STATE(3927), 1, sym_extends_clause, - STATE(4447), 1, + STATE(4435), 1, sym_implements_clause, - STATE(4605), 1, - sym_member_declarations, - STATE(5288), 1, + STATE(5393), 1, sym_where_clause, - [144495] = 9, + [144590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5714), 1, + anon_sym_EQ, + ACTIONS(5712), 7, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_use, + anon_sym_as, + anon_sym_where, + anon_sym_EQ_EQ_GT, + [144606] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -317233,36 +310933,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1178), 1, + STATE(727), 1, sym_member_declarations, - STATE(3927), 1, + STATE(3975), 1, sym_extends_clause, - STATE(4214), 1, + STATE(4349), 1, sym_implements_clause, - STATE(5610), 1, + STATE(5701), 1, sym_where_clause, - [144523] = 9, + [144634] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1584), 1, - sym_member_declarations, - STATE(3961), 1, + STATE(3922), 1, + sym_type_parameters, + STATE(4333), 1, sym_extends_clause, - STATE(4206), 1, - sym_implements_clause, - STATE(5582), 1, + STATE(4779), 1, + sym_member_declarations, + STATE(5707), 1, sym_where_clause, - [144551] = 6, + [144662] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5716), 1, @@ -317271,125 +310971,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(5722), 1, anon_sym_PIPE, - STATE(5150), 1, + STATE(5226), 1, aux_sym_xhp_children_declaration_repeat1, ACTIONS(5720), 3, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, - [144572] = 4, + [144683] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 1, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(5726), 3, - sym_xhp_identifier, - sym_xhp_class_identifier, - sym_xhp_category_identifier, - STATE(3795), 3, - sym__xhp_binary_expression, - sym__xhp_postfix_unary_expression, - sym__xhp_parenthesized_expression, - [144589] = 4, + ACTIONS(5318), 1, + anon_sym_async, + STATE(4016), 1, + sym_async_modifier, + STATE(4244), 1, + sym_parameters, + STATE(6014), 1, + sym__single_parameter, + STATE(6031), 1, + sym__single_parameter_parameters, + [144708] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 1, + sym_identifier, + ACTIONS(5676), 1, + anon_sym_LT_LT, + ACTIONS(5680), 1, + anon_sym_PLUS, + ACTIONS(5682), 1, + anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_reify, + STATE(4299), 1, + sym_attribute_modifier, + STATE(5570), 1, + sym_type_parameter, + [144733] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(5716), 1, + anon_sym_COMMA, + ACTIONS(5722), 1, + anon_sym_PIPE, ACTIONS(5724), 1, + anon_sym_SEMI, + STATE(4666), 1, + aux_sym_xhp_children_declaration_repeat1, + ACTIONS(5720), 3, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_STAR, + [144754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5726), 1, anon_sym_LPAREN, ACTIONS(5728), 3, sym_xhp_identifier, sym_xhp_class_identifier, sym_xhp_category_identifier, - STATE(3754), 3, + STATE(3751), 3, sym__xhp_binary_expression, sym__xhp_postfix_unary_expression, sym__xhp_parenthesized_expression, - [144606] = 3, + [144771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 3, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(5730), 4, + ACTIONS(5617), 1, + anon_sym_COLON_COLON, + ACTIONS(2899), 6, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - [144621] = 2, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [144786] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_QMARK, + ACTIONS(5674), 1, + sym_identifier, + ACTIONS(5676), 1, + anon_sym_LT_LT, + ACTIONS(5680), 1, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_STAR, - [144634] = 8, + ACTIONS(5682), 1, + anon_sym_DASH, + ACTIONS(5684), 1, + anon_sym_reify, + STATE(4299), 1, + sym_attribute_modifier, + STATE(5164), 1, + sym_type_parameter, + [144811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_async, - STATE(4096), 1, - sym_async_modifier, - STATE(4258), 1, - sym_parameters, - STATE(6014), 1, - sym__single_parameter, - STATE(6030), 1, - sym__single_parameter_parameters, - [144659] = 7, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5720), 3, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(5730), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + [144828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5734), 1, + ACTIONS(1518), 1, + anon_sym_LBRACE, + ACTIONS(5732), 1, anon_sym_COLON, - ACTIONS(5738), 1, + ACTIONS(5734), 1, + anon_sym_use, + ACTIONS(5736), 1, anon_sym_LBRACK, - STATE(4086), 1, + STATE(2748), 1, + sym_compound_statement, + STATE(4067), 1, sym_capability_list, - STATE(5396), 1, - sym_where_clause, - ACTIONS(5736), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [144682] = 3, + STATE(5428), 1, + sym__anonymous_function_use_clause, + [144853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, + ACTIONS(5617), 1, anon_sym_COLON_COLON, - ACTIONS(2907), 6, + ACTIONS(2921), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [144697] = 6, + [144868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(5672), 1, sym__embedded_opening_brace, + ACTIONS(5740), 1, + sym__heredoc_end_newline, ACTIONS(5742), 1, + sym__heredoc_end, + ACTIONS(5738), 2, + sym__heredoc_body, + sym_variable, + STATE(3783), 2, + sym_embedded_braced_expression, + aux_sym_heredoc_repeat1, + [144889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [144902] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 1, + sym__embedded_opening_brace, + ACTIONS(5746), 1, + sym__heredoc_end_newline, + ACTIONS(5748), 1, + sym__heredoc_end, + ACTIONS(5744), 2, + sym__heredoc_body, + sym_variable, + STATE(3789), 2, + sym_embedded_braced_expression, + aux_sym_heredoc_repeat1, + [144923] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 1, + sym__embedded_opening_brace, + ACTIONS(5746), 1, sym__heredoc_end_newline, - ACTIONS(5744), 1, + ACTIONS(5748), 1, sym__heredoc_end, - ACTIONS(5740), 2, + ACTIONS(5738), 2, sym__heredoc_body, sym_variable, - STATE(3778), 2, + STATE(3783), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [144718] = 2, + [144944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 7, + ACTIONS(2905), 7, anon_sym_COLON_COLON, anon_sym_COMMA, anon_sym_SEMI, @@ -317397,10 +311177,57 @@ static const uint16_t ts_small_parse_table[] = { sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [144731] = 2, + [144957] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 1, + sym__embedded_opening_brace, + ACTIONS(5750), 1, + sym__heredoc_end_newline, + ACTIONS(5752), 1, + sym__heredoc_end, + ACTIONS(5738), 2, + sym__heredoc_body, + sym_variable, + STATE(3783), 2, + sym_embedded_braced_expression, + aux_sym_heredoc_repeat1, + [144978] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 1, + sym__embedded_opening_brace, + ACTIONS(5750), 1, + sym__heredoc_end_newline, + ACTIONS(5752), 1, + sym__heredoc_end, + ACTIONS(5754), 2, + sym__heredoc_body, + sym_variable, + STATE(3761), 2, + sym_embedded_braced_expression, + aux_sym_heredoc_repeat1, + [144999] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 7, + ACTIONS(1518), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(5756), 1, + anon_sym_COLON, + STATE(2665), 1, + sym_compound_statement, + STATE(4034), 1, + sym_capability_list, + STATE(5556), 1, + sym__anonymous_function_use_clause, + [145024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 7, anon_sym_COLON, anon_sym_LBRACE, anon_sym_SEMI, @@ -317408,216 +311235,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_LBRACK, anon_sym_EQ_EQ_GT, - [144744] = 7, + [145037] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(2806), 1, - anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(4954), 1, anon_sym_LT, - STATE(1772), 1, - aux_sym_qualified_identifier_repeat1, - STATE(5520), 1, - sym_type_parameters, - ACTIONS(5748), 2, + ACTIONS(5760), 1, + anon_sym_LBRACK, + STATE(2495), 1, + sym_arguments, + STATE(4041), 1, + sym_type_arguments, + ACTIONS(2887), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [144767] = 8, + anon_sym_GT, + [145060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 1, - sym_identifier, - ACTIONS(5656), 1, - anon_sym_LT_LT, - ACTIONS(5660), 1, + ACTIONS(5720), 3, + anon_sym_QMARK, anon_sym_PLUS, - ACTIONS(5662), 1, - anon_sym_DASH, - ACTIONS(5664), 1, - anon_sym_reify, - STATE(4423), 1, - sym_attribute_modifier, - STATE(5488), 1, - sym_type_parameter, - [144792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 7, + anon_sym_STAR, + ACTIONS(5762), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_PLUS, anon_sym_PIPE, - anon_sym_STAR, - [144805] = 8, + [145075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(4052), 1, + anon_sym_COLON_COLON, + ACTIONS(5609), 1, + anon_sym_LT, + STATE(2798), 1, + sym_type_arguments, + ACTIONS(2876), 4, sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_async, - STATE(4043), 1, - sym_async_modifier, - STATE(4432), 1, - sym_parameters, - STATE(5764), 1, - sym__single_parameter_parameters, - STATE(6014), 1, - sym__single_parameter, - [144830] = 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + [145094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 1, - sym_identifier, - ACTIONS(5656), 1, - anon_sym_LT_LT, - ACTIONS(5660), 1, + ACTIONS(5764), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_QMARK, anon_sym_PLUS, - ACTIONS(5662), 1, - anon_sym_DASH, - ACTIONS(5664), 1, - anon_sym_reify, - STATE(4423), 1, - sym_attribute_modifier, - STATE(5167), 1, - sym_type_parameter, - [144855] = 2, + anon_sym_PIPE, + anon_sym_STAR, + [145107] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, anon_sym_COLON, + STATE(4124), 1, + sym_capability_list, + STATE(5557), 1, + sym_where_clause, + ACTIONS(5768), 2, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_use, - anon_sym_where, - anon_sym_LBRACK, - anon_sym_EQ_EQ_GT, - [144868] = 4, + [145130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5722), 1, - anon_sym_PIPE, - ACTIONS(5720), 3, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(5754), 3, + ACTIONS(5770), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RPAREN, - [144885] = 4, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_STAR, + [145143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 1, + ACTIONS(5726), 1, anon_sym_LPAREN, - ACTIONS(5756), 3, + ACTIONS(5772), 3, sym_xhp_identifier, sym_xhp_class_identifier, sym_xhp_category_identifier, - STATE(3768), 3, + STATE(3771), 3, sym__xhp_binary_expression, sym__xhp_postfix_unary_expression, sym__xhp_parenthesized_expression, - [144902] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LT, - ACTIONS(5617), 1, - anon_sym_LBRACK, - STATE(1814), 1, - sym_arguments, - STATE(3680), 1, - sym_type_arguments, - ACTIONS(2868), 2, - anon_sym_COMMA, - anon_sym_GT, - [144925] = 3, + [145160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, - anon_sym_COLON_COLON, - ACTIONS(2917), 6, + ACTIONS(5774), 1, + anon_sym_BSLASH, + STATE(3793), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [144940] = 8, + anon_sym_as, + [145177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, - anon_sym_LBRACE, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, + ACTIONS(5777), 7, anon_sym_COLON, - ACTIONS(5760), 1, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_use, - STATE(2755), 1, - sym_compound_statement, - STATE(4133), 1, - sym_capability_list, - STATE(5633), 1, - sym__anonymous_function_use_clause, - [144965] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5762), 1, - anon_sym_COLON, - STATE(4130), 1, - sym_capability_list, - STATE(5450), 1, - sym_where_clause, - ACTIONS(5764), 2, - anon_sym_LBRACE, + anon_sym_EQ_EQ_GT, + [145190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5779), 7, + anon_sym_COMMA, anon_sym_SEMI, - [144988] = 7, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_STAR, + [145203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LT, - ACTIONS(5766), 1, - anon_sym_LBRACK, - STATE(2511), 1, - sym_arguments, - STATE(4046), 1, - sym_type_arguments, - ACTIONS(2868), 2, + ACTIONS(5781), 1, anon_sym_COMMA, - anon_sym_GT, - [145011] = 5, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5266), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_where, + anon_sym_implements, + [145220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, - ACTIONS(5615), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2868), 4, - sym_variable, + ACTIONS(5266), 7, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [145030] = 2, + anon_sym_GT, + anon_sym_where, + anon_sym_implements, + [145233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 7, + ACTIONS(5784), 7, anon_sym_COLON, anon_sym_LBRACE, anon_sym_SEMI, @@ -317625,224 +311398,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_LBRACK, anon_sym_EQ_EQ_GT, - [145043] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 1, - anon_sym_LBRACE, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(5760), 1, - anon_sym_use, - ACTIONS(5770), 1, - anon_sym_COLON, - STATE(2680), 1, - sym_compound_statement, - STATE(4063), 1, - sym_capability_list, - STATE(5722), 1, - sym__anonymous_function_use_clause, - [145068] = 5, + [145246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5777), 1, + ACTIONS(5791), 1, sym__embedded_opening_brace, - ACTIONS(5772), 2, + ACTIONS(5786), 2, sym__heredoc_body, sym_variable, - ACTIONS(5775), 2, + ACTIONS(5789), 2, sym__heredoc_end_newline, sym__heredoc_end, - STATE(3778), 2, + STATE(3783), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [145087] = 8, + [145265] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(5760), 1, - anon_sym_use, - ACTIONS(5780), 1, + ACTIONS(5794), 1, anon_sym_COLON, - STATE(1903), 1, - sym_compound_statement, - STATE(4084), 1, + STATE(4161), 1, sym_capability_list, - STATE(5576), 1, - sym__anonymous_function_use_clause, - [145112] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, + STATE(5753), 1, + sym_where_clause, + ACTIONS(5796), 2, anon_sym_LBRACE, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(5760), 1, - anon_sym_use, - ACTIONS(5782), 1, - anon_sym_COLON, - STATE(1893), 1, - sym_compound_statement, - STATE(4117), 1, - sym_capability_list, - STATE(5323), 1, - sym__anonymous_function_use_clause, - [145137] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5650), 1, - sym__embedded_opening_brace, - ACTIONS(5784), 1, - sym__heredoc_end_newline, - ACTIONS(5786), 1, - sym__heredoc_end, - ACTIONS(5740), 2, - sym__heredoc_body, - sym_variable, - STATE(3778), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [145158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5788), 7, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_STAR, - [145171] = 4, + [145288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - STATE(3788), 1, + ACTIONS(2806), 1, + anon_sym_COLON_COLON, + ACTIONS(5564), 1, + anon_sym_LT, + STATE(1774), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 5, + STATE(5674), 1, + sym_type_parameters, + ACTIONS(5798), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + [145311] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5318), 1, + anon_sym_async, + STATE(4097), 1, + sym_async_modifier, + STATE(4210), 1, + sym_parameters, + STATE(5838), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [145336] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(5800), 1, + anon_sym_COLON, + STATE(4057), 1, + sym_capability_list, + STATE(5363), 1, + sym_where_clause, + ACTIONS(5802), 2, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_as, - [145188] = 4, + [145359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 1, + ACTIONS(5726), 1, anon_sym_LPAREN, - ACTIONS(5793), 3, + ACTIONS(5804), 3, sym_xhp_identifier, sym_xhp_class_identifier, sym_xhp_category_identifier, - STATE(3751), 3, + STATE(3754), 3, sym__xhp_binary_expression, sym__xhp_postfix_unary_expression, sym__xhp_parenthesized_expression, - [145205] = 6, + [145376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(5672), 1, sym__embedded_opening_brace, - ACTIONS(5795), 1, + ACTIONS(5806), 1, sym__heredoc_end_newline, - ACTIONS(5797), 1, + ACTIONS(5808), 1, sym__heredoc_end, - ACTIONS(5740), 2, + ACTIONS(5738), 2, sym__heredoc_body, sym_variable, - STATE(3778), 2, + STATE(3783), 2, sym_embedded_braced_expression, aux_sym_heredoc_repeat1, - [145226] = 6, + [145397] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5650), 1, - sym__embedded_opening_brace, - ACTIONS(5742), 1, - sym__heredoc_end_newline, - ACTIONS(5744), 1, - sym__heredoc_end, - ACTIONS(5799), 2, - sym__heredoc_body, - sym_variable, - STATE(3781), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [145247] = 4, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(5810), 1, + anon_sym_COLON, + STATE(1992), 1, + sym_compound_statement, + STATE(4128), 1, + sym_capability_list, + STATE(5573), 1, + sym__anonymous_function_use_clause, + [145422] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(4954), 1, + anon_sym_LT, + ACTIONS(5611), 1, + anon_sym_LBRACK, + STATE(1818), 1, + sym_arguments, + STATE(3671), 1, + sym_type_arguments, + ACTIONS(2887), 2, + anon_sym_COMMA, + anon_sym_GT, + [145445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5726), 1, + anon_sym_LPAREN, + ACTIONS(5812), 3, + sym_xhp_identifier, + sym_xhp_class_identifier, + sym_xhp_category_identifier, + STATE(3758), 3, + sym__xhp_binary_expression, + sym__xhp_postfix_unary_expression, + sym__xhp_parenthesized_expression, + [145462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, + ACTIONS(5814), 1, anon_sym_BSLASH, STATE(2101), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 5, + ACTIONS(2826), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_as, - [145264] = 4, + [145479] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5318), 1, + anon_sym_async, + STATE(4118), 1, + sym_async_modifier, + STATE(4217), 1, + sym_parameters, + STATE(5774), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [145504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 7, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_use, + anon_sym_where, + anon_sym_LBRACK, + anon_sym_EQ_EQ_GT, + [145517] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(5819), 1, + anon_sym_COLON, + STATE(1895), 1, + sym_compound_statement, + STATE(4072), 1, + sym_capability_list, + STATE(5315), 1, + sym__anonymous_function_use_clause, + [145542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, + ACTIONS(5774), 1, anon_sym_BSLASH, STATE(2101), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2818), 5, + ACTIONS(2806), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_as, - [145281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3063), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [145294] = 7, + [145559] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(5804), 1, + ACTIONS(5821), 1, anon_sym_COLON, - STATE(4103), 1, + STATE(4140), 1, sym_capability_list, - STATE(5563), 1, + STATE(5669), 1, sym_where_clause, - ACTIONS(5806), 2, + ACTIONS(5823), 2, anon_sym_LBRACE, anon_sym_SEMI, - [145317] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_async, - STATE(4152), 1, - sym_async_modifier, - STATE(4340), 1, - sym_parameters, - STATE(5773), 1, - sym__single_parameter_parameters, - STATE(6014), 1, - sym__single_parameter, - [145342] = 8, + [145582] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -317851,1925 +311647,1681 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(5318), 1, anon_sym_async, - STATE(4116), 1, + STATE(4100), 1, sym_async_modifier, - STATE(4197), 1, + STATE(4239), 1, sym_parameters, - STATE(5838), 1, + STATE(5958), 1, sym__single_parameter_parameters, STATE(6014), 1, sym__single_parameter, - [145367] = 5, + [145607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, + ACTIONS(4052), 1, anon_sym_COLON_COLON, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - STATE(2788), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(2859), 4, + ACTIONS(2887), 4, sym_variable, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, - [145386] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(5808), 1, - anon_sym_COLON, - STATE(4141), 1, - sym_capability_list, - STATE(5335), 1, - sym_where_clause, - ACTIONS(5810), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [145409] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5716), 1, - anon_sym_COMMA, - ACTIONS(5722), 1, - anon_sym_PIPE, - ACTIONS(5812), 1, - anon_sym_SEMI, - STATE(5025), 1, - aux_sym_xhp_children_declaration_repeat1, - ACTIONS(5720), 3, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - [145430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5266), 7, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_where, - anon_sym_implements, - [145443] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5650), 1, - sym__embedded_opening_brace, - ACTIONS(5814), 1, - sym__heredoc_end_newline, - ACTIONS(5816), 1, - sym__heredoc_end, - ACTIONS(5740), 2, - sym__heredoc_body, - sym_variable, - STATE(3778), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [145464] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5266), 5, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_where, - anon_sym_implements, - [145481] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5821), 7, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_use, - anon_sym_where, - anon_sym_LBRACK, - anon_sym_EQ_EQ_GT, - [145494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5650), 1, - sym__embedded_opening_brace, - ACTIONS(5814), 1, - sym__heredoc_end_newline, - ACTIONS(5816), 1, - sym__heredoc_end, - ACTIONS(5823), 2, - sym__heredoc_body, - sym_variable, - STATE(3785), 2, - sym_embedded_braced_expression, - aux_sym_heredoc_repeat1, - [145515] = 5, + [145626] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, ACTIONS(5825), 1, anon_sym_COLON, - STATE(1772), 1, + STATE(1774), 1, aux_sym_qualified_identifier_repeat1, ACTIONS(2806), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_LPAREN, - [145533] = 7, + [145644] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1477), 1, + STATE(1337), 1, sym_member_declarations, - STATE(4186), 1, + STATE(4411), 1, sym_implements_clause, - STATE(5631), 1, + STATE(5471), 1, sym_where_clause, - [145555] = 7, + [145666] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4440), 1, - sym_implements_clause, - STATE(4522), 1, + STATE(1379), 1, sym_member_declarations, - STATE(5295), 1, + STATE(4228), 1, + sym_implements_clause, + STATE(5737), 1, sym_where_clause, - [145577] = 5, + [145688] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5829), 1, - anon_sym_EQ, - ACTIONS(5831), 1, - sym_xhp_identifier, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5833), 2, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [145595] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1233), 1, + sym_member_declarations, + STATE(4387), 1, + sym_extends_clause, + STATE(5512), 1, + sym_where_clause, + [145710] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1744), 1, + STATE(843), 1, sym_member_declarations, - STATE(4319), 1, + STATE(4359), 1, sym_implements_clause, - STATE(5376), 1, + STATE(5632), 1, sym_where_clause, - [145617] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, - anon_sym_BSLASH, - ACTIONS(5835), 1, - anon_sym_namespace, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(4203), 1, - sym__namespace_identifier, - [145639] = 3, + [145732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 1, - anon_sym_BSLASH, - ACTIONS(5839), 5, + ACTIONS(5609), 1, + anon_sym_LT, + ACTIONS(5638), 1, + anon_sym_RPAREN, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2887), 3, + sym_variable, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_as, - [145653] = 4, + anon_sym_DOT_DOT_DOT, + [145750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - sym_identifier, - ACTIONS(5843), 1, - anon_sym_as, - ACTIONS(5839), 4, + ACTIONS(3006), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACE, anon_sym_SEMI, - [145669] = 7, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [145762] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4433), 1, - sym_implements_clause, - STATE(4513), 1, + STATE(844), 1, sym_member_declarations, - STATE(5302), 1, + STATE(4361), 1, + sym_implements_clause, + STATE(5628), 1, sym_where_clause, - [145691] = 7, + [145784] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1517), 1, + STATE(1232), 1, sym_member_declarations, - STATE(4412), 1, + STATE(4388), 1, sym_implements_clause, - STATE(5635), 1, + STATE(5509), 1, sym_where_clause, - [145713] = 7, + [145806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [145818] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5845), 1, + ACTIONS(5827), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [145735] = 7, + [145840] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [145757] = 7, + [145862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_member_declarations, - STATE(4293), 1, - sym_implements_clause, - STATE(5627), 1, - sym_where_clause, - [145779] = 7, + ACTIONS(2968), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [145874] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(4469), 1, - sym_implements_clause, - STATE(4562), 1, + STATE(1552), 1, sym_member_declarations, - STATE(5272), 1, - sym_where_clause, - [145801] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4386), 1, + STATE(4255), 1, sym_implements_clause, - STATE(4563), 1, - sym_member_declarations, - STATE(5728), 1, + STATE(5489), 1, sym_where_clause, - [145823] = 7, + [145896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5849), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [145845] = 7, + ACTIONS(5831), 1, + anon_sym_RBRACE, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + STATE(3964), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [145914] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4424), 1, - sym_implements_clause, - STATE(4497), 1, + STATE(778), 1, sym_member_declarations, - STATE(5316), 1, + STATE(4320), 1, + sym_implements_clause, + STATE(5670), 1, sym_where_clause, - [145867] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, - anon_sym_BSLASH, - ACTIONS(5835), 1, - anon_sym_namespace, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(4385), 1, - sym__namespace_identifier, - [145889] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, - anon_sym_BSLASH, - ACTIONS(5835), 1, - anon_sym_namespace, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(4318), 1, - sym__namespace_identifier, - [145911] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, - anon_sym_BSLASH, - ACTIONS(5835), 1, - anon_sym_namespace, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(4281), 1, - sym__namespace_identifier, - [145933] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, - anon_sym_BSLASH, - ACTIONS(5835), 1, - anon_sym_namespace, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(4263), 1, - sym__namespace_identifier, - [145955] = 7, + [145936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, - anon_sym_BSLASH, + ACTIONS(5833), 1, + anon_sym_case, ACTIONS(5835), 1, - anon_sym_namespace, - STATE(3787), 1, - aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(4251), 1, - sym__namespace_identifier, - [145977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2859), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [145989] = 7, + anon_sym_default, + ACTIONS(5837), 1, + anon_sym_RBRACE, + STATE(3964), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [145954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5851), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [146011] = 5, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5839), 1, + anon_sym_function, + STATE(4217), 1, + sym_parameters, + STATE(5774), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [145976] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5853), 1, + ACTIONS(5841), 1, anon_sym_COLON, - STATE(1772), 1, + STATE(1774), 1, aux_sym_qualified_identifier_repeat1, ACTIONS(2806), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_LPAREN, - [146029] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5855), 1, - anon_sym_RBRACE, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - STATE(3840), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146047] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5615), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2868), 4, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [146063] = 7, + [145994] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5861), 1, + ACTIONS(5843), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [146085] = 7, + [146016] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5863), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [146107] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, - anon_sym_BSLASH, - ACTIONS(5835), 1, - anon_sym_namespace, - STATE(3787), 1, + ACTIONS(5845), 1, + anon_sym_COLON, + STATE(1774), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, - sym_qualified_identifier, - STATE(4205), 1, - sym__namespace_identifier, - [146129] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4447), 1, - sym_implements_clause, - STATE(4605), 1, - sym_member_declarations, - STATE(5288), 1, - sym_where_clause, - [146151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(997), 1, - sym_member_declarations, - STATE(4388), 1, - sym_implements_clause, - STATE(5469), 1, - sym_where_clause, - [146173] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4444), 1, - sym_implements_clause, - STATE(4606), 1, - sym_member_declarations, - STATE(5296), 1, - sym_where_clause, - [146195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3051), 6, + ACTIONS(2806), 3, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [146207] = 7, + anon_sym_GT_GT, + anon_sym_LPAREN, + [146034] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1433), 1, + STATE(866), 1, sym_member_declarations, - STATE(4239), 1, + STATE(4373), 1, sym_implements_clause, - STATE(5708), 1, + STATE(5548), 1, sym_where_clause, - [146229] = 2, + [146056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 6, + ACTIONS(5847), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146241] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5865), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [146263] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5867), 1, - anon_sym_RBRACE, - STATE(3860), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146281] = 2, + [146068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 6, + ACTIONS(3095), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [146293] = 5, + [146080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5869), 1, - anon_sym_RBRACE, - ACTIONS(5871), 1, - anon_sym_case, - ACTIONS(5874), 1, - anon_sym_default, - STATE(3840), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146311] = 7, + ACTIONS(3106), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [146092] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1028), 1, - sym_member_declarations, - STATE(4323), 1, - sym_implements_clause, - STATE(5525), 1, - sym_where_clause, - [146333] = 7, - ACTIONS(3), 1, - sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(995), 1, + STATE(1487), 1, sym_member_declarations, - STATE(4351), 1, + STATE(4319), 1, sym_implements_clause, - STATE(5439), 1, + STATE(5624), 1, sym_where_clause, - [146355] = 7, + [146114] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(993), 1, + STATE(870), 1, sym_member_declarations, - STATE(4391), 1, + STATE(4376), 1, sym_extends_clause, - STATE(5466), 1, + STATE(5546), 1, sym_where_clause, - [146377] = 7, + [146136] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5877), 1, + ACTIONS(5849), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, + sym_qualified_identifier, + [146158] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5851), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, sym_qualified_identifier, - [146399] = 7, + [146180] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1029), 1, + STATE(871), 1, sym_member_declarations, - STATE(4280), 1, + STATE(4377), 1, sym_implements_clause, - STATE(5530), 1, + STATE(5545), 1, sym_where_clause, - [146421] = 7, + [146202] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5596), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(1425), 1, sym_member_declarations, - STATE(4349), 1, - sym_extends_clause, - STATE(5382), 1, + STATE(4252), 1, + sym_implements_clause, + STATE(5508), 1, sym_where_clause, - [146443] = 7, + [146224] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5879), 1, + ACTIONS(5853), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [146465] = 7, + [146246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5855), 1, + anon_sym_RBRACE, + STATE(3815), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [146264] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1623), 1, sym_member_declarations, - STATE(4346), 1, + STATE(4295), 1, sym_implements_clause, - STATE(5383), 1, + STATE(5424), 1, sym_where_clause, - [146487] = 7, + [146286] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(1422), 1, sym_member_declarations, - STATE(4296), 1, + STATE(4260), 1, sym_implements_clause, - STATE(5550), 1, - sym_where_clause, - [146509] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4419), 1, - sym_extends_clause, - STATE(4704), 1, - sym_member_declarations, - STATE(5325), 1, + STATE(5480), 1, sym_where_clause, - [146531] = 7, + [146308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4417), 1, - sym_implements_clause, - STATE(4706), 1, - sym_member_declarations, - STATE(5380), 1, - sym_where_clause, - [146553] = 7, + ACTIONS(2814), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [146320] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(975), 1, sym_member_declarations, - STATE(4289), 1, + STATE(4176), 1, sym_extends_clause, - STATE(5551), 1, + STATE(5388), 1, sym_where_clause, - [146575] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [146597] = 7, + [146342] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4410), 1, - sym_implements_clause, - STATE(4715), 1, + STATE(1454), 1, sym_member_declarations, - STATE(5339), 1, + STATE(4316), 1, + sym_implements_clause, + STATE(5603), 1, sym_where_clause, - [146619] = 7, + [146364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5857), 1, + anon_sym_RBRACE, + STATE(3964), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [146382] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4406), 1, - sym_implements_clause, - STATE(4716), 1, + STATE(973), 1, sym_member_declarations, - STATE(5273), 1, + STATE(4174), 1, + sym_implements_clause, + STATE(5355), 1, sym_where_clause, - [146641] = 7, + [146404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5883), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [146663] = 7, + ACTIONS(5607), 1, + anon_sym_RPAREN, + ACTIONS(5609), 1, + anon_sym_LT, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2887), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [146422] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(992), 1, + STATE(967), 1, sym_member_declarations, - STATE(4398), 1, + STATE(4170), 1, sym_implements_clause, - STATE(5598), 1, + STATE(5436), 1, sym_where_clause, - [146685] = 7, + [146444] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1703), 1, + STATE(1450), 1, sym_member_declarations, - STATE(4467), 1, + STATE(4351), 1, sym_implements_clause, - STATE(5426), 1, + STATE(5577), 1, sym_where_clause, - [146707] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5885), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [146729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5887), 1, - anon_sym_RBRACE, - STATE(3840), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5889), 1, - anon_sym_RBRACE, - STATE(3840), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146765] = 5, + [146466] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - ACTIONS(5623), 1, + ACTIONS(5640), 1, anon_sym_RPAREN, - STATE(2786), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(2868), 3, + ACTIONS(2887), 3, sym_variable, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - [146783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [146795] = 7, + [146484] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1626), 1, + STATE(965), 1, sym_member_declarations, - STATE(4428), 1, + STATE(4206), 1, sym_implements_clause, - STATE(5314), 1, + STATE(5558), 1, sym_where_clause, - [146817] = 5, + [146506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - ACTIONS(5638), 1, - anon_sym_RPAREN, - STATE(2786), 1, + STATE(2866), 1, sym_type_arguments, - ACTIONS(2868), 3, + ACTIONS(2887), 4, sym_variable, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, - [146835] = 7, + [146522] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(1394), 1, sym_member_declarations, - STATE(4311), 1, + STATE(4271), 1, sym_implements_clause, - STATE(5401), 1, + STATE(5376), 1, sym_where_clause, - [146857] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5891), 1, - anon_sym_RBRACE, - STATE(3975), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146875] = 5, + [146544] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, - anon_sym_case, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5893), 1, - anon_sym_RBRACE, - STATE(3826), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [146893] = 7, + anon_sym_function, + STATE(4239), 1, + sym_parameters, + STATE(5958), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [146566] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1658), 1, + STATE(1201), 1, sym_member_declarations, - STATE(4411), 1, + STATE(4405), 1, sym_implements_clause, - STATE(5428), 1, + STATE(5454), 1, sym_where_clause, - [146915] = 7, + [146588] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(1199), 1, sym_member_declarations, - STATE(4300), 1, + STATE(4412), 1, sym_implements_clause, - STATE(5404), 1, + STATE(5441), 1, sym_where_clause, - [146937] = 7, + [146610] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(5861), 1, + anon_sym_COLON, + STATE(1774), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LPAREN, + [146628] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5895), 1, + ACTIONS(5863), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [146959] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1742), 1, - sym_member_declarations, - STATE(4338), 1, - sym_implements_clause, - STATE(5377), 1, - sym_where_clause, - [146981] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4367), 1, - sym_implements_clause, - STATE(4740), 1, - sym_member_declarations, - STATE(5368), 1, - sym_where_clause, - [147003] = 7, + [146650] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1573), 1, - sym_member_declarations, - STATE(4237), 1, - sym_implements_clause, - STATE(5591), 1, - sym_where_clause, - [147025] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1481), 1, + STATE(1197), 1, sym_member_declarations, - STATE(4172), 1, + STATE(4418), 1, sym_implements_clause, - STATE(5348), 1, + STATE(5427), 1, sym_where_clause, - [147047] = 7, + [146672] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1067), 1, + STATE(930), 1, sym_member_declarations, - STATE(4291), 1, + STATE(4389), 1, sym_implements_clause, - STATE(5409), 1, + STATE(5496), 1, sym_where_clause, - [147069] = 7, + [146694] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5897), 1, - anon_sym_function, - STATE(4432), 1, - sym_parameters, - STATE(5764), 1, - sym__single_parameter_parameters, - STATE(6014), 1, - sym__single_parameter, - [147091] = 7, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, + anon_sym_BSLASH, + ACTIONS(5865), 1, + anon_sym_namespace, + STATE(3797), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3864), 1, + sym_qualified_identifier, + STATE(4169), 1, + sym__namespace_identifier, + [146716] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1585), 1, + STATE(1195), 1, sym_member_declarations, - STATE(4232), 1, - sym_extends_clause, - STATE(5587), 1, - sym_where_clause, - [147113] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4364), 1, + STATE(4437), 1, sym_extends_clause, - STATE(4743), 1, - sym_member_declarations, - STATE(5369), 1, + STATE(5426), 1, sym_where_clause, - [147135] = 7, + [146738] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4362), 1, - sym_implements_clause, - STATE(4744), 1, - sym_member_declarations, - STATE(5370), 1, - sym_where_clause, - [147157] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1068), 1, + STATE(1588), 1, sym_member_declarations, - STATE(4290), 1, - sym_extends_clause, - STATE(5410), 1, + STATE(4209), 1, + sym_implements_clause, + STATE(5677), 1, sym_where_clause, - [147179] = 5, + [146760] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5899), 1, - anon_sym_RBRACE, - STATE(3861), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [147197] = 2, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, + anon_sym_BSLASH, + ACTIONS(5865), 1, + anon_sym_namespace, + STATE(3797), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3864), 1, + sym_qualified_identifier, + STATE(4173), 1, + sym__namespace_identifier, + [146782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5901), 6, + ACTIONS(5867), 1, + sym_identifier, + ACTIONS(5871), 1, + anon_sym_as, + ACTIONS(5869), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147209] = 7, + [146798] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5903), 1, + ACTIONS(5873), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [147231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147243] = 7, + [146820] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5462), 1, + ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5835), 1, + ACTIONS(947), 1, anon_sym_namespace, - STATE(3787), 1, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5875), 1, + anon_sym_GT_GT, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(3807), 1, + STATE(4300), 1, sym_qualified_identifier, - STATE(4288), 1, - sym__namespace_identifier, - [147265] = 7, + [146842] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1176), 1, + STATE(1610), 1, sym_member_declarations, - STATE(4193), 1, + STATE(4380), 1, sym_implements_clause, - STATE(5609), 1, + STATE(5538), 1, sym_where_clause, - [147287] = 7, + [146864] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5905), 1, + ACTIONS(5877), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, + sym_qualified_identifier, + [146886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5879), 1, + anon_sym_BSLASH, + ACTIONS(5869), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_as, + [146900] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5881), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, sym_qualified_identifier, - [147309] = 7, + [146922] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1584), 1, + STATE(1608), 1, sym_member_declarations, - STATE(4206), 1, + STATE(4379), 1, sym_implements_clause, - STATE(5582), 1, + STATE(5544), 1, sym_where_clause, - [147331] = 7, + [146944] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1624), 1, + STATE(1298), 1, sym_member_declarations, - STATE(4462), 1, + STATE(4392), 1, sym_implements_clause, - STATE(5432), 1, + STATE(5479), 1, sym_where_clause, - [147353] = 7, + [146966] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5839), 1, + anon_sym_function, + STATE(4210), 1, + sym_parameters, + STATE(5838), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [146988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5883), 1, + anon_sym_RBRACE, + STATE(3964), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [147006] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1178), 1, + STATE(1249), 1, sym_member_declarations, - STATE(4214), 1, + STATE(4396), 1, sym_implements_clause, - STATE(5610), 1, + STATE(5475), 1, sym_where_clause, - [147375] = 7, + [147028] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1112), 1, + STATE(1518), 1, sym_member_declarations, - STATE(4167), 1, + STATE(4305), 1, sym_implements_clause, - STATE(5427), 1, + STATE(5503), 1, sym_where_clause, - [147397] = 7, + [147050] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(5865), 1, anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_GT_GT, - STATE(1777), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(3864), 1, sym_qualified_identifier, - [147419] = 7, + STATE(4275), 1, + sym__namespace_identifier, + [147072] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1451), 1, + STATE(1519), 1, sym_member_declarations, - STATE(4210), 1, + STATE(4304), 1, sym_implements_clause, - STATE(5343), 1, + STATE(5495), 1, sym_where_clause, - [147441] = 2, + [147094] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5885), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [147116] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, + anon_sym_BSLASH, + ACTIONS(5865), 1, + anon_sym_namespace, + STATE(3797), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3864), 1, + sym_qualified_identifier, + STATE(4177), 1, + sym__namespace_identifier, + [147138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 6, + ACTIONS(2818), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147453] = 7, + [147150] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1113), 1, + STATE(1436), 1, sym_member_declarations, - STATE(4278), 1, + STATE(4223), 1, sym_implements_clause, - STATE(5429), 1, + STATE(5744), 1, sym_where_clause, - [147475] = 2, + [147172] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 6, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5887), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [147194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3091), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147487] = 2, + [147206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 6, + ACTIONS(3071), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147499] = 7, + [147218] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5909), 1, + ACTIONS(5889), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [147521] = 2, + [147240] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1619), 1, + sym_member_declarations, + STATE(4227), 1, + sym_implements_clause, + STATE(5730), 1, + sym_where_clause, + [147262] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1355), 1, + sym_member_declarations, + STATE(4400), 1, + sym_implements_clause, + STATE(5464), 1, + sym_where_clause, + [147284] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(1654), 1, + sym_member_declarations, + STATE(4293), 1, + sym_implements_clause, + STATE(5395), 1, + sym_where_clause, + [147306] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1354), 1, + sym_member_declarations, + STATE(4401), 1, + sym_implements_clause, + STATE(5462), 1, + sym_where_clause, + [147328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 6, + ACTIONS(3059), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147533] = 7, + [147340] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1135), 1, + STATE(1131), 1, sym_member_declarations, - STATE(4242), 1, + STATE(4432), 1, sym_implements_clause, - STATE(5448), 1, + STATE(5398), 1, sym_where_clause, - [147555] = 7, + [147362] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1136), 1, + STATE(1557), 1, sym_member_declarations, - STATE(4236), 1, + STATE(4345), 1, sym_implements_clause, - STATE(5449), 1, + STATE(5735), 1, sym_where_clause, - [147577] = 7, + [147384] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5911), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [147599] = 7, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(1655), 1, + sym_member_declarations, + STATE(4291), 1, + sym_implements_clause, + STATE(5381), 1, + sym_where_clause, + [147406] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5913), 1, + ACTIONS(5891), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [147621] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5915), 1, - anon_sym_function, - STATE(4365), 1, - sym_parameters, - STATE(6014), 1, - sym__single_parameter, - STATE(6236), 1, - sym__single_parameter_parameters, - [147643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5615), 1, - anon_sym_LT, - STATE(2788), 1, - sym_type_arguments, - ACTIONS(2859), 4, - sym_variable, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - [147659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5917), 1, - anon_sym_RBRACE, - STATE(3840), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [147677] = 7, + [147428] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1215), 1, + STATE(1130), 1, sym_member_declarations, - STATE(4271), 1, + STATE(4435), 1, sym_implements_clause, - STATE(5441), 1, + STATE(5393), 1, sym_where_clause, - [147699] = 2, + [147450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 6, + ACTIONS(3063), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147711] = 2, + [147462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147723] = 2, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1559), 1, + sym_member_declarations, + STATE(4336), 1, + sym_extends_clause, + STATE(5722), 1, + sym_where_clause, + [147484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 6, + ACTIONS(3010), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147735] = 2, + [147496] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147747] = 2, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1563), 1, + sym_member_declarations, + STATE(4335), 1, + sym_implements_clause, + STATE(5720), 1, + sym_where_clause, + [147518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 6, + ACTIONS(5893), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [147759] = 5, + [147530] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(5919), 1, - anon_sym_COLON, - STATE(1772), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LPAREN, - [147777] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1234), 1, + sym_member_declarations, + STATE(4386), 1, + sym_implements_clause, + STATE(5519), 1, + sym_where_clause, + [147552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5921), 1, - anon_sym_function, - STATE(4197), 1, - sym_parameters, - STATE(5838), 1, - sym__single_parameter_parameters, - STATE(6014), 1, - sym__single_parameter, - [147799] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_member_declarations, + STATE(4253), 1, + sym_implements_clause, + STATE(5491), 1, + sym_where_clause, + [147574] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(5865), 1, anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5923), 1, - anon_sym_GT_GT, - STATE(1777), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(3864), 1, sym_qualified_identifier, - [147821] = 7, + STATE(4427), 1, + sym__namespace_identifier, + [147596] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5925), 1, + ACTIONS(5895), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [147843] = 7, + [147618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5897), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [147630] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1436), 1, + STATE(1338), 1, sym_member_declarations, - STATE(4359), 1, + STATE(4409), 1, sym_implements_clause, - STATE(5701), 1, + STATE(5440), 1, sym_where_clause, - [147865] = 5, + [147652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 1, - anon_sym_RPAREN, - ACTIONS(5615), 1, - anon_sym_LT, - STATE(2786), 1, - sym_type_arguments, - ACTIONS(2868), 3, - sym_variable, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [147883] = 7, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5899), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [147674] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1164), 1, + STATE(839), 1, sym_member_declarations, - STATE(4201), 1, - sym_implements_clause, - STATE(5472), 1, + STATE(4354), 1, + sym_extends_clause, + STATE(5655), 1, sym_where_clause, - [147905] = 7, + [147696] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1239), 1, - sym_member_declarations, - STATE(4260), 1, - sym_implements_clause, - STATE(5443), 1, - sym_where_clause, - [147927] = 7, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5901), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [147718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1242), 1, - sym_member_declarations, - STATE(4252), 1, - sym_implements_clause, - STATE(5445), 1, - sym_where_clause, - [147949] = 7, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(5903), 1, + anon_sym_COLON, + STATE(1774), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LPAREN, + [147736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5905), 1, + anon_sym_RBRACE, + STATE(3839), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [147754] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5596), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1170), 1, + STATE(840), 1, sym_member_declarations, - STATE(4187), 1, + STATE(4355), 1, sym_implements_clause, - STATE(5480), 1, + STATE(5652), 1, sym_where_clause, - [147971] = 2, + [147776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [147983] = 7, + ACTIONS(5907), 1, + sym_identifier, + STATE(5752), 1, + sym_visibility_modifier, + ACTIONS(5909), 4, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_internal, + [147792] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, + anon_sym_BSLASH, + ACTIONS(5865), 1, + anon_sym_namespace, + STATE(3797), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3864), 1, + sym_qualified_identifier, + STATE(4181), 1, + sym__namespace_identifier, + [147814] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5927), 1, + ACTIONS(5911), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [148005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148017] = 7, + [147836] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1202), 1, + STATE(933), 1, sym_member_declarations, - STATE(4220), 1, + STATE(4256), 1, sym_implements_clause, - STATE(5688), 1, + STATE(5490), 1, sym_where_clause, - [148039] = 7, + [147858] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5913), 1, + anon_sym_function, + STATE(4244), 1, + sym_parameters, + STATE(6014), 1, + sym__single_parameter, + STATE(6031), 1, + sym__single_parameter_parameters, + [147880] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5929), 1, + ACTIONS(5915), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [148061] = 7, + [147902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5917), 1, + anon_sym_RBRACE, + STATE(3957), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [147920] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(934), 1, + sym_member_declarations, + STATE(4259), 1, + sym_extends_clause, + STATE(5305), 1, + sym_where_clause, + [147942] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1242), 1, + sym_member_declarations, + STATE(4420), 1, + sym_extends_clause, + STATE(5425), 1, + sym_where_clause, + [147964] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1261), 1, + STATE(921), 1, sym_member_declarations, - STATE(4228), 1, + STATE(4421), 1, sym_implements_clause, - STATE(5456), 1, + STATE(5420), 1, sym_where_clause, - [148083] = 7, + [147986] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -319778,28 +313330,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1262), 1, - sym_member_declarations, - STATE(4225), 1, + STATE(4362), 1, sym_implements_clause, - STATE(5458), 1, + STATE(4757), 1, + sym_member_declarations, + STATE(5631), 1, sym_where_clause, - [148105] = 7, + [148008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5919), 1, + anon_sym_RBRACE, + STATE(3817), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [148026] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1207), 1, + STATE(1221), 1, sym_member_declarations, - STATE(4222), 1, + STATE(4423), 1, sym_implements_clause, - STATE(5690), 1, + STATE(5416), 1, + sym_where_clause, + [148048] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4364), 1, + sym_extends_clause, + STATE(4756), 1, + sym_member_declarations, + STATE(5630), 1, sym_where_clause, - [148127] = 7, + [148070] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, @@ -319808,206 +313388,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(5921), 1, anon_sym_function, - STATE(4340), 1, + STATE(4292), 1, sym_parameters, - STATE(5773), 1, - sym__single_parameter_parameters, STATE(6014), 1, sym__single_parameter, - [148149] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1384), 1, - sym_member_declarations, - STATE(4174), 1, - sym_implements_clause, - STATE(5496), 1, - sym_where_clause, - [148171] = 7, + STATE(6259), 1, + sym__single_parameter_parameters, + [148092] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1519), 1, + STATE(1213), 1, sym_member_declarations, - STATE(4277), 1, + STATE(4426), 1, sym_implements_clause, - STATE(5629), 1, + STATE(5409), 1, sym_where_clause, - [148193] = 7, + [148114] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1463), 1, + STATE(1547), 1, sym_member_declarations, - STATE(4456), 1, + STATE(4238), 1, sym_extends_clause, - STATE(5440), 1, + STATE(5641), 1, sym_where_clause, - [148215] = 2, + [148136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 6, + ACTIONS(3079), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [148227] = 7, + [148148] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1455), 1, + STATE(1110), 1, sym_member_declarations, - STATE(4396), 1, + STATE(4449), 1, sym_implements_clause, - STATE(5483), 1, + STATE(5354), 1, sym_where_clause, - [148249] = 2, + [148170] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148261] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5931), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [148283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5933), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [148305] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(935), 1, + sym_member_declarations, + STATE(4264), 1, + sym_implements_clause, + STATE(5383), 1, + sym_where_clause, + [148192] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5935), 1, + ACTIONS(5923), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [148327] = 7, + [148214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5937), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [148349] = 7, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5925), 1, + anon_sym_RBRACE, + STATE(3964), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [148232] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1471), 1, + STATE(1109), 1, sym_member_declarations, - STATE(4350), 1, + STATE(4452), 1, sym_implements_clause, - STATE(5707), 1, + STATE(5351), 1, sym_where_clause, - [148371] = 7, + [148254] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5939), 1, + ACTIONS(5927), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [148393] = 2, + [148276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 6, + ACTIONS(3083), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [148405] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(5941), 1, - anon_sym_COLON, - STATE(1772), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LPAREN, - [148423] = 7, + [148288] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -320016,129 +313541,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1278), 1, - sym_member_declarations, - STATE(4194), 1, + STATE(4367), 1, sym_implements_clause, - STATE(5482), 1, + STATE(4755), 1, + sym_member_declarations, + STATE(5619), 1, sym_where_clause, - [148445] = 7, + [148310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2822), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148334] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1279), 1, + STATE(1378), 1, sym_member_declarations, - STATE(4191), 1, + STATE(4225), 1, sym_implements_clause, - STATE(5484), 1, + STATE(5745), 1, sym_where_clause, - [148467] = 5, + [148356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5615), 1, + ACTIONS(5609), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_RPAREN, - STATE(2786), 1, + STATE(2798), 1, sym_type_arguments, - ACTIONS(2868), 3, + ACTIONS(2876), 4, sym_variable, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, - [148485] = 7, + [148372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148384] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1438), 1, + STATE(1118), 1, sym_member_declarations, - STATE(4363), 1, + STATE(4431), 1, sym_implements_clause, - STATE(5490), 1, + STATE(5396), 1, sym_where_clause, - [148507] = 7, + [148406] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + STATE(1735), 1, + sym_member_declarations, + STATE(4287), 1, + sym_extends_clause, + STATE(5323), 1, + sym_where_clause, + [148428] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5929), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [148450] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + STATE(1736), 1, + sym_member_declarations, + STATE(4286), 1, + sym_implements_clause, + STATE(5319), 1, + sym_where_clause, + [148472] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_member_declarations, + STATE(4433), 1, + sym_extends_clause, + STATE(5394), 1, + sym_where_clause, + [148494] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1520), 1, + STATE(1116), 1, sym_member_declarations, - STATE(4279), 1, + STATE(4434), 1, sym_implements_clause, - STATE(5324), 1, + STATE(5435), 1, sym_where_clause, - [148529] = 2, + [148516] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148541] = 2, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(726), 1, + sym_member_declarations, + STATE(4350), 1, + sym_implements_clause, + STATE(5700), 1, + sym_where_clause, + [148538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148553] = 7, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5931), 1, + anon_sym_RBRACE, + STATE(3869), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [148556] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5921), 1, - anon_sym_function, - STATE(4258), 1, - sym_parameters, - STATE(6014), 1, - sym__single_parameter, - STATE(6030), 1, - sym__single_parameter_parameters, - [148575] = 5, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5933), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [148578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, + ACTIONS(5833), 1, anon_sym_case, - ACTIONS(5859), 1, + ACTIONS(5835), 1, anon_sym_default, - ACTIONS(5943), 1, + ACTIONS(5935), 1, anon_sym_RBRACE, - STATE(3970), 3, + STATE(3930), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [148593] = 2, + [148596] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, + anon_sym_BSLASH, + ACTIONS(5865), 1, + anon_sym_namespace, + STATE(3797), 1, + aux_sym_qualified_identifier_repeat1, + STATE(3864), 1, + sym_qualified_identifier, + STATE(4179), 1, + sym__namespace_identifier, + [148618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5945), 6, + ACTIONS(3039), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [148605] = 7, + [148630] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -320147,38 +313784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(742), 1, + STATE(1740), 1, sym_member_declarations, - STATE(4269), 1, + STATE(4282), 1, sym_implements_clause, - STATE(5552), 1, + STATE(5284), 1, sym_where_clause, - [148627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3086), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148639] = 7, + [148652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - STATE(739), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(727), 1, sym_member_declarations, - STATE(4270), 1, - sym_extends_clause, - STATE(5555), 1, + STATE(4349), 1, + sym_implements_clause, + STATE(5701), 1, sym_where_clause, - [148661] = 7, + [148674] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -320187,179 +313814,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(766), 1, + STATE(1741), 1, sym_member_declarations, - STATE(4169), 1, + STATE(4280), 1, sym_implements_clause, - STATE(5673), 1, + STATE(5288), 1, sym_where_clause, - [148683] = 7, + [148696] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1440), 1, + STATE(1468), 1, sym_member_declarations, - STATE(4320), 1, + STATE(4240), 1, sym_implements_clause, - STATE(5491), 1, + STATE(5597), 1, sym_where_clause, - [148705] = 5, + [148718] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5609), 1, + anon_sym_LT, + ACTIONS(5634), 1, + anon_sym_RPAREN, + STATE(2866), 1, + sym_type_arguments, + ACTIONS(2887), 3, + sym_variable, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [148736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5937), 1, + anon_sym_RBRACE, + STATE(3964), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [148754] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5947), 1, - anon_sym_COLON, - STATE(1772), 1, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5939), 1, + anon_sym_GT_GT, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 3, - anon_sym_COMMA, + STATE(4300), 1, + sym_qualified_identifier, + [148776] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5941), 1, anon_sym_GT_GT, - anon_sym_LPAREN, - [148723] = 7, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [148798] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1271), 1, - sym_member_declarations, - STATE(4343), 1, + STATE(4406), 1, sym_implements_clause, - STATE(5706), 1, - sym_where_clause, - [148745] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - STATE(734), 1, + STATE(4713), 1, sym_member_declarations, - STATE(4284), 1, - sym_implements_clause, - STATE(5565), 1, + STATE(5447), 1, sym_where_clause, - [148767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3090), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [148779] = 7, + [148820] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5949), 1, + ACTIONS(5943), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [148801] = 2, + [148842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 6, + ACTIONS(2837), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [148813] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5951), 1, - anon_sym_GT_GT, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [148835] = 7, + [148854] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1286), 1, + STATE(1084), 1, sym_member_declarations, - STATE(4474), 1, + STATE(4461), 1, sym_implements_clause, - STATE(5709), 1, + STATE(5293), 1, sym_where_clause, - [148857] = 5, + [148876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, + ACTIONS(5945), 1, + anon_sym_RBRACE, + ACTIONS(5947), 1, anon_sym_case, - ACTIONS(5859), 1, + ACTIONS(5950), 1, anon_sym_default, - ACTIONS(5953), 1, - anon_sym_RBRACE, - STATE(3840), 3, + STATE(3964), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [148875] = 7, + [148894] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5953), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [148916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3002), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [148940] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, + ACTIONS(5570), 1, + anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1344), 1, + STATE(4410), 1, + sym_implements_clause, + STATE(4823), 1, sym_member_declarations, - STATE(4339), 1, - sym_extends_clause, - STATE(5506), 1, + STATE(5446), 1, sym_where_clause, - [148897] = 7, + [148962] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(1081), 1, sym_member_declarations, - STATE(4171), 1, + STATE(4473), 1, sym_implements_clause, - STATE(5509), 1, + STATE(5282), 1, sym_where_clause, - [148919] = 7, + [148984] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -320368,172 +314033,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1347), 1, - sym_member_declarations, - STATE(4179), 1, + STATE(4417), 1, sym_implements_clause, - STATE(5513), 1, + STATE(4706), 1, + sym_member_declarations, + STATE(5434), 1, sym_where_clause, - [148941] = 7, + [149006] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, + ACTIONS(5568), 1, + anon_sym_extends, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1348), 1, + STATE(4419), 1, + sym_extends_clause, + STATE(4704), 1, sym_member_declarations, - STATE(4199), 1, - sym_implements_clause, - STATE(5514), 1, + STATE(5429), 1, sym_where_clause, - [148963] = 5, + [149028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5955), 1, - anon_sym_RBRACE, - STATE(3840), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [148981] = 7, + ACTIONS(2929), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [149040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [149052] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(741), 1, - sym_member_declarations, - STATE(4347), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4167), 1, sym_implements_clause, - STATE(5628), 1, + STATE(4511), 1, + sym_member_declarations, + STATE(5332), 1, sym_where_clause, - [149003] = 7, + [149074] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(750), 1, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(740), 1, sym_member_declarations, - STATE(4354), 1, + STATE(4343), 1, sym_implements_clause, - STATE(5639), 1, + STATE(5750), 1, sym_where_clause, - [149025] = 5, + [149096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5957), 1, - anon_sym_RBRACE, - STATE(3840), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [149043] = 7, + ACTIONS(3018), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [149108] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5959), 1, + ACTIONS(5955), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [149065] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - STATE(796), 1, - sym_member_declarations, - STATE(4389), 1, - sym_implements_clause, - STATE(5652), 1, - sym_where_clause, - [149087] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - STATE(801), 1, - sym_member_declarations, - STATE(4390), 1, - sym_extends_clause, - STATE(5656), 1, - sym_where_clause, - [149109] = 7, + [149130] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5961), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [149131] = 7, + [149152] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(5456), 1, + sym_identifier, + ACTIONS(5462), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(5865), 1, anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - ACTIONS(5963), 1, - anon_sym_GT_GT, - STATE(1777), 1, + STATE(3797), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(3864), 1, sym_qualified_identifier, - [149153] = 5, + STATE(4184), 1, + sym__namespace_identifier, + [149174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, + ACTIONS(2980), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [149186] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5833), 1, anon_sym_case, - ACTIONS(5859), 1, + ACTIONS(5835), 1, anon_sym_default, - ACTIONS(5965), 1, + ACTIONS(5959), 1, anon_sym_RBRACE, - STATE(3907), 3, + STATE(3964), 3, sym_switch_case, sym_switch_default, aux_sym_switch_statement_repeat1, - [149171] = 7, + [149204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2976), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_EQ, + sym_xhp_identifier, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [149216] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5961), 1, + sym_variable, + ACTIONS(5963), 1, + anon_sym_COMMA, + ACTIONS(5965), 1, + anon_sym_RPAREN, + STATE(5122), 1, + aux_sym_tuple_type_specifier_repeat1, + STATE(6263), 1, + sym_variadic_modifier, + [149238] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, @@ -320542,319 +314216,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_implements, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1375), 1, - sym_member_declarations, - STATE(4257), 1, + STATE(4466), 1, sym_implements_clause, - STATE(5548), 1, + STATE(4493), 1, + sym_member_declarations, + STATE(5320), 1, sym_where_clause, - [149193] = 7, + [149260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym_member_declarations, - STATE(4265), 1, - sym_extends_clause, - STATE(5553), 1, - sym_where_clause, - [149215] = 5, + ACTIONS(5833), 1, + anon_sym_case, + ACTIONS(5835), 1, + anon_sym_default, + ACTIONS(5967), 1, + anon_sym_RBRACE, + STATE(3981), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_statement_repeat1, + [149278] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(5967), 1, + ACTIONS(5969), 1, anon_sym_COLON, - STATE(1772), 1, + STATE(1774), 1, aux_sym_qualified_identifier_repeat1, ACTIONS(2806), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_LPAREN, - [149233] = 7, + [149296] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1377), 1, + STATE(741), 1, sym_member_declarations, - STATE(4268), 1, + STATE(4341), 1, sym_implements_clause, - STATE(5561), 1, + STATE(5743), 1, sym_where_clause, - [149255] = 7, + [149318] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5971), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [149340] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5973), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [149362] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1714), 1, - sym_member_declarations, - STATE(4394), 1, + STATE(4457), 1, sym_implements_clause, - STATE(5354), 1, + STATE(4488), 1, + sym_member_declarations, + STATE(5313), 1, sym_where_clause, - [149277] = 7, + [149384] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(848), 1, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1628), 1, sym_member_declarations, - STATE(4415), 1, + STATE(4315), 1, sym_implements_clause, - STATE(5713), 1, + STATE(5613), 1, sym_where_clause, - [149299] = 5, + [149406] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5857), 1, - anon_sym_case, - ACTIONS(5859), 1, - anon_sym_default, - ACTIONS(5969), 1, - anon_sym_RBRACE, - STATE(3978), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_statement_repeat1, - [149317] = 7, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5975), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [149428] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(844), 1, - sym_member_declarations, - STATE(4418), 1, - sym_implements_clause, - STATE(5700), 1, - sym_where_clause, - [149339] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5570), 1, - anon_sym_implements, - STATE(785), 1, - sym_member_declarations, - STATE(4253), 1, + STATE(4444), 1, sym_implements_clause, - STATE(5699), 1, + STATE(4590), 1, + sym_member_declarations, + STATE(5370), 1, sym_where_clause, - [149361] = 2, + [149450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 6, + ACTIONS(2876), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [149373] = 2, + [149462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(5977), 1, + anon_sym_COLON, + STATE(1774), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(2806), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LPAREN, + [149480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 6, + ACTIONS(2990), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [149385] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5971), 1, - sym_variable, - ACTIONS(5973), 1, - anon_sym_COMMA, - ACTIONS(5975), 1, - anon_sym_RPAREN, - STATE(5133), 1, - aux_sym_tuple_type_specifier_repeat1, - STATE(6254), 1, - sym_variadic_modifier, - [149407] = 7, + [149492] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(1059), 1, sym_member_declarations, - STATE(4457), 1, + STATE(4446), 1, sym_implements_clause, - STATE(5730), 1, + STATE(5367), 1, sym_where_clause, - [149429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2826), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [149441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5977), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - sym_xhp_identifier, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [149453] = 7, + [149514] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(813), 1, - sym_member_declarations, - STATE(4450), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4447), 1, sym_implements_clause, - STATE(5735), 1, + STATE(4589), 1, + sym_member_declarations, + STATE(5368), 1, sym_where_clause, - [149475] = 7, + [149536] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(782), 1, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(1316), 1, sym_member_declarations, - STATE(4217), 1, + STATE(4191), 1, sym_implements_clause, - STATE(5693), 1, + STATE(5551), 1, sym_where_clause, - [149497] = 7, + [149558] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, ACTIONS(5979), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, + sym_qualified_identifier, + [149580] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + ACTIONS(5981), 1, + anon_sym_GT_GT, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, sym_qualified_identifier, - [149519] = 7, + [149602] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1732), 1, + STATE(1529), 1, sym_member_declarations, - STATE(4285), 1, + STATE(4265), 1, sym_implements_clause, - STATE(5413), 1, + STATE(5389), 1, sym_where_clause, - [149541] = 7, + [149624] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1474), 1, + STATE(1560), 1, sym_member_declarations, - STATE(4335), 1, + STATE(4267), 1, sym_extends_clause, - STATE(5684), 1, + STATE(5382), 1, + sym_where_clause, + [149646] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4459), 1, + sym_implements_clause, + STATE(4555), 1, + sym_member_declarations, + STATE(5289), 1, sym_where_clause, - [149563] = 7, + [149668] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1721), 1, + STATE(758), 1, sym_member_declarations, - STATE(4327), 1, + STATE(4328), 1, sym_implements_clause, - STATE(5372), 1, + STATE(5698), 1, sym_where_clause, - [149585] = 7, + [149690] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5981), 1, - anon_sym_function, - STATE(4258), 1, - sym_parameters, - STATE(6014), 1, - sym__single_parameter, - STATE(6030), 1, - sym__single_parameter_parameters, - [149607] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(920), 1, + sym_member_declarations, + STATE(4194), 1, + sym_implements_clause, + STATE(5554), 1, + sym_where_clause, + [149712] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, ACTIONS(5983), 1, anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4300), 1, sym_qualified_identifier, - [149629] = 7, + [149734] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -320863,5367 +314560,5305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(5570), 1, anon_sym_implements, - STATE(723), 1, + STATE(1572), 1, sym_member_declarations, - STATE(4448), 1, + STATE(4268), 1, sym_implements_clause, - STATE(5737), 1, + STATE(5379), 1, sym_where_clause, - [149651] = 5, + [149756] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(5985), 1, - anon_sym_COLON, - STATE(1772), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(2806), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LPAREN, - [149669] = 7, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4456), 1, + sym_implements_clause, + STATE(4556), 1, + sym_member_declarations, + STATE(5287), 1, + sym_where_clause, + [149778] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(5586), 1, + ACTIONS(5570), 1, + anon_sym_implements, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1724), 1, + STATE(761), 1, sym_member_declarations, - STATE(4283), 1, - sym_extends_clause, - STATE(5420), 1, + STATE(4322), 1, + sym_implements_clause, + STATE(5688), 1, sym_where_clause, - [149691] = 2, + [149800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 6, + ACTIONS(5987), 1, + anon_sym_EQ, + ACTIONS(5989), 1, + sym_xhp_identifier, + ACTIONS(5985), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5991), 2, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [149818] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5839), 1, + anon_sym_function, + STATE(4244), 1, + sym_parameters, + STATE(6014), 1, + sym__single_parameter, + STATE(6031), 1, + sym__single_parameter_parameters, + [149840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3014), 6, anon_sym_COMMA, anon_sym_SEMI, anon_sym_EQ, sym_xhp_identifier, anon_sym_ATrequired, anon_sym_ATlateinit, - [149703] = 7, + [149852] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - ACTIONS(5987), 1, - anon_sym_GT_GT, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, + STATE(4032), 1, sym_qualified_identifier, - [149725] = 6, + [149871] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4059), 1, + STATE(4061), 1, sym_qualified_identifier, - [149744] = 6, + [149890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(4292), 1, + sym_parameters, + STATE(6014), 1, + sym__single_parameter, + STATE(6259), 1, + sym__single_parameter_parameters, + [149909] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(5989), 1, + ACTIONS(5993), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, + STATE(4104), 1, sym_qualified_identifier, - [149763] = 3, + [149928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5991), 1, - anon_sym_enum, - ACTIONS(5149), 4, + ACTIONS(5340), 1, anon_sym_class, - anon_sym_abstract, - sym_final_modifier, + ACTIONS(5348), 1, sym_xhp_modifier, - [149776] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5993), 1, - anon_sym_class, ACTIONS(5995), 1, anon_sym_abstract, ACTIONS(5997), 1, sym_final_modifier, - ACTIONS(5999), 1, - sym_xhp_modifier, - STATE(5592), 1, + STATE(5575), 1, sym_abstract_modifier, - [149795] = 3, + [149947] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4096), 1, + sym_qualified_identifier, + [149966] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(5999), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4104), 1, + sym_qualified_identifier, + [149985] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4916), 1, + anon_sym_RPAREN, ACTIONS(6001), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149808] = 3, + anon_sym_COMMA, + STATE(4562), 1, + sym_variadic_modifier, + STATE(4563), 1, + aux_sym_function_type_specifier_repeat1, + [150004] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4918), 1, + anon_sym_RPAREN, ACTIONS(6003), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149821] = 3, + anon_sym_COMMA, + STATE(4572), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4574), 1, + sym_variadic_modifier, + [150023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4107), 1, + sym_qualified_identifier, + [150042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(5165), 1, + anon_sym_EQ, + STATE(2220), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(5163), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [150059] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4928), 1, + anon_sym_RPAREN, ACTIONS(6005), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149834] = 3, + anon_sym_COMMA, + STATE(4577), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4578), 1, + sym_variadic_modifier, + [150078] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4888), 1, + anon_sym_RPAREN, ACTIONS(6007), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149847] = 3, + anon_sym_COMMA, + STATE(4538), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4539), 1, + sym_variadic_modifier, + [150097] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4880), 1, + anon_sym_RPAREN, ACTIONS(6009), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149860] = 6, + anon_sym_COMMA, + STATE(4533), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4534), 1, + sym_variadic_modifier, + [150116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 1, - anon_sym_class, - ACTIONS(5364), 1, - sym_xhp_modifier, ACTIONS(5995), 1, anon_sym_abstract, ACTIONS(6011), 1, - sym_final_modifier, - STATE(5568), 1, - sym_abstract_modifier, - [149879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6013), 1, - anon_sym_enum, - ACTIONS(5149), 4, anon_sym_class, - anon_sym_abstract, + ACTIONS(6013), 1, sym_final_modifier, + ACTIONS(6015), 1, sym_xhp_modifier, - [149892] = 3, + STATE(5397), 1, + sym_abstract_modifier, + [150135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6015), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149905] = 5, + ACTIONS(6017), 1, + anon_sym_catch, + ACTIONS(6019), 1, + anon_sym_finally, + STATE(932), 1, + sym_catch_clause, + STATE(1442), 1, + sym_finally_clause, + STATE(4313), 1, + aux_sym_try_statement_repeat1, + [150154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(5165), 1, - anon_sym_EQ, - STATE(2221), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(5163), 2, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4874), 1, + anon_sym_RPAREN, + ACTIONS(6021), 1, anon_sym_COMMA, - anon_sym_SEMI, - [149922] = 6, + STATE(4529), 1, + sym_variadic_modifier, + STATE(4530), 1, + aux_sym_function_type_specifier_repeat1, + [150173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(6023), 1, anon_sym_COMMA, - ACTIONS(6019), 1, + ACTIONS(6025), 1, anon_sym_GT_GT, - STATE(5143), 1, - aux_sym_module_attribute_repeat1, - STATE(5144), 1, + STATE(5221), 1, sym_arguments, - [149941] = 3, + STATE(5223), 1, + aux_sym_module_attribute_repeat1, + [150192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6021), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [149954] = 6, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(6027), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_GT_GT, + STATE(4884), 1, + sym_arguments, + STATE(4898), 1, + aux_sym_module_attribute_repeat1, + [150211] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(2029), 1, + ACTIONS(6031), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4085), 1, + STATE(4104), 1, sym_qualified_identifier, - [149973] = 6, + [150230] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 1, + anon_sym_LBRACE, + ACTIONS(5732), 1, + anon_sym_COLON, + ACTIONS(5734), 1, + anon_sym_use, + STATE(2748), 1, + sym_compound_statement, + STATE(5428), 1, + sym__anonymous_function_use_clause, + [150249] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6023), 1, + ACTIONS(6033), 1, anon_sym_class, - ACTIONS(6025), 1, + ACTIONS(6035), 1, sym_final_modifier, - ACTIONS(6027), 1, + ACTIONS(6037), 1, sym_xhp_modifier, - STATE(5562), 1, + STATE(5269), 1, sym_abstract_modifier, - [149992] = 3, + [150268] = 3, + ACTIONS(3067), 1, + sym_xhp_string, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(3065), 4, + anon_sym_LBRACE, + anon_sym_LT, + sym_xhp_comment, + anon_sym_LT_SLASH, + [150281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6029), 1, + ACTIONS(6039), 1, anon_sym_enum, - ACTIONS(5149), 4, + ACTIONS(5121), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [150005] = 6, + [150294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6031), 1, - anon_sym_catch, - ACTIONS(6033), 1, - anon_sym_finally, - STATE(929), 1, - sym_catch_clause, - STATE(1647), 1, - sym_finally_clause, - STATE(4034), 1, - aux_sym_try_statement_repeat1, - [150024] = 6, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4934), 1, + anon_sym_RPAREN, + ACTIONS(6041), 1, + anon_sym_COMMA, + STATE(4606), 1, + sym_variadic_modifier, + STATE(4607), 1, + aux_sym_function_type_specifier_repeat1, + [150313] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4910), 1, + ACTIONS(4932), 1, anon_sym_RPAREN, - ACTIONS(6035), 1, + ACTIONS(6043), 1, anon_sym_COMMA, - STATE(4984), 1, + STATE(4612), 1, aux_sym_function_type_specifier_repeat1, - STATE(4986), 1, + STATE(4613), 1, sym_variadic_modifier, - [150043] = 3, + [150332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [150056] = 6, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4924), 1, + anon_sym_RPAREN, + ACTIONS(6045), 1, + anon_sym_COMMA, + STATE(4615), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4616), 1, + sym_variadic_modifier, + [150351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6031), 1, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(6047), 1, + anon_sym_LBRACK, + STATE(2386), 1, + sym_arguments, + ACTIONS(2876), 2, + anon_sym_COMMA, + anon_sym_GT, + [150368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 1, anon_sym_catch, - ACTIONS(6033), 1, + ACTIONS(6051), 1, anon_sym_finally, - STATE(1265), 1, + STATE(869), 1, sym_catch_clause, - STATE(1535), 1, + STATE(963), 1, sym_finally_clause, - STATE(4215), 1, + STATE(4066), 1, aux_sym_try_statement_repeat1, - [150075] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4101), 1, - sym_qualified_identifier, - [150094] = 6, + [150387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(5543), 1, - sym_qualified_identifier, - [150113] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4119), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6039), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(6041), 2, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6053), 1, + anon_sym_SEMI, + ACTIONS(6055), 1, anon_sym_as, - anon_sym_super, - [150128] = 6, + ACTIONS(6057), 1, + anon_sym_EQ, + STATE(4980), 1, + sym_type_parameters, + [150406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6059), 1, + anon_sym_enum, + ACTIONS(5121), 4, anon_sym_class, - ACTIONS(5332), 1, - sym_xhp_modifier, - ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6043), 1, sym_final_modifier, - STATE(5761), 1, - sym_abstract_modifier, - [150147] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4146), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6045), 2, - anon_sym_COMMA, - anon_sym_GT, - [150162] = 6, - ACTIONS(3), 1, + sym_xhp_modifier, + [150419] = 3, + ACTIONS(3248), 1, + sym_xhp_string, + ACTIONS(5544), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(6047), 1, - anon_sym_COMMA, - ACTIONS(6049), 1, - anon_sym_GT_GT, - STATE(4914), 1, - aux_sym_module_attribute_repeat1, - STATE(4917), 1, - sym_arguments, - [150181] = 6, + ACTIONS(3246), 4, + anon_sym_LBRACE, + anon_sym_LT, + sym_xhp_comment, + anon_sym_LT_SLASH, + [150432] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4128), 1, + STATE(4085), 1, sym_qualified_identifier, - [150200] = 6, + [150451] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4040), 1, + STATE(4070), 1, sym_qualified_identifier, - [150219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - STATE(4422), 1, - sym_parameters, - STATE(5880), 1, - sym__single_parameter_parameters, - STATE(6014), 1, - sym__single_parameter, - [150238] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5372), 1, - anon_sym_class, - ACTIONS(5380), 1, - sym_xhp_modifier, - ACTIONS(5995), 1, - anon_sym_abstract, - ACTIONS(6051), 1, - sym_final_modifier, - STATE(5542), 1, - sym_abstract_modifier, - [150257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_else, - ACTIONS(2055), 4, - anon_sym_elseif, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [150270] = 5, - ACTIONS(3), 1, + [150470] = 3, + ACTIONS(3284), 1, + sym_xhp_string, + ACTIONS(5544), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(6053), 1, - anon_sym_LBRACK, - STATE(2261), 1, - sym_arguments, - ACTIONS(2859), 2, - anon_sym_COMMA, - anon_sym_GT, - [150287] = 6, + ACTIONS(3282), 4, + anon_sym_LBRACE, + anon_sym_LT, + sym_xhp_comment, + anon_sym_LT_SLASH, + [150483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6061), 1, anon_sym_catch, - ACTIONS(6057), 1, + ACTIONS(6063), 1, anon_sym_finally, - STATE(871), 1, + STATE(854), 1, sym_catch_clause, - STATE(1405), 1, + STATE(1034), 1, sym_finally_clause, - STATE(4066), 1, + STATE(4065), 1, aux_sym_try_statement_repeat1, - [150306] = 6, + [150502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4834), 1, - anon_sym_RPAREN, - ACTIONS(6059), 1, - anon_sym_COMMA, - STATE(4532), 1, - sym_variadic_modifier, - STATE(4533), 1, - aux_sym_function_type_specifier_repeat1, - [150325] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4836), 1, - anon_sym_RPAREN, - ACTIONS(6061), 1, - anon_sym_COMMA, - STATE(4537), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4538), 1, - sym_variadic_modifier, - [150344] = 6, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(6065), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4104), 1, + sym_qualified_identifier, + [150521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(6017), 1, anon_sym_catch, - ACTIONS(6065), 1, + ACTIONS(6019), 1, anon_sym_finally, - STATE(799), 1, + STATE(970), 1, sym_catch_clause, - STATE(966), 1, + STATE(1587), 1, sym_finally_clause, - STATE(4056), 1, + STATE(4029), 1, aux_sym_try_statement_repeat1, - [150363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6067), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5277), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_implements, - [150378] = 6, + [150540] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6069), 1, + ACTIONS(6067), 1, anon_sym_class, - ACTIONS(6071), 1, + ACTIONS(6069), 1, sym_final_modifier, - ACTIONS(6073), 1, + ACTIONS(6071), 1, sym_xhp_modifier, - STATE(5536), 1, + STATE(5567), 1, sym_abstract_modifier, - [150397] = 6, + [150559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, - anon_sym_class, - ACTIONS(5428), 1, - sym_xhp_modifier, - ACTIONS(5995), 1, - anon_sym_abstract, - ACTIONS(6075), 1, - sym_final_modifier, - STATE(5616), 1, - sym_abstract_modifier, - [150416] = 4, + STATE(4164), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6073), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(6075), 2, + anon_sym_as, + anon_sym_super, + [150574] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4900), 1, + anon_sym_RPAREN, ACTIONS(6077), 1, - sym_identifier, - STATE(5665), 1, - sym_visibility_modifier, - ACTIONS(6079), 3, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - [150431] = 6, + anon_sym_COMMA, + STATE(4649), 1, + sym_variadic_modifier, + STATE(4651), 1, + aux_sym_function_type_specifier_repeat1, + [150593] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4838), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - ACTIONS(6081), 1, + ACTIONS(6079), 1, anon_sym_COMMA, - STATE(4540), 1, + STATE(4659), 1, aux_sym_function_type_specifier_repeat1, - STATE(4541), 1, + STATE(4660), 1, sym_variadic_modifier, - [150450] = 6, + [150612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym_catch, - ACTIONS(6065), 1, - anon_sym_finally, - STATE(820), 1, - sym_catch_clause, - STATE(991), 1, - sym_finally_clause, - STATE(4215), 1, - aux_sym_try_statement_repeat1, - [150469] = 6, + ACTIONS(6081), 1, + anon_sym_COMMA, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5277), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_implements, + [150627] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5566), 1, + anon_sym_where, ACTIONS(6083), 1, - anon_sym_catch, - ACTIONS(6085), 1, - anon_sym_finally, - STATE(926), 1, - sym_catch_clause, - STATE(1483), 1, - sym_finally_clause, - STATE(4068), 1, - aux_sym_try_statement_repeat1, - [150488] = 3, - ACTIONS(3250), 1, - sym_xhp_string, - ACTIONS(5544), 1, - sym_comment, - ACTIONS(3248), 4, + anon_sym_COLON, + STATE(5275), 1, + sym_where_clause, + ACTIONS(6085), 2, anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [150501] = 6, + anon_sym_SEMI, + [150644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, ACTIONS(6087), 1, anon_sym_COMMA, ACTIONS(6089), 1, anon_sym_GT_GT, - STATE(4778), 1, - aux_sym_module_attribute_repeat1, - STATE(4779), 1, - sym_arguments, - [150520] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(6091), 1, - anon_sym_COMMA, - ACTIONS(6093), 1, - anon_sym_GT_GT, - STATE(4626), 1, + STATE(5066), 1, sym_arguments, - STATE(4627), 1, + STATE(5068), 1, aux_sym_module_attribute_repeat1, - [150539] = 6, + [150663] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4856), 1, + ACTIONS(4814), 1, anon_sym_RPAREN, - ACTIONS(6095), 1, + ACTIONS(6091), 1, anon_sym_COMMA, - STATE(4582), 1, - sym_variadic_modifier, - STATE(4583), 1, + STATE(4662), 1, aux_sym_function_type_specifier_repeat1, - [150558] = 6, + STATE(4663), 1, + sym_variadic_modifier, + [150682] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4858), 1, + ACTIONS(4854), 1, anon_sym_RPAREN, - ACTIONS(6097), 1, + ACTIONS(6093), 1, anon_sym_COMMA, - STATE(4586), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4587), 1, + STATE(5089), 1, sym_variadic_modifier, - [150577] = 6, + STATE(5092), 1, + aux_sym_function_type_specifier_repeat1, + [150701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, - anon_sym_LBRACE, - ACTIONS(5758), 1, - anon_sym_COLON, - ACTIONS(5760), 1, - anon_sym_use, - STATE(2755), 1, - sym_compound_statement, - STATE(5633), 1, - sym__anonymous_function_use_clause, - [150596] = 6, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(6095), 1, + anon_sym_COMMA, + ACTIONS(6097), 1, + anon_sym_GT_GT, + STATE(4831), 1, + aux_sym_module_attribute_repeat1, + STATE(4843), 1, + sym_arguments, + [150720] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4878), 1, + ACTIONS(4912), 1, anon_sym_RPAREN, ACTIONS(6099), 1, anon_sym_COMMA, - STATE(4589), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4590), 1, + STATE(4958), 1, sym_variadic_modifier, - [150615] = 6, + STATE(4960), 1, + aux_sym_function_type_specifier_repeat1, + [150739] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4147), 1, + sym_qualified_identifier, + [150758] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(6101), 1, - anon_sym_catch, + anon_sym_SEMI, ACTIONS(6103), 1, - anon_sym_finally, - STATE(864), 1, - sym_catch_clause, - STATE(989), 1, - sym_finally_clause, - STATE(4215), 1, - aux_sym_try_statement_repeat1, - [150634] = 6, + anon_sym_as, + ACTIONS(6105), 1, + anon_sym_EQ, + STATE(5246), 1, + sym_type_parameters, + [150777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6061), 1, anon_sym_catch, - ACTIONS(6057), 1, + ACTIONS(6063), 1, anon_sym_finally, - STATE(874), 1, + STATE(894), 1, sym_catch_clause, - STATE(1380), 1, + STATE(1106), 1, sym_finally_clause, - STATE(4215), 1, + STATE(4313), 1, aux_sym_try_statement_repeat1, - [150653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6105), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [150666] = 6, + [150796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6083), 1, + ACTIONS(6049), 1, anon_sym_catch, - ACTIONS(6085), 1, + ACTIONS(6051), 1, anon_sym_finally, - STATE(1128), 1, + STATE(838), 1, sym_catch_clause, - STATE(1615), 1, + STATE(937), 1, sym_finally_clause, - STATE(4215), 1, + STATE(4313), 1, aux_sym_try_statement_repeat1, - [150685] = 3, - ACTIONS(3344), 1, - sym_xhp_string, - ACTIONS(5544), 1, + [150815] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 4, + ACTIONS(1518), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [150698] = 6, + ACTIONS(5734), 1, + anon_sym_use, + ACTIONS(6107), 1, + anon_sym_COLON, + STATE(2653), 1, + sym_compound_statement, + STATE(5325), 1, + sym__anonymous_function_use_clause, + [150834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5995), 1, - anon_sym_abstract, - ACTIONS(6107), 1, - anon_sym_class, ACTIONS(6109), 1, - sym_final_modifier, + anon_sym_catch, ACTIONS(6111), 1, - sym_xhp_modifier, - STATE(5270), 1, - sym_abstract_modifier, - [150717] = 3, - ACTIONS(3264), 1, - sym_xhp_string, - ACTIONS(5544), 1, - sym_comment, - ACTIONS(3262), 4, - anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [150730] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(6113), 1, - anon_sym_COMMA, - ACTIONS(6115), 1, - anon_sym_GT_GT, - STATE(4580), 1, - aux_sym_module_attribute_repeat1, - STATE(4581), 1, - sym_arguments, - [150749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4072), 1, - sym_qualified_identifier, - [150768] = 6, + anon_sym_finally, + STATE(1039), 1, + sym_catch_clause, + STATE(1739), 1, + sym_finally_clause, + STATE(4079), 1, + aux_sym_try_statement_repeat1, + [150853] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4075), 1, + STATE(5588), 1, sym_qualified_identifier, - [150787] = 6, + [150872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(6117), 1, + ACTIONS(6113), 1, anon_sym_COMMA, - ACTIONS(6119), 1, + ACTIONS(6115), 1, anon_sym_GT_GT, - STATE(4965), 1, + STATE(4626), 1, sym_arguments, - STATE(4967), 1, + STATE(4627), 1, aux_sym_module_attribute_repeat1, - [150806] = 6, + [150891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4129), 1, - sym_qualified_identifier, - [150825] = 3, - ACTIONS(3350), 1, - sym_xhp_string, - ACTIONS(5544), 1, - sym_comment, - ACTIONS(3348), 4, + ACTIONS(6117), 5, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [150838] = 6, + anon_sym_SEMI, + anon_sym_as, + [150902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4854), 1, - sym_qualified_identifier, - [150857] = 6, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + ACTIONS(5810), 1, + anon_sym_COLON, + STATE(1992), 1, + sym_compound_statement, + STATE(5573), 1, + sym__anonymous_function_use_clause, + [150921] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(6121), 1, + anon_sym_EQ, + ACTIONS(6119), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6123), 2, + anon_sym_ATrequired, + anon_sym_ATlateinit, + [150936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6125), 1, anon_sym_catch, - ACTIONS(6123), 1, + ACTIONS(6127), 1, anon_sym_finally, - STATE(4134), 1, + STATE(4108), 1, sym_catch_clause, - STATE(4215), 1, + STATE(4313), 1, aux_sym_try_statement_repeat1, - STATE(4746), 1, + STATE(4760), 1, sym_finally_clause, - [150876] = 3, + [150955] = 3, + ACTIONS(3264), 1, + sym_xhp_string, ACTIONS(5544), 1, sym_comment, - ACTIONS(6127), 1, - sym_xhp_string, - ACTIONS(6125), 4, + ACTIONS(3262), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [150889] = 6, + [150968] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4026), 1, + STATE(4132), 1, sym_qualified_identifier, - [150908] = 6, + [150987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6033), 1, - anon_sym_finally, - ACTIONS(6129), 1, + ACTIONS(1518), 1, + anon_sym_LBRACE, + STATE(2699), 1, + sym_compound_statement, + ACTIONS(6129), 3, + sym_variable, + anon_sym_LPAREN, + anon_sym_function, + [151002] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5356), 1, + anon_sym_class, + ACTIONS(5364), 1, + sym_xhp_modifier, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6131), 1, + sym_final_modifier, + STATE(5647), 1, + sym_abstract_modifier, + [151021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6109), 1, anon_sym_catch, - STATE(1265), 1, + ACTIONS(6111), 1, + anon_sym_finally, + STATE(1091), 1, sym_catch_clause, - STATE(1535), 1, + STATE(1621), 1, sym_finally_clause, - STATE(4215), 1, + STATE(4313), 1, aux_sym_try_statement_repeat1, - [150927] = 6, + [151040] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5760), 1, + anon_sym_LBRACK, + STATE(2495), 1, + sym_arguments, + STATE(5024), 1, + sym_type_arguments, + [151059] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(6131), 1, + ACTIONS(6133), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, + STATE(4104), 1, sym_qualified_identifier, - [150946] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, - ACTIONS(6133), 1, - anon_sym_COLON, - STATE(1925), 1, - sym_compound_statement, - STATE(5462), 1, - sym__anonymous_function_use_clause, - [150965] = 6, + [151078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4860), 1, + anon_sym_RPAREN, ACTIONS(6135), 1, anon_sym_COMMA, - ACTIONS(6137), 1, - anon_sym_GT_GT, - STATE(4839), 1, - aux_sym_module_attribute_repeat1, - STATE(4841), 1, - sym_arguments, - [150984] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(6139), 1, - anon_sym_COLON, - STATE(5719), 1, - sym_where_clause, - ACTIONS(6141), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [151001] = 3, - ACTIONS(3059), 1, + STATE(4692), 1, + sym_variadic_modifier, + STATE(4693), 1, + aux_sym_function_type_specifier_repeat1, + [151097] = 3, + ACTIONS(3344), 1, sym_xhp_string, ACTIONS(5544), 1, sym_comment, - ACTIONS(3057), 4, + ACTIONS(3342), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [151014] = 6, + [151110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(6143), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, - sym_qualified_identifier, - [151033] = 6, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4858), 1, + anon_sym_RPAREN, + ACTIONS(6137), 1, + anon_sym_COMMA, + STATE(4696), 1, + aux_sym_function_type_specifier_repeat1, + STATE(4697), 1, + sym_variadic_modifier, + [151129] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(6139), 1, + anon_sym_COMMA, + ACTIONS(6141), 1, + anon_sym_GT_GT, + STATE(4973), 1, + aux_sym_module_attribute_repeat1, + STATE(4976), 1, + sym_arguments, + [151148] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4898), 1, + ACTIONS(4846), 1, anon_sym_RPAREN, - ACTIONS(6145), 1, + ACTIONS(6143), 1, anon_sym_COMMA, - STATE(4621), 1, - sym_variadic_modifier, - STATE(4622), 1, + STATE(4699), 1, aux_sym_function_type_specifier_repeat1, - [151052] = 6, + STATE(4700), 1, + sym_variadic_modifier, + [151167] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(6147), 1, + ACTIONS(6145), 1, anon_sym_SEMI, - ACTIONS(6149), 1, + ACTIONS(6147), 1, anon_sym_as, - ACTIONS(6151), 1, + ACTIONS(6149), 1, anon_sym_EQ, - STATE(5203), 1, + STATE(4930), 1, sym_type_parameters, - [151071] = 2, + [151186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 5, + ACTIONS(6081), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4056), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(5300), 3, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_as, - [151082] = 6, + anon_sym_where, + anon_sym_implements, + [151201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4900), 1, - anon_sym_RPAREN, - ACTIONS(6155), 1, - anon_sym_COMMA, - STATE(4628), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4637), 1, - sym_variadic_modifier, - [151101] = 6, + ACTIONS(6125), 1, + anon_sym_catch, + ACTIONS(6127), 1, + anon_sym_finally, + STATE(4074), 1, + aux_sym_try_statement_repeat1, + STATE(4155), 1, + sym_catch_clause, + STATE(4781), 1, + sym_finally_clause, + [151220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4860), 1, - anon_sym_RPAREN, - ACTIONS(6157), 1, - anon_sym_COMMA, - STATE(4759), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4760), 1, - sym_variadic_modifier, - [151120] = 6, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4160), 1, + sym_qualified_identifier, + [151239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4890), 1, - anon_sym_RPAREN, - ACTIONS(6159), 1, - anon_sym_COMMA, - STATE(4922), 1, - sym_variadic_modifier, - STATE(4923), 1, - aux_sym_function_type_specifier_repeat1, - [151139] = 3, - ACTIONS(3172), 1, + ACTIONS(6151), 5, + sym__heredoc_body, + sym__heredoc_end_newline, + sym__heredoc_end, + sym__embedded_opening_brace, + sym_variable, + [151250] = 3, + ACTIONS(3210), 1, sym_xhp_string, ACTIONS(5544), 1, sym_comment, - ACTIONS(3170), 4, + ACTIONS(3208), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [151152] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, - anon_sym_LPAREN, - STATE(4365), 1, - sym_parameters, - STATE(6014), 1, - sym__single_parameter, - STATE(6236), 1, - sym__single_parameter_parameters, - [151171] = 6, + [151263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 1, + ACTIONS(5388), 1, anon_sym_class, - ACTIONS(5348), 1, + ACTIONS(5396), 1, sym_xhp_modifier, ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6161), 1, + ACTIONS(6153), 1, sym_final_modifier, - STATE(5611), 1, + STATE(5604), 1, sym_abstract_modifier, - [151190] = 6, + [151282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4906), 1, - anon_sym_RPAREN, - ACTIONS(6163), 1, - anon_sym_COMMA, - STATE(4640), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4642), 1, - sym_variadic_modifier, - [151209] = 3, - ACTIONS(3256), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4300), 1, + sym_qualified_identifier, + [151301] = 3, + ACTIONS(3176), 1, sym_xhp_string, ACTIONS(5544), 1, sym_comment, - ACTIONS(3254), 4, + ACTIONS(3174), 4, anon_sym_LBRACE, anon_sym_LT, sym_xhp_comment, anon_sym_LT_SLASH, - [151222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6121), 1, - anon_sym_catch, - ACTIONS(6123), 1, - anon_sym_finally, - STATE(4079), 1, - aux_sym_try_statement_repeat1, - STATE(4148), 1, - sym_catch_clause, - STATE(4774), 1, - sym_finally_clause, - [151241] = 6, + [151314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(6165), 1, + ACTIONS(6155), 1, anon_sym_COMMA, - ACTIONS(6167), 1, + ACTIONS(6157), 1, anon_sym_GT_GT, - STATE(4650), 1, + STATE(5077), 1, aux_sym_module_attribute_repeat1, - STATE(4651), 1, + STATE(5085), 1, sym_arguments, - [151260] = 4, + [151333] = 6, ACTIONS(3), 1, sym_comment, - STATE(4150), 1, + ACTIONS(5310), 1, + sym_variable, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(4207), 1, + sym_parameters, + STATE(5851), 1, + sym__single_parameter_parameters, + STATE(6014), 1, + sym__single_parameter, + [151352] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4115), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6169), 2, + ACTIONS(6159), 2, anon_sym_COMMA, anon_sym_GT, - [151275] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5734), 1, - anon_sym_COLON, - STATE(5396), 1, - sym_where_clause, - ACTIONS(5736), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [151292] = 6, + [151367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6171), 1, - anon_sym_SEMI, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_EQ, - STATE(4932), 1, - sym_type_parameters, - [151311] = 4, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4031), 1, + sym_qualified_identifier, + [151386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, - anon_sym_LBRACE, - STATE(2712), 1, - sym_compound_statement, - ACTIONS(6177), 3, + ACTIONS(5310), 1, sym_variable, + ACTIONS(5314), 1, anon_sym_LPAREN, - anon_sym_function, - [151326] = 6, + STATE(4258), 1, + sym_parameters, + STATE(6014), 1, + sym__single_parameter, + STATE(6160), 1, + sym__single_parameter_parameters, + [151405] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(6179), 1, + ACTIONS(6161), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, + STATE(4104), 1, sym_qualified_identifier, - [151345] = 6, + [151424] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4882), 1, + ACTIONS(4838), 1, anon_sym_RPAREN, - ACTIONS(6181), 1, + ACTIONS(6163), 1, anon_sym_COMMA, - STATE(4675), 1, + STATE(4733), 1, sym_variadic_modifier, - STATE(4678), 1, + STATE(4735), 1, aux_sym_function_type_specifier_repeat1, - [151364] = 6, + [151443] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4944), 1, + ACTIONS(4840), 1, anon_sym_RPAREN, - ACTIONS(6183), 1, + ACTIONS(6165), 1, anon_sym_COMMA, - STATE(4684), 1, + STATE(4747), 1, aux_sym_function_type_specifier_repeat1, - STATE(4685), 1, + STATE(4749), 1, sym_variadic_modifier, - [151383] = 6, + [151462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5766), 1, - anon_sym_LBRACK, - STATE(2511), 1, + ACTIONS(6167), 1, + anon_sym_COMMA, + ACTIONS(6169), 1, + anon_sym_GT_GT, + STATE(5148), 1, + aux_sym_module_attribute_repeat1, + STATE(5249), 1, sym_arguments, - STATE(4959), 1, - sym_type_arguments, - [151402] = 6, + [151481] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4940), 1, + ACTIONS(4842), 1, anon_sym_RPAREN, - ACTIONS(6185), 1, + ACTIONS(6171), 1, anon_sym_COMMA, - STATE(4687), 1, + STATE(4753), 1, aux_sym_function_type_specifier_repeat1, - STATE(4688), 1, + STATE(4754), 1, sym_variadic_modifier, - [151421] = 6, + [151500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 1, + ACTIONS(5372), 1, anon_sym_class, - ACTIONS(5396), 1, + ACTIONS(5380), 1, sym_xhp_modifier, ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6187), 1, + ACTIONS(6173), 1, sym_final_modifier, - STATE(5704), 1, + STATE(5761), 1, sym_abstract_modifier, - [151440] = 6, + [151519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6189), 1, - anon_sym_SEMI, - ACTIONS(6191), 1, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(6175), 1, + anon_sym_COMMA, + ACTIONS(6177), 1, + anon_sym_GT_GT, + STATE(4736), 1, + aux_sym_module_attribute_repeat1, + STATE(4737), 1, + sym_arguments, + [151538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, + anon_sym_else, + ACTIONS(2049), 2, + anon_sym_elseif, + anon_sym_while, + ACTIONS(6179), 2, + anon_sym_catch, + anon_sym_finally, + [151553] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4163), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6075), 2, anon_sym_as, - ACTIONS(6193), 1, - anon_sym_EQ, - STATE(4894), 1, - sym_type_parameters, - [151459] = 6, + anon_sym_super, + ACTIONS(6181), 2, + anon_sym_COMMA, + anon_sym_GT, + [151568] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4922), 1, - anon_sym_RPAREN, - ACTIONS(6195), 1, + ACTIONS(6111), 1, + anon_sym_finally, + ACTIONS(6183), 1, + anon_sym_catch, + STATE(1091), 1, + sym_catch_clause, + STATE(1621), 1, + sym_finally_clause, + STATE(4313), 1, + aux_sym_try_statement_repeat1, + [151587] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4157), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6075), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6185), 2, anon_sym_COMMA, - STATE(4710), 1, - sym_variadic_modifier, - STATE(4713), 1, - aux_sym_function_type_specifier_repeat1, - [151478] = 6, + anon_sym_GT, + [151602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4920), 1, - anon_sym_RPAREN, - ACTIONS(6197), 1, + ACTIONS(6187), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [151615] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4159), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6075), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6189), 2, anon_sym_COMMA, - STATE(4717), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4718), 1, - sym_variadic_modifier, - [151497] = 6, + anon_sym_GT, + [151630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_finally, + ACTIONS(6183), 1, + anon_sym_catch, + STATE(1039), 1, + sym_catch_clause, + STATE(1739), 1, + sym_finally_clause, + STATE(4110), 1, + aux_sym_try_statement_repeat1, + [151649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4912), 1, - anon_sym_RPAREN, - ACTIONS(6199), 1, + STATE(4164), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6075), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6191), 2, anon_sym_COMMA, - STATE(4721), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4723), 1, - sym_variadic_modifier, - [151516] = 6, + anon_sym_GT, + [151664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6193), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [151677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_catch, + ACTIONS(6197), 1, + anon_sym_finally, + STATE(712), 1, + sym_catch_clause, + STATE(888), 1, + sym_finally_clause, + STATE(4127), 1, + aux_sym_try_statement_repeat1, + [151696] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, sym_variable, ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(4207), 1, + STATE(4215), 1, sym_parameters, - STATE(5851), 1, + STATE(5781), 1, sym__single_parameter_parameters, STATE(6014), 1, sym__single_parameter, - [151535] = 6, + [151715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, - ACTIONS(5780), 1, - anon_sym_COLON, - STATE(1903), 1, - sym_compound_statement, - STATE(5576), 1, - sym__anonymous_function_use_clause, - [151554] = 3, - ACTIONS(5544), 1, - sym_comment, - ACTIONS(6203), 1, - sym_xhp_string, - ACTIONS(6201), 4, - anon_sym_LBRACE, - anon_sym_LT, - sym_xhp_comment, - anon_sym_LT_SLASH, - [151567] = 4, + ACTIONS(6199), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [151728] = 6, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6205), 2, - anon_sym_COMMA, - anon_sym_GT, - [151582] = 6, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6201), 1, + anon_sym_class, + ACTIONS(6203), 1, + sym_final_modifier, + ACTIONS(6205), 1, + sym_xhp_modifier, + STATE(5754), 1, + sym_abstract_modifier, + [151747] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, ACTIONS(2029), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4165), 1, + STATE(4058), 1, sym_qualified_identifier, - [151601] = 6, - ACTIONS(3), 1, + [151766] = 3, + ACTIONS(5544), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, - sym_qualified_identifier, - [151620] = 4, + ACTIONS(6209), 1, + sym_xhp_string, + ACTIONS(6207), 4, + anon_sym_LBRACE, + anon_sym_LT, + sym_xhp_comment, + anon_sym_LT_SLASH, + [151779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6209), 1, - anon_sym_EQ, - ACTIONS(6207), 2, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4910), 1, + anon_sym_RPAREN, + ACTIONS(6211), 1, anon_sym_COMMA, + STATE(5018), 1, + aux_sym_function_type_specifier_repeat1, + STATE(5019), 1, + sym_variadic_modifier, + [151798] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5800), 1, + anon_sym_COLON, + STATE(5363), 1, + sym_where_clause, + ACTIONS(5802), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(6211), 2, - anon_sym_ATrequired, - anon_sym_ATlateinit, - [151635] = 6, + [151815] = 3, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(6215), 1, + sym_xhp_string, + ACTIONS(6213), 4, + anon_sym_LBRACE, + anon_sym_LT, + sym_xhp_comment, + anon_sym_LT_SLASH, + [151828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6101), 1, + ACTIONS(6217), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [151841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, anon_sym_catch, - ACTIONS(6103), 1, + ACTIONS(6197), 1, anon_sym_finally, - STATE(863), 1, + STATE(711), 1, sym_catch_clause, - STATE(931), 1, + STATE(873), 1, sym_finally_clause, - STATE(4065), 1, + STATE(4313), 1, aux_sym_try_statement_repeat1, - [151654] = 3, + [151860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + ACTIONS(6219), 1, + anon_sym_COLON, + STATE(1955), 1, + sym_compound_statement, + STATE(5615), 1, + sym__anonymous_function_use_clause, + [151879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6213), 1, + ACTIONS(6221), 1, anon_sym_enum, - ACTIONS(5149), 4, + ACTIONS(5121), 4, anon_sym_class, anon_sym_abstract, sym_final_modifier, sym_xhp_modifier, - [151667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(6215), 1, - anon_sym_COMMA, - ACTIONS(6217), 1, - anon_sym_GT_GT, - STATE(5151), 1, - sym_arguments, - STATE(5154), 1, - aux_sym_module_attribute_repeat1, - [151686] = 4, + [151892] = 3, ACTIONS(3), 1, sym_comment, - STATE(4147), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6219), 2, - anon_sym_COMMA, - anon_sym_GT, - [151701] = 6, + ACTIONS(6223), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [151905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5995), 1, - anon_sym_abstract, - ACTIONS(6221), 1, + ACTIONS(6225), 1, + anon_sym_enum, + ACTIONS(5121), 4, anon_sym_class, - ACTIONS(6223), 1, + anon_sym_abstract, sym_final_modifier, - ACTIONS(6225), 1, sym_xhp_modifier, - STATE(5640), 1, - sym_abstract_modifier, - [151720] = 6, + [151918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, ACTIONS(6227), 1, anon_sym_COMMA, ACTIONS(6229), 1, anon_sym_GT_GT, - STATE(5090), 1, - sym_arguments, - STATE(5091), 1, + STATE(4744), 1, aux_sym_module_attribute_repeat1, - [151739] = 6, + STATE(4745), 1, + sym_arguments, + [151937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, ACTIONS(6231), 1, - anon_sym_COMMA, - ACTIONS(6233), 1, - anon_sym_GT_GT, - STATE(4870), 1, - sym_arguments, - STATE(4871), 1, - aux_sym_module_attribute_repeat1, - [151758] = 5, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [151950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5808), 1, - anon_sym_COLON, - STATE(5335), 1, - sym_where_clause, - ACTIONS(5810), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [151775] = 6, + ACTIONS(6233), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [151963] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(6235), 1, + ACTIONS(2029), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, + STATE(4104), 1, sym_qualified_identifier, - [151794] = 6, + [151982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4060), 1, - sym_qualified_identifier, - [151813] = 6, + ACTIONS(5404), 1, + anon_sym_class, + ACTIONS(5412), 1, + sym_xhp_modifier, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6235), 1, + sym_final_modifier, + STATE(5686), 1, + sym_abstract_modifier, + [152001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, - anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, + ACTIONS(5324), 1, + anon_sym_class, + ACTIONS(5332), 1, + sym_xhp_modifier, + ACTIONS(5995), 1, + anon_sym_abstract, ACTIONS(6237), 1, - anon_sym_COLON, - STATE(2774), 1, - sym_compound_statement, - STATE(5478), 1, - sym__anonymous_function_use_clause, - [151832] = 4, + sym_final_modifier, + STATE(5536), 1, + sym_abstract_modifier, + [152020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 1, + ACTIONS(2043), 1, anon_sym_else, - ACTIONS(2043), 2, + ACTIONS(2045), 4, anon_sym_elseif, anon_sym_while, - ACTIONS(6239), 2, anon_sym_catch, anon_sym_finally, - [151847] = 6, + [152033] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6241), 1, + ACTIONS(6239), 1, anon_sym_class, - ACTIONS(6243), 1, + ACTIONS(6241), 1, sym_final_modifier, - ACTIONS(6245), 1, + ACTIONS(6243), 1, sym_xhp_modifier, - STATE(5687), 1, + STATE(5639), 1, sym_abstract_modifier, - [151866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4870), 1, - anon_sym_RPAREN, - ACTIONS(6247), 1, - anon_sym_COMMA, - STATE(4751), 1, - sym_variadic_modifier, - STATE(4752), 1, - aux_sym_function_type_specifier_repeat1, - [151885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4868), 1, - anon_sym_RPAREN, - ACTIONS(6249), 1, - anon_sym_COMMA, - STATE(4755), 1, - aux_sym_function_type_specifier_repeat1, - STATE(4756), 1, - sym_variadic_modifier, - [151904] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(6251), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, - sym_qualified_identifier, - [151923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6253), 5, - sym__heredoc_body, - sym__heredoc_end_newline, - sym__heredoc_end, - sym__embedded_opening_brace, - sym_variable, - [151934] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4864), 1, - anon_sym_RPAREN, - ACTIONS(6255), 1, - anon_sym_COMMA, - STATE(4476), 1, - sym_variadic_modifier, - STATE(5256), 1, - aux_sym_function_type_specifier_repeat1, - [151953] = 5, + [152052] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(6257), 1, + ACTIONS(5794), 1, anon_sym_COLON, - STATE(5680), 1, + STATE(5753), 1, sym_where_clause, - ACTIONS(6259), 2, + ACTIONS(5796), 2, anon_sym_LBRACE, anon_sym_SEMI, - [151970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(943), 1, - anon_sym_namespace, - ACTIONS(2029), 1, - sym_identifier, - STATE(1777), 1, - aux_sym_qualified_identifier_repeat1, - STATE(4377), 1, - sym_qualified_identifier, - [151989] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4149), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6261), 2, - anon_sym_COMMA, - anon_sym_GT, - [152004] = 6, + [152069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6263), 1, - anon_sym_catch, - ACTIONS(6265), 1, - anon_sym_finally, - STATE(709), 1, - sym_catch_clause, - STATE(757), 1, - sym_finally_clause, - STATE(4215), 1, - aux_sym_try_statement_repeat1, - [152023] = 6, + ACTIONS(5995), 1, + anon_sym_abstract, + ACTIONS(6245), 1, + anon_sym_class, + ACTIONS(6247), 1, + sym_final_modifier, + ACTIONS(6249), 1, + sym_xhp_modifier, + STATE(5534), 1, + sym_abstract_modifier, + [152088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_class, - ACTIONS(5412), 1, + ACTIONS(5428), 1, sym_xhp_modifier, ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6267), 1, + ACTIONS(6251), 1, sym_final_modifier, - STATE(5649), 1, + STATE(5614), 1, sym_abstract_modifier, - [152042] = 4, + [152107] = 6, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6269), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(6271), 2, - anon_sym_as, - anon_sym_super, - [152057] = 4, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5611), 1, + anon_sym_LBRACK, + STATE(1818), 1, + sym_arguments, + STATE(5012), 1, + sym_type_arguments, + [152126] = 4, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, + STATE(4150), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6274), 2, + ACTIONS(6253), 2, anon_sym_COMMA, anon_sym_GT, - [152072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 1, - anon_sym_else, - ACTIONS(2037), 2, - anon_sym_elseif, - anon_sym_while, - ACTIONS(6239), 2, - anon_sym_catch, - anon_sym_finally, - [152087] = 4, + [152141] = 4, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, + STATE(4151), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6276), 2, + ACTIONS(6255), 2, anon_sym_COMMA, anon_sym_GT, - [152102] = 4, + [152156] = 4, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, + STATE(4053), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6278), 2, + ACTIONS(6257), 2, anon_sym_COMMA, anon_sym_GT, - [152117] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6033), 1, - anon_sym_finally, - ACTIONS(6129), 1, - anon_sym_catch, - STATE(929), 1, - sym_catch_clause, - STATE(1647), 1, - sym_finally_clause, - STATE(4082), 1, - aux_sym_try_statement_repeat1, - [152136] = 6, + [152171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - sym_variable, - ACTIONS(5314), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - STATE(4299), 1, - sym_parameters, - STATE(5780), 1, - sym__single_parameter_parameters, - STATE(6014), 1, - sym__single_parameter, - [152155] = 6, + ACTIONS(6259), 1, + anon_sym_COMMA, + ACTIONS(6261), 1, + anon_sym_GT_GT, + STATE(4870), 1, + sym_arguments, + STATE(4871), 1, + aux_sym_module_attribute_repeat1, + [152190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(5454), 1, - anon_sym_LT, - ACTIONS(5617), 1, - anon_sym_LBRACK, - STATE(1814), 1, - sym_arguments, - STATE(5012), 1, - sym_type_arguments, - [152174] = 4, + ACTIONS(6263), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [152203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(1949), 1, - sym_compound_statement, - ACTIONS(6177), 3, - sym_variable, - anon_sym_LPAREN, - anon_sym_function, - [152189] = 4, + ACTIONS(6265), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [152216] = 4, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, + STATE(4164), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6280), 2, + ACTIONS(6267), 2, anon_sym_COMMA, anon_sym_GT, - [152204] = 4, + [152231] = 4, ACTIONS(3), 1, sym_comment, - STATE(4163), 1, + STATE(4164), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6282), 2, + ACTIONS(6269), 2, anon_sym_COMMA, anon_sym_GT, - [152219] = 4, + [152246] = 6, ACTIONS(3), 1, sym_comment, - STATE(4039), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, - anon_sym_as, - anon_sym_super, - ACTIONS(6284), 2, - anon_sym_COMMA, - anon_sym_GT, - [152234] = 6, + ACTIONS(6271), 1, + anon_sym_catch, + ACTIONS(6273), 1, + anon_sym_finally, + STATE(848), 1, + sym_catch_clause, + STATE(1237), 1, + sym_finally_clause, + STATE(4313), 1, + aux_sym_try_statement_repeat1, + [152265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(1922), 1, + sym_compound_statement, + ACTIONS(6129), 3, + sym_variable, + anon_sym_LPAREN, + anon_sym_function, + [152280] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - ACTIONS(943), 1, + ACTIONS(947), 1, anon_sym_namespace, - ACTIONS(6286), 1, + ACTIONS(6275), 1, sym_identifier, - STATE(1777), 1, + STATE(1775), 1, aux_sym_qualified_identifier_repeat1, - STATE(4125), 1, + STATE(4104), 1, sym_qualified_identifier, - [152253] = 6, + [152299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6263), 1, + ACTIONS(2053), 1, + anon_sym_else, + ACTIONS(2055), 2, + anon_sym_elseif, + anon_sym_while, + ACTIONS(6179), 2, anon_sym_catch, - ACTIONS(6265), 1, anon_sym_finally, - STATE(708), 1, + [152314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6271), 1, + anon_sym_catch, + ACTIONS(6273), 1, + anon_sym_finally, + STATE(842), 1, sym_catch_clause, - STATE(735), 1, + STATE(1258), 1, sym_finally_clause, - STATE(4144), 1, + STATE(4152), 1, aux_sym_try_statement_repeat1, - [152272] = 4, + [152333] = 4, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, + STATE(4164), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6288), 2, + ACTIONS(6277), 2, anon_sym_COMMA, anon_sym_GT, - [152287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6067), 1, - anon_sym_COMMA, - STATE(4051), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(5296), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_implements, - [152302] = 6, + [152348] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5995), 1, anon_sym_abstract, - ACTIONS(6290), 1, + ACTIONS(6279), 1, anon_sym_class, - ACTIONS(6292), 1, + ACTIONS(6281), 1, sym_final_modifier, - ACTIONS(6294), 1, + ACTIONS(6283), 1, sym_xhp_modifier, - STATE(5392), 1, + STATE(5672), 1, sym_abstract_modifier, - [152321] = 4, + [152367] = 4, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, + STATE(4164), 1, aux_sym_type_parameter_repeat1, - ACTIONS(6041), 2, + ACTIONS(6075), 2, anon_sym_as, anon_sym_super, - ACTIONS(6296), 2, + ACTIONS(6285), 2, anon_sym_COMMA, anon_sym_GT, - [152336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6298), 1, - anon_sym_enum, - ACTIONS(5149), 4, - anon_sym_class, - anon_sym_abstract, - sym_final_modifier, - sym_xhp_modifier, - [152349] = 6, + [152382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(6300), 1, + ACTIONS(6287), 1, anon_sym_COMMA, - ACTIONS(6302), 1, + ACTIONS(6289), 1, anon_sym_GT_GT, - STATE(5254), 1, + STATE(4920), 1, aux_sym_module_attribute_repeat1, - STATE(5262), 1, + STATE(4926), 1, sym_arguments, - [152368] = 4, + [152401] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - STATE(5696), 1, + ACTIONS(6291), 1, + anon_sym_COLON, + STATE(5612), 1, sym_where_clause, - ACTIONS(6304), 2, + ACTIONS(6293), 2, anon_sym_LBRACE, anon_sym_SEMI, - [152382] = 5, + [152418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_member_declarations, - STATE(5447), 1, - sym_where_clause, - [152398] = 4, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(947), 1, + anon_sym_namespace, + ACTIONS(2029), 1, + sym_identifier, + STATE(1775), 1, + aux_sym_qualified_identifier_repeat1, + STATE(4894), 1, + sym_qualified_identifier, + [152437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6308), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152412] = 5, + STATE(4164), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6075), 2, + anon_sym_as, + anon_sym_super, + ACTIONS(6295), 2, + anon_sym_COMMA, + anon_sym_GT, + [152452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - STATE(731), 1, - sym_member_declarations, - STATE(5657), 1, - sym_where_clause, - [152428] = 5, + STATE(4164), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(6297), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(6299), 2, + anon_sym_as, + anon_sym_super, + [152467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_while, - ACTIONS(6310), 1, - anon_sym_elseif, - ACTIONS(6313), 1, - anon_sym_else, - STATE(4170), 1, - aux_sym_if_statement_repeat1, - [152444] = 5, + ACTIONS(6302), 1, + anon_sym_enum, + ACTIONS(5121), 4, + anon_sym_class, + anon_sym_abstract, + sym_final_modifier, + sym_xhp_modifier, + [152480] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1276), 1, + STATE(921), 1, sym_member_declarations, - STATE(5476), 1, + STATE(5420), 1, sym_where_clause, - [152460] = 5, + [152496] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1479), 1, + STATE(4525), 1, sym_member_declarations, - STATE(5329), 1, + STATE(5335), 1, sym_where_clause, - [152476] = 4, + [152512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6316), 1, + ACTIONS(6306), 1, anon_sym_RBRACE, - STATE(4255), 2, + STATE(4189), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152490] = 5, + [152526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(6310), 1, anon_sym_LBRACE, - STATE(980), 1, - sym_member_declarations, - STATE(5497), 1, - sym_where_clause, - [152506] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_else, - STATE(4181), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2059), 2, - anon_sym_elseif, - anon_sym_while, - [152520] = 5, + ACTIONS(6312), 1, + anon_sym_as, + ACTIONS(6308), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152540] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1278), 1, + STATE(1316), 1, sym_member_declarations, - STATE(5482), 1, + STATE(5551), 1, sym_where_clause, - [152536] = 5, + [152556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(6316), 1, anon_sym_LBRACE, - STATE(1471), 1, - sym_member_declarations, - STATE(5707), 1, - sym_where_clause, - [152552] = 5, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6314), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152570] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1438), 1, + STATE(920), 1, sym_member_declarations, - STATE(5490), 1, + STATE(5554), 1, sym_where_clause, - [152568] = 5, + [152586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6312), 1, + anon_sym_as, + ACTIONS(6320), 1, + anon_sym_LBRACE, + ACTIONS(6308), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152600] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1279), 1, + STATE(1335), 1, sym_member_declarations, - STATE(5484), 1, + STATE(5578), 1, sym_where_clause, - [152584] = 5, + [152616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, ACTIONS(6318), 1, anon_sym_as, - ACTIONS(6320), 1, - anon_sym_EQ, - STATE(5669), 1, - sym_type_parameters, - [152600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2073), 1, - anon_sym_while, ACTIONS(6322), 1, - anon_sym_elseif, - ACTIONS(6324), 1, - anon_sym_else, - STATE(4170), 1, - aux_sym_if_statement_repeat1, - [152616] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6326), 1, - anon_sym_RBRACE, - STATE(4224), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, + anon_sym_LBRACE, + ACTIONS(6314), 2, + anon_sym_COMMA, + anon_sym_SEMI, [152630] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1455), 1, + STATE(1336), 1, sym_member_declarations, - STATE(5483), 1, + STATE(5598), 1, sym_where_clause, [152646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6328), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, + ACTIONS(6312), 1, + anon_sym_as, + ACTIONS(6324), 1, + anon_sym_LBRACE, + ACTIONS(6308), 2, + anon_sym_COMMA, + anon_sym_SEMI, [152660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6330), 1, - anon_sym_RBRACE, - STATE(4188), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152674] = 5, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6326), 1, + anon_sym_LBRACE, + ACTIONS(6314), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(6312), 1, + anon_sym_as, + ACTIONS(6328), 1, anon_sym_LBRACE, - STATE(1702), 1, - sym_member_declarations, - STATE(5346), 1, - sym_where_clause, - [152690] = 5, + ACTIONS(6308), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6330), 1, anon_sym_LBRACE, - STATE(1384), 1, - sym_member_declarations, - STATE(5496), 1, - sym_where_clause, - [152706] = 4, + ACTIONS(6314), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, + ACTIONS(6312), 1, + anon_sym_as, ACTIONS(6332), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6334), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - STATE(5715), 1, - sym_where_clause, - ACTIONS(6336), 2, anon_sym_LBRACE, + ACTIONS(6308), 2, + anon_sym_COMMA, anon_sym_SEMI, - [152748] = 5, + [152716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6334), 1, anon_sym_LBRACE, - STATE(1263), 1, - sym_member_declarations, - STATE(5414), 1, - sym_where_clause, - [152764] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6067), 1, + ACTIONS(6314), 2, anon_sym_COMMA, - STATE(4399), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(6338), 2, - anon_sym_LBRACE, - anon_sym_where, - [152778] = 5, + anon_sym_SEMI, + [152730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_member_declarations, - STATE(5682), 1, - sym_where_clause, - [152794] = 5, + ACTIONS(6336), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT, + anon_sym_super, + [152740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(6312), 1, + anon_sym_as, + ACTIONS(6338), 1, anon_sym_LBRACE, - STATE(1262), 1, - sym_member_declarations, - STATE(5458), 1, - sym_where_clause, - [152810] = 5, + ACTIONS(6308), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6340), 1, anon_sym_LBRACE, - STATE(1463), 1, - sym_member_declarations, - STATE(5440), 1, - sym_where_clause, - [152826] = 4, + ACTIONS(6314), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [152768] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(6342), 1, - anon_sym_LBRACE, - ACTIONS(6344), 1, anon_sym_as, - ACTIONS(6340), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [152840] = 5, + ACTIONS(6344), 1, + anon_sym_EQ, + STATE(5532), 1, + sym_type_parameters, + [152784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(6346), 1, - anon_sym_COLON, + anon_sym_as, ACTIONS(6348), 1, - anon_sym_EQ_EQ_GT, - STATE(5686), 1, - sym_capability_list, - [152856] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1261), 1, - sym_member_declarations, - STATE(5456), 1, - sym_where_clause, - [152872] = 5, + anon_sym_EQ, + STATE(5535), 1, + sym_type_parameters, + [152800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1281), 1, - sym_member_declarations, - STATE(5486), 1, - sym_where_clause, - [152888] = 4, + ACTIONS(2057), 1, + anon_sym_else, + STATE(4193), 1, + aux_sym_if_statement_repeat1, + ACTIONS(2059), 2, + anon_sym_elseif, + anon_sym_while, + [152814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, ACTIONS(6350), 1, anon_sym_RBRACE, - STATE(4184), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [152902] = 5, + [152828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2079), 1, + anon_sym_while, + ACTIONS(6352), 1, + anon_sym_elseif, + ACTIONS(6355), 1, + anon_sym_else, + STATE(4190), 1, + aux_sym_if_statement_repeat1, + [152844] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1341), 1, + STATE(1377), 1, sym_member_declarations, - STATE(5487), 1, + STATE(5749), 1, sym_where_clause, - [152918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6352), 1, - anon_sym_RBRACE, - STATE(4229), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [152932] = 4, + [152860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6356), 1, + ACTIONS(3067), 4, anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [152946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - STATE(5621), 1, - sym_variadic_modifier, - ACTIONS(6360), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152960] = 4, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [152870] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(2071), 1, + anon_sym_while, ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6362), 1, - anon_sym_LBRACE, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [152974] = 5, + anon_sym_elseif, + ACTIONS(6360), 1, + anon_sym_else, + STATE(4190), 1, + aux_sym_if_statement_repeat1, + [152886] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1440), 1, + STATE(1378), 1, sym_member_declarations, - STATE(5491), 1, + STATE(5745), 1, sym_where_clause, - [152990] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6364), 1, - anon_sym_COLON, - ACTIONS(6366), 1, - anon_sym_EQ_EQ_GT, - STATE(5666), 1, - sym_capability_list, - [153006] = 5, + [152902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, + ACTIONS(2063), 1, anon_sym_while, - ACTIONS(6322), 1, + ACTIONS(6358), 1, anon_sym_elseif, - ACTIONS(6368), 1, + ACTIONS(6362), 1, anon_sym_else, - STATE(4181), 1, + STATE(4193), 1, aux_sym_if_statement_repeat1, - [153022] = 4, + [152918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6364), 1, + anon_sym_as, + ACTIONS(6366), 1, + anon_sym_EQ, + STATE(5561), 1, + sym_type_parameters, + [152934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6368), 1, + anon_sym_COLON, ACTIONS(6370), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153036] = 5, + anon_sym_EQ_EQ_GT, + STATE(5585), 1, + sym_capability_list, + [152950] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1520), 1, + STATE(1379), 1, sym_member_declarations, - STATE(5324), 1, + STATE(5737), 1, sym_where_clause, - [153052] = 4, + [152966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, + ACTIONS(5564), 1, + anon_sym_LT, ACTIONS(6372), 1, - anon_sym_RBRACE, - STATE(4316), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153066] = 2, + anon_sym_as, + ACTIONS(6374), 1, + anon_sym_EQ, + STATE(5572), 1, + sym_type_parameters, + [152982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 4, - anon_sym_COMMA, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6376), 1, anon_sym_as, - anon_sym_GT, - anon_sym_super, - [153076] = 4, + ACTIONS(6378), 1, + anon_sym_EQ, + STATE(5591), 1, + sym_type_parameters, + [152998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6380), 1, + anon_sym_as, + ACTIONS(6382), 1, + anon_sym_EQ, + STATE(5506), 1, + sym_type_parameters, + [153014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6376), 1, + ACTIONS(6384), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4229), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153090] = 5, + [153028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6386), 1, + anon_sym_as, + ACTIONS(6388), 1, + anon_sym_EQ, + STATE(5600), 1, + sym_type_parameters, + [153044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6390), 1, + anon_sym_as, + ACTIONS(6392), 1, + anon_sym_EQ, + STATE(5633), 1, + sym_type_parameters, + [153060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6394), 1, + anon_sym_as, + ACTIONS(6396), 1, + anon_sym_EQ, + STATE(5645), 1, + sym_type_parameters, + [153076] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1202), 1, + STATE(1285), 1, sym_member_declarations, - STATE(5688), 1, + STATE(5537), 1, sym_where_clause, - [153106] = 4, + [153092] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 1, - anon_sym_catch, - ACTIONS(6381), 1, - anon_sym_finally, - STATE(4215), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [153120] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6398), 1, + anon_sym_COLON, + ACTIONS(6400), 1, + anon_sym_EQ_EQ_GT, + STATE(5664), 1, + sym_capability_list, + [153108] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(6383), 1, + ACTIONS(6402), 1, anon_sym_as, - ACTIONS(6385), 1, + ACTIONS(6404), 1, anon_sym_EQ, - STATE(5647), 1, + STATE(5668), 1, sym_type_parameters, - [153136] = 5, + [153124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(766), 1, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1571), 1, sym_member_declarations, - STATE(5673), 1, + STATE(5638), 1, sym_where_clause, - [153152] = 5, + [153140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - STATE(742), 1, - sym_member_declarations, - STATE(5552), 1, - sym_where_clause, - [153168] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6406), 1, + anon_sym_COLON, + ACTIONS(6408), 1, + anon_sym_EQ_EQ_GT, + STATE(5671), 1, + sym_capability_list, + [153156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6387), 1, + ACTIONS(6410), 1, anon_sym_RBRACE, - STATE(4246), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153182] = 5, + [153170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1269), 1, - sym_member_declarations, - STATE(5705), 1, - sym_where_clause, - [153198] = 5, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_EQ, + STATE(5679), 1, + sym_type_parameters, + [153186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - STATE(739), 1, - sym_member_declarations, - STATE(5555), 1, - sym_where_clause, - [153214] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6416), 1, + anon_sym_COLON, + ACTIONS(6418), 1, + anon_sym_EQ_EQ_GT, + STATE(5682), 1, + sym_capability_list, + [153202] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1271), 1, - sym_member_declarations, - STATE(5706), 1, + STATE(5636), 1, sym_where_clause, - [153230] = 5, + ACTIONS(6420), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [153216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1170), 1, - sym_member_declarations, - STATE(5480), 1, - sym_where_clause, - [153246] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6422), 1, + anon_sym_COLON, + ACTIONS(6424), 1, + anon_sym_EQ_EQ_GT, + STATE(5727), 1, + sym_capability_list, + [153232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6426), 1, + anon_sym_as, + ACTIONS(6428), 1, + anon_sym_EQ, + STATE(5733), 1, + sym_type_parameters, + [153248] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_COLON, + ACTIONS(6432), 1, + anon_sym_EQ_EQ_GT, + STATE(5758), 1, + sym_capability_list, + [153264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + STATE(5665), 1, + sym_variadic_modifier, + ACTIONS(6434), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [153278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6389), 1, + ACTIONS(6436), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4246), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153260] = 5, + [153292] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1243), 1, - sym_member_declarations, - STATE(5446), 1, + STATE(5673), 1, sym_where_clause, - [153276] = 4, + ACTIONS(6438), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [153306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6391), 1, - anon_sym_RBRACE, - STATE(4435), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153290] = 4, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6440), 1, + anon_sym_as, + ACTIONS(6442), 1, + anon_sym_EQ, + STATE(5747), 1, + sym_type_parameters, + [153322] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6393), 1, - anon_sym_RBRACE, - STATE(4264), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153304] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6444), 1, + anon_sym_COLON, + ACTIONS(6446), 1, + anon_sym_EQ_EQ_GT, + STATE(5734), 1, + sym_capability_list, + [153338] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1242), 1, + STATE(1588), 1, sym_member_declarations, - STATE(5445), 1, + STATE(5677), 1, sym_where_clause, - [153320] = 4, + [153354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6395), 1, + ACTIONS(6448), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4211), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153334] = 4, + [153368] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - STATE(5577), 1, - sym_where_clause, - ACTIONS(6397), 2, + ACTIONS(5578), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [153348] = 5, + STATE(1314), 1, + sym_member_declarations, + STATE(5515), 1, + sym_where_clause, + [153384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6452), 1, + anon_sym_BSLASH, + STATE(3793), 1, + aux_sym_qualified_identifier_repeat1, + ACTIONS(6450), 2, + sym_identifier, + anon_sym_namespace, + [153398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(734), 1, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1509), 1, sym_member_declarations, - STATE(5565), 1, + STATE(5689), 1, sym_where_clause, - [153364] = 5, + [153414] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1444), 1, + STATE(1425), 1, sym_member_declarations, - STATE(5492), 1, + STATE(5508), 1, sym_where_clause, - [153380] = 4, + [153430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6399), 1, + ACTIONS(6455), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153394] = 5, + [153444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6457), 1, anon_sym_LBRACE, - STATE(1239), 1, - sym_member_declarations, - STATE(5443), 1, - sym_where_clause, - [153410] = 4, + ACTIONS(6314), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [153458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5564), 1, + anon_sym_LT, + STATE(3774), 1, + sym_parameters, + STATE(5329), 1, + sym_type_parameters, + [153474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6401), 1, + ACTIONS(6459), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153424] = 5, + [153488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1164), 1, - sym_member_declarations, - STATE(5472), 1, - sym_where_clause, - [153440] = 5, + ACTIONS(5632), 2, + anon_sym_BSLASH, + anon_sym_RBRACE, + ACTIONS(6461), 2, + sym_identifier, + anon_sym_namespace, + [153500] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1446), 1, + STATE(1422), 1, sym_member_declarations, - STATE(5495), 1, + STATE(5480), 1, sym_where_clause, - [153456] = 5, + [153516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6463), 1, + anon_sym_COLON, + ACTIONS(6465), 1, + anon_sym_EQ_EQ_GT, + STATE(5607), 1, + sym_capability_list, + [153532] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1286), 1, - sym_member_declarations, - STATE(5709), 1, + STATE(5760), 1, sym_where_clause, - [153472] = 5, + ACTIONS(6467), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [153546] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + STATE(5757), 1, + sym_variadic_modifier, + ACTIONS(6469), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [153560] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1509), 1, + STATE(1604), 1, sym_member_declarations, - STATE(5630), 1, + STATE(5712), 1, sym_where_clause, - [153488] = 5, + [153576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6471), 1, + anon_sym_COLON, + ACTIONS(6473), 1, + anon_sym_EQ_EQ_GT, + STATE(5469), 1, + sym_capability_list, + [153592] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1344), 1, + STATE(1605), 1, sym_member_declarations, - STATE(5506), 1, + STATE(5704), 1, sym_where_clause, - [153504] = 5, + [153608] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1436), 1, - sym_member_declarations, - STATE(5701), 1, + STATE(5746), 1, sym_where_clause, - [153520] = 5, + ACTIONS(6475), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [153622] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1160), 1, + STATE(975), 1, sym_member_declarations, - STATE(5468), 1, + STATE(5388), 1, sym_where_clause, - [153536] = 4, + [153638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, - anon_sym_as, - ACTIONS(6403), 1, - anon_sym_LBRACE, - ACTIONS(6340), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [153550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, + ACTIONS(6477), 1, sym_identifier, - ACTIONS(6405), 1, + ACTIONS(6480), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153564] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6407), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_EQ, - STATE(5702), 1, - sym_type_parameters, - [153580] = 4, + [153652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6411), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153594] = 5, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6482), 1, + anon_sym_COLON, + ACTIONS(6484), 1, + anon_sym_EQ_EQ_GT, + STATE(5463), 1, + sym_capability_list, + [153668] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(1436), 1, sym_member_declarations, - STATE(5509), 1, + STATE(5744), 1, sym_where_clause, - [153610] = 4, + [153684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6413), 1, + ACTIONS(6486), 1, anon_sym_RBRACE, - STATE(4209), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153624] = 5, + [153698] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(973), 1, sym_member_declarations, - STATE(5513), 1, + STATE(5355), 1, sym_where_clause, - [153640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6415), 1, - anon_sym_RBRACE, - STATE(4213), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153654] = 4, + [153714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6417), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [153668] = 5, + ACTIONS(5566), 1, + anon_sym_where, + STATE(1560), 1, + sym_member_declarations, + STATE(5382), 1, + sym_where_clause, + [153730] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1224), 1, + STATE(967), 1, sym_member_declarations, - STATE(5442), 1, + STATE(5436), 1, sym_where_clause, - [153684] = 5, + [153746] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(771), 1, + STATE(1572), 1, sym_member_declarations, - STATE(5679), 1, + STATE(5379), 1, sym_where_clause, - [153700] = 4, + [153762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6419), 1, + ACTIONS(6488), 1, anon_sym_RBRACE, - STATE(4266), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153714] = 4, + [153776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6421), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153728] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(1404), 1, + sym_member_declarations, + STATE(5410), 1, + sym_where_clause, + [153792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1619), 1, + sym_member_declarations, + STATE(5730), 1, + sym_where_clause, + [153808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6423), 1, + ACTIONS(6490), 1, anon_sym_RBRACE, - STATE(4244), 2, + STATE(4266), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153742] = 5, + [153822] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1348), 1, + STATE(1432), 1, sym_member_declarations, - STATE(5514), 1, + STATE(5725), 1, sym_where_clause, - [153758] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6425), 1, - anon_sym_COLON, - ACTIONS(6427), 1, - anon_sym_EQ_EQ_GT, - STATE(5406), 1, - sym_capability_list, - [153774] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6429), 1, - anon_sym_COLON, - ACTIONS(6431), 1, - anon_sym_EQ_EQ_GT, - STATE(5703), 1, - sym_capability_list, - [153790] = 5, + [153838] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1215), 1, + STATE(965), 1, sym_member_declarations, - STATE(5441), 1, + STATE(5558), 1, sym_where_clause, - [153806] = 4, + [153854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6433), 1, + ACTIONS(6492), 1, anon_sym_RBRACE, - STATE(4233), 2, + STATE(4232), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [153820] = 5, + [153868] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6435), 1, - anon_sym_as, - ACTIONS(6437), 1, - anon_sym_EQ, - STATE(5632), 1, - sym_type_parameters, - [153836] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6494), 1, + anon_sym_COLON, + ACTIONS(6496), 1, + anon_sym_EQ_EQ_GT, + STATE(5353), 1, + sym_capability_list, + [153884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6439), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5578), 1, anon_sym_LBRACE, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [153850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6441), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153864] = 5, + STATE(964), 1, + sym_member_declarations, + STATE(5568), 1, + sym_where_clause, + [153900] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1349), 1, + STATE(1394), 1, sym_member_declarations, - STATE(5515), 1, + STATE(5376), 1, sym_where_clause, - [153880] = 4, + [153916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6443), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [153894] = 5, + ACTIONS(5562), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_where, + STATE(1529), 1, + sym_member_declarations, + STATE(5389), 1, + sym_where_clause, + [153932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(1518), 1, anon_sym_LBRACE, - ACTIONS(5760), 1, + ACTIONS(5734), 1, anon_sym_use, - STATE(2772), 1, + STATE(2654), 1, sym_compound_statement, - STATE(5523), 1, + STATE(5317), 1, sym__anonymous_function_use_clause, - [153910] = 5, + [153948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6498), 1, + anon_sym_SEMI, + ACTIONS(6500), 1, + anon_sym_as, + ACTIONS(6502), 1, + anon_sym_super, + ACTIONS(6504), 1, + anon_sym_EQ, + [153964] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1350), 1, + STATE(961), 1, sym_member_declarations, - STATE(5518), 1, + STATE(5609), 1, sym_where_clause, - [153926] = 5, + [153980] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(792), 1, + STATE(1744), 1, sym_member_declarations, - STATE(5623), 1, + STATE(5292), 1, sym_where_clause, - [153942] = 5, + [153996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6506), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154010] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(738), 1, + STATE(1742), 1, sym_member_declarations, - STATE(5626), 1, + STATE(5291), 1, sym_where_clause, - [153958] = 5, + [154026] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1198), 1, + STATE(1741), 1, sym_member_declarations, - STATE(5438), 1, + STATE(5288), 1, sym_where_clause, - [153974] = 5, + [154042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, - STATE(2686), 1, - sym_compound_statement, - STATE(5463), 1, - sym__anonymous_function_use_clause, - [153990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6445), 1, - anon_sym_RBRACE, - STATE(4235), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [154004] = 4, + ACTIONS(5566), 1, + anon_sym_where, + STATE(1740), 1, + sym_member_declarations, + STATE(5284), 1, + sym_where_clause, + [154058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, - anon_sym_as, - ACTIONS(6447), 1, - anon_sym_LBRACE, - ACTIONS(6340), 2, + ACTIONS(6508), 1, anon_sym_COMMA, + STATE(4270), 1, + aux_sym_xhp_children_declaration_repeat1, + ACTIONS(5730), 2, anon_sym_SEMI, - [154018] = 5, + anon_sym_RPAREN, + [154072] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1136), 1, + STATE(1366), 1, sym_member_declarations, - STATE(5449), 1, + STATE(5359), 1, sym_where_clause, - [154034] = 5, + [154088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, - STATE(1923), 1, - sym_compound_statement, - STATE(5373), 1, - sym__anonymous_function_use_clause, - [154050] = 5, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, + ACTIONS(6513), 1, + anon_sym_EQ, + ACTIONS(6511), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [154102] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1571), 1, + STATE(1736), 1, sym_member_declarations, - STATE(5579), 1, + STATE(5319), 1, sym_where_clause, - [154066] = 5, + [154118] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1135), 1, + STATE(1735), 1, sym_member_declarations, - STATE(5448), 1, + STATE(5323), 1, sym_where_clause, - [154082] = 5, + [154134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6312), 1, + anon_sym_as, + ACTIONS(6515), 1, + anon_sym_LBRACE, + ACTIONS(6308), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [154148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + STATE(2668), 1, + sym_compound_statement, + STATE(5341), 1, + sym__anonymous_function_use_clause, + [154164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6517), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [154174] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1607), 1, + STATE(1563), 1, sym_member_declarations, - STATE(5313), 1, + STATE(5720), 1, sym_where_clause, - [154098] = 5, + [154190] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1176), 1, + STATE(1559), 1, sym_member_declarations, - STATE(5609), 1, + STATE(5722), 1, sym_where_clause, - [154114] = 4, + [154206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6449), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [154128] = 4, + ACTIONS(5566), 1, + anon_sym_where, + STATE(1659), 1, + sym_member_declarations, + STATE(5371), 1, + sym_where_clause, + [154222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6451), 1, + ACTIONS(6519), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4290), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154142] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1616), 1, - sym_member_declarations, - STATE(5360), 1, - sym_where_clause, - [154158] = 5, + [154236] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(741), 1, + STATE(1655), 1, sym_member_declarations, - STATE(5628), 1, + STATE(5381), 1, sym_where_clause, - [154174] = 5, + [154252] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1617), 1, + STATE(1557), 1, sym_member_declarations, - STATE(5361), 1, + STATE(5735), 1, sym_where_clause, - [154190] = 5, + [154268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, - STATE(1911), 1, - sym_compound_statement, - STATE(5683), 1, - sym__anonymous_function_use_clause, - [154206] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(5566), 1, anon_sym_where, - STATE(5698), 1, + STATE(1654), 1, + sym_member_declarations, + STATE(5395), 1, sym_where_clause, - ACTIONS(6453), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [154220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6354), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [154232] = 5, + [154284] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1185), 1, + STATE(1608), 1, sym_member_declarations, - STATE(5634), 1, + STATE(5544), 1, sym_where_clause, - [154248] = 5, + [154300] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1119), 1, + STATE(1651), 1, sym_member_declarations, - STATE(5434), 1, + STATE(5421), 1, sym_where_clause, - [154264] = 5, + [154316] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1115), 1, + STATE(1644), 1, sym_member_declarations, - STATE(5433), 1, + STATE(5422), 1, sym_where_clause, - [154280] = 5, + [154332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_SEMI, - ACTIONS(6457), 1, + ACTIONS(33), 1, + anon_sym_BSLASH, + ACTIONS(2806), 1, + anon_sym_COLON_COLON, + ACTIONS(6521), 1, anon_sym_as, - ACTIONS(6459), 1, - anon_sym_super, - ACTIONS(6461), 1, + STATE(1774), 1, + aux_sym_qualified_identifier_repeat1, + [154348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(6523), 1, + anon_sym_as, + ACTIONS(6525), 1, anon_sym_EQ, - [154296] = 5, + STATE(5663), 1, + sym_type_parameters, + [154364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1599), 1, - sym_member_declarations, - STATE(5710), 1, - sym_where_clause, - [154312] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6527), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154378] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1584), 1, + STATE(1534), 1, sym_member_declarations, - STATE(5582), 1, + STATE(5486), 1, sym_where_clause, - [154328] = 5, + [154394] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6529), 1, + anon_sym_COLON, + ACTIONS(6531), 1, + anon_sym_EQ_EQ_GT, + STATE(5543), 1, + sym_capability_list, + [154410] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1113), 1, + STATE(1519), 1, sym_member_declarations, - STATE(5429), 1, + STATE(5495), 1, sym_where_clause, - [154344] = 5, + [154426] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(5564), 1, + anon_sym_LT, + STATE(3798), 1, + sym_parameters, + STATE(5542), 1, + sym_type_parameters, + [154442] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1183), 1, + STATE(1610), 1, sym_member_declarations, - STATE(5625), 1, + STATE(5538), 1, sym_where_clause, - [154360] = 5, + [154458] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1451), 1, + STATE(1518), 1, sym_member_declarations, - STATE(5343), 1, + STATE(5503), 1, sym_where_clause, - [154376] = 4, + [154474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 1, - anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - ACTIONS(6466), 2, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6533), 1, anon_sym_RBRACE, - anon_sym_SEMI, - [154390] = 5, + STATE(4306), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6468), 1, - anon_sym_COLON, - ACTIONS(6470), 1, - anon_sym_EQ_EQ_GT, - STATE(5740), 1, - sym_capability_list, - [154406] = 5, + ACTIONS(1518), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + STATE(2658), 1, + sym_compound_statement, + STATE(5521), 1, + sym__anonymous_function_use_clause, + [154504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6535), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_PLUS, + ACTIONS(6539), 1, + anon_sym_DASH, + ACTIONS(6541), 1, + anon_sym_reify, + [154520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_LPAREN, + STATE(5530), 1, + sym_arguments, + ACTIONS(6543), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [154534] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1112), 1, - sym_member_declarations, - STATE(5427), 1, + STATE(5657), 1, sym_where_clause, - [154422] = 3, + ACTIONS(6545), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [154548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, - anon_sym_as, - ACTIONS(6340), 3, + ACTIONS(6547), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + ACTIONS(3788), 2, anon_sym_SEMI, - [154434] = 5, + anon_sym_RPAREN, + [154562] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6550), 1, + anon_sym_RBRACE, + STATE(4311), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154576] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + STATE(1449), 1, + sym_member_declarations, + STATE(5596), 1, + sym_where_clause, + [154592] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1624), 1, + ACTIONS(5566), 1, + anon_sym_where, + STATE(1450), 1, sym_member_declarations, - STATE(5432), 1, + STATE(5577), 1, sym_where_clause, - [154450] = 5, + [154608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6472), 1, - anon_sym_as, - ACTIONS(6474), 1, - anon_sym_EQ, - STATE(5534), 1, - sym_type_parameters, - [154466] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6552), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154622] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(750), 1, + STATE(1454), 1, sym_member_declarations, - STATE(5639), 1, + STATE(5603), 1, sym_where_clause, - [154482] = 4, + [154638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6318), 1, + anon_sym_as, + ACTIONS(6314), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [154650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6476), 1, + ACTIONS(6554), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4381), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154496] = 5, + [154664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6478), 1, + ACTIONS(6556), 1, + anon_sym_COMMA, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + ACTIONS(6559), 2, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(6480), 1, - anon_sym_as, - ACTIONS(6482), 1, - anon_sym_super, - ACTIONS(6484), 1, - anon_sym_EQ, - [154512] = 4, + [154678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6486), 1, + ACTIONS(6561), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154526] = 4, + [154692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + STATE(1890), 1, + sym_compound_statement, + STATE(5348), 1, + sym__anonymous_function_use_clause, + [154708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6563), 1, + anon_sym_catch, + ACTIONS(6566), 1, + anon_sym_finally, + STATE(4313), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [154722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6488), 1, + ACTIONS(6568), 1, anon_sym_RBRACE, - STATE(4282), 2, + STATE(4318), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154540] = 5, + [154736] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1178), 1, + STATE(1612), 1, sym_member_declarations, - STATE(5610), 1, + STATE(5525), 1, sym_where_clause, - [154556] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6490), 1, - anon_sym_as, - ACTIONS(6492), 1, - anon_sym_EQ, - STATE(5747), 1, - sym_type_parameters, - [154572] = 5, + [154752] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1110), 1, + STATE(1487), 1, sym_member_declarations, - STATE(5419), 1, + STATE(5624), 1, sym_where_clause, - [154588] = 5, + [154768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(796), 1, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(933), 1, sym_member_declarations, - STATE(5652), 1, + STATE(5490), 1, sym_where_clause, - [154604] = 5, + [154784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6570), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154798] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(801), 1, + STATE(1503), 1, sym_member_declarations, - STATE(5656), 1, + STATE(5662), 1, sym_where_clause, - [154620] = 5, + [154814] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1207), 1, + STATE(790), 1, sym_member_declarations, - STATE(5690), 1, + STATE(5654), 1, sym_where_clause, - [154636] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6344), 1, - anon_sym_as, - ACTIONS(6494), 1, - anon_sym_LBRACE, - ACTIONS(6340), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [154650] = 4, + [154830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6496), 1, + ACTIONS(6572), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [154664] = 5, + [154844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6498), 1, - anon_sym_as, - ACTIONS(6500), 1, - anon_sym_EQ, - STATE(5604), 1, - sym_type_parameters, - [154680] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(778), 1, + sym_member_declarations, + STATE(5670), 1, + sym_where_clause, + [154860] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(2063), 1, + anon_sym_while, ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6502), 1, - anon_sym_LBRACE, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [154694] = 5, + anon_sym_elseif, + ACTIONS(6574), 1, + anon_sym_else, + STATE(4324), 1, + aux_sym_if_statement_repeat1, + [154876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2071), 1, + anon_sym_while, + ACTIONS(6358), 1, + anon_sym_elseif, + ACTIONS(6576), 1, + anon_sym_else, + STATE(4190), 1, + aux_sym_if_statement_repeat1, + [154892] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1481), 1, + STATE(934), 1, sym_member_declarations, - STATE(5348), 1, + STATE(5305), 1, sym_where_clause, - [154710] = 5, + [154908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym_else, + STATE(4324), 1, + aux_sym_if_statement_repeat1, + ACTIONS(2059), 2, + anon_sym_elseif, + anon_sym_while, + [154922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6578), 1, + anon_sym_RBRACE, + STATE(4321), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154936] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1650), 1, + STATE(770), 1, sym_member_declarations, - STATE(5436), 1, + STATE(5675), 1, sym_where_clause, - [154726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3059), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [154736] = 4, + [154952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, - anon_sym_as, - ACTIONS(6504), 1, - anon_sym_LBRACE, - ACTIONS(6340), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [154750] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6580), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [154966] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1173), 1, + STATE(4757), 1, sym_member_declarations, - STATE(5607), 1, + STATE(5631), 1, sym_where_clause, - [154766] = 5, + [154982] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1068), 1, + STATE(935), 1, sym_member_declarations, - STATE(5410), 1, + STATE(5383), 1, sym_where_clause, - [154782] = 5, + [154998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + STATE(1913), 1, + sym_compound_statement, + STATE(5627), 1, + sym__anonymous_function_use_clause, + [155014] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1375), 1, + STATE(4756), 1, sym_member_declarations, - STATE(5548), 1, + STATE(5630), 1, sym_where_clause, - [154798] = 5, + [155030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6081), 1, + anon_sym_COMMA, + STATE(4357), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(6582), 2, + anon_sym_LBRACE, + anon_sym_where, + [155044] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1585), 1, + STATE(1620), 1, sym_member_declarations, - STATE(5587), 1, + STATE(5653), 1, sym_where_clause, - [154814] = 5, + [155060] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, STATE(1626), 1, sym_member_declarations, - STATE(5314), 1, + STATE(5693), 1, sym_where_clause, - [154830] = 4, + [155076] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - STATE(5681), 1, - sym_where_clause, - ACTIONS(6506), 2, + ACTIONS(5598), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [154844] = 5, + STATE(4755), 1, + sym_member_declarations, + STATE(5619), 1, + sym_where_clause, + [155092] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1067), 1, + STATE(761), 1, sym_member_declarations, - STATE(5409), 1, + STATE(5688), 1, sym_where_clause, - [154860] = 5, + [155108] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4744), 1, - sym_member_declarations, - STATE(5370), 1, + STATE(5623), 1, sym_where_clause, - [154876] = 5, + ACTIONS(6584), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [155122] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6586), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155136] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1376), 1, + STATE(758), 1, sym_member_declarations, - STATE(5553), 1, + STATE(5698), 1, sym_where_clause, - [154892] = 4, + [155152] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - STATE(5745), 1, + STATE(5461), 1, sym_where_clause, - ACTIONS(6508), 2, + ACTIONS(6588), 2, anon_sym_LBRACE, anon_sym_SEMI, - [154906] = 5, + [155166] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4743), 1, + STATE(757), 1, sym_member_declarations, - STATE(5369), 1, + STATE(5695), 1, sym_where_clause, - [154922] = 4, + [155182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - anon_sym_EQ, - ACTIONS(6510), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(5163), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [154936] = 5, + ACTIONS(6590), 1, + anon_sym_RBRACE, + STATE(4329), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155196] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1710), 1, + STATE(1628), 1, sym_member_declarations, - STATE(5353), 1, + STATE(5613), 1, sym_where_clause, - [154952] = 5, + [155212] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6592), 1, + anon_sym_RBRACE, + STATE(4251), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155226] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6594), 1, + anon_sym_RBRACE, + STATE(4340), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155240] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1573), 1, + STATE(741), 1, sym_member_declarations, - STATE(5591), 1, + STATE(5743), 1, sym_where_clause, - [154968] = 5, + [155256] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4740), 1, + STATE(740), 1, sym_member_declarations, - STATE(5368), 1, + STATE(5750), 1, sym_where_clause, - [154984] = 5, + [155272] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1485), 1, + STATE(739), 1, sym_member_declarations, - STATE(5349), 1, + STATE(5751), 1, sym_where_clause, - [155000] = 5, + [155288] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1275), 1, + STATE(1480), 1, sym_member_declarations, - STATE(5475), 1, + STATE(5610), 1, sym_where_clause, - [155016] = 5, + [155304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6512), 1, - anon_sym_COLON, - ACTIONS(6514), 1, - anon_sym_EQ_EQ_GT, - STATE(5753), 1, - sym_capability_list, - [155032] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6596), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155318] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(1623), 1, sym_member_declarations, - STATE(5404), 1, + STATE(5424), 1, sym_where_clause, - [155048] = 5, + [155334] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1377), 1, + STATE(730), 1, sym_member_declarations, - STATE(5561), 1, + STATE(5710), 1, sym_where_clause, - [155064] = 5, + [155350] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1318), 1, + STATE(729), 1, sym_member_declarations, - STATE(5725), 1, + STATE(5706), 1, sym_where_clause, - [155080] = 5, + [155366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5564), 1, - anon_sym_LT, - STATE(3790), 1, - sym_parameters, - STATE(5337), 1, - sym_type_parameters, - [155096] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_member_declarations, + STATE(5701), 1, + sym_where_clause, + [155382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - STATE(5674), 1, - sym_variadic_modifier, - ACTIONS(6516), 2, + ACTIONS(6081), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [155110] = 5, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + ACTIONS(6598), 2, + anon_sym_LBRACE, + anon_sym_where, + [155396] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(1548), 1, sym_member_declarations, - STATE(5401), 1, + STATE(5491), 1, sym_where_clause, - [155126] = 5, + [155412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(851), 1, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(726), 1, sym_member_declarations, - STATE(5694), 1, + STATE(5700), 1, sym_where_clause, - [155142] = 4, + [155428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6518), 1, + ACTIONS(6600), 1, anon_sym_RBRACE, - STATE(4413), 2, + STATE(4352), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [155156] = 5, + [155442] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1062), 1, + STATE(822), 1, sym_member_declarations, - STATE(5399), 1, + STATE(5676), 1, sym_where_clause, - [155172] = 5, + [155458] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1714), 1, + STATE(4716), 1, sym_member_declarations, - STATE(5354), 1, + STATE(5459), 1, sym_where_clause, - [155188] = 5, + [155474] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(1468), 1, sym_member_declarations, - STATE(5398), 1, + STATE(5597), 1, sym_where_clause, - [155204] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 1, - sym_identifier, - ACTIONS(6523), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [155218] = 4, + [155490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6525), 1, - anon_sym_RBRACE, - STATE(4461), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [155232] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4715), 1, + sym_member_declarations, + STATE(5451), 1, + sym_where_clause, + [155506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(848), 1, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1547), 1, sym_member_declarations, - STATE(5713), 1, + STATE(5641), 1, sym_where_clause, - [155248] = 5, + [155522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5580), 1, anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, - STATE(1962), 1, - sym_compound_statement, - STATE(5718), 1, - sym__anonymous_function_use_clause, - [155264] = 4, + STATE(839), 1, + sym_member_declarations, + STATE(5655), 1, + sym_where_clause, + [155538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6527), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [155278] = 2, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4713), 1, + sym_member_declarations, + STATE(5447), 1, + sym_where_clause, + [155554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5580), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [155288] = 5, + STATE(840), 1, + sym_member_declarations, + STATE(5652), 1, + sym_where_clause, + [155570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 1, - anon_sym_SEMI, - ACTIONS(6067), 1, - anon_sym_COMMA, - ACTIONS(6531), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [155304] = 5, + STATE(1234), 1, + sym_member_declarations, + STATE(5519), 1, + sym_where_clause, + [155586] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1519), 1, + STATE(843), 1, sym_member_declarations, - STATE(5629), 1, + STATE(5632), 1, sym_where_clause, - [155320] = 4, + [155602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, - anon_sym_as, - ACTIONS(6533), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(6340), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [155334] = 5, + STATE(4823), 1, + sym_member_declarations, + STATE(5446), 1, + sym_where_clause, + [155618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(844), 1, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1233), 1, sym_member_declarations, - STATE(5700), 1, + STATE(5512), 1, sym_where_clause, - [155350] = 5, + [155634] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4724), 1, + STATE(844), 1, sym_member_declarations, - STATE(5345), 1, + STATE(5628), 1, sym_where_clause, - [155366] = 5, + [155650] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1658), 1, + STATE(1232), 1, sym_member_declarations, - STATE(5428), 1, + STATE(5509), 1, sym_where_clause, - [155382] = 5, + [155666] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4720), 1, + STATE(4706), 1, sym_member_declarations, - STATE(5341), 1, + STATE(5434), 1, sym_where_clause, - [155398] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6535), 1, - anon_sym_COLON, - ACTIONS(6537), 1, - anon_sym_EQ_EQ_GT, - STATE(5617), 1, - sym_capability_list, - [155414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6539), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - ACTIONS(3854), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [155428] = 5, + [155682] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4716), 1, + STATE(845), 1, sym_member_declarations, - STATE(5273), 1, + STATE(5625), 1, sym_where_clause, - [155444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6542), 1, - anon_sym_RBRACE, - STATE(4189), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [155458] = 5, + [155698] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1703), 1, + STATE(846), 1, sym_member_declarations, - STATE(5426), 1, + STATE(5622), 1, sym_where_clause, - [155474] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6544), 1, - anon_sym_as, - ACTIONS(6546), 1, - anon_sym_EQ, - STATE(5672), 1, - sym_type_parameters, - [155490] = 5, + [155714] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4715), 1, + STATE(4704), 1, sym_member_declarations, - STATE(5339), 1, + STATE(5429), 1, sym_where_clause, - [155506] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_BSLASH, - ACTIONS(2806), 1, - anon_sym_COLON_COLON, - ACTIONS(6548), 1, - anon_sym_as, - STATE(1772), 1, - aux_sym_qualified_identifier_repeat1, - [155522] = 5, + [155730] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1552), 1, sym_member_declarations, - STATE(5551), 1, + STATE(5489), 1, sym_where_clause, - [155538] = 5, + [155746] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1553), 1, sym_member_declarations, - STATE(5383), 1, + STATE(5484), 1, sym_where_clause, - [155554] = 5, + [155762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6602), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155776] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4706), 1, + STATE(866), 1, sym_member_declarations, - STATE(5380), 1, + STATE(5548), 1, sym_where_clause, - [155570] = 5, + [155792] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(870), 1, sym_member_declarations, - STATE(5550), 1, + STATE(5546), 1, sym_where_clause, - [155586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - STATE(5485), 1, - sym_arguments, - ACTIONS(6550), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [155600] = 5, + [155808] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(4704), 1, + STATE(871), 1, sym_member_declarations, - STATE(5325), 1, + STATE(5545), 1, sym_where_clause, - [155616] = 4, + [155824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 1, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(6604), 1, + sym_identifier, + ACTIONS(5163), 2, anon_sym_COMMA, - STATE(4379), 1, - aux_sym_xhp_children_declaration_repeat1, - ACTIONS(5754), 2, anon_sym_SEMI, - anon_sym_RPAREN, - [155630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5636), 2, - anon_sym_BSLASH, - anon_sym_RBRACE, - ACTIONS(6555), 2, - sym_identifier, - anon_sym_namespace, - [155642] = 5, + [155838] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(1203), 1, sym_member_declarations, - STATE(5382), 1, + STATE(5456), 1, sym_where_clause, - [155658] = 5, + [155854] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(992), 1, + STATE(1202), 1, sym_member_declarations, - STATE(5598), 1, + STATE(5455), 1, sym_where_clause, - [155674] = 5, + [155870] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1029), 1, + STATE(1201), 1, sym_member_declarations, - STATE(5530), 1, + STATE(5454), 1, sym_where_clause, - [155690] = 5, + [155886] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(995), 1, + STATE(1028), 1, sym_member_declarations, - STATE(5439), 1, + STATE(5497), 1, sym_where_clause, - [155706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym_as, - ACTIONS(6557), 1, - anon_sym_LBRACE, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [155720] = 5, + [155902] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(4524), 1, + STATE(1199), 1, sym_member_declarations, - STATE(5292), 1, + STATE(5441), 1, sym_where_clause, - [155736] = 4, + [155918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6559), 1, + ACTIONS(6606), 1, anon_sym_RBRACE, - STATE(4356), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [155750] = 5, + [155932] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1028), 1, + STATE(930), 1, sym_member_declarations, - STATE(5525), 1, + STATE(5496), 1, sym_where_clause, - [155766] = 5, + [155948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(840), 1, - sym_member_declarations, - STATE(5726), 1, - sym_where_clause, - [155782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - STATE(763), 1, + STATE(1197), 1, sym_member_declarations, - STATE(5734), 1, + STATE(5427), 1, sym_where_clause, - [155798] = 5, + [155964] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1027), 1, + STATE(1195), 1, sym_member_declarations, - STATE(5522), 1, - sym_where_clause, - [155814] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - STATE(5294), 1, + STATE(5426), 1, sym_where_clause, - ACTIONS(6561), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [155828] = 4, + [155980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, - ACTIONS(6565), 1, - anon_sym_EQ, - ACTIONS(6563), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [155842] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6608), 1, + anon_sym_RBRACE, + STATE(4391), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [155994] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1632), 1, + STATE(993), 1, sym_member_declarations, - STATE(5508), 1, + STATE(5487), 1, sym_where_clause, - [155858] = 5, + [156010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1724), 1, - sym_member_declarations, - STATE(5420), 1, - sym_where_clause, - [155874] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6610), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156024] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1705), 1, + STATE(1298), 1, sym_member_declarations, - STATE(5403), 1, + STATE(5479), 1, sym_where_clause, - [155890] = 5, + [156040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, - anon_sym_while, - ACTIONS(6322), 1, - anon_sym_elseif, - ACTIONS(6567), 1, - anon_sym_else, - STATE(4401), 1, - aux_sym_if_statement_repeat1, - [155906] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6612), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156054] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1026), 1, + STATE(1249), 1, sym_member_declarations, - STATE(5519), 1, + STATE(5475), 1, sym_where_clause, - [155922] = 4, + [156070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - ACTIONS(6569), 2, - anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_where, - [155936] = 5, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1241), 1, + sym_member_declarations, + STATE(5472), 1, + sym_where_clause, + [156086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6571), 1, - anon_sym_COLON, - ACTIONS(6573), 1, - anon_sym_EQ_EQ_GT, - STATE(5751), 1, - sym_capability_list, - [155952] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6614), 1, + anon_sym_RBRACE, + STATE(4397), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, - anon_sym_while, - ACTIONS(6322), 1, - anon_sym_elseif, - ACTIONS(6575), 1, - anon_sym_else, - STATE(4170), 1, - aux_sym_if_statement_repeat1, - [155968] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6616), 1, + anon_sym_RBRACE, + STATE(4399), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156114] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(993), 1, + STATE(1355), 1, sym_member_declarations, - STATE(5466), 1, + STATE(5464), 1, sym_where_clause, - [155984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2057), 1, - anon_sym_else, - STATE(4401), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2059), 2, - anon_sym_elseif, - anon_sym_while, - [155998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6577), 1, - anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, - ACTIONS(3774), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - [156012] = 2, + [156130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [156022] = 5, + STATE(1134), 1, + sym_member_declarations, + STATE(5400), 1, + sym_where_clause, + [156146] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4610), 1, + STATE(4601), 1, sym_member_declarations, - STATE(5299), 1, + STATE(5375), 1, sym_where_clause, - [156038] = 4, + [156162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6582), 1, + ACTIONS(6618), 1, anon_sym_RBRACE, STATE(4441), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156052] = 5, + [156176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6584), 1, - anon_sym_as, - ACTIONS(6586), 1, - anon_sym_EQ, - STATE(5537), 1, - sym_type_parameters, - [156068] = 5, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6620), 1, + anon_sym_RBRACE, + STATE(4430), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156190] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1732), 1, + STATE(1354), 1, sym_member_declarations, - STATE(5413), 1, + STATE(5462), 1, sym_where_clause, - [156084] = 5, + [156206] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4606), 1, + STATE(4590), 1, sym_member_declarations, - STATE(5296), 1, + STATE(5370), 1, sym_where_clause, - [156100] = 5, + [156222] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1741), 1, + STATE(1353), 1, sym_member_declarations, - STATE(5378), 1, + STATE(5460), 1, sym_where_clause, - [156116] = 5, + [156238] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1433), 1, + STATE(1131), 1, sym_member_declarations, - STATE(5708), 1, + STATE(5398), 1, sym_where_clause, - [156132] = 4, + [156254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6588), 1, + ACTIONS(6622), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156146] = 5, + [156268] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4605), 1, + STATE(4589), 1, sym_member_declarations, - STATE(5288), 1, + STATE(5368), 1, sym_where_clause, - [156162] = 5, + [156284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6624), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(817), 1, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1130), 1, sym_member_declarations, - STATE(5744), 1, + STATE(5393), 1, sym_where_clause, - [156178] = 5, + [156314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, - anon_sym_COMMA, - ACTIONS(6590), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(6592), 1, - anon_sym_SEMI, - STATE(4358), 1, - aux_sym_tuple_type_specifier_repeat1, - [156194] = 5, + STATE(4587), 1, + sym_member_declarations, + STATE(5349), 1, + sym_where_clause, + [156330] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(4492), 1, + STATE(1127), 1, sym_member_declarations, - STATE(5281), 1, + STATE(5387), 1, sym_where_clause, - [156210] = 5, + [156346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5598), 1, anon_sym_LBRACE, + STATE(4584), 1, + sym_member_declarations, + STATE(5595), 1, + sym_where_clause, + [156362] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(5566), 1, anon_sym_where, - STATE(723), 1, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1341), 1, sym_member_declarations, - STATE(5737), 1, + STATE(5449), 1, sym_where_clause, - [156226] = 5, + [156378] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(4600), 1, + STATE(1340), 1, sym_member_declarations, - STATE(5280), 1, + STATE(5448), 1, sym_where_clause, - [156242] = 5, + [156394] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1338), 1, sym_member_declarations, - STATE(5469), 1, + STATE(5440), 1, sym_where_clause, - [156258] = 4, + [156410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - anon_sym_EQ, - ACTIONS(6594), 1, - sym_identifier, - ACTIONS(5163), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [156272] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1337), 1, + sym_member_declarations, + STATE(5471), 1, + sym_where_clause, + [156426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6596), 1, - anon_sym_COLON, - ACTIONS(6598), 1, - anon_sym_EQ_EQ_GT, - STATE(5554), 1, - sym_capability_list, - [156288] = 5, + ACTIONS(5566), 1, + anon_sym_where, + STATE(5276), 1, + sym_where_clause, + ACTIONS(6626), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [156440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6602), 1, - anon_sym_PLUS, - ACTIONS(6604), 1, - anon_sym_DASH, - ACTIONS(6606), 1, - anon_sym_reify, - [156304] = 5, + ACTIONS(6628), 1, + anon_sym_RBRACE, + STATE(4413), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [156454] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(4485), 1, + STATE(1333), 1, sym_member_declarations, - STATE(5319), 1, + STATE(5432), 1, sym_where_clause, - [156320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 1, - anon_sym_LBRACE, - ACTIONS(5760), 1, - anon_sym_use, - STATE(2661), 1, - sym_compound_statement, - STATE(5374), 1, - sym__anonymous_function_use_clause, - [156336] = 5, + [156470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6608), 1, + ACTIONS(6312), 1, anon_sym_as, - ACTIONS(6610), 1, - anon_sym_EQ, - STATE(5755), 1, - sym_type_parameters, - [156352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6612), 1, - anon_sym_COLON, - ACTIONS(6614), 1, - anon_sym_EQ_EQ_GT, - STATE(5749), 1, - sym_capability_list, - [156368] = 5, + ACTIONS(6308), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [156482] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1242), 1, sym_member_declarations, - STATE(5622), 1, + STATE(5425), 1, sym_where_clause, - [156384] = 5, + [156498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(813), 1, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1221), 1, sym_member_declarations, - STATE(5735), 1, + STATE(5416), 1, sym_where_clause, - [156400] = 4, + [156514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6616), 1, + ACTIONS(6630), 1, anon_sym_RBRACE, - STATE(4454), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156414] = 4, + [156528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6618), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [156428] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1213), 1, + sym_member_declarations, + STATE(5409), 1, + sym_where_clause, + [156544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6620), 1, - anon_sym_COLON, - ACTIONS(6622), 1, - anon_sym_EQ_EQ_GT, - STATE(5661), 1, - sym_capability_list, - [156444] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1112), 1, + sym_member_declarations, + STATE(5356), 1, + sym_where_clause, + [156560] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(4497), 1, + STATE(1200), 1, sym_member_declarations, - STATE(5316), 1, + STATE(5408), 1, sym_where_clause, - [156460] = 4, + [156576] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - STATE(5670), 1, - sym_where_clause, - ACTIONS(6624), 2, + ACTIONS(5574), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [156474] = 4, + STATE(1194), 1, + sym_member_declarations, + STATE(5407), 1, + sym_where_clause, + [156592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6626), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [156488] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1110), 1, + sym_member_declarations, + STATE(5354), 1, + sym_where_clause, + [156608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6628), 1, - anon_sym_RBRACE, - STATE(4307), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [156502] = 5, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1109), 1, + sym_member_declarations, + STATE(5351), 1, + sym_where_clause, + [156624] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1477), 1, + STATE(1126), 1, sym_member_declarations, - STATE(5631), 1, + STATE(5386), 1, sym_where_clause, - [156518] = 4, + [156640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6630), 1, + ACTIONS(6632), 1, anon_sym_RBRACE, - STATE(4431), 2, + STATE(4415), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_xhp_identifier, - anon_sym_SLASH_GT, - [156542] = 5, + [156654] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(4502), 1, + STATE(1118), 1, sym_member_declarations, - STATE(5310), 1, + STATE(5396), 1, sym_where_clause, - [156558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6634), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [156572] = 5, + [156670] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1721), 1, + STATE(1117), 1, sym_member_declarations, - STATE(5372), 1, + STATE(5394), 1, sym_where_clause, - [156588] = 4, + [156686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6636), 1, + ACTIONS(6634), 1, anon_sym_RBRACE, - STATE(4305), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156602] = 5, + [156700] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(4564), 1, + STATE(1116), 1, sym_member_declarations, - STATE(5327), 1, + STATE(5435), 1, sym_where_clause, - [156618] = 5, + [156716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, + ACTIONS(6636), 1, + anon_sym_SEMI, ACTIONS(6638), 1, anon_sym_as, ACTIONS(6640), 1, + anon_sym_super, + ACTIONS(6642), 1, anon_sym_EQ, - STATE(5556), 1, - sym_type_parameters, - [156634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6644), 1, - anon_sym_BSLASH, - STATE(3788), 1, - aux_sym_qualified_identifier_repeat1, - ACTIONS(6642), 2, - sym_identifier, - anon_sym_namespace, - [156648] = 5, + [156732] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4563), 1, + STATE(4557), 1, sym_member_declarations, - STATE(5728), 1, + STATE(5286), 1, sym_where_clause, - [156664] = 5, + [156748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5615), 1, + anon_sym_SEMI, + ACTIONS(6081), 1, + anon_sym_COMMA, + ACTIONS(6644), 1, anon_sym_LBRACE, - ACTIONS(5566), 1, - anon_sym_where, - STATE(788), 1, - sym_member_declarations, - STATE(5695), 1, - sym_where_clause, - [156680] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6647), 1, - anon_sym_COLON, - ACTIONS(6649), 1, - anon_sym_EQ_EQ_GT, - STATE(5590), 1, - sym_capability_list, - [156696] = 5, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [156764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(785), 1, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1046), 1, sym_member_declarations, - STATE(5699), 1, + STATE(5392), 1, sym_where_clause, - [156712] = 5, + [156780] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4562), 1, + STATE(4556), 1, sym_member_declarations, - STATE(5272), 1, + STATE(5287), 1, sym_where_clause, - [156728] = 4, + [156796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6651), 1, + ACTIONS(6646), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4469), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156742] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5165), 1, - anon_sym_EQ, - ACTIONS(6653), 1, - anon_sym_LPAREN, - ACTIONS(5163), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [156756] = 4, + [156810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - sym_identifier, - ACTIONS(6655), 1, - anon_sym_RBRACE, - STATE(4352), 2, - sym_enumerator, - aux_sym_enum_declaration_repeat1, - [156770] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_member_declarations, + STATE(5297), 1, + sym_where_clause, + [156826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6657), 1, + ACTIONS(6648), 1, anon_sym_RBRACE, - STATE(4468), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156784] = 5, + [156840] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1706), 1, + STATE(4555), 1, sym_member_declarations, - STATE(5402), 1, + STATE(5289), 1, sym_where_clause, - [156800] = 5, + [156856] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1359), 1, + STATE(1084), 1, sym_member_declarations, - STATE(5732), 1, + STATE(5293), 1, sym_where_clause, - [156816] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6659), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_EQ, - STATE(5566), 1, - sym_type_parameters, - [156832] = 5, + [156872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(5564), 1, - anon_sym_LT, - STATE(3773), 1, - sym_parameters, - STATE(5615), 1, - sym_type_parameters, - [156848] = 5, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_use, + STATE(1964), 1, + sym_compound_statement, + STATE(5309), 1, + sym__anonymous_function_use_clause, + [156888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(6650), 4, anon_sym_LBRACE, - STATE(4513), 1, - sym_member_declarations, - STATE(5302), 1, - sym_where_clause, - [156864] = 4, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [156898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6652), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4460), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_member_declarations, - STATE(5627), 1, - sym_where_clause, - [156894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6665), 1, - anon_sym_as, - ACTIONS(6667), 1, - anon_sym_EQ, - STATE(5581), 1, - sym_type_parameters, - [156910] = 5, + [156912] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1744), 1, + STATE(4487), 1, sym_member_declarations, - STATE(5376), 1, + STATE(5310), 1, sym_where_clause, - [156926] = 5, + [156928] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1474), 1, + STATE(4502), 1, sym_member_declarations, - STATE(5684), 1, + STATE(5330), 1, sym_where_clause, - [156942] = 5, + [156944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 1, - anon_sym_where, - ACTIONS(5586), 1, + ACTIONS(6654), 4, anon_sym_LBRACE, - STATE(1517), 1, - sym_member_declarations, - STATE(5635), 1, - sym_where_clause, - [156958] = 5, + anon_sym_GT, + sym_xhp_identifier, + anon_sym_SLASH_GT, + [156954] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(4488), 1, sym_member_declarations, - STATE(5377), 1, + STATE(5313), 1, sym_where_clause, - [156974] = 4, + [156970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6656), 1, anon_sym_RBRACE, - STATE(4352), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [156988] = 5, + [156984] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5592), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(4522), 1, + STATE(1066), 1, sym_member_declarations, - STATE(5295), 1, + STATE(5339), 1, sym_where_clause, - [157004] = 4, + [157000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6658), 1, + anon_sym_COMMA, + STATE(4462), 1, + aux_sym_array_repeat1, + ACTIONS(3753), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [157014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6671), 1, + ACTIONS(6661), 1, anon_sym_RBRACE, - STATE(4168), 2, + STATE(4243), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [157018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6344), 1, - anon_sym_as, - ACTIONS(6673), 1, - anon_sym_LBRACE, - ACTIONS(6340), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [157032] = 4, + [157028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, + ACTIONS(6304), 1, sym_identifier, - ACTIONS(6675), 1, + ACTIONS(6663), 1, anon_sym_RBRACE, - STATE(4452), 2, + STATE(4474), 2, sym_enumerator, aux_sym_enum_declaration_repeat1, - [157046] = 5, + [157042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, ACTIONS(5566), 1, anon_sym_where, - STATE(782), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4493), 1, sym_member_declarations, - STATE(5693), 1, + STATE(5320), 1, sym_where_clause, - [157062] = 5, + [157058] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_where, - ACTIONS(5588), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(4511), 1, sym_member_declarations, - STATE(5730), 1, + STATE(5332), 1, sym_where_clause, - [157078] = 5, + [157074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 1, - anon_sym_LT, - ACTIONS(6677), 1, - anon_sym_as, - ACTIONS(6679), 1, + ACTIONS(5165), 1, anon_sym_EQ, - STATE(5507), 1, - sym_type_parameters, - [157094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_RPAREN, - ACTIONS(6035), 1, + ACTIONS(6665), 1, + anon_sym_LPAREN, + ACTIONS(5163), 2, anon_sym_COMMA, - STATE(4984), 1, - aux_sym_function_type_specifier_repeat1, - [157107] = 4, + anon_sym_SEMI, + [157088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, anon_sym_LBRACE, - ACTIONS(6681), 1, - anon_sym_SEMI, - STATE(1495), 1, - sym_compound_statement, - [157120] = 3, + STATE(1081), 1, + sym_member_declarations, + STATE(5282), 1, + sym_where_clause, + [157104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 1, - anon_sym_else, - ACTIONS(2415), 2, - anon_sym_elseif, - anon_sym_while, - [157131] = 3, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [157118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, - anon_sym_else, - ACTIONS(2439), 2, - anon_sym_elseif, - anon_sym_while, - [157142] = 3, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(6669), 1, + sym_identifier, + ACTIONS(5163), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [157132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - anon_sym_else, - ACTIONS(2207), 2, - anon_sym_elseif, - anon_sym_while, - [157153] = 3, + ACTIONS(6081), 1, + anon_sym_COMMA, + ACTIONS(6671), 1, + anon_sym_LBRACE, + ACTIONS(6673), 1, + anon_sym_SEMI, + STATE(4445), 1, + aux_sym_tuple_type_specifier_repeat1, + [157148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_else, - ACTIONS(2379), 2, - anon_sym_elseif, - anon_sym_while, - [157164] = 4, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6675), 1, + anon_sym_RBRACE, + STATE(4463), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [157162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6683), 1, - anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_SEMI, - STATE(5009), 1, - aux_sym_xhp_attribute_declaration_repeat1, - [157177] = 4, + ACTIONS(5566), 1, + anon_sym_where, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1059), 1, + sym_member_declarations, + STATE(5367), 1, + sym_where_clause, + [157178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [157190] = 4, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6677), 1, + anon_sym_RBRACE, + STATE(4243), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [157192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 1, - anon_sym_COMMA, - ACTIONS(6689), 1, - anon_sym_SEMI, - STATE(5043), 1, - aux_sym_xhp_category_declaration_repeat1, - [157203] = 3, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6679), 1, + anon_sym_RBRACE, + STATE(4450), 2, + sym_enumerator, + aux_sym_enum_declaration_repeat1, + [157206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - anon_sym_else, - ACTIONS(2123), 2, - anon_sym_elseif, - anon_sym_while, - [157214] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, + anon_sym_COLON, + STATE(5891), 1, + sym_capability_list, + [157219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(6683), 1, anon_sym_COMMA, - ACTIONS(6693), 1, + ACTIONS(6686), 1, anon_sym_SEMI, - STATE(5046), 1, - aux_sym_property_declaration_repeat1, - [157227] = 3, + STATE(4477), 1, + aux_sym_xhp_attribute_declaration_repeat1, + [157232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(2201), 1, anon_sym_else, - ACTIONS(2155), 2, + ACTIONS(2203), 2, anon_sym_elseif, anon_sym_while, - [157238] = 3, + [157243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(6688), 1, + anon_sym_SEMI, + STATE(4545), 1, + sym_compound_statement, + [157256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, anon_sym_else, - ACTIONS(2183), 2, + ACTIONS(2207), 2, anon_sym_elseif, anon_sym_while, - [157249] = 3, + [157267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(2209), 1, anon_sym_else, - ACTIONS(2195), 2, + ACTIONS(2211), 2, anon_sym_elseif, anon_sym_while, - [157260] = 3, + [157278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2213), 1, anon_sym_else, - ACTIONS(2199), 2, + ACTIONS(2215), 2, anon_sym_elseif, anon_sym_while, - [157271] = 4, + [157289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, + ACTIONS(6690), 1, anon_sym_COMMA, - ACTIONS(6697), 1, + ACTIONS(6692), 1, anon_sym_SEMI, - STATE(4992), 1, + STATE(4597), 1, aux_sym__class_const_declaration_repeat1, - [157284] = 3, + [157302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2509), 1, + ACTIONS(2217), 1, anon_sym_else, - ACTIONS(2511), 2, + ACTIONS(2219), 2, anon_sym_elseif, anon_sym_while, - [157295] = 3, + [157313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_else, - ACTIONS(2499), 2, - anon_sym_elseif, - anon_sym_while, - [157306] = 3, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3894), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157326] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2221), 1, @@ -326231,25 +319866,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2223), 2, anon_sym_elseif, anon_sym_while, - [157317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [157330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(6699), 1, - anon_sym_SEMI, - STATE(4550), 1, - sym_compound_statement, - [157343] = 3, + [157337] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2225), 1, @@ -326257,7 +319874,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2227), 2, anon_sym_elseif, anon_sym_while, - [157354] = 3, + [157348] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2229), 1, @@ -326265,7 +319882,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2231), 2, anon_sym_elseif, anon_sym_while, - [157365] = 3, + [157359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1647), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(5163), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [157383] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2233), 1, @@ -326273,7 +319907,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2235), 2, anon_sym_elseif, anon_sym_while, - [157376] = 3, + [157394] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2237), 1, @@ -326281,7 +319915,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2239), 2, anon_sym_elseif, anon_sym_while, - [157387] = 3, + [157405] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2241), 1, @@ -326289,7 +319923,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2243), 2, anon_sym_elseif, anon_sym_while, - [157398] = 3, + [157416] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2245), 1, @@ -326297,7 +319931,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2247), 2, anon_sym_elseif, anon_sym_while, - [157409] = 3, + [157427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2249), 1, @@ -326305,7 +319939,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2251), 2, anon_sym_elseif, anon_sym_while, - [157420] = 3, + [157438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_else, + ACTIONS(2255), 2, + anon_sym_elseif, + anon_sym_while, + [157449] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2257), 1, @@ -326313,7 +319955,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2259), 2, anon_sym_elseif, anon_sym_while, - [157431] = 3, + [157460] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2261), 1, @@ -326321,7 +319963,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2263), 2, anon_sym_elseif, anon_sym_while, - [157442] = 3, + [157471] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2265), 1, @@ -326329,25 +319971,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2267), 2, anon_sym_elseif, anon_sym_while, - [157453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6691), 1, - anon_sym_COMMA, - ACTIONS(6701), 1, - anon_sym_SEMI, - STATE(5053), 1, - aux_sym_property_declaration_repeat1, - [157466] = 4, + [157482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [157479] = 3, + ACTIONS(2269), 1, + anon_sym_else, + ACTIONS(2271), 2, + anon_sym_elseif, + anon_sym_while, + [157493] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2273), 1, @@ -326355,7 +319987,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2275), 2, anon_sym_elseif, anon_sym_while, - [157490] = 3, + [157504] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2277), 1, @@ -326363,7 +319995,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2279), 2, anon_sym_elseif, anon_sym_while, - [157501] = 3, + [157515] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2281), 1, @@ -326371,7 +320003,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2283), 2, anon_sym_elseif, anon_sym_while, - [157512] = 3, + [157526] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1657), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1494), 1, + anon_sym_RBRACK, + ACTIONS(6694), 1, + anon_sym_COMMA, + STATE(4462), 1, + aux_sym_array_repeat1, + [157552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6696), 1, + anon_sym_COMMA, + ACTIONS(6698), 1, + anon_sym_RPAREN, + STATE(5152), 1, + aux_sym__anonymous_function_use_clause_repeat1, + [157565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157578] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2285), 1, @@ -326379,7 +320047,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, anon_sym_elseif, anon_sym_while, - [157523] = 3, + [157589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2289), 1, @@ -326387,539 +320055,569 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2291), 2, anon_sym_elseif, anon_sym_while, - [157534] = 4, + [157600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3899), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [157547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5165), 1, - anon_sym_EQ, - ACTIONS(5163), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [157558] = 4, + ACTIONS(2297), 1, + anon_sym_else, + ACTIONS(2299), 2, + anon_sym_elseif, + anon_sym_while, + [157611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 1, - anon_sym_LBRACE, - ACTIONS(6705), 1, - anon_sym_SEMI, - STATE(2812), 1, - sym_compound_statement, - [157571] = 3, + ACTIONS(2301), 1, + anon_sym_else, + ACTIONS(2303), 2, + anon_sym_elseif, + anon_sym_while, + [157622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(2305), 1, anon_sym_else, - ACTIONS(2295), 2, + ACTIONS(2307), 2, anon_sym_elseif, anon_sym_while, - [157582] = 4, + [157633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(6701), 1, - anon_sym_SEMI, - STATE(5087), 1, - aux_sym_property_declaration_repeat1, - [157595] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 1, - anon_sym_LBRACE, - ACTIONS(6707), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3884), 1, anon_sym_SEMI, - STATE(2823), 1, - sym_compound_statement, - [157608] = 3, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2309), 1, anon_sym_else, - ACTIONS(2211), 2, + ACTIONS(2311), 2, anon_sym_elseif, anon_sym_while, - [157619] = 4, + [157670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 1, - anon_sym_RPAREN, - ACTIONS(6709), 1, - anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [157632] = 3, + ACTIONS(2317), 1, + anon_sym_else, + ACTIONS(2319), 2, + anon_sym_elseif, + anon_sym_while, + [157681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_else, - ACTIONS(2303), 2, + ACTIONS(2323), 2, anon_sym_elseif, anon_sym_while, - [157643] = 4, + [157692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3981), 1, anon_sym_RPAREN, - ACTIONS(6711), 1, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3753), 3, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [157656] = 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + [157714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2325), 1, anon_sym_else, - ACTIONS(2315), 2, + ACTIONS(2327), 2, anon_sym_elseif, anon_sym_while, - [157667] = 4, + [157725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(6713), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [157680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(6715), 1, - anon_sym_SEMI, - STATE(1645), 1, - sym_compound_statement, - [157693] = 3, + ACTIONS(2329), 1, + anon_sym_else, + ACTIONS(2331), 2, + anon_sym_elseif, + anon_sym_while, + [157736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2337), 1, anon_sym_else, - ACTIONS(2319), 2, + ACTIONS(2339), 2, anon_sym_elseif, anon_sym_while, - [157704] = 3, + [157747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(6081), 1, + anon_sym_COMMA, + ACTIONS(6700), 1, + anon_sym_SEMI, + STATE(5210), 1, + aux_sym_tuple_type_specifier_repeat1, + [157760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 1, anon_sym_else, - ACTIONS(2323), 2, + ACTIONS(2347), 2, anon_sym_elseif, anon_sym_while, - [157715] = 3, + [157771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(2349), 1, anon_sym_else, - ACTIONS(2327), 2, + ACTIONS(2351), 2, anon_sym_elseif, anon_sym_while, - [157726] = 4, + [157782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(6702), 1, anon_sym_RPAREN, - ACTIONS(6717), 1, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 1, + anon_sym_RPAREN, + ACTIONS(6704), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [157739] = 3, + [157808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2353), 1, anon_sym_else, - ACTIONS(2299), 2, + ACTIONS(2355), 2, anon_sym_elseif, anon_sym_while, - [157750] = 4, + [157819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4832), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_COMMA, - STATE(4530), 1, + STATE(4527), 1, aux_sym_function_type_specifier_repeat1, - [157763] = 4, + [157832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4832), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [157776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5861), 1, - anon_sym_GT_GT, - ACTIONS(6721), 1, - anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [157789] = 3, + [157845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2361), 1, anon_sym_else, - ACTIONS(2335), 2, + ACTIONS(2363), 2, anon_sym_elseif, anon_sym_while, - [157800] = 3, + [157856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 1, + ACTIONS(2197), 1, anon_sym_else, - ACTIONS(2423), 2, + ACTIONS(2199), 2, anon_sym_elseif, anon_sym_while, - [157811] = 4, + [157867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(4874), 1, anon_sym_RPAREN, - ACTIONS(6059), 1, + ACTIONS(6021), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [157824] = 4, + [157880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(4874), 1, anon_sym_RPAREN, - ACTIONS(6059), 1, + ACTIONS(6021), 1, anon_sym_COMMA, - STATE(4533), 1, + STATE(4530), 1, aux_sym_function_type_specifier_repeat1, - [157837] = 3, + [157893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(6708), 1, + anon_sym_COMMA, + ACTIONS(6711), 1, + anon_sym_RPAREN, + STATE(4535), 1, + aux_sym_arguments_repeat1, + [157906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 1, anon_sym_else, - ACTIONS(2343), 2, + ACTIONS(2371), 2, anon_sym_elseif, anon_sym_while, - [157848] = 4, + [157917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4836), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(6713), 1, + anon_sym_SEMI, + STATE(1641), 1, + sym_compound_statement, + [157930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4880), 1, anon_sym_RPAREN, - ACTIONS(6061), 1, + ACTIONS(6009), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [157861] = 4, + [157943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4836), 1, + ACTIONS(4880), 1, anon_sym_RPAREN, - ACTIONS(6061), 1, + ACTIONS(6009), 1, anon_sym_COMMA, - STATE(4537), 1, + STATE(4533), 1, aux_sym_function_type_specifier_repeat1, - [157874] = 4, + [157956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_else, + ACTIONS(2095), 2, + anon_sym_elseif, + anon_sym_while, + [157967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_SEMI, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [157980] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(6723), 1, + ACTIONS(6715), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(1020), 1, sym_compound_statement, - [157887] = 3, + [157993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 1, + ACTIONS(2189), 1, anon_sym_else, - ACTIONS(2351), 2, + ACTIONS(2191), 2, anon_sym_elseif, anon_sym_while, - [157898] = 4, + [158004] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, + ACTIONS(6717), 1, anon_sym_SEMI, - STATE(945), 1, + STATE(1022), 1, sym_compound_statement, - [157911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1516), 1, - anon_sym_RBRACK, - ACTIONS(6727), 1, - anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, - [157924] = 4, + [158017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_RPAREN, - ACTIONS(6729), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [157937] = 2, + ACTIONS(2185), 1, + anon_sym_else, + ACTIONS(2187), 2, + anon_sym_elseif, + anon_sym_while, + [158028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [157946] = 3, + ACTIONS(2181), 1, + anon_sym_else, + ACTIONS(2183), 2, + anon_sym_elseif, + anon_sym_while, + [158039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(2177), 1, anon_sym_else, - ACTIONS(2359), 2, + ACTIONS(2179), 2, anon_sym_elseif, anon_sym_while, - [157957] = 4, + [158050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, + ACTIONS(6719), 1, anon_sym_COMMA, - ACTIONS(6734), 1, + ACTIONS(6721), 1, anon_sym_RPAREN, - STATE(4549), 1, - aux_sym_arguments_repeat1, - [157970] = 3, + STATE(4506), 1, + aux_sym__anonymous_function_use_clause_repeat1, + [158063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 1, + ACTIONS(2173), 1, anon_sym_else, - ACTIONS(2371), 2, + ACTIONS(2175), 2, + anon_sym_elseif, + anon_sym_while, + [158074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_else, + ACTIONS(2171), 2, anon_sym_elseif, anon_sym_while, - [157981] = 4, + [158085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6723), 1, anon_sym_COMMA, - ACTIONS(6738), 1, + ACTIONS(6725), 1, anon_sym_SEMI, STATE(4565), 1, aux_sym_use_statement_repeat1, - [157994] = 4, + [158098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(6742), 1, + ACTIONS(6729), 1, anon_sym_SEMI, STATE(4569), 1, aux_sym_const_declaration_repeat1, - [158007] = 4, + [158111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, + ACTIONS(6731), 1, anon_sym_COMMA, - ACTIONS(6746), 1, + ACTIONS(6733), 1, anon_sym_RPAREN, - STATE(4859), 1, + STATE(4821), 1, aux_sym_shape_type_specifier_repeat1, - [158020] = 3, + [158124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2165), 1, anon_sym_else, - ACTIONS(2387), 2, + ACTIONS(2167), 2, anon_sym_elseif, anon_sym_while, - [158031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(4615), 1, - sym_compound_statement, - [158044] = 3, + [158135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 1, + ACTIONS(2161), 1, anon_sym_else, - ACTIONS(2391), 2, + ACTIONS(2163), 2, anon_sym_elseif, anon_sym_while, - [158055] = 3, + [158146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2157), 1, anon_sym_else, - ACTIONS(2399), 2, + ACTIONS(2159), 2, anon_sym_elseif, anon_sym_while, - [158066] = 3, + [158157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2153), 1, anon_sym_else, - ACTIONS(2095), 2, + ACTIONS(2155), 2, anon_sym_elseif, anon_sym_while, - [158077] = 4, + [158168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4908), 1, + anon_sym_RPAREN, + ACTIONS(6735), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158181] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(6750), 1, + ACTIONS(6737), 1, anon_sym_SEMI, - STATE(974), 1, + STATE(1060), 1, sym_compound_statement, - [158090] = 3, + [158194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2405), 1, + ACTIONS(2149), 1, anon_sym_else, - ACTIONS(2407), 2, + ACTIONS(2151), 2, anon_sym_elseif, anon_sym_while, - [158101] = 4, + [158205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(6752), 1, + ACTIONS(6739), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [158114] = 3, + [158218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 1, - anon_sym_else, - ACTIONS(2411), 2, - anon_sym_elseif, - anon_sym_while, - [158125] = 3, + ACTIONS(4914), 1, + anon_sym_RPAREN, + ACTIONS(6741), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_function_type_specifier_repeat1, + [158231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_else, - ACTIONS(2091), 2, - anon_sym_elseif, - anon_sym_while, - [158136] = 3, + ACTIONS(4914), 1, + anon_sym_RPAREN, + ACTIONS(6741), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 1, - anon_sym_else, - ACTIONS(2427), 2, - anon_sym_elseif, - anon_sym_while, - [158147] = 4, + ACTIONS(6081), 1, + anon_sym_COMMA, + ACTIONS(6743), 1, + anon_sym_SEMI, + STATE(5214), 1, + aux_sym_tuple_type_specifier_repeat1, + [158257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(5468), 1, anon_sym_SEMI, - ACTIONS(6754), 1, + ACTIONS(6745), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [158160] = 4, + [158270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, - anon_sym_SEMI, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [158173] = 4, + ACTIONS(2145), 1, + anon_sym_else, + ACTIONS(2147), 2, + anon_sym_elseif, + anon_sym_while, + [158281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(6747), 1, anon_sym_COMMA, - ACTIONS(6758), 1, + ACTIONS(6749), 1, anon_sym_RPAREN, STATE(4594), 1, aux_sym_tuple_type_specifier_repeat1, - [158186] = 4, + [158294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(6760), 1, + ACTIONS(6751), 1, anon_sym_SEMI, STATE(4598), 1, aux_sym_const_declaration_repeat1, - [158199] = 4, + [158307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(6762), 1, + ACTIONS(6753), 1, anon_sym_SEMI, - STATE(5075), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [158212] = 4, + [158320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(1567), 1, anon_sym_RPAREN, - ACTIONS(6764), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [158225] = 3, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [158333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2141), 1, anon_sym_else, - ACTIONS(2435), 2, + ACTIONS(2143), 2, anon_sym_elseif, anon_sym_while, - [158236] = 4, + [158344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - ACTIONS(6766), 1, + ACTIONS(6001), 1, anon_sym_COMMA, - STATE(4521), 1, - aux_sym_shape_type_specifier_repeat1, - [158249] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6755), 1, anon_sym_COMMA, - ACTIONS(6770), 1, + ACTIONS(6757), 1, anon_sym_GT, STATE(4604), 1, aux_sym_tuple_type_specifier_repeat1, - [158262] = 4, + [158370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6772), 1, - anon_sym_COMMA, - ACTIONS(6774), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(4523), 1, - aux_sym_shape_type_specifier_repeat1, - [158275] = 4, + ACTIONS(6001), 1, + anon_sym_COMMA, + STATE(4563), 1, + aux_sym_function_type_specifier_repeat1, + [158383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 1, - anon_sym_RPAREN, - ACTIONS(6766), 1, + ACTIONS(5161), 1, + anon_sym_EQ, + ACTIONS(5159), 2, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [158288] = 3, + anon_sym_SEMI, + [158394] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2137), 1, @@ -326927,17655 +320625,17658 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2139), 2, anon_sym_elseif, anon_sym_while, - [158299] = 4, + [158405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 1, + ACTIONS(4918), 1, anon_sym_RPAREN, - ACTIONS(6776), 1, + ACTIONS(6003), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [158312] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4918), 1, anon_sym_RPAREN, - ACTIONS(6778), 1, + ACTIONS(6003), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(4572), 1, aux_sym_function_type_specifier_repeat1, - [158325] = 3, + [158431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 1, + ACTIONS(2133), 1, anon_sym_else, - ACTIONS(2467), 2, + ACTIONS(2135), 2, anon_sym_elseif, anon_sym_while, - [158336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5879), 1, - anon_sym_GT_GT, - ACTIONS(6780), 1, - anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [158349] = 4, + [158442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, - anon_sym_GT_GT, - ACTIONS(6780), 1, - anon_sym_COMMA, - STATE(4534), 1, - aux_sym_module_attribute_repeat1, - [158362] = 4, + ACTIONS(2129), 1, + anon_sym_else, + ACTIONS(2131), 2, + anon_sym_elseif, + anon_sym_while, + [158453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, - anon_sym_RPAREN, - ACTIONS(6782), 1, + ACTIONS(6690), 1, anon_sym_COMMA, - STATE(4578), 1, - aux_sym_function_type_specifier_repeat1, - [158375] = 4, + ACTIONS(6759), 1, + anon_sym_SEMI, + STATE(5259), 1, + aux_sym__class_const_declaration_repeat1, + [158466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, - anon_sym_RPAREN, - ACTIONS(6782), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [158388] = 3, + ACTIONS(2125), 1, + anon_sym_else, + ACTIONS(2127), 2, + anon_sym_elseif, + anon_sym_while, + [158477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2121), 1, anon_sym_else, - ACTIONS(2475), 2, + ACTIONS(2123), 2, anon_sym_elseif, anon_sym_while, - [158399] = 3, + [158488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 1, + ACTIONS(2117), 1, anon_sym_else, - ACTIONS(2483), 2, + ACTIONS(2119), 2, anon_sym_elseif, anon_sym_while, - [158410] = 4, + [158499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, - anon_sym_RPAREN, - ACTIONS(6095), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [158423] = 4, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(6761), 1, + anon_sym_SEMI, + STATE(1099), 1, + sym_compound_statement, + [158512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, - anon_sym_RPAREN, - ACTIONS(6095), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4583), 1, - aux_sym_function_type_specifier_repeat1, - [158436] = 3, + ACTIONS(6763), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [158525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2113), 1, anon_sym_else, - ACTIONS(2487), 2, + ACTIONS(2115), 2, anon_sym_elseif, anon_sym_while, - [158447] = 4, + [158536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, - anon_sym_RPAREN, - ACTIONS(6097), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [158460] = 4, + ACTIONS(2109), 1, + anon_sym_else, + ACTIONS(2111), 2, + anon_sym_elseif, + anon_sym_while, + [158547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, - anon_sym_RPAREN, - ACTIONS(6097), 1, - anon_sym_COMMA, - STATE(4586), 1, - aux_sym_function_type_specifier_repeat1, - [158473] = 4, + ACTIONS(2105), 1, + anon_sym_else, + ACTIONS(2107), 2, + anon_sym_elseif, + anon_sym_while, + [158558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2101), 1, + anon_sym_else, + ACTIONS(2103), 2, + anon_sym_elseif, + anon_sym_while, + [158569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6784), 1, + ACTIONS(6765), 1, anon_sym_COMMA, - ACTIONS(6786), 1, + ACTIONS(6767), 1, anon_sym_RPAREN, STATE(4630), 1, aux_sym_shape_type_specifier_repeat1, - [158486] = 4, + [158582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 1, + ACTIONS(1419), 1, anon_sym_RPAREN, - ACTIONS(6788), 1, + ACTIONS(6769), 1, anon_sym_COMMA, STATE(4632), 1, aux_sym_shape_type_specifier_repeat1, - [158499] = 3, + [158595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2489), 1, - anon_sym_else, - ACTIONS(2491), 2, - anon_sym_elseif, - anon_sym_while, - [158510] = 4, + ACTIONS(6771), 1, + anon_sym_COMMA, + ACTIONS(6773), 1, + anon_sym_SEMI, + STATE(4633), 1, + aux_sym_xhp_attribute_declaration_repeat1, + [158608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5000), 1, anon_sym_RPAREN, - ACTIONS(6790), 1, + ACTIONS(6775), 1, anon_sym_COMMA, - STATE(3798), 1, + STATE(3780), 1, aux_sym_tuple_type_specifier_repeat1, - [158523] = 3, + [158621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_else, - ACTIONS(2495), 2, - anon_sym_elseif, - anon_sym_while, - [158534] = 4, + ACTIONS(5480), 1, + anon_sym_RBRACE, + ACTIONS(6777), 1, + anon_sym_COMMA, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [158634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5000), 1, anon_sym_RPAREN, - ACTIONS(6790), 1, + ACTIONS(6775), 1, anon_sym_COMMA, STATE(4636), 1, aux_sym_tuple_type_specifier_repeat1, - [158547] = 4, + [158647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(6792), 1, - anon_sym_LBRACE, - STATE(6186), 1, - sym_extends_clause, - [158560] = 4, + ACTIONS(6690), 1, + anon_sym_COMMA, + ACTIONS(6779), 1, + anon_sym_SEMI, + STATE(5257), 1, + aux_sym__class_const_declaration_repeat1, + [158660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(6794), 1, + ACTIONS(6781), 1, anon_sym_SEMI, - STATE(5075), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [158573] = 4, + [158673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, - anon_sym_GT, - ACTIONS(6796), 1, + ACTIONS(1639), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(5096), 1, - aux_sym_tuple_type_specifier_repeat1, - [158586] = 3, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [158686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(2097), 1, anon_sym_else, - ACTIONS(2215), 2, + ACTIONS(2099), 2, anon_sym_elseif, anon_sym_while, - [158597] = 3, + [158697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2373), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2375), 2, anon_sym_elseif, anon_sym_while, - [158608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6798), 1, - anon_sym_COMMA, - ACTIONS(6800), 1, - anon_sym_RPAREN, - STATE(4934), 1, - aux_sym__anonymous_function_use_clause_repeat1, - [158621] = 3, + [158708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(2293), 1, anon_sym_else, - ACTIONS(2523), 2, + ACTIONS(2295), 2, anon_sym_elseif, anon_sym_while, - [158632] = 4, + [158719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 1, + ACTIONS(4942), 1, + anon_sym_RPAREN, + ACTIONS(6783), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, anon_sym_GT, - ACTIONS(6802), 1, + ACTIONS(6785), 1, anon_sym_COMMA, - STATE(5096), 1, + STATE(5239), 1, aux_sym_tuple_type_specifier_repeat1, - [158645] = 3, + [158745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, + ACTIONS(2313), 1, anon_sym_else, - ACTIONS(2527), 2, + ACTIONS(2315), 2, anon_sym_elseif, anon_sym_while, - [158656] = 3, + [158756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 1, + ACTIONS(4940), 1, + anon_sym_RPAREN, + ACTIONS(6787), 1, + anon_sym_COMMA, + STATE(4603), 1, + aux_sym_function_type_specifier_repeat1, + [158769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + anon_sym_RPAREN, + ACTIONS(6787), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 1, anon_sym_else, - ACTIONS(2543), 2, + ACTIONS(2343), 2, anon_sym_elseif, anon_sym_while, - [158667] = 4, + [158793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6789), 1, anon_sym_COMMA, - ACTIONS(6804), 1, + ACTIONS(6791), 1, anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [158680] = 3, + STATE(4679), 1, + aux_sym_xhp_category_declaration_repeat1, + [158806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, + ACTIONS(2333), 1, anon_sym_else, - ACTIONS(2547), 2, + ACTIONS(2335), 2, anon_sym_elseif, anon_sym_while, - [158691] = 4, + [158817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(6793), 1, + anon_sym_COMMA, + ACTIONS(6795), 1, + anon_sym_SEMI, + STATE(4710), 1, + aux_sym_property_declaration_repeat1, + [158830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 1, anon_sym_RPAREN, - ACTIONS(6729), 1, + ACTIONS(6041), 1, anon_sym_COMMA, - STATE(4570), 1, - aux_sym_tuple_type_specifier_repeat1, - [158704] = 3, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2553), 1, - anon_sym_else, - ACTIONS(2555), 2, - anon_sym_elseif, - anon_sym_while, - [158715] = 3, + ACTIONS(4934), 1, + anon_sym_RPAREN, + ACTIONS(6041), 1, + anon_sym_COMMA, + STATE(4607), 1, + aux_sym_function_type_specifier_repeat1, + [158856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2559), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [158726] = 4, + [158867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(4932), 1, anon_sym_RPAREN, - ACTIONS(6806), 1, + ACTIONS(6043), 1, anon_sym_COMMA, - STATE(4575), 1, - aux_sym_shape_type_specifier_repeat1, - [158739] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [158880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 1, - anon_sym_COMMA, - ACTIONS(6810), 1, + ACTIONS(4932), 1, anon_sym_RPAREN, - STATE(4577), 1, - aux_sym_shape_type_specifier_repeat1, - [158752] = 3, + ACTIONS(6043), 1, + anon_sym_COMMA, + STATE(4612), 1, + aux_sym_function_type_specifier_repeat1, + [158893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2569), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2571), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [158763] = 3, + [158904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2573), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2575), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [158774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5895), 1, - anon_sym_GT_GT, - ACTIONS(6812), 1, - anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [158787] = 3, + [158915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2577), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2579), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [158798] = 3, + [158926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2193), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2195), 2, anon_sym_elseif, anon_sym_while, - [158809] = 4, + [158937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4894), 1, + ACTIONS(1571), 1, anon_sym_RPAREN, - ACTIONS(6814), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [158822] = 3, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [158950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [158833] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_RPAREN, - ACTIONS(6816), 1, - anon_sym_COMMA, - STATE(4619), 1, - aux_sym_function_type_specifier_repeat1, - [158846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_RPAREN, - ACTIONS(6816), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [158859] = 4, + [158961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6818), 1, - anon_sym_COMMA, - ACTIONS(6820), 1, - anon_sym_GT, - STATE(4599), 1, - aux_sym_tuple_type_specifier_repeat1, - [158872] = 3, + ACTIONS(2093), 1, + anon_sym_else, + ACTIONS(2095), 2, + anon_sym_elseif, + anon_sym_while, + [158972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [158883] = 3, + [158983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [158894] = 4, + [158994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, + ACTIONS(5915), 1, anon_sym_GT_GT, - ACTIONS(6822), 1, + ACTIONS(6797), 1, anon_sym_COMMA, STATE(4667), 1, aux_sym_module_attribute_repeat1, - [158907] = 4, + [159007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, + ACTIONS(5915), 1, anon_sym_GT_GT, - ACTIONS(6822), 1, + ACTIONS(6797), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [158920] = 4, + [159020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, - anon_sym_RPAREN, - ACTIONS(6145), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [158933] = 4, + ACTIONS(2093), 1, + anon_sym_else, + ACTIONS(2095), 2, + anon_sym_elseif, + anon_sym_while, + [159031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(1453), 1, + anon_sym_RPAREN, + ACTIONS(6799), 1, anon_sym_COMMA, - ACTIONS(6824), 1, - anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [158946] = 4, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159044] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 1, + ACTIONS(1417), 1, anon_sym_RPAREN, - ACTIONS(6826), 1, + ACTIONS(6801), 1, anon_sym_COMMA, - STATE(4818), 1, + STATE(5267), 1, aux_sym_shape_type_specifier_repeat1, - [158959] = 4, + [159057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6803), 3, anon_sym_COMMA, - ACTIONS(6828), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(4607), 1, - aux_sym_const_declaration_repeat1, - [158972] = 4, + [159066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1415), 1, anon_sym_RPAREN, - ACTIONS(6830), 1, + ACTIONS(6805), 1, anon_sym_COMMA, - STATE(4818), 1, + STATE(5267), 1, aux_sym_shape_type_specifier_repeat1, - [158985] = 4, + [159079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(6771), 1, anon_sym_COMMA, - ACTIONS(6834), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_tuple_type_specifier_repeat1, - [158998] = 4, + ACTIONS(6807), 1, + anon_sym_SEMI, + STATE(4477), 1, + aux_sym_xhp_attribute_declaration_repeat1, + [159092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(6809), 1, anon_sym_COMMA, - ACTIONS(6838), 1, + ACTIONS(6811), 1, anon_sym_RPAREN, STATE(4671), 1, aux_sym_shape_type_specifier_repeat1, - [159011] = 4, + [159105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(1415), 1, anon_sym_RPAREN, - ACTIONS(6830), 1, + ACTIONS(6805), 1, anon_sym_COMMA, STATE(4672), 1, aux_sym_shape_type_specifier_repeat1, - [159024] = 4, + [159118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(6840), 1, + ACTIONS(6813), 1, anon_sym_COMMA, - STATE(3798), 1, + STATE(3780), 1, aux_sym_tuple_type_specifier_repeat1, - [159037] = 4, + [159131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, - anon_sym_RPAREN, - ACTIONS(6145), 1, + ACTIONS(5971), 1, + anon_sym_GT_GT, + ACTIONS(6815), 1, anon_sym_COMMA, - STATE(4622), 1, - aux_sym_function_type_specifier_repeat1, - [159050] = 4, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [159144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_SEMI, - ACTIONS(6842), 1, + ACTIONS(5480), 1, + anon_sym_RBRACE, + ACTIONS(6777), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4686), 1, aux_sym_use_statement_repeat1, - [159063] = 3, + [159157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(5042), 1, + anon_sym_RPAREN, + ACTIONS(6817), 1, + anon_sym_COMMA, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [159170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159074] = 4, + [159181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, + ACTIONS(1401), 1, anon_sym_RPAREN, - ACTIONS(6155), 1, + ACTIONS(6819), 1, anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [159087] = 4, + STATE(4792), 1, + aux_sym_shape_type_specifier_repeat1, + [159194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 1, + ACTIONS(1503), 1, anon_sym_RBRACE, - ACTIONS(6844), 1, - anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [159100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4900), 1, - anon_sym_RPAREN, - ACTIONS(6155), 1, + ACTIONS(6821), 1, anon_sym_COMMA, - STATE(4628), 1, - aux_sym_function_type_specifier_repeat1, - [159113] = 3, + STATE(4462), 1, + aux_sym_array_repeat1, + [159207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159124] = 3, + [159218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159135] = 4, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6823), 1, + sym_variable, + STATE(6382), 1, + sym_variadic_modifier, + [159231] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(321), 1, anon_sym_LBRACE, - ACTIONS(6846), 1, + ACTIONS(6825), 1, anon_sym_SEMI, - STATE(1105), 1, + STATE(1330), 1, sym_compound_statement, - [159148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(6848), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [159161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159183] = 3, + [159244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5905), 1, - anon_sym_GT_GT, - ACTIONS(6850), 1, - anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [159207] = 4, + [159255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, - anon_sym_GT_GT, - ACTIONS(6850), 1, + ACTIONS(4904), 1, + anon_sym_RPAREN, + ACTIONS(6827), 1, anon_sym_COMMA, - STATE(4616), 1, - aux_sym_module_attribute_repeat1, - [159220] = 3, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [159268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(6852), 1, - anon_sym_SEMI, - STATE(4766), 1, - sym_compound_statement, - [159244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6740), 1, - anon_sym_COMMA, - ACTIONS(6854), 1, - anon_sym_SEMI, - STATE(4629), 1, - aux_sym_const_declaration_repeat1, - [159257] = 4, + [159279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(4902), 1, + anon_sym_RPAREN, + ACTIONS(6829), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_SEMI, - STATE(4638), 1, - aux_sym_use_statement_repeat1, - [159270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, + STATE(4647), 1, + aux_sym_function_type_specifier_repeat1, [159292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 1, - anon_sym_RBRACE, - ACTIONS(6860), 1, + ACTIONS(1455), 1, + anon_sym_RPAREN, + ACTIONS(6831), 1, anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, [159305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6862), 1, + ACTIONS(4902), 1, + anon_sym_RPAREN, + ACTIONS(6829), 1, anon_sym_COMMA, - ACTIONS(6865), 1, - anon_sym_RBRACK, - STATE(4659), 1, - aux_sym_capability_list_repeat1, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, [159318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, [159329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(6867), 1, - anon_sym_SEMI, - STATE(4789), 1, - sym_compound_statement, - [159342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159364] = 4, + ACTIONS(1353), 1, + anon_sym_RPAREN, + ACTIONS(6833), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(6869), 1, - anon_sym_SEMI, - STATE(4791), 1, - sym_compound_statement, - [159377] = 3, + ACTIONS(1449), 1, + anon_sym_RPAREN, + ACTIONS(6835), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159388] = 3, + ACTIONS(1349), 1, + anon_sym_RPAREN, + ACTIONS(6837), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159399] = 4, + [159379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, + ACTIONS(5899), 1, anon_sym_GT_GT, - ACTIONS(6871), 1, + ACTIONS(6839), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [159412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6873), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [159421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5516), 1, - anon_sym_RBRACE, - ACTIONS(6844), 1, - anon_sym_COMMA, - STATE(4903), 1, - aux_sym_use_statement_repeat1, - [159434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 1, - anon_sym_RPAREN, - ACTIONS(6875), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [159447] = 4, + [159392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_RPAREN, - ACTIONS(6877), 1, + ACTIONS(5983), 1, + anon_sym_GT_GT, + ACTIONS(6841), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [159460] = 4, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [159405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - ACTIONS(6879), 1, + ACTIONS(6077), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [159473] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [159418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - ACTIONS(6881), 1, + ACTIONS(6077), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(4651), 1, aux_sym_function_type_specifier_repeat1, - [159486] = 3, + [159431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159497] = 4, + [159442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - ACTIONS(6883), 1, + ACTIONS(6079), 1, anon_sym_COMMA, - STATE(4673), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [159510] = 4, + [159455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - ACTIONS(6885), 1, + ACTIONS(6079), 1, anon_sym_COMMA, - STATE(4860), 1, - aux_sym_shape_type_specifier_repeat1, - [159523] = 3, + STATE(4659), 1, + aux_sym_function_type_specifier_repeat1, + [159468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(6845), 1, anon_sym_EQ, - ACTIONS(6887), 2, + ACTIONS(6843), 2, anon_sym_COMMA, anon_sym_RPAREN, - [159534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4934), 1, - anon_sym_RPAREN, - ACTIONS(6883), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [159547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6891), 1, - sym_variable, - STATE(6076), 1, - sym_variadic_modifier, - [159560] = 3, + [159479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159571] = 4, + [159490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(5716), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [159584] = 3, + ACTIONS(6847), 1, + anon_sym_SEMI, + STATE(4270), 1, + aux_sym_xhp_children_declaration_repeat1, + [159503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(5895), 1, + anon_sym_GT_GT, + ACTIONS(6849), 1, + anon_sym_COMMA, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [159516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159595] = 3, + [159527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6895), 1, + ACTIONS(6853), 1, anon_sym_EQ, - ACTIONS(6893), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4882), 1, - anon_sym_RPAREN, - ACTIONS(6181), 1, + ACTIONS(6851), 2, anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [159619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4882), 1, anon_sym_RPAREN, - ACTIONS(6181), 1, - anon_sym_COMMA, - STATE(4678), 1, - aux_sym_function_type_specifier_repeat1, - [159632] = 3, + [159538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159643] = 4, + [159549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(1403), 1, anon_sym_RPAREN, - ACTIONS(6183), 1, + ACTIONS(6855), 1, anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [159656] = 4, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(1405), 1, anon_sym_RPAREN, - ACTIONS(6183), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - STATE(4684), 1, - aux_sym_function_type_specifier_repeat1, - [159669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159702] = 3, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159713] = 3, + ACTIONS(1289), 1, + anon_sym_RPAREN, + ACTIONS(6859), 1, + anon_sym_COMMA, + STATE(4535), 1, + aux_sym_arguments_repeat1, + [159588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2567), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159724] = 3, + [159599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, - anon_sym_else, - ACTIONS(2531), 2, - anon_sym_elseif, - anon_sym_while, - [159735] = 3, + ACTIONS(6863), 1, + anon_sym_EQ, + ACTIONS(6861), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159746] = 3, + [159621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2531), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159757] = 3, + [159632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2463), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159768] = 3, + [159643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_else, - ACTIONS(2459), 2, - anon_sym_elseif, - anon_sym_while, - [159779] = 3, + ACTIONS(6789), 1, + anon_sym_COMMA, + ACTIONS(6865), 1, + anon_sym_SEMI, + STATE(5195), 1, + aux_sym_xhp_category_declaration_repeat1, + [159656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2339), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159790] = 4, + [159667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(6897), 1, + ACTIONS(1693), 1, anon_sym_RPAREN, - STATE(4366), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [159803] = 4, + [159680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_LBRACE, - ACTIONS(6899), 1, - anon_sym_SEMI, - STATE(1145), 1, - sym_compound_statement, - [159816] = 3, + ACTIONS(1401), 1, + anon_sym_RPAREN, + ACTIONS(6819), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, + ACTIONS(1313), 1, + anon_sym_RPAREN, + ACTIONS(6867), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2375), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159827] = 4, + [159717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2365), 1, + anon_sym_else, + ACTIONS(2367), 2, + anon_sym_elseif, + anon_sym_while, + [159728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5526), 1, + anon_sym_RBRACE, + ACTIONS(6869), 1, + anon_sym_COMMA, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [159741] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(6901), 1, + ACTIONS(6871), 1, sym_identifier, - STATE(3780), 1, + STATE(3796), 1, sym_parameters, - [159840] = 3, + [159754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(2445), 1, anon_sym_else, - ACTIONS(2363), 2, + ACTIONS(2447), 2, anon_sym_elseif, anon_sym_while, - [159851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6905), 1, - anon_sym_EQ, - ACTIONS(6903), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159862] = 3, + [159765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2345), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2347), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159873] = 4, + [159776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - ACTIONS(6907), 1, + ACTIONS(6873), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [159886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3928), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [159899] = 3, + [159789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2307), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159910] = 4, + [159800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(4862), 1, anon_sym_RPAREN, - ACTIONS(6909), 1, + ACTIONS(6875), 1, anon_sym_COMMA, - STATE(4707), 1, + STATE(4690), 1, aux_sym_function_type_specifier_repeat1, - [159923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 1, - anon_sym_RPAREN, - ACTIONS(6885), 1, - anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [159936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [159949] = 4, + [159813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(4862), 1, anon_sym_RPAREN, - ACTIONS(6909), 1, + ACTIONS(6875), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [159962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_RPAREN, - ACTIONS(6911), 1, - anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [159975] = 3, + [159826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2175), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [159986] = 3, + [159837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2377), 1, anon_sym_else, - ACTIONS(2159), 2, + ACTIONS(2379), 2, anon_sym_elseif, anon_sym_while, - [159997] = 4, + [159848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4860), 1, anon_sym_RPAREN, - ACTIONS(6195), 1, + ACTIONS(6135), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [160010] = 4, + [159861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4860), 1, anon_sym_RPAREN, - ACTIONS(6195), 1, + ACTIONS(6135), 1, anon_sym_COMMA, - STATE(4713), 1, + STATE(4693), 1, aux_sym_function_type_specifier_repeat1, - [160023] = 3, + [159874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6915), 1, - sym_xhp_class_identifier, - ACTIONS(6913), 2, - sym_identifier, - sym_xhp_identifier, - [160034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 1, + ACTIONS(2381), 1, anon_sym_else, - ACTIONS(2147), 2, + ACTIONS(2383), 2, anon_sym_elseif, anon_sym_while, - [160045] = 4, + [159885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - ACTIONS(6197), 1, + ACTIONS(6137), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [160058] = 4, + [159898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(6137), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [160071] = 4, + STATE(4696), 1, + aux_sym_function_type_specifier_repeat1, + [159911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_RPAREN, - ACTIONS(6197), 1, - anon_sym_COMMA, - STATE(4717), 1, - aux_sym_function_type_specifier_repeat1, - [160084] = 3, + ACTIONS(321), 1, + anon_sym_LBRACE, + ACTIONS(6877), 1, + anon_sym_SEMI, + STATE(950), 1, + sym_compound_statement, + [159924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2385), 1, anon_sym_else, - ACTIONS(2331), 2, + ACTIONS(2387), 2, anon_sym_elseif, anon_sym_while, - [160095] = 3, + [159935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(2389), 1, anon_sym_else, - ACTIONS(2607), 2, + ACTIONS(2391), 2, anon_sym_elseif, anon_sym_while, - [160106] = 3, + [159946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 1, + ACTIONS(2393), 1, anon_sym_else, - ACTIONS(2539), 2, + ACTIONS(2395), 2, anon_sym_elseif, anon_sym_while, - [160117] = 3, + [159957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, - anon_sym_else, - ACTIONS(2503), 2, - anon_sym_elseif, - anon_sym_while, - [160128] = 3, + ACTIONS(1395), 1, + anon_sym_RPAREN, + ACTIONS(6879), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [159970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 1, + ACTIONS(2397), 1, anon_sym_else, - ACTIONS(2451), 2, + ACTIONS(2399), 2, anon_sym_elseif, anon_sym_while, - [160139] = 3, + [159981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_else, - ACTIONS(2311), 2, - anon_sym_elseif, - anon_sym_while, - [160150] = 3, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, + anon_sym_SEMI, + STATE(1139), 1, + sym_compound_statement, + [159994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_else, - ACTIONS(2271), 2, - anon_sym_elseif, - anon_sym_while, - [160161] = 3, + ACTIONS(3592), 1, + anon_sym_RPAREN, + ACTIONS(6883), 1, + anon_sym_COMMA, + STATE(4708), 1, + aux_sym_unset_statement_repeat1, + [160007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(2401), 1, anon_sym_else, - ACTIONS(2255), 2, + ACTIONS(2403), 2, anon_sym_elseif, anon_sym_while, - [160172] = 3, + [160018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, - anon_sym_else, - ACTIONS(2219), 2, - anon_sym_elseif, - anon_sym_while, - [160183] = 3, + ACTIONS(6793), 1, + anon_sym_COMMA, + ACTIONS(6886), 1, + anon_sym_SEMI, + STATE(4714), 1, + aux_sym_property_declaration_repeat1, + [160031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2093), 1, anon_sym_else, - ACTIONS(2615), 2, + ACTIONS(2095), 2, anon_sym_elseif, anon_sym_while, - [160194] = 4, + [160042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(1703), 1, anon_sym_RPAREN, - ACTIONS(6917), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4734), 1, - aux_sym_unset_statement_repeat1, - [160207] = 3, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [160055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2409), 1, anon_sym_else, - ACTIONS(2583), 2, + ACTIONS(2411), 2, anon_sym_elseif, anon_sym_while, - [160218] = 3, + [160066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(6888), 1, + anon_sym_COMMA, + ACTIONS(6891), 1, + anon_sym_SEMI, + STATE(4714), 1, + aux_sym_property_declaration_repeat1, + [160079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 1, anon_sym_else, - ACTIONS(2143), 2, + ACTIONS(2415), 2, anon_sym_elseif, anon_sym_while, - [160229] = 3, + [160090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2417), 1, anon_sym_else, - ACTIONS(2595), 2, + ACTIONS(2419), 2, anon_sym_elseif, anon_sym_while, - [160240] = 3, + [160101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2421), 1, anon_sym_else, - ACTIONS(2587), 2, + ACTIONS(2423), 2, anon_sym_elseif, anon_sym_while, - [160251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [160264] = 3, + [160112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2425), 1, anon_sym_else, - ACTIONS(2135), 2, + ACTIONS(2427), 2, anon_sym_elseif, anon_sym_while, - [160275] = 4, + [160123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [160288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, + ACTIONS(6793), 1, anon_sym_COMMA, - ACTIONS(6920), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [160301] = 3, + ACTIONS(6893), 1, + anon_sym_SEMI, + STATE(5174), 1, + aux_sym_property_declaration_repeat1, + [160136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, + ACTIONS(2429), 1, anon_sym_else, - ACTIONS(2151), 2, + ACTIONS(2431), 2, anon_sym_elseif, anon_sym_while, - [160312] = 3, + [160147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(2433), 1, anon_sym_else, - ACTIONS(2163), 2, + ACTIONS(2435), 2, anon_sym_elseif, anon_sym_while, - [160323] = 3, + [160158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2437), 1, anon_sym_else, - ACTIONS(2167), 2, + ACTIONS(2439), 2, anon_sym_elseif, anon_sym_while, - [160334] = 3, + [160169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 1, + ACTIONS(2441), 1, anon_sym_else, - ACTIONS(2043), 2, + ACTIONS(2443), 2, anon_sym_elseif, anon_sym_while, - [160345] = 3, + [160180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2453), 1, anon_sym_else, - ACTIONS(2611), 2, + ACTIONS(2455), 2, anon_sym_elseif, anon_sym_while, - [160356] = 4, + [160191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(6922), 1, + ACTIONS(6895), 1, anon_sym_SEMI, - STATE(1254), 1, + STATE(4608), 1, sym_compound_statement, - [160369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4874), 1, - anon_sym_RPAREN, - ACTIONS(6924), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [160382] = 3, + [160204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2357), 1, anon_sym_else, - ACTIONS(2603), 2, + ACTIONS(2359), 2, anon_sym_elseif, anon_sym_while, - [160393] = 4, + [160215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4990), 1, anon_sym_RPAREN, - ACTIONS(6926), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - STATE(4749), 1, - aux_sym_function_type_specifier_repeat1, - [160406] = 4, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [160228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(1363), 1, anon_sym_RPAREN, - ACTIONS(6926), 1, + ACTIONS(6899), 1, anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [160419] = 3, + STATE(4653), 1, + aux_sym_shape_type_specifier_repeat1, + [160241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(2461), 1, anon_sym_else, - ACTIONS(2591), 2, + ACTIONS(2463), 2, anon_sym_elseif, anon_sym_while, - [160430] = 3, + [160252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 1, + ACTIONS(6901), 1, + anon_sym_COMMA, + ACTIONS(6903), 1, + anon_sym_RPAREN, + STATE(4655), 1, + aux_sym_shape_type_specifier_repeat1, + [160265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + anon_sym_RPAREN, + ACTIONS(6905), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [160278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2469), 1, anon_sym_else, - ACTIONS(2395), 2, + ACTIONS(2471), 2, anon_sym_elseif, anon_sym_while, - [160441] = 4, + [160289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4870), 1, + ACTIONS(4832), 1, anon_sym_RPAREN, - ACTIONS(6247), 1, + ACTIONS(6907), 1, anon_sym_COMMA, - STATE(4929), 1, + STATE(4731), 1, aux_sym_function_type_specifier_repeat1, - [160454] = 4, + [160302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4870), 1, + ACTIONS(1363), 1, anon_sym_RPAREN, - ACTIONS(6247), 1, + ACTIONS(6899), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [160315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + anon_sym_RPAREN, + ACTIONS(6907), 1, anon_sym_COMMA, - STATE(4752), 1, + STATE(5016), 1, aux_sym_function_type_specifier_repeat1, - [160467] = 3, + [160328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_else, - ACTIONS(2443), 2, - anon_sym_elseif, - anon_sym_while, - [160478] = 4, + ACTIONS(5881), 1, + anon_sym_GT_GT, + ACTIONS(6909), 1, + anon_sym_COMMA, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [160341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(5881), 1, + anon_sym_GT_GT, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(3948), 1, + STATE(4918), 1, + aux_sym_module_attribute_repeat1, + [160354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1373), 1, anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [160491] = 4, + ACTIONS(6911), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [160367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(1723), 1, anon_sym_RPAREN, - ACTIONS(6249), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [160504] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [160380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(6916), 1, anon_sym_RPAREN, - ACTIONS(6249), 1, + STATE(4740), 1, + aux_sym_shape_repeat1, + [160393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 1, anon_sym_COMMA, - STATE(4755), 1, - aux_sym_function_type_specifier_repeat1, - [160517] = 3, + ACTIONS(6918), 1, + anon_sym_SEMI, + STATE(4714), 1, + aux_sym_property_declaration_repeat1, + [160406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 1, - anon_sym_else, - ACTIONS(2099), 2, - anon_sym_elseif, - anon_sym_while, - [160528] = 3, + ACTIONS(6920), 1, + anon_sym_LBRACE, + ACTIONS(6922), 1, + anon_sym_SEMI, + STATE(2819), 1, + sym_compound_statement, + [160419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2473), 1, anon_sym_else, - ACTIONS(2447), 2, + ACTIONS(2475), 2, anon_sym_elseif, anon_sym_while, - [160539] = 4, + [160430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(5873), 1, + anon_sym_GT_GT, + ACTIONS(6924), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [160552] = 4, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [160443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6928), 1, + ACTIONS(5873), 1, + anon_sym_GT_GT, + ACTIONS(6924), 1, anon_sym_COMMA, - ACTIONS(6931), 1, - anon_sym_GT, - STATE(4764), 1, - aux_sym_type_parameters_repeat1, - [160565] = 3, + STATE(4657), 1, + aux_sym_module_attribute_repeat1, + [160456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2477), 1, anon_sym_else, - ACTIONS(2107), 2, + ACTIONS(2479), 2, anon_sym_elseif, anon_sym_while, - [160576] = 3, + [160467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_else, - ACTIONS(2111), 2, - anon_sym_elseif, - anon_sym_while, - [160587] = 4, + ACTIONS(4838), 1, + anon_sym_RPAREN, + ACTIONS(6163), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [160480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 1, + anon_sym_COMMA, + ACTIONS(6926), 1, + anon_sym_SEMI, + STATE(4741), 1, + aux_sym_property_declaration_repeat1, + [160493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, + ACTIONS(4838), 1, anon_sym_RPAREN, - ACTIONS(6933), 1, + ACTIONS(6163), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [160600] = 3, + STATE(4735), 1, + aux_sym_function_type_specifier_repeat1, + [160506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, + ACTIONS(6920), 1, + anon_sym_LBRACE, + ACTIONS(6928), 1, + anon_sym_SEMI, + STATE(2799), 1, + sym_compound_statement, + [160519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2481), 1, anon_sym_else, - ACTIONS(2115), 2, + ACTIONS(2483), 2, anon_sym_elseif, anon_sym_while, - [160611] = 4, + [160530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(6935), 1, + ACTIONS(807), 1, + anon_sym_LBRACE, + ACTIONS(6930), 1, + anon_sym_SEMI, + STATE(988), 1, + sym_compound_statement, + [160543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 1, anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [160624] = 4, + ACTIONS(6165), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [160556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 1, + ACTIONS(4840), 1, anon_sym_RPAREN, - ACTIONS(6937), 1, + ACTIONS(6165), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [160637] = 3, + STATE(4747), 1, + aux_sym_function_type_specifier_repeat1, + [160569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2485), 1, anon_sym_else, - ACTIONS(2119), 2, + ACTIONS(2487), 2, anon_sym_elseif, anon_sym_while, - [160648] = 3, + [160580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2497), 1, anon_sym_else, - ACTIONS(2127), 2, + ACTIONS(2499), 2, anon_sym_elseif, anon_sym_while, - [160659] = 3, + [160591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(2501), 1, anon_sym_else, - ACTIONS(2131), 2, + ACTIONS(2503), 2, anon_sym_elseif, anon_sym_while, - [160670] = 3, + [160602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3962), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [160615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, + ACTIONS(2505), 1, anon_sym_else, - ACTIONS(2037), 2, + ACTIONS(2507), 2, anon_sym_elseif, anon_sym_while, - [160681] = 3, + [160626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2047), 1, anon_sym_else, - ACTIONS(2171), 2, + ACTIONS(2049), 2, anon_sym_elseif, anon_sym_while, - [160692] = 3, + [160637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 1, + ACTIONS(2509), 1, anon_sym_else, - ACTIONS(2179), 2, + ACTIONS(2511), 2, anon_sym_elseif, anon_sym_while, - [160703] = 3, + [160648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, + ACTIONS(5016), 1, + anon_sym_RPAREN, + ACTIONS(6932), 1, + anon_sym_COMMA, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [160661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 1, anon_sym_else, - ACTIONS(2187), 2, + ACTIONS(2515), 2, anon_sym_elseif, anon_sym_while, - [160714] = 4, + [160672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5935), 1, - anon_sym_GT_GT, - ACTIONS(6939), 1, + ACTIONS(1449), 1, + anon_sym_RPAREN, + ACTIONS(6835), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [160727] = 4, + STATE(4629), 1, + aux_sym_shape_type_specifier_repeat1, + [160685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5935), 1, - anon_sym_GT_GT, - ACTIONS(6939), 1, - anon_sym_COMMA, - STATE(4921), 1, - aux_sym_module_attribute_repeat1, - [160740] = 4, + ACTIONS(2517), 1, + anon_sym_else, + ACTIONS(2519), 2, + anon_sym_elseif, + anon_sym_while, + [160696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - anon_sym_GT_GT, - ACTIONS(6941), 1, - anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [160753] = 4, + ACTIONS(2521), 1, + anon_sym_else, + ACTIONS(2523), 2, + anon_sym_elseif, + anon_sym_while, + [160707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 1, + ACTIONS(6934), 1, anon_sym_COMMA, - ACTIONS(6946), 1, + ACTIONS(6936), 1, anon_sym_RPAREN, - STATE(4781), 1, - aux_sym_shape_repeat1, - [160766] = 3, + STATE(4650), 1, + aux_sym_shape_type_specifier_repeat1, + [160720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 1, + ACTIONS(2525), 1, anon_sym_else, - ACTIONS(2191), 2, + ACTIONS(2527), 2, anon_sym_elseif, anon_sym_while, - [160777] = 3, + [160731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(6938), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [160744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(807), 1, + anon_sym_LBRACE, + ACTIONS(6940), 1, + anon_sym_SEMI, + STATE(986), 1, + sym_compound_statement, + [160757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, anon_sym_else, - ACTIONS(2355), 2, + ACTIONS(2531), 2, anon_sym_elseif, anon_sym_while, - [160788] = 3, + [160768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(6942), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [160781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2533), 1, anon_sym_else, - ACTIONS(2383), 2, + ACTIONS(2535), 2, anon_sym_elseif, anon_sym_while, - [160799] = 3, + [160792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2417), 1, + ACTIONS(2537), 1, anon_sym_else, - ACTIONS(2419), 2, + ACTIONS(2539), 2, anon_sym_elseif, anon_sym_while, - [160810] = 4, + [160803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(6948), 1, - anon_sym_SEMI, - STATE(825), 1, - sym_compound_statement, - [160823] = 3, + ACTIONS(2545), 1, + anon_sym_else, + ACTIONS(2547), 2, + anon_sym_elseif, + anon_sym_while, + [160814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, + ACTIONS(2549), 1, anon_sym_else, - ACTIONS(2431), 2, + ACTIONS(2551), 2, anon_sym_elseif, anon_sym_while, - [160834] = 4, + [160825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(6950), 1, - anon_sym_SEMI, - STATE(811), 1, - sym_compound_statement, - [160847] = 3, + ACTIONS(1581), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [160838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2401), 1, + ACTIONS(2089), 1, anon_sym_else, - ACTIONS(2403), 2, + ACTIONS(2091), 2, anon_sym_elseif, anon_sym_while, - [160858] = 3, + [160849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2553), 1, anon_sym_else, - ACTIONS(2103), 2, + ACTIONS(2555), 2, anon_sym_elseif, anon_sym_while, - [160869] = 3, + [160860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2453), 1, + ACTIONS(2557), 1, anon_sym_else, - ACTIONS(2455), 2, + ACTIONS(2559), 2, anon_sym_elseif, anon_sym_while, - [160880] = 3, + [160871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, + ACTIONS(2053), 1, anon_sym_else, - ACTIONS(2471), 2, + ACTIONS(2055), 2, anon_sym_elseif, anon_sym_while, - [160891] = 4, + [160882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(6952), 1, + ACTIONS(6944), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [160904] = 4, + [160895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(6948), 1, + sym_xhp_class_identifier, + ACTIONS(6946), 2, + sym_identifier, + sym_xhp_identifier, + [160906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6950), 1, + anon_sym_COLON, + STATE(6104), 1, + sym_capability_list, + [160919] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5678), 1, anon_sym_GT, - ACTIONS(6954), 1, + ACTIONS(6952), 1, anon_sym_COMMA, - STATE(4764), 1, + STATE(4900), 1, aux_sym_type_parameters_repeat1, - [160917] = 4, + [160932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(6954), 1, + anon_sym_SEMI, + STATE(901), 1, + sym_compound_statement, + [160945] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, ACTIONS(6956), 1, - anon_sym_COMMA, + anon_sym_COLON, + STATE(6102), 1, + sym_capability_list, + [160958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, + anon_sym_LBRACE, ACTIONS(6958), 1, anon_sym_SEMI, - STATE(4809), 1, - aux_sym_use_statement_repeat1, - [160930] = 4, + STATE(899), 1, + sym_compound_statement, + [160971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, - anon_sym_COMMA, + ACTIONS(5736), 1, + anon_sym_LBRACK, ACTIONS(6960), 1, - anon_sym_SEMI, - STATE(4813), 1, - aux_sym_const_declaration_repeat1, - [160943] = 3, + anon_sym_COLON, + STATE(6100), 1, + sym_capability_list, + [160984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6964), 1, - sym_xhp_class_identifier, - ACTIONS(6962), 2, - sym_identifier, - sym_xhp_identifier, - [160954] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(6962), 1, + anon_sym_COLON, + STATE(6098), 1, + sym_capability_list, + [160997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(6966), 1, + ACTIONS(6964), 1, anon_sym_COLON, - STATE(6104), 1, + STATE(6097), 1, sym_capability_list, - [160967] = 4, + [161010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(1323), 1, anon_sym_RPAREN, - ACTIONS(6968), 1, + ACTIONS(6966), 1, anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [160980] = 4, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [161023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 1, + anon_sym_else, + ACTIONS(2563), 2, + anon_sym_elseif, + anon_sym_while, + [161034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(6970), 1, + ACTIONS(6968), 1, anon_sym_COLON, - STATE(6102), 1, + STATE(6095), 1, sym_capability_list, - [160993] = 4, + [161047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, + ACTIONS(6970), 1, + anon_sym_COMMA, ACTIONS(6972), 1, - anon_sym_COLON, - STATE(6100), 1, - sym_capability_list, - [161006] = 4, + anon_sym_SEMI, + STATE(4809), 1, + aux_sym_use_statement_repeat1, + [161060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, + ACTIONS(6727), 1, + anon_sym_COMMA, ACTIONS(6974), 1, - anon_sym_COLON, - STATE(6098), 1, - sym_capability_list, - [161019] = 4, + anon_sym_SEMI, + STATE(4813), 1, + aux_sym_const_declaration_repeat1, + [161073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 1, + ACTIONS(6920), 1, anon_sym_LBRACE, ACTIONS(6976), 1, anon_sym_SEMI, - STATE(728), 1, + STATE(2892), 1, sym_compound_statement, - [161032] = 4, + [161086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, + ACTIONS(5040), 1, + anon_sym_GT, ACTIONS(6978), 1, - anon_sym_COLON, - STATE(6097), 1, - sym_capability_list, - [161045] = 4, + anon_sym_COMMA, + STATE(5239), 1, + aux_sym_tuple_type_specifier_repeat1, + [161099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(2569), 1, + anon_sym_else, + ACTIONS(2571), 2, + anon_sym_elseif, + anon_sym_while, + [161110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 1, anon_sym_COMMA, - ACTIONS(6980), 1, + ACTIONS(6918), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [161058] = 3, + STATE(5130), 1, + aux_sym_property_declaration_repeat1, + [161123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(1447), 1, + anon_sym_RPAREN, + ACTIONS(6980), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [161136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2573), 1, anon_sym_else, - ACTIONS(2479), 2, + ACTIONS(2575), 2, anon_sym_elseif, anon_sym_while, - [161069] = 4, + [161147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, + ACTIONS(689), 1, + anon_sym_LBRACE, ACTIONS(6982), 1, - anon_sym_COLON, - STATE(6095), 1, - sym_capability_list, - [161082] = 4, + anon_sym_SEMI, + STATE(884), 1, + sym_compound_statement, + [161160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, - anon_sym_LBRACE, + ACTIONS(6727), 1, + anon_sym_COMMA, ACTIONS(6984), 1, anon_sym_SEMI, - STATE(1288), 1, - sym_compound_statement, - [161095] = 4, + STATE(5069), 1, + aux_sym_const_declaration_repeat1, + [161173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - anon_sym_SEMI, - ACTIONS(6986), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [161108] = 3, + ACTIONS(6986), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [161186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, + ACTIONS(2577), 1, anon_sym_else, - ACTIONS(2507), 2, + ACTIONS(2579), 2, anon_sym_elseif, anon_sym_while, - [161119] = 4, + [161197] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, ACTIONS(6988), 1, - anon_sym_COMMA, + anon_sym_COLON, + STATE(6091), 1, + sym_capability_list, + [161210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 1, + anon_sym_RPAREN, ACTIONS(6990), 1, + anon_sym_COMMA, + STATE(4727), 1, + aux_sym_tuple_type_specifier_repeat1, + [161223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5484), 1, + anon_sym_SEMI, + ACTIONS(6992), 1, + anon_sym_COMMA, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [161236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, + anon_sym_COMMA, + ACTIONS(6994), 1, + anon_sym_SEMI, + STATE(5126), 1, + aux_sym__class_const_declaration_repeat1, + [161249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6996), 1, + anon_sym_COMMA, + ACTIONS(6998), 1, anon_sym_RPAREN, STATE(4838), 1, aux_sym_tuple_type_specifier_repeat1, - [161132] = 4, + [161262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(6992), 1, + ACTIONS(7000), 1, anon_sym_SEMI, STATE(4842), 1, aux_sym_const_declaration_repeat1, - [161145] = 4, + [161275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(6994), 1, + ACTIONS(7002), 1, anon_sym_SEMI, - STATE(5075), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [161158] = 3, + [161288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 1, - anon_sym_else, - ACTIONS(2515), 2, - anon_sym_elseif, - anon_sym_while, - [161169] = 3, + ACTIONS(4986), 1, + anon_sym_RPAREN, + ACTIONS(6990), 1, + anon_sym_COMMA, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [161301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 1, + ACTIONS(2581), 1, anon_sym_else, - ACTIONS(2519), 2, + ACTIONS(2583), 2, anon_sym_elseif, anon_sym_while, - [161180] = 4, + [161312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(6996), 1, - anon_sym_COLON, - STATE(6091), 1, - sym_capability_list, - [161193] = 4, + ACTIONS(1381), 1, + anon_sym_RPAREN, + ACTIONS(7004), 1, + anon_sym_COMMA, + STATE(4734), 1, + aux_sym_shape_type_specifier_repeat1, + [161325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6998), 1, + ACTIONS(7006), 1, anon_sym_COMMA, - ACTIONS(7000), 1, + ACTIONS(7008), 1, anon_sym_GT, STATE(4848), 1, aux_sym_tuple_type_specifier_repeat1, - [161206] = 4, + [161338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, + ACTIONS(7010), 1, anon_sym_COMMA, - ACTIONS(7005), 1, + ACTIONS(7012), 1, anon_sym_RPAREN, - STATE(4818), 1, + STATE(4738), 1, aux_sym_shape_type_specifier_repeat1, - [161219] = 3, + [161351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2585), 1, anon_sym_else, - ACTIONS(2535), 2, + ACTIONS(2587), 2, anon_sym_elseif, anon_sym_while, - [161230] = 3, + [161362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2589), 1, anon_sym_else, - ACTIONS(2551), 2, + ACTIONS(2591), 2, anon_sym_elseif, anon_sym_while, - [161241] = 4, + [161373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7007), 1, - anon_sym_COLON, - STATE(6451), 1, - sym_capability_list, - [161254] = 3, + ACTIONS(1389), 1, + anon_sym_RPAREN, + ACTIONS(7014), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [161386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7009), 2, + ACTIONS(5851), 1, + anon_sym_GT_GT, + ACTIONS(7016), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [161265] = 3, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [161399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 1, + ACTIONS(2405), 1, anon_sym_else, - ACTIONS(2563), 2, + ACTIONS(2407), 2, anon_sym_elseif, anon_sym_while, - [161276] = 3, + [161410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(2597), 1, anon_sym_else, - ACTIONS(2367), 2, + ACTIONS(2599), 2, anon_sym_elseif, anon_sym_while, - [161287] = 4, + [161421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - anon_sym_RPAREN, - ACTIONS(7013), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [161300] = 3, + ACTIONS(7018), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [161434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, + ACTIONS(2601), 1, anon_sym_else, - ACTIONS(2599), 2, + ACTIONS(2603), 2, anon_sym_elseif, anon_sym_while, - [161311] = 4, + [161445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_RPAREN, - ACTIONS(7015), 1, - anon_sym_COMMA, - STATE(4767), 1, - aux_sym_shape_type_specifier_repeat1, - [161324] = 4, + ACTIONS(2605), 1, + anon_sym_else, + ACTIONS(2607), 2, + anon_sym_elseif, + anon_sym_while, + [161456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7017), 1, + ACTIONS(7022), 1, + anon_sym_EQ, + ACTIONS(7020), 2, anon_sym_COMMA, - ACTIONS(7019), 1, anon_sym_RPAREN, - STATE(4770), 1, - aux_sym_shape_type_specifier_repeat1, - [161337] = 4, + [161467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(1375), 1, anon_sym_RPAREN, - ACTIONS(7015), 1, + ACTIONS(7024), 1, anon_sym_COMMA, - STATE(4818), 1, + STATE(5267), 1, aux_sym_shape_type_specifier_repeat1, - [161350] = 3, + [161480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_EQ, - ACTIONS(7021), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161361] = 4, + ACTIONS(2609), 1, + anon_sym_else, + ACTIONS(2611), 2, + anon_sym_elseif, + anon_sym_while, + [161491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 1, - anon_sym_RPAREN, - ACTIONS(7025), 1, + ACTIONS(5955), 1, + anon_sym_GT_GT, + ACTIONS(7026), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [161374] = 4, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [161504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(7027), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [161387] = 3, + ACTIONS(2613), 1, + anon_sym_else, + ACTIONS(2615), 2, + anon_sym_elseif, + anon_sym_while, + [161515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, + ACTIONS(2541), 1, anon_sym_else, - ACTIONS(2059), 2, + ACTIONS(2543), 2, anon_sym_elseif, anon_sym_while, - [161398] = 4, + [161526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 1, - anon_sym_COMMA, - ACTIONS(7032), 1, - anon_sym_SEMI, - STATE(4834), 1, - aux_sym_trait_select_clause_repeat1, - [161411] = 4, + ACTIONS(2493), 1, + anon_sym_else, + ACTIONS(2495), 2, + anon_sym_elseif, + anon_sym_while, + [161537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7028), 1, anon_sym_COMMA, - ACTIONS(7036), 1, + ACTIONS(7030), 1, anon_sym_RPAREN, STATE(4874), 1, aux_sym_shape_type_specifier_repeat1, - [161424] = 4, + [161550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(7038), 1, + ACTIONS(7032), 1, anon_sym_COMMA, STATE(4876), 1, aux_sym_shape_type_specifier_repeat1, - [161437] = 4, + [161563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7040), 1, - anon_sym_COLON, - STATE(6051), 1, - sym_capability_list, - [161450] = 4, + ACTIONS(2489), 1, + anon_sym_else, + ACTIONS(2491), 2, + anon_sym_elseif, + anon_sym_while, + [161574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(4984), 1, anon_sym_RPAREN, - ACTIONS(7042), 1, + ACTIONS(7034), 1, anon_sym_COMMA, - STATE(3798), 1, + STATE(3780), 1, aux_sym_tuple_type_specifier_repeat1, - [161463] = 4, + [161587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5951), 1, - anon_sym_GT_GT, - ACTIONS(7044), 1, - anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [161476] = 4, + ACTIONS(2465), 1, + anon_sym_else, + ACTIONS(2467), 2, + anon_sym_elseif, + anon_sym_while, + [161598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(4984), 1, anon_sym_RPAREN, - ACTIONS(7042), 1, + ACTIONS(7034), 1, anon_sym_COMMA, STATE(4880), 1, aux_sym_tuple_type_specifier_repeat1, - [161489] = 4, + [161611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5951), 1, - anon_sym_GT_GT, - ACTIONS(7044), 1, - anon_sym_COMMA, - STATE(4780), 1, - aux_sym_module_attribute_repeat1, - [161502] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7036), 1, + anon_sym_COLON, + STATE(6051), 1, + sym_capability_list, + [161624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7046), 1, + ACTIONS(7038), 1, anon_sym_SEMI, - STATE(5075), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [161515] = 4, + [161637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5955), 1, + anon_sym_GT_GT, + ACTIONS(7026), 1, + anon_sym_COMMA, + STATE(4658), 1, + aux_sym_module_attribute_repeat1, + [161650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7048), 1, + ACTIONS(7040), 1, anon_sym_COLON, STATE(6049), 1, sym_capability_list, - [161528] = 4, + [161663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7050), 1, + ACTIONS(7042), 1, anon_sym_COLON, STATE(6047), 1, sym_capability_list, - [161541] = 4, + [161676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7052), 1, + ACTIONS(7044), 1, anon_sym_COLON, STATE(6045), 1, sym_capability_list, - [161554] = 4, + [161689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7054), 1, + ACTIONS(7046), 1, anon_sym_COLON, STATE(6044), 1, sym_capability_list, - [161567] = 4, + [161702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + anon_sym_GT, + ACTIONS(7048), 1, + anon_sym_COMMA, + STATE(5239), 1, + aux_sym_tuple_type_specifier_repeat1, + [161715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7050), 1, + anon_sym_COMMA, + ACTIONS(7052), 1, + anon_sym_SEMI, + STATE(4943), 1, + aux_sym_use_statement_repeat1, + [161728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_else, + ACTIONS(2459), 2, + anon_sym_elseif, + anon_sym_while, + [161739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7056), 1, + ACTIONS(7054), 1, anon_sym_COLON, STATE(6042), 1, sym_capability_list, - [161580] = 4, + [161752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, - anon_sym_GT, - ACTIONS(7058), 1, - anon_sym_COMMA, - STATE(5096), 1, - aux_sym_tuple_type_specifier_repeat1, - [161593] = 4, + ACTIONS(2449), 1, + anon_sym_else, + ACTIONS(2451), 2, + anon_sym_elseif, + anon_sym_while, + [161763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym_else, + ACTIONS(2059), 2, + anon_sym_elseif, + anon_sym_while, + [161774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7060), 1, + ACTIONS(7056), 1, anon_sym_COLON, STATE(6038), 1, sym_capability_list, - [161606] = 4, + [161787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7062), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7064), 1, + ACTIONS(7058), 1, anon_sym_SEMI, - STATE(4834), 1, - aux_sym_trait_select_clause_repeat1, - [161619] = 4, + STATE(4972), 1, + aux_sym_const_declaration_repeat1, + [161800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7066), 1, - anon_sym_COLON, - STATE(6054), 1, - sym_capability_list, - [161632] = 4, + ACTIONS(2565), 1, + anon_sym_else, + ACTIONS(2567), 2, + anon_sym_elseif, + anon_sym_while, + [161811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7068), 1, + ACTIONS(7060), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [161645] = 4, + [161824] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(7070), 1, + ACTIONS(7062), 1, anon_sym_SEMI, - STATE(1541), 1, + STATE(1639), 1, sym_compound_statement, - [161658] = 4, + [161837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7062), 1, - anon_sym_COMMA, - ACTIONS(7072), 1, - anon_sym_SEMI, - STATE(4850), 1, - aux_sym_trait_select_clause_repeat1, - [161671] = 3, + ACTIONS(2593), 1, + anon_sym_else, + ACTIONS(2595), 2, + anon_sym_elseif, + anon_sym_while, + [161848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, + ACTIONS(7066), 1, anon_sym_EQ, - ACTIONS(7074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - anon_sym_GT, - ACTIONS(7078), 1, - anon_sym_COMMA, - STATE(5096), 1, - aux_sym_tuple_type_specifier_repeat1, - [161695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1273), 1, - anon_sym_RPAREN, - ACTIONS(7080), 1, - anon_sym_COMMA, - STATE(4549), 1, - aux_sym_arguments_repeat1, - [161708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym_COLON, - STATE(6026), 1, - sym_capability_list, - [161721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(7084), 1, + ACTIONS(7064), 2, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [161734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1319), 1, anon_sym_RPAREN, - ACTIONS(7086), 1, - anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [161747] = 4, + [161859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7088), 1, + ACTIONS(7068), 1, anon_sym_COLON, STATE(5998), 1, sym_capability_list, - [161760] = 4, + [161872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, - anon_sym_COMMA, - ACTIONS(7090), 1, + ACTIONS(807), 1, + anon_sym_LBRACE, + ACTIONS(7070), 1, anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [161773] = 4, + STATE(953), 1, + sym_compound_statement, + [161885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7092), 1, + ACTIONS(7072), 1, anon_sym_COLON, STATE(5996), 1, sym_capability_list, - [161786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4988), 1, - anon_sym_RPAREN, - ACTIONS(6968), 1, - anon_sym_COMMA, - STATE(4825), 1, - aux_sym_tuple_type_specifier_repeat1, - [161799] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7094), 1, - anon_sym_COMMA, - ACTIONS(7096), 1, - anon_sym_SEMI, - STATE(4905), 1, - aux_sym_use_statement_repeat1, - [161812] = 4, + [161898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7098), 1, + ACTIONS(7074), 1, anon_sym_COLON, STATE(5994), 1, sym_capability_list, - [161825] = 4, + [161911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 1, - anon_sym_RPAREN, - ACTIONS(7100), 1, - anon_sym_COMMA, - STATE(4829), 1, - aux_sym_shape_type_specifier_repeat1, - [161838] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7076), 1, + anon_sym_COLON, + STATE(5992), 1, + sym_capability_list, + [161924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7102), 1, + ACTIONS(7078), 1, anon_sym_COLON, - STATE(5992), 1, + STATE(5991), 1, sym_capability_list, - [161851] = 4, + [161937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7104), 1, + ACTIONS(7082), 1, + anon_sym_EQ, + ACTIONS(7080), 2, anon_sym_COMMA, - ACTIONS(7106), 1, anon_sym_RPAREN, - STATE(4831), 1, - aux_sym_shape_type_specifier_repeat1, - [161864] = 4, + [161948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(7084), 1, + anon_sym_COMMA, + ACTIONS(7087), 1, + anon_sym_SEMI, + STATE(4868), 1, + aux_sym_trait_select_clause_repeat1, + [161961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7089), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_GT, + STATE(4798), 1, + aux_sym_tuple_type_specifier_repeat1, + [161974] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5901), 1, anon_sym_GT_GT, - ACTIONS(7108), 1, + ACTIONS(7093), 1, anon_sym_COMMA, STATE(4911), 1, aux_sym_module_attribute_repeat1, - [161877] = 4, + [161987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5901), 1, anon_sym_GT_GT, - ACTIONS(7108), 1, + ACTIONS(7093), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [161890] = 4, + [162000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7110), 1, + ACTIONS(7095), 1, anon_sym_COLON, - STATE(5991), 1, + STATE(5989), 1, sym_capability_list, - [161903] = 4, + [162013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7112), 1, + ACTIONS(7097), 1, anon_sym_COLON, - STATE(5989), 1, + STATE(5985), 1, sym_capability_list, - [161916] = 4, + [162026] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1309), 1, anon_sym_RPAREN, - ACTIONS(7114), 1, + ACTIONS(7099), 1, anon_sym_COMMA, - STATE(4818), 1, + STATE(5267), 1, aux_sym_shape_type_specifier_repeat1, - [161929] = 4, + [162039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_GT_GT, - ACTIONS(7116), 1, + ACTIONS(7101), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [161942] = 4, + ACTIONS(7103), 1, + anon_sym_SEMI, + STATE(4868), 1, + aux_sym_trait_select_clause_repeat1, + [162052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_RPAREN, - ACTIONS(7118), 1, + ACTIONS(7105), 1, anon_sym_COMMA, - STATE(4818), 1, + STATE(5267), 1, aux_sym_shape_type_specifier_repeat1, - [161955] = 4, + [162065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7120), 1, - anon_sym_COLON, - STATE(5985), 1, - sym_capability_list, - [161968] = 4, + ACTIONS(7107), 1, + anon_sym_COMMA, + ACTIONS(7109), 1, + anon_sym_RPAREN, + STATE(4673), 1, + aux_sym_arguments_repeat1, + [162078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7122), 1, + ACTIONS(7111), 1, anon_sym_COMMA, - ACTIONS(7124), 1, + ACTIONS(7113), 1, anon_sym_RPAREN, STATE(4915), 1, aux_sym_shape_type_specifier_repeat1, - [161981] = 4, + [162091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_RPAREN, - ACTIONS(7118), 1, + ACTIONS(7105), 1, anon_sym_COMMA, STATE(4916), 1, aux_sym_shape_type_specifier_repeat1, - [161994] = 4, + [162104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(4978), 1, anon_sym_RPAREN, - ACTIONS(7126), 1, + ACTIONS(7115), 1, anon_sym_COMMA, - STATE(3798), 1, + STATE(3780), 1, aux_sym_tuple_type_specifier_repeat1, - [162007] = 4, + [162117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7128), 1, + ACTIONS(7117), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162020] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(7130), 1, - anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [162033] = 4, + [162130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, - anon_sym_RPAREN, - ACTIONS(7132), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [162046] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7119), 1, + anon_sym_COLON, + STATE(5983), 1, + sym_capability_list, + [162143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7134), 1, + ACTIONS(7121), 1, anon_sym_COLON, STATE(5945), 1, sym_capability_list, - [162059] = 4, + [162156] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5941), 1, + anon_sym_GT_GT, + ACTIONS(7123), 1, + anon_sym_COMMA, + STATE(5116), 1, + aux_sym_module_attribute_repeat1, + [162169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7136), 1, + ACTIONS(7125), 1, anon_sym_COLON, STATE(5943), 1, sym_capability_list, - [162072] = 4, + [162182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7138), 1, - anon_sym_COLON, - STATE(5941), 1, - sym_capability_list, - [162085] = 4, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7127), 1, + anon_sym_SEMI, + STATE(5069), 1, + aux_sym_const_declaration_repeat1, + [162195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7140), 1, + ACTIONS(7129), 1, anon_sym_COLON, - STATE(5939), 1, + STATE(5941), 1, sym_capability_list, - [162098] = 4, + [162208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7142), 1, + ACTIONS(7131), 1, anon_sym_COLON, - STATE(5938), 1, + STATE(5939), 1, sym_capability_list, - [162111] = 4, + [162221] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, anon_sym_LBRACE, - ACTIONS(7144), 1, + ACTIONS(7133), 1, anon_sym_SEMI, - STATE(858), 1, + STATE(788), 1, sym_compound_statement, - [162124] = 4, + [162234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7135), 1, + anon_sym_SEMI, + STATE(4804), 1, + aux_sym_const_declaration_repeat1, + [162247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7146), 1, + ACTIONS(7137), 1, anon_sym_COLON, - STATE(5936), 1, + STATE(5938), 1, sym_capability_list, - [162137] = 4, + [162260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7148), 1, + ACTIONS(7139), 1, anon_sym_COLON, - STATE(5987), 1, + STATE(5936), 1, sym_capability_list, - [162150] = 4, + [162273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7150), 1, + ACTIONS(7141), 1, anon_sym_COLON, STATE(5932), 1, sym_capability_list, - [162163] = 4, + [162286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7101), 1, anon_sym_COMMA, - ACTIONS(7152), 1, + ACTIONS(7143), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162176] = 4, + STATE(4875), 1, + aux_sym_trait_select_clause_repeat1, + [162299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7154), 1, - anon_sym_SEMI, - ACTIONS(7156), 1, - anon_sym_as, - ACTIONS(7158), 1, - anon_sym_EQ, - [162189] = 4, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7145), 1, + anon_sym_COLON, + STATE(5966), 1, + sym_capability_list, + [162312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7162), 1, - anon_sym_GT, - STATE(4856), 1, - aux_sym_tuple_type_specifier_repeat1, - [162202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7164), 1, + ACTIONS(7147), 1, anon_sym_SEMI, - ACTIONS(7166), 1, - anon_sym_as, - ACTIONS(7168), 1, - anon_sym_EQ, - [162215] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [162325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7170), 1, + ACTIONS(7149), 1, anon_sym_COMMA, - ACTIONS(7172), 1, + ACTIONS(7151), 1, anon_sym_RPAREN, - STATE(4857), 1, - aux_sym_arguments_repeat1, - [162228] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7174), 1, - anon_sym_COMMA, - ACTIONS(7177), 1, - anon_sym_RBRACE, - STATE(4898), 1, - aux_sym_xhp_enum_type_repeat1, - [162241] = 4, + STATE(4814), 1, + aux_sym_tuple_type_specifier_repeat1, + [162338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(5941), 1, + anon_sym_GT_GT, + ACTIONS(7123), 1, anon_sym_COMMA, - ACTIONS(7179), 1, - anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [162254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7181), 1, - anon_sym_RBRACE, - ACTIONS(7183), 2, - sym_integer, - sym_string, - [162265] = 4, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [162351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(5028), 1, + anon_sym_GT, + ACTIONS(7153), 1, anon_sym_COMMA, - ACTIONS(7185), 1, - anon_sym_SEMI, - STATE(4862), 1, - aux_sym_const_declaration_repeat1, - [162278] = 4, + STATE(5239), 1, + aux_sym_tuple_type_specifier_repeat1, + [162364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7187), 1, + ACTIONS(7155), 1, anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_RPAREN, - STATE(4799), 1, - aux_sym_tuple_type_specifier_repeat1, - [162291] = 4, + ACTIONS(7158), 1, + anon_sym_GT, + STATE(4900), 1, + aux_sym_type_parameters_repeat1, + [162377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 1, - anon_sym_RBRACE, - ACTIONS(7191), 1, + ACTIONS(5470), 1, + anon_sym_SEMI, + ACTIONS(7160), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [162304] = 4, + [162390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7193), 1, - anon_sym_COLON, - STATE(5891), 1, - sym_capability_list, - [162317] = 4, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7162), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [162403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, + ACTIONS(807), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, anon_sym_SEMI, - ACTIONS(7195), 1, - anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [162330] = 4, + STATE(1265), 1, + sym_compound_statement, + [162416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7197), 1, + ACTIONS(7166), 1, anon_sym_COLON, STATE(5889), 1, sym_capability_list, - [162343] = 4, + [162429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7199), 1, + ACTIONS(7168), 1, anon_sym_COLON, STATE(5887), 1, sym_capability_list, - [162356] = 4, + [162442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7201), 1, + ACTIONS(7170), 1, anon_sym_COLON, STATE(5885), 1, sym_capability_list, - [162369] = 4, + [162455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7203), 1, + ACTIONS(7172), 1, anon_sym_COLON, STATE(5884), 1, sym_capability_list, - [162382] = 4, + [162468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7205), 1, + ACTIONS(7174), 1, anon_sym_COLON, STATE(5882), 1, sym_capability_list, - [162395] = 4, + [162481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7176), 1, + anon_sym_COLON, + STATE(5878), 1, + sym_capability_list, + [162494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7178), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [162507] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5939), 1, anon_sym_GT_GT, - ACTIONS(7207), 1, + ACTIONS(7180), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [162408] = 4, + [162520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(4822), 1, + anon_sym_RPAREN, + ACTIONS(7182), 1, anon_sym_COMMA, - ACTIONS(7209), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162421] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [162533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7211), 1, + ACTIONS(7184), 1, anon_sym_COLON, - STATE(5878), 1, + STATE(5923), 1, sym_capability_list, - [162434] = 4, + [162546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5983), 1, - anon_sym_GT_GT, - ACTIONS(7213), 1, + ACTIONS(7186), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [162447] = 4, + ACTIONS(7188), 1, + anon_sym_RBRACK, + STATE(5098), 1, + aux_sym_capability_list_repeat1, + [162559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 1, + ACTIONS(1337), 1, anon_sym_RPAREN, - ACTIONS(7215), 1, + ACTIONS(7190), 1, anon_sym_COMMA, - STATE(4818), 1, + STATE(5267), 1, aux_sym_shape_type_specifier_repeat1, - [162460] = 4, + [162572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, + ACTIONS(1339), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7192), 1, anon_sym_COMMA, - STATE(4818), 1, + STATE(5267), 1, aux_sym_shape_type_specifier_repeat1, - [162473] = 4, + [162585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5983), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [162598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5843), 1, anon_sym_GT_GT, - ACTIONS(7213), 1, + ACTIONS(7196), 1, anon_sym_COMMA, - STATE(4875), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [162486] = 4, + [162611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RPAREN, - STATE(4366), 1, + ACTIONS(7198), 1, + anon_sym_SEMI, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [162499] = 4, + [162624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, + ACTIONS(5953), 1, + anon_sym_GT_GT, + ACTIONS(7200), 1, + anon_sym_COMMA, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [162637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(7219), 1, + ACTIONS(7202), 1, anon_sym_SEMI, - STATE(1394), 1, + STATE(1464), 1, sym_compound_statement, - [162512] = 4, + [162650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(1526), 1, + anon_sym_RBRACE, + ACTIONS(3759), 1, anon_sym_COMMA, - ACTIONS(7221), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162525] = 4, + STATE(4642), 1, + aux_sym_array_repeat1, + [162663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5931), 1, - anon_sym_GT_GT, - ACTIONS(7223), 1, + ACTIONS(1526), 1, + anon_sym_RBRACE, + ACTIONS(3759), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [162538] = 4, + STATE(4462), 1, + aux_sym_array_repeat1, + [162676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 1, + ACTIONS(7206), 1, + sym_xhp_class_identifier, + ACTIONS(7204), 2, + sym_identifier, + sym_xhp_identifier, + [162687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1771), 1, anon_sym_RPAREN, - ACTIONS(7225), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4883), 1, - aux_sym_function_type_specifier_repeat1, - [162551] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [162700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 1, - anon_sym_RPAREN, - ACTIONS(7225), 1, + ACTIONS(5953), 1, + anon_sym_GT_GT, + ACTIONS(7200), 1, anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [162564] = 4, + STATE(4822), 1, + aux_sym_module_attribute_repeat1, + [162713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(5490), 1, + anon_sym_SEMI, + ACTIONS(7208), 1, anon_sym_COMMA, - ACTIONS(7229), 1, - anon_sym_RBRACK, - STATE(4659), 1, - aux_sym_capability_list_repeat1, - [162577] = 4, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [162726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, + ACTIONS(5004), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(7210), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162590] = 4, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [162739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7231), 1, + ACTIONS(7212), 1, anon_sym_SEMI, - STATE(4899), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [162603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7233), 1, - anon_sym_COLON, - STATE(5928), 1, - sym_capability_list, - [162616] = 4, + [162752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(7235), 1, + ACTIONS(7214), 1, anon_sym_SEMI, - STATE(1539), 1, - sym_compound_statement, - [162629] = 4, + ACTIONS(7216), 1, + anon_sym_as, + ACTIONS(7218), 1, + anon_sym_EQ, + [162765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6516), 1, - anon_sym_RPAREN, - ACTIONS(7237), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [162642] = 4, + ACTIONS(7222), 1, + sym_xhp_class_identifier, + ACTIONS(7220), 2, + sym_identifier, + sym_xhp_identifier, + [162776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, + ACTIONS(5030), 1, + anon_sym_RPAREN, + ACTIONS(7224), 1, anon_sym_COMMA, - ACTIONS(7240), 1, - anon_sym_SEMI, - STATE(5162), 1, - aux_sym__class_const_declaration_repeat1, - [162655] = 4, + STATE(4762), 1, + aux_sym_tuple_type_specifier_repeat1, + [162789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, - anon_sym_COMMA, - ACTIONS(7242), 1, + ACTIONS(807), 1, + anon_sym_LBRACE, + ACTIONS(7226), 1, anon_sym_SEMI, - STATE(5053), 1, - aux_sym_property_declaration_repeat1, - [162668] = 4, + STATE(1398), 1, + sym_compound_statement, + [162802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7244), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(7228), 1, anon_sym_SEMI, - ACTIONS(7246), 1, - anon_sym_as, - ACTIONS(7248), 1, - anon_sym_EQ, - [162681] = 4, + STATE(1252), 1, + sym_compound_statement, + [162815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7250), 1, + ACTIONS(7230), 1, anon_sym_COLON, STATE(5820), 1, sym_capability_list, - [162694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7252), 1, - anon_sym_COMMA, - ACTIONS(7254), 1, - anon_sym_RPAREN, - STATE(5217), 1, - aux_sym__anonymous_function_use_clause_repeat1, - [162707] = 4, + [162828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7256), 1, + ACTIONS(7232), 1, anon_sym_COLON, STATE(5818), 1, sym_capability_list, - [162720] = 4, + [162841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7258), 1, + ACTIONS(7234), 1, anon_sym_COLON, STATE(5816), 1, sym_capability_list, - [162733] = 4, + [162854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, anon_sym_LBRACK, - ACTIONS(7260), 1, - anon_sym_COLON, - STATE(5814), 1, - sym_capability_list, - [162746] = 4, + STATE(2386), 1, + sym_arguments, + [162867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - anon_sym_SEMI, - STATE(1422), 1, - sym_compound_statement, - [162759] = 4, + ACTIONS(5030), 1, + anon_sym_RPAREN, + ACTIONS(7224), 1, + anon_sym_COMMA, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [162880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7264), 1, + ACTIONS(7236), 1, anon_sym_COLON, - STATE(5813), 1, + STATE(5814), 1, sym_capability_list, - [162772] = 4, + [162893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, + ACTIONS(7238), 1, anon_sym_COLON, - STATE(5811), 1, + STATE(5813), 1, sym_capability_list, - [162785] = 4, + [162906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - ACTIONS(7268), 1, + ACTIONS(7240), 1, anon_sym_COLON, - STATE(5807), 1, + STATE(5811), 1, sym_capability_list, - [162798] = 4, + [162919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(5498), 1, + anon_sym_SEMI, + ACTIONS(7242), 1, anon_sym_COMMA, - ACTIONS(7270), 1, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [162932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7244), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162811] = 4, + ACTIONS(7246), 1, + anon_sym_as, + ACTIONS(7248), 1, + anon_sym_EQ, + [162945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, + ACTIONS(689), 1, anon_sym_LBRACE, - ACTIONS(7272), 1, + ACTIONS(7250), 1, anon_sym_SEMI, - STATE(1417), 1, + STATE(747), 1, sym_compound_statement, - [162824] = 4, + [162958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(5807), 1, + sym_capability_list, + [162971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(1435), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(7254), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162837] = 4, + STATE(4654), 1, + aux_sym_shape_type_specifier_repeat1, + [162984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(7274), 1, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7256), 1, anon_sym_SEMI, - STATE(803), 1, - sym_compound_statement, - [162850] = 4, + STATE(4886), 1, + aux_sym_const_declaration_repeat1, + [162997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7258), 1, anon_sym_COMMA, - ACTIONS(7278), 1, + ACTIONS(7261), 1, anon_sym_RBRACE, - STATE(4898), 1, + STATE(4949), 1, aux_sym_xhp_enum_type_repeat1, - [162863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3910), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162876] = 3, + [163010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7278), 1, + ACTIONS(7263), 1, anon_sym_RBRACE, - ACTIONS(7183), 2, + ACTIONS(7265), 2, sym_integer, sym_string, - [162887] = 4, + [163021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 1, - anon_sym_RBRACE, - ACTIONS(3778), 1, + ACTIONS(7267), 1, anon_sym_COMMA, - STATE(4658), 1, - aux_sym_array_repeat1, - [162900] = 4, + ACTIONS(7269), 1, + anon_sym_SEMI, + STATE(4901), 1, + aux_sym_use_statement_repeat1, + [163034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7280), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7271), 1, anon_sym_SEMI, - ACTIONS(7282), 1, - anon_sym_as, - ACTIONS(7284), 1, - anon_sym_EQ, - [162913] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 1, - anon_sym_RBRACE, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, - [162926] = 3, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(5953), 1, + sym_extends_clause, + [163060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7288), 1, - sym_xhp_class_identifier, - ACTIONS(7286), 2, - sym_identifier, - sym_xhp_identifier, - [162937] = 4, + ACTIONS(1347), 1, + anon_sym_RPAREN, + ACTIONS(7275), 1, + anon_sym_COMMA, + STATE(4829), 1, + aux_sym_shape_type_specifier_repeat1, + [163073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym_SEMI, - STATE(1750), 1, - sym_compound_statement, - [162950] = 4, + ACTIONS(7277), 1, + anon_sym_COMMA, + ACTIONS(7279), 1, + anon_sym_RPAREN, + STATE(4801), 1, + aux_sym_shape_type_specifier_repeat1, + [163086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, + ACTIONS(1779), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7294), 1, - anon_sym_SEMI, - STATE(4973), 1, - aux_sym_use_statement_repeat1, - [162963] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7296), 1, - anon_sym_SEMI, - STATE(5207), 1, - aux_sym_tuple_type_specifier_repeat1, - [162976] = 4, + ACTIONS(3964), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, + ACTIONS(4886), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(7281), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [162989] = 4, + STATE(4912), 1, + aux_sym_function_type_specifier_repeat1, + [163125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(7283), 1, anon_sym_COMMA, - ACTIONS(7298), 1, - anon_sym_SEMI, - STATE(4977), 1, - aux_sym_const_declaration_repeat1, - [163002] = 4, + ACTIONS(7285), 1, + anon_sym_RPAREN, + STATE(4683), 1, + aux_sym_shape_type_specifier_repeat1, + [163138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, + ACTIONS(4886), 1, + anon_sym_RPAREN, + ACTIONS(7281), 1, anon_sym_COMMA, - ACTIONS(7300), 1, - anon_sym_SEMI, - STATE(5086), 1, - aux_sym_tuple_type_specifier_repeat1, - [163015] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [163151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(6053), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - STATE(2261), 1, - sym_arguments, - [163028] = 4, + ACTIONS(7287), 1, + anon_sym_COLON, + STATE(5853), 1, + sym_capability_list, + [163164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(1347), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(7275), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163041] = 4, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [163177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(7302), 1, + ACTIONS(7289), 1, anon_sym_SEMI, - STATE(1676), 1, + STATE(1281), 1, sym_compound_statement, - [163054] = 4, + [163190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7304), 1, - anon_sym_COMMA, - ACTIONS(7306), 1, + ACTIONS(1335), 1, anon_sym_RPAREN, - STATE(5014), 1, - aux_sym_shape_repeat1, - [163067] = 4, + ACTIONS(7291), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [163203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7308), 1, + ACTIONS(7293), 1, anon_sym_COMMA, - ACTIONS(7310), 1, + ACTIONS(7295), 1, anon_sym_RPAREN, STATE(5198), 1, aux_sym_parameters_repeat1, - [163080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7312), 1, - anon_sym_BSLASH, - ACTIONS(6642), 2, - sym_identifier, - anon_sym_namespace, - [163091] = 4, + [163216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5933), 1, anon_sym_GT_GT, - ACTIONS(7314), 1, + ACTIONS(7297), 1, anon_sym_COMMA, - STATE(5017), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [163104] = 4, + [163229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7299), 1, + anon_sym_BSLASH, + ACTIONS(6450), 2, + sym_identifier, + anon_sym_namespace, + [163240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7316), 1, + ACTIONS(7301), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163117] = 4, + [163253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_GT_GT, - ACTIONS(7314), 1, + ACTIONS(7303), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [163130] = 4, + ACTIONS(7305), 1, + anon_sym_RPAREN, + STATE(5141), 1, + aux_sym_tuple_type_specifier_repeat1, + [163266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3912), 1, + ACTIONS(3954), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163143] = 4, + [163279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(7307), 1, + anon_sym_SEMI, + STATE(1290), 1, + sym_compound_statement, + [163292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7318), 1, + ACTIONS(7309), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163156] = 4, + STATE(5069), 1, + aux_sym_const_declaration_repeat1, + [163305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(5853), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, anon_sym_COMMA, - ACTIONS(7320), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163169] = 4, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [163318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7313), 1, anon_sym_COMMA, - ACTIONS(7324), 1, + ACTIONS(7315), 1, anon_sym_SEMI, - STATE(5224), 1, + STATE(5232), 1, aux_sym_use_statement_repeat1, - [163182] = 4, + [163331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1729), 1, anon_sym_SEMI, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163195] = 4, + [163344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 1, - anon_sym_SEMI, - ACTIONS(7326), 1, + ACTIONS(5853), 1, + anon_sym_GT_GT, + ACTIONS(7311), 1, anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [163208] = 4, + STATE(4637), 1, + aux_sym_module_attribute_repeat1, + [163357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6690), 1, anon_sym_COMMA, - ACTIONS(7330), 1, - anon_sym_RPAREN, - STATE(5023), 1, - aux_sym_tuple_type_specifier_repeat1, - [163221] = 4, + ACTIONS(7317), 1, + anon_sym_SEMI, + STATE(5257), 1, + aux_sym__class_const_declaration_repeat1, + [163370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7319), 1, anon_sym_COMMA, - ACTIONS(3934), 1, + ACTIONS(7321), 1, anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163234] = 4, + STATE(5211), 1, + aux_sym_arguments_repeat1, + [163383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6793), 1, anon_sym_COMMA, - ACTIONS(7332), 1, + ACTIONS(7323), 1, anon_sym_SEMI, - STATE(5026), 1, - aux_sym_const_declaration_repeat1, - [163247] = 4, + STATE(4714), 1, + aux_sym_property_declaration_repeat1, + [163396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, - anon_sym_COMMA, - ACTIONS(7334), 1, + ACTIONS(7325), 1, anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [163260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7336), 1, - anon_sym_COMMA, - ACTIONS(7338), 1, - anon_sym_RPAREN, - STATE(5033), 1, - aux_sym_arguments_repeat1, - [163273] = 4, + ACTIONS(7327), 1, + anon_sym_as, + ACTIONS(7329), 1, + anon_sym_EQ, + [163409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7340), 1, + ACTIONS(7331), 1, anon_sym_COMMA, - ACTIONS(7342), 1, + ACTIONS(7333), 1, anon_sym_GT, - STATE(5038), 1, + STATE(5201), 1, aux_sym_tuple_type_specifier_repeat1, - [163286] = 4, + [163422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7344), 1, + ACTIONS(7335), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163299] = 4, + [163448] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5971), 1, + ACTIONS(5961), 1, sym_variable, - STATE(6254), 1, + STATE(6263), 1, sym_variadic_modifier, - [163312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1489), 1, - anon_sym_RBRACK, - ACTIONS(3770), 1, - anon_sym_COMMA, - STATE(5041), 1, - aux_sym_array_repeat1, - [163325] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163338] = 4, + [163461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4890), 1, - anon_sym_RPAREN, - ACTIONS(6159), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [163351] = 4, + ACTIONS(7337), 1, + anon_sym_RBRACE, + ACTIONS(7265), 2, + sym_integer, + sym_string, + [163472] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7346), 1, + ACTIONS(7339), 1, anon_sym_LBRACE, - STATE(5830), 1, + STATE(5808), 1, sym_extends_clause, - [163364] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4890), 1, - anon_sym_RPAREN, - ACTIONS(6159), 1, - anon_sym_COMMA, - STATE(4923), 1, - aux_sym_function_type_specifier_repeat1, - [163377] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163390] = 3, + [163485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, - anon_sym_EQ, - ACTIONS(5124), 2, - anon_sym_COMMA, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(7341), 1, anon_sym_SEMI, - [163401] = 4, + STATE(1524), 1, + sym_compound_statement, + [163498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, - anon_sym_COMMA, - ACTIONS(7348), 1, - anon_sym_SEMI, - STATE(5170), 1, - aux_sym__class_const_declaration_repeat1, - [163414] = 4, + ACTIONS(2736), 1, + anon_sym_BSLASH, + ACTIONS(5223), 1, + anon_sym_EQ, + STATE(2220), 1, + aux_sym_qualified_identifier_repeat1, + [163511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3940), 1, + ACTIONS(3942), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163427] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3971), 1, - anon_sym_COMMA, - ACTIONS(3973), 1, - anon_sym_RPAREN, - STATE(5050), 1, - aux_sym_list_expression_repeat1, - [163440] = 4, + [163524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, - anon_sym_COMMA, - ACTIONS(7350), 1, + ACTIONS(7343), 1, anon_sym_SEMI, - STATE(5162), 1, - aux_sym__class_const_declaration_repeat1, - [163453] = 4, + ACTIONS(7345), 1, + anon_sym_as, + ACTIONS(7347), 1, + anon_sym_EQ, + [163537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5510), 1, + ACTIONS(5500), 1, anon_sym_RBRACE, - ACTIONS(7352), 1, + ACTIONS(7349), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [163466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7354), 1, - anon_sym_COLON, - STATE(5848), 1, - sym_capability_list, - [163479] = 4, + [163550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(7356), 1, - anon_sym_SEMI, - STATE(1727), 1, - sym_compound_statement, - [163492] = 4, + ACTIONS(7337), 1, + anon_sym_RBRACE, + ACTIONS(7351), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_xhp_enum_type_repeat1, + [163563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7358), 1, + ACTIONS(7353), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163505] = 3, + [163576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7362), 1, + ACTIONS(7357), 1, sym_xhp_class_identifier, - ACTIONS(7360), 2, + ACTIONS(7355), 2, sym_identifier, sym_xhp_identifier, - [163516] = 4, + [163587] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7364), 1, + ACTIONS(7359), 1, anon_sym_LBRACE, - STATE(5840), 1, + STATE(5823), 1, sym_extends_clause, - [163529] = 4, + [163600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 1, - anon_sym_RBRACE, - ACTIONS(3768), 1, + ACTIONS(7361), 1, anon_sym_COMMA, - STATE(5080), 1, - aux_sym_array_repeat1, - [163542] = 4, + ACTIONS(7363), 1, + anon_sym_GT, + STATE(4899), 1, + aux_sym_tuple_type_specifier_repeat1, + [163613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1685), 1, - anon_sym_SEMI, - ACTIONS(3790), 1, + ACTIONS(1589), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163555] = 4, + [163626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_RBRACE, - ACTIONS(7366), 1, + ACTIONS(1691), 1, + anon_sym_SEMI, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [163568] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(5474), 1, + anon_sym_RBRACE, + ACTIONS(7365), 1, anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163581] = 4, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [163652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5474), 1, anon_sym_RBRACE, - ACTIONS(7366), 1, + ACTIONS(7365), 1, anon_sym_COMMA, - STATE(4993), 1, + STATE(4991), 1, aux_sym_use_statement_repeat1, - [163594] = 3, + [163665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7370), 1, + ACTIONS(7369), 1, sym_xhp_class_identifier, - ACTIONS(7368), 2, + ACTIONS(7367), 2, sym_identifier, sym_xhp_identifier, - [163605] = 4, + [163676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7372), 1, + ACTIONS(3934), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7371), 1, + anon_sym_RPAREN, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163618] = 4, + [163702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7374), 1, + ACTIONS(7373), 1, anon_sym_SEMI, - STATE(5248), 1, + STATE(5266), 1, aux_sym_const_declaration_repeat1, - [163631] = 4, + [163715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7376), 1, + ACTIONS(7375), 1, anon_sym_COMMA, - ACTIONS(7378), 1, + ACTIONS(7377), 1, anon_sym_RBRACE, - STATE(5001), 1, + STATE(4999), 1, aux_sym_use_statement_repeat1, - [163644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163657] = 4, + [163728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6683), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7380), 1, + ACTIONS(7379), 1, anon_sym_SEMI, - STATE(5156), 1, - aux_sym_xhp_attribute_declaration_repeat1, - [163670] = 4, + STATE(5069), 1, + aux_sym_const_declaration_repeat1, + [163741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(7382), 1, + ACTIONS(7381), 1, anon_sym_RPAREN, - STATE(4734), 1, + STATE(4708), 1, aux_sym_unset_statement_repeat1, - [163683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7386), 1, - sym_xhp_class_identifier, - ACTIONS(7384), 2, - sym_identifier, - sym_xhp_identifier, - [163694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(5652), 1, - anon_sym_LBRACK, - STATE(1843), 1, - sym_arguments, - [163707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(7388), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163720] = 4, + [163754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_RPAREN, - ACTIONS(7390), 1, - anon_sym_COMMA, - STATE(4781), 1, - aux_sym_shape_repeat1, - [163733] = 3, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(7383), 1, + anon_sym_SEMI, + STATE(1727), 1, + sym_compound_statement, + [163767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7394), 1, + ACTIONS(7387), 1, sym_xhp_class_identifier, - ACTIONS(7392), 2, + ACTIONS(7385), 2, sym_identifier, sym_xhp_identifier, - [163744] = 4, + [163778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 1, + ACTIONS(1695), 1, anon_sym_RPAREN, - ACTIONS(7396), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163757] = 4, + [163791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, - anon_sym_GT_GT, - ACTIONS(7398), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [163770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7402), 1, - sym_xhp_class_identifier, - ACTIONS(7400), 2, - sym_identifier, - sym_xhp_identifier, - [163781] = 3, + ACTIONS(7389), 1, + anon_sym_SEMI, + STATE(4929), 1, + aux_sym_const_declaration_repeat1, + [163804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7406), 1, - sym_xhp_class_identifier, - ACTIONS(7404), 2, - sym_identifier, - sym_xhp_identifier, - [163792] = 4, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(5650), 1, + anon_sym_LBRACK, + STATE(1820), 1, + sym_arguments, + [163817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7408), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7410), 1, + ACTIONS(7391), 1, anon_sym_RPAREN, - STATE(5092), 1, - aux_sym_shape_type_specifier_repeat1, - [163805] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, - anon_sym_RPAREN, - ACTIONS(7412), 1, - anon_sym_COMMA, - STATE(5094), 1, - aux_sym_shape_type_specifier_repeat1, - [163818] = 4, + ACTIONS(7395), 1, + sym_xhp_class_identifier, + ACTIONS(7393), 2, + sym_identifier, + sym_xhp_identifier, + [163841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(7414), 1, + ACTIONS(7397), 1, anon_sym_SEMI, - STATE(1220), 1, + STATE(1753), 1, sym_compound_statement, - [163831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 1, - anon_sym_RPAREN, - ACTIONS(7416), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [163844] = 4, + [163854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 1, + ACTIONS(6469), 1, anon_sym_RPAREN, - ACTIONS(7416), 1, - anon_sym_COMMA, - STATE(5103), 1, - aux_sym_tuple_type_specifier_repeat1, - [163857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5716), 1, - anon_sym_COMMA, - ACTIONS(7418), 1, - anon_sym_SEMI, - STATE(4379), 1, - aux_sym_xhp_children_declaration_repeat1, - [163870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6740), 1, - anon_sym_COMMA, - ACTIONS(7420), 1, - anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [163883] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7422), 1, - anon_sym_COMMA, - ACTIONS(7424), 1, - anon_sym_GT, - STATE(5030), 1, - aux_sym_tuple_type_specifier_repeat1, - [163896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, + ACTIONS(7399), 1, anon_sym_COMMA, - ACTIONS(7426), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163909] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(7428), 1, - anon_sym_LBRACE, - STATE(5926), 1, - sym_extends_clause, - [163922] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [163867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_GT, - ACTIONS(7430), 1, + ACTIONS(7404), 1, + sym_xhp_class_identifier, + ACTIONS(7402), 2, + sym_identifier, + sym_xhp_identifier, + [163878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_RPAREN, + ACTIONS(6099), 1, anon_sym_COMMA, - STATE(5096), 1, - aux_sym_tuple_type_specifier_repeat1, - [163935] = 4, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [163891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(4912), 1, + anon_sym_RPAREN, + ACTIONS(6099), 1, anon_sym_COMMA, - ACTIONS(3914), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [163948] = 4, + STATE(4960), 1, + aux_sym_function_type_specifier_repeat1, + [163904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 1, - anon_sym_RBRACE, - ACTIONS(7432), 1, + ACTIONS(7406), 1, anon_sym_COMMA, - STATE(4298), 1, + ACTIONS(7408), 1, + anon_sym_SEMI, + STATE(5075), 1, aux_sym_use_statement_repeat1, - [163961] = 4, + [163917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 1, - anon_sym_RPAREN, - ACTIONS(7434), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - STATE(4549), 1, - aux_sym_arguments_repeat1, - [163974] = 2, + ACTIONS(7410), 1, + anon_sym_SEMI, + STATE(5083), 1, + aux_sym_const_declaration_repeat1, + [163930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7436), 3, + ACTIONS(7412), 3, anon_sym_as, anon_sym_super, anon_sym_EQ, - [163983] = 4, + [163939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7414), 1, + anon_sym_COLON, + STATE(5770), 1, + sym_capability_list, + [163952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + ACTIONS(6047), 1, + anon_sym_LBRACK, + STATE(2386), 1, + sym_arguments, + [163965] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7438), 1, + ACTIONS(7416), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [163978] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7418), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [163996] = 3, + [163991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7442), 1, + ACTIONS(7420), 1, + anon_sym_COMMA, + ACTIONS(7422), 1, + anon_sym_GT, + STATE(5030), 1, + aux_sym_tuple_type_specifier_repeat1, + [164004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7426), 1, sym_xhp_class_identifier, - ACTIONS(7440), 2, + ACTIONS(7424), 2, sym_identifier, sym_xhp_identifier, - [164007] = 4, + [164015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(7428), 1, anon_sym_COMMA, - ACTIONS(7444), 1, - anon_sym_SEMI, - STATE(4507), 1, - aux_sym_property_declaration_repeat1, - [164020] = 4, + ACTIONS(7430), 1, + anon_sym_RPAREN, + STATE(4939), 1, + aux_sym_tuple_type_specifier_repeat1, + [164028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(5006), 1, anon_sym_GT, - ACTIONS(7446), 1, + ACTIONS(7432), 1, anon_sym_COMMA, - STATE(5096), 1, + STATE(5239), 1, aux_sym_tuple_type_specifier_repeat1, - [164033] = 4, + [164041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 1, + anon_sym_COMMA, + ACTIONS(7434), 1, + anon_sym_SEMI, + STATE(5182), 1, + aux_sym_property_declaration_repeat1, + [164054] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7448), 1, + ACTIONS(7436), 1, anon_sym_LBRACE, - STATE(5947), 1, + STATE(5933), 1, sym_extends_clause, - [164046] = 4, + [164067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 1, + ACTIONS(6920), 1, anon_sym_LBRACE, - ACTIONS(7450), 1, + ACTIONS(7438), 1, anon_sym_SEMI, - STATE(2817), 1, + STATE(2829), 1, sym_compound_statement, - [164059] = 4, + [164080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, - anon_sym_RBRACK, - ACTIONS(3755), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, - [164072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 1, + ACTIONS(3915), 1, anon_sym_SEMI, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164085] = 4, + [164093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 1, + ACTIONS(5486), 1, + anon_sym_RBRACE, + ACTIONS(7440), 1, anon_sym_COMMA, - ACTIONS(7452), 1, - anon_sym_SEMI, - STATE(5124), 1, - aux_sym_xhp_category_declaration_repeat1, - [164098] = 4, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [164106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + ACTIONS(7442), 1, + anon_sym_RPAREN, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164111] = 4, + [164119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1611), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(7446), 1, + sym_xhp_class_identifier, + ACTIONS(7444), 2, + sym_identifier, + sym_xhp_identifier, + [164130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + ACTIONS(3790), 1, + anon_sym_RPAREN, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164124] = 4, + [164143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, - anon_sym_COMMA, - ACTIONS(7454), 1, - anon_sym_SEMI, - STATE(5053), 1, - aux_sym_property_declaration_repeat1, - [164137] = 4, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7448), 1, + anon_sym_LBRACE, + STATE(5944), 1, + sym_extends_clause, + [164156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, - anon_sym_RBRACK, - ACTIONS(3755), 1, + ACTIONS(5034), 1, + anon_sym_RPAREN, + ACTIONS(7450), 1, anon_sym_COMMA, - STATE(5132), 1, - aux_sym_array_repeat1, - [164150] = 4, + STATE(4928), 1, + aux_sym_tuple_type_specifier_repeat1, + [164169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5474), 1, - anon_sym_RBRACE, - ACTIONS(7456), 1, + ACTIONS(1561), 1, + anon_sym_SEMI, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [164163] = 3, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, + ACTIONS(7454), 1, anon_sym_EQ, - ACTIONS(7458), 2, + ACTIONS(7452), 2, anon_sym_COMMA, anon_sym_SEMI, - [164174] = 4, + [164193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4020), 1, anon_sym_RPAREN, - ACTIONS(7462), 1, - anon_sym_COMMA, - STATE(5050), 1, - aux_sym_list_expression_repeat1, - [164187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, + ACTIONS(7456), 1, anon_sym_COMMA, - ACTIONS(7467), 1, - anon_sym_RPAREN, - STATE(5050), 1, + STATE(5043), 1, aux_sym_list_expression_repeat1, - [164200] = 4, + [164206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, + ACTIONS(1787), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164213] = 4, + [164219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, + ACTIONS(7459), 1, anon_sym_COMMA, - ACTIONS(7472), 1, - anon_sym_SEMI, - STATE(5053), 1, - aux_sym_property_declaration_repeat1, - [164226] = 4, + ACTIONS(7461), 1, + anon_sym_RPAREN, + STATE(5043), 1, + aux_sym_list_expression_repeat1, + [164232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5474), 1, + ACTIONS(5492), 1, anon_sym_RBRACE, - ACTIONS(7456), 1, + ACTIONS(7463), 1, anon_sym_COMMA, - STATE(5032), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [164239] = 4, + [164245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7474), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(7465), 1, + anon_sym_SEMI, + STATE(1554), 1, + sym_compound_statement, + [164258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7476), 1, + ACTIONS(7469), 1, sym_string, - STATE(4405), 1, + STATE(4454), 1, sym_braced_expression, - [164252] = 4, + [164271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1531), 1, anon_sym_RBRACK, - ACTIONS(3782), 1, + ACTIONS(3771), 1, anon_sym_COMMA, - STATE(4545), 1, + STATE(4505), 1, aux_sym_array_repeat1, - [164265] = 4, + [164284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1531), 1, anon_sym_RBRACK, - ACTIONS(3782), 1, + ACTIONS(3771), 1, anon_sym_COMMA, - STATE(4404), 1, + STATE(4462), 1, aux_sym_array_repeat1, - [164278] = 4, + [164297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 1, + ACTIONS(4960), 1, anon_sym_GT, - ACTIONS(7478), 1, + ACTIONS(7471), 1, anon_sym_COMMA, - STATE(5096), 1, + STATE(5239), 1, aux_sym_tuple_type_specifier_repeat1, - [164291] = 4, + [164310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7482), 1, + ACTIONS(1793), 1, anon_sym_RPAREN, - STATE(5050), 1, - aux_sym_list_expression_repeat1, - [164304] = 4, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(5492), 1, + anon_sym_RBRACE, + ACTIONS(7463), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [164317] = 4, + STATE(5035), 1, + aux_sym_use_statement_repeat1, + [164336] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1305), 1, anon_sym_RPAREN, - ACTIONS(7484), 1, + ACTIONS(7473), 1, anon_sym_COMMA, - STATE(4549), 1, + STATE(4535), 1, aux_sym_arguments_repeat1, - [164330] = 4, + [164349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7486), 1, + ACTIONS(7475), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164343] = 4, + [164362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7477), 1, anon_sym_COMMA, - ACTIONS(3881), 1, + ACTIONS(7479), 1, anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [164356] = 3, + STATE(5131), 1, + aux_sym_shape_repeat1, + [164375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7490), 1, + ACTIONS(7483), 1, sym_xhp_class_identifier, - ACTIONS(7488), 2, + ACTIONS(7481), 2, sym_identifier, sym_xhp_identifier, - [164367] = 4, + [164386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7492), 1, - anon_sym_RPAREN, - STATE(4366), 1, + ACTIONS(7485), 1, + anon_sym_SEMI, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164380] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_RPAREN, - ACTIONS(7494), 1, - anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [164393] = 4, + [164399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7496), 1, + ACTIONS(7487), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164406] = 4, + [164412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7498), 1, - anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164419] = 4, + [164425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(1593), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7500), 1, - anon_sym_SEMI, - STATE(5053), 1, - aux_sym_property_declaration_repeat1, - [164432] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7502), 1, + ACTIONS(7489), 1, anon_sym_COMMA, - ACTIONS(7504), 1, + ACTIONS(7491), 1, anon_sym_RBRACE, - STATE(5048), 1, + STATE(5046), 1, aux_sym_use_statement_repeat1, - [164445] = 4, + [164451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7506), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - STATE(4734), 1, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(7493), 1, + anon_sym_RPAREN, + STATE(4708), 1, aux_sym_unset_statement_repeat1, - [164458] = 4, + [164477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 1, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7495), 1, anon_sym_RPAREN, - ACTIONS(7508), 1, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_GT_GT, + ACTIONS(7497), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [164471] = 3, + STATE(5138), 1, + aux_sym_module_attribute_repeat1, + [164503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7512), 1, + ACTIONS(7501), 1, sym_xhp_class_identifier, - ACTIONS(7510), 2, + ACTIONS(7499), 2, sym_identifier, sym_xhp_identifier, - [164482] = 2, + [164514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6177), 3, - sym_variable, - anon_sym_LPAREN, - anon_sym_function, - [164491] = 4, + ACTIONS(5943), 1, + anon_sym_GT_GT, + ACTIONS(7497), 1, + anon_sym_COMMA, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [164527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7514), 1, + ACTIONS(7503), 1, anon_sym_COMMA, - ACTIONS(7517), 1, + ACTIONS(7506), 1, anon_sym_SEMI, - STATE(5075), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [164504] = 4, + [164540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - ACTIONS(5195), 1, - anon_sym_EQ, - STATE(2221), 1, - aux_sym_qualified_identifier_repeat1, - [164517] = 4, + ACTIONS(6129), 3, + sym_variable, + anon_sym_LPAREN, + anon_sym_function, + [164549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7519), 1, + ACTIONS(7508), 1, anon_sym_SEMI, - STATE(5075), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [164530] = 4, + [164562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7521), 1, + ACTIONS(7510), 1, anon_sym_SEMI, - STATE(5162), 1, - aux_sym__class_const_declaration_repeat1, - [164543] = 3, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, + ACTIONS(7514), 1, sym_xhp_class_identifier, - ACTIONS(7523), 2, + ACTIONS(7512), 2, sym_identifier, sym_xhp_identifier, - [164554] = 4, + [164586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, - anon_sym_RBRACE, - ACTIONS(3753), 1, + ACTIONS(7518), 1, + sym_xhp_class_identifier, + ACTIONS(7516), 2, + sym_identifier, + sym_xhp_identifier, + [164597] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5524), 1, + anon_sym_SEMI, + ACTIONS(7520), 1, anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, - [164567] = 4, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [164610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7527), 1, + ACTIONS(7522), 1, anon_sym_SEMI, - STATE(5113), 1, - aux_sym_property_declaration_repeat1, - [164580] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164623] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5911), 1, anon_sym_GT_GT, - ACTIONS(7529), 1, + ACTIONS(7524), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [164593] = 4, + [164636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, + ACTIONS(7526), 1, anon_sym_COMMA, - ACTIONS(7531), 1, - anon_sym_SEMI, - STATE(4930), 1, - aux_sym__class_const_declaration_repeat1, - [164606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7535), 1, - sym_xhp_class_identifier, - ACTIONS(7533), 2, - sym_identifier, - sym_xhp_identifier, - [164617] = 4, + ACTIONS(7528), 1, + anon_sym_RPAREN, + STATE(5153), 1, + aux_sym_tuple_type_specifier_repeat1, + [164649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(7537), 1, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7530), 1, anon_sym_SEMI, - STATE(1620), 1, - sym_compound_statement, - [164630] = 4, + STATE(5170), 1, + aux_sym_const_declaration_repeat1, + [164662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, + ACTIONS(1609), 1, + anon_sym_RPAREN, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7539), 1, - anon_sym_SEMI, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [164643] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [164675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(7532), 3, anon_sym_COMMA, - ACTIONS(7541), 1, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(5053), 1, - aux_sym_property_declaration_repeat1, - [164656] = 2, + [164684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 3, + ACTIONS(7534), 1, anon_sym_COMMA, + ACTIONS(7536), 1, anon_sym_RBRACE, + STATE(4595), 1, + aux_sym_use_statement_repeat1, + [164697] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7538), 1, anon_sym_SEMI, - [164665] = 4, + STATE(5069), 1, + aux_sym_const_declaration_repeat1, + [164710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7545), 1, + ACTIONS(7540), 1, anon_sym_COMMA, - ACTIONS(7547), 1, - anon_sym_RBRACE, - STATE(4641), 1, - aux_sym_use_statement_repeat1, - [164678] = 4, + ACTIONS(7542), 1, + anon_sym_RPAREN, + STATE(5178), 1, + aux_sym_arguments_repeat1, + [164723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 1, + ACTIONS(5911), 1, anon_sym_GT_GT, - ACTIONS(7549), 1, + ACTIONS(7524), 1, anon_sym_COMMA, - STATE(5155), 1, + STATE(4966), 1, aux_sym_module_attribute_repeat1, - [164691] = 4, + [164736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 1, - anon_sym_GT_GT, - ACTIONS(7549), 1, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_COLON, + STATE(5901), 1, + sym_capability_list, + [164749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + ACTIONS(7546), 1, + anon_sym_COLON, + STATE(6033), 1, + sym_capability_list, + [164762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6559), 3, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [164704] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + [164771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 1, + ACTIONS(4910), 1, anon_sym_RPAREN, - ACTIONS(7551), 1, + ACTIONS(6211), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [164717] = 4, + STATE(5018), 1, + aux_sym_function_type_specifier_repeat1, + [164784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7548), 1, + anon_sym_COMMA, + ACTIONS(7550), 1, + anon_sym_GT, + STATE(5181), 1, + aux_sym_tuple_type_specifier_repeat1, + [164797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7553), 1, + ACTIONS(7552), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164730] = 4, + [164810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 1, + ACTIONS(4910), 1, anon_sym_RPAREN, - ACTIONS(7555), 1, + ACTIONS(6211), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [164743] = 2, + STATE(5016), 1, + aux_sym_function_type_specifier_repeat1, + [164823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 3, + ACTIONS(7556), 1, + anon_sym_EQ, + ACTIONS(7554), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + [164834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(7558), 1, anon_sym_SEMI, - [164752] = 4, + STATE(1493), 1, + sym_compound_statement, + [164847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 1, - anon_sym_GT, - ACTIONS(7557), 1, + ACTIONS(5062), 1, + anon_sym_RPAREN, + ACTIONS(7560), 1, anon_sym_COMMA, - STATE(5096), 1, + STATE(4639), 1, aux_sym_tuple_type_specifier_repeat1, - [164765] = 4, + [164860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7560), 1, + ACTIONS(1501), 1, + anon_sym_RBRACK, + ACTIONS(3745), 1, anon_sym_COMMA, - ACTIONS(7562), 1, - anon_sym_RPAREN, - STATE(5157), 1, - aux_sym_shape_type_specifier_repeat1, - [164778] = 4, + STATE(5189), 1, + aux_sym_array_repeat1, + [164873] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7564), 1, + ACTIONS(7562), 1, anon_sym_LBRACE, - STATE(6053), 1, + STATE(6043), 1, sym_extends_clause, - [164791] = 4, + [164886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 1, - anon_sym_RPAREN, - ACTIONS(7555), 1, + ACTIONS(7564), 1, anon_sym_COMMA, - STATE(5158), 1, - aux_sym_shape_type_specifier_repeat1, - [164804] = 4, + ACTIONS(7567), 1, + anon_sym_RBRACK, + STATE(5098), 1, + aux_sym_capability_list_repeat1, + [164899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3859), 1, + ACTIONS(3860), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_LPAREN, - ACTIONS(7566), 1, - sym_identifier, - STATE(3779), 1, - sym_parameters, - [164830] = 4, + [164912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5520), 1, + ACTIONS(5516), 1, anon_sym_RBRACE, - ACTIONS(7568), 1, + ACTIONS(7569), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [164843] = 4, + [164925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, - anon_sym_RPAREN, - ACTIONS(7570), 1, + ACTIONS(3911), 1, anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [164856] = 4, + ACTIONS(3913), 1, + anon_sym_RPAREN, + STATE(5043), 1, + aux_sym_list_expression_repeat1, + [164938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7572), 1, + ACTIONS(7571), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [164869] = 3, + [164951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7576), 1, + ACTIONS(7575), 1, sym_xhp_class_identifier, - ACTIONS(7574), 2, + ACTIONS(7573), 2, sym_identifier, sym_xhp_identifier, - [164880] = 4, + [164962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - anon_sym_RPAREN, - ACTIONS(7578), 1, - anon_sym_COMMA, - STATE(4670), 1, - aux_sym_tuple_type_specifier_repeat1, - [164893] = 3, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7577), 1, + anon_sym_LBRACE, + STATE(6071), 1, + sym_extends_clause, + [164975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7582), 1, + ACTIONS(7581), 1, sym_xhp_class_identifier, - ACTIONS(7580), 2, + ACTIONS(7579), 2, sym_identifier, sym_xhp_identifier, - [164904] = 4, + [164986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(7584), 1, - anon_sym_LBRACE, - STATE(6078), 1, - sym_extends_clause, - [164917] = 4, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7583), 1, + sym_variable, + STATE(6224), 1, + sym_variadic_modifier, + [164999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(7585), 1, anon_sym_COMMA, - ACTIONS(7586), 1, - anon_sym_SEMI, - STATE(4931), 1, - aux_sym_property_declaration_repeat1, - [164930] = 4, + ACTIONS(7588), 1, + anon_sym_RPAREN, + STATE(5107), 1, + aux_sym_parameters_repeat1, + [165012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_SEMI, - ACTIONS(3790), 1, - anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [164943] = 4, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(7590), 1, + sym_identifier, + STATE(3790), 1, + sym_parameters, + [165025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, - anon_sym_RBRACE, - ACTIONS(7588), 1, + ACTIONS(1649), 1, + anon_sym_SEMI, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [164956] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5508), 1, anon_sym_RBRACE, - ACTIONS(7588), 1, + ACTIONS(7592), 1, anon_sym_COMMA, - STATE(5102), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [164969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6691), 1, - anon_sym_COMMA, - ACTIONS(7590), 1, - anon_sym_SEMI, - STATE(5053), 1, - aux_sym_property_declaration_repeat1, - [164982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7592), 1, - sym_variable, - STATE(6231), 1, - sym_variadic_modifier, - [164995] = 4, + [165051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 1, + ACTIONS(877), 1, anon_sym_LBRACE, ACTIONS(7594), 1, anon_sym_SEMI, - STATE(2887), 1, + STATE(4775), 1, sym_compound_statement, - [165008] = 4, + [165064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, - anon_sym_LBRACE, - ACTIONS(7596), 1, - anon_sym_SEMI, - STATE(1165), 1, - sym_compound_statement, - [165021] = 4, + ACTIONS(5508), 1, + anon_sym_RBRACE, + ACTIONS(7592), 1, + anon_sym_COMMA, + STATE(5100), 1, + aux_sym_use_statement_repeat1, + [165077] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7598), 1, + sym_xhp_class_identifier, + ACTIONS(7596), 2, + sym_identifier, + sym_xhp_identifier, + [165088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7601), 1, + ACTIONS(7600), 1, anon_sym_RPAREN, - STATE(5117), 1, - aux_sym_parameters_repeat1, - [165034] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(7603), 1, - anon_sym_SEMI, - STATE(1642), 1, - sym_compound_statement, - [165047] = 3, + ACTIONS(7602), 1, + anon_sym_COMMA, + ACTIONS(7604), 1, + anon_sym_RBRACE, + STATE(5110), 1, + aux_sym_use_statement_repeat1, + [165114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 1, - sym_xhp_class_identifier, - ACTIONS(7605), 2, - sym_identifier, - sym_xhp_identifier, - [165058] = 4, + ACTIONS(5891), 1, + anon_sym_GT_GT, + ACTIONS(7606), 1, + anon_sym_COMMA, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [165127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(7610), 1, + anon_sym_EQ, + ACTIONS(7608), 2, anon_sym_COMMA, - ACTIONS(7541), 1, - anon_sym_SEMI, - STATE(5069), 1, - aux_sym_property_declaration_repeat1, - [165071] = 4, + anon_sym_RPAREN, + [165138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7614), 1, + anon_sym_EQ, + ACTIONS(7612), 2, anon_sym_COMMA, - ACTIONS(7609), 1, anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [165084] = 3, + [165149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7613), 1, - anon_sym_EQ, - ACTIONS(7611), 2, + ACTIONS(3152), 1, anon_sym_COMMA, + ACTIONS(7616), 1, anon_sym_RPAREN, - [165095] = 3, + STATE(4708), 1, + aux_sym_unset_statement_repeat1, + [165162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, + ACTIONS(7620), 1, anon_sym_EQ, - ACTIONS(7615), 2, + ACTIONS(7618), 2, anon_sym_COMMA, anon_sym_RPAREN, - [165106] = 4, + [165173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, + ACTIONS(1496), 1, + anon_sym_RBRACE, + ACTIONS(3784), 1, anon_sym_COMMA, - ACTIONS(7622), 1, - anon_sym_SEMI, - STATE(5124), 1, - aux_sym_xhp_category_declaration_repeat1, - [165119] = 4, + STATE(5203), 1, + aux_sym_array_repeat1, + [165186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, + ACTIONS(5062), 1, + anon_sym_RPAREN, + ACTIONS(7560), 1, anon_sym_COMMA, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [165199] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(7624), 1, - anon_sym_SEMI, - STATE(5078), 1, - aux_sym__class_const_declaration_repeat1, - [165132] = 4, + sym_xhp_class_identifier, + ACTIONS(7622), 2, + sym_identifier, + sym_xhp_identifier, + [165210] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7626), 1, anon_sym_COMMA, ACTIONS(7628), 1, - anon_sym_RBRACE, - STATE(5111), 1, - aux_sym_use_statement_repeat1, - [165145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(7630), 1, anon_sym_RPAREN, - STATE(4734), 1, - aux_sym_unset_statement_repeat1, - [165158] = 4, + STATE(5150), 1, + aux_sym_shape_repeat1, + [165223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, - anon_sym_RPAREN, ACTIONS(7632), 1, - anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [165171] = 4, + sym_xhp_class_identifier, + ACTIONS(7630), 2, + sym_identifier, + sym_xhp_identifier, + [165234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - anon_sym_RPAREN, - ACTIONS(7634), 1, + ACTIONS(6690), 1, anon_sym_COMMA, - STATE(5066), 1, - aux_sym_shape_type_specifier_repeat1, - [165184] = 4, + ACTIONS(7634), 1, + anon_sym_SEMI, + STATE(5257), 1, + aux_sym__class_const_declaration_repeat1, + [165247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7636), 1, - anon_sym_COMMA, ACTIONS(7638), 1, - anon_sym_RPAREN, - STATE(5072), 1, - aux_sym_shape_type_specifier_repeat1, - [165197] = 3, + sym_xhp_class_identifier, + ACTIONS(7636), 2, + sym_identifier, + sym_xhp_identifier, + [165258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7642), 1, - anon_sym_EQ, - ACTIONS(7640), 2, + ACTIONS(7640), 1, anon_sym_COMMA, + ACTIONS(7642), 1, anon_sym_RPAREN, - [165208] = 4, + STATE(4964), 1, + aux_sym_shape_type_specifier_repeat1, + [165271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_RBRACK, - ACTIONS(7644), 1, + ACTIONS(6690), 1, anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, - [165221] = 4, + ACTIONS(7644), 1, + anon_sym_SEMI, + STATE(4977), 1, + aux_sym__class_const_declaration_repeat1, + [165284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - anon_sym_RPAREN, - ACTIONS(7578), 1, + ACTIONS(6793), 1, anon_sym_COMMA, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [165234] = 4, + ACTIONS(7646), 1, + anon_sym_SEMI, + STATE(4714), 1, + aux_sym_property_declaration_repeat1, + [165297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(5442), 1, anon_sym_RPAREN, - ACTIONS(7634), 1, + ACTIONS(7648), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [165247] = 3, + STATE(4740), 1, + aux_sym_shape_repeat1, + [165310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, - sym_xhp_class_identifier, - ACTIONS(7646), 2, - sym_identifier, - sym_xhp_identifier, - [165258] = 4, + ACTIONS(1675), 1, + anon_sym_RPAREN, + ACTIONS(7650), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 1, + ACTIONS(1315), 1, anon_sym_RPAREN, - ACTIONS(7650), 1, + ACTIONS(7652), 1, anon_sym_COMMA, - STATE(4711), 1, + STATE(4682), 1, aux_sym_shape_type_specifier_repeat1, - [165271] = 3, + [165336] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7654), 1, - sym_xhp_class_identifier, - ACTIONS(7652), 2, - sym_identifier, - sym_xhp_identifier, - [165282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7656), 1, anon_sym_COMMA, - ACTIONS(7658), 1, + ACTIONS(7656), 1, anon_sym_RPAREN, - STATE(4714), 1, + STATE(4705), 1, aux_sym_shape_type_specifier_repeat1, - [165295] = 4, + [165349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, - anon_sym_COMMA, - ACTIONS(7662), 1, + ACTIONS(1621), 1, anon_sym_RPAREN, - STATE(5153), 1, - aux_sym_shape_repeat1, - [165308] = 4, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(7664), 1, + ACTIONS(7658), 1, anon_sym_RPAREN, - STATE(4734), 1, + STATE(4708), 1, aux_sym_unset_statement_repeat1, - [165321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_RPAREN, - ACTIONS(7666), 1, - anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [165334] = 3, + [165375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7670), 1, + ACTIONS(7662), 1, sym_xhp_class_identifier, - ACTIONS(7668), 2, + ACTIONS(7660), 2, sym_identifier, sym_xhp_identifier, - [165345] = 4, + [165386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5883), 1, + ACTIONS(5975), 1, anon_sym_GT_GT, - ACTIONS(7672), 1, + ACTIONS(7664), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [165358] = 4, + [165399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5883), 1, - anon_sym_GT_GT, - ACTIONS(7672), 1, + ACTIONS(1325), 1, + anon_sym_RPAREN, + ACTIONS(7666), 1, anon_sym_COMMA, - STATE(5082), 1, - aux_sym_module_attribute_repeat1, - [165371] = 4, + STATE(4962), 1, + aux_sym_shape_type_specifier_repeat1, + [165412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 1, - anon_sym_RBRACE, - ACTIONS(7674), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4404), 1, - aux_sym_array_repeat1, - [165384] = 4, + ACTIONS(7668), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(5034), 1, + anon_sym_RPAREN, + ACTIONS(7450), 1, + anon_sym_COMMA, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [165438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7670), 1, + anon_sym_COMMA, + ACTIONS(7672), 1, + anon_sym_RPAREN, + STATE(5229), 1, + aux_sym_shape_type_specifier_repeat1, + [165451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6543), 1, anon_sym_GT_GT, - ACTIONS(7676), 1, + ACTIONS(7674), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [165397] = 4, + [165464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5881), 1, + ACTIONS(5863), 1, anon_sym_GT_GT, - ACTIONS(7679), 1, + ACTIONS(7677), 1, anon_sym_COMMA, - STATE(5146), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [165410] = 4, + [165477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, - anon_sym_RBRACE, - ACTIONS(3753), 1, + ACTIONS(1441), 1, + anon_sym_RPAREN, + ACTIONS(7679), 1, anon_sym_COMMA, - STATE(5145), 1, - aux_sym_array_repeat1, - [165423] = 3, + STATE(5236), 1, + aux_sym_shape_type_specifier_repeat1, + [165490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7683), 1, - sym_xhp_class_identifier, - ACTIONS(7681), 2, - sym_identifier, - sym_xhp_identifier, - [165434] = 4, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7681), 1, + anon_sym_SEMI, + STATE(5006), 1, + aux_sym_const_declaration_repeat1, + [165503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 1, - anon_sym_COMMA, - ACTIONS(7685), 1, - anon_sym_RPAREN, - STATE(4379), 1, - aux_sym_xhp_children_declaration_repeat1, - [165447] = 4, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7683), 1, + anon_sym_LBRACE, + STATE(6182), 1, + sym_extends_clause, + [165516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5865), 1, + ACTIONS(5979), 1, anon_sym_GT_GT, - ACTIONS(7687), 1, + ACTIONS(7685), 1, anon_sym_COMMA, - STATE(5147), 1, + STATE(5143), 1, aux_sym_module_attribute_repeat1, - [165460] = 4, + [165529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1791), 1, anon_sym_RPAREN, - ACTIONS(7689), 1, + ACTIONS(7687), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [165473] = 4, + [165542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(5444), 1, anon_sym_RPAREN, - ACTIONS(7691), 1, + ACTIONS(7689), 1, anon_sym_COMMA, - STATE(4781), 1, + STATE(4740), 1, aux_sym_shape_repeat1, - [165486] = 4, + [165555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5865), 1, - anon_sym_GT_GT, - ACTIONS(7687), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [165499] = 4, + ACTIONS(3882), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - anon_sym_GT_GT, - ACTIONS(7693), 1, + ACTIONS(7691), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [165512] = 4, + ACTIONS(7694), 1, + anon_sym_RPAREN, + STATE(5152), 1, + aux_sym__anonymous_function_use_clause_repeat1, + [165581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(5012), 1, + anon_sym_RPAREN, + ACTIONS(7696), 1, anon_sym_COMMA, - ACTIONS(7698), 1, - anon_sym_SEMI, - STATE(5156), 1, - aux_sym_xhp_attribute_declaration_repeat1, - [165525] = 4, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [165594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, - anon_sym_RPAREN, - ACTIONS(7700), 1, + ACTIONS(5502), 1, + anon_sym_RBRACE, + ACTIONS(7698), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [165538] = 4, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [165607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, - anon_sym_RPAREN, - ACTIONS(7702), 1, + ACTIONS(6793), 1, anon_sym_COMMA, - STATE(4818), 1, - aux_sym_shape_type_specifier_repeat1, - [165551] = 4, + ACTIONS(7700), 1, + anon_sym_SEMI, + STATE(4979), 1, + aux_sym_property_declaration_repeat1, + [165620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7704), 1, - anon_sym_SEMI, - STATE(4366), 1, + ACTIONS(3944), 1, + anon_sym_RPAREN, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [165564] = 4, + [165633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7706), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7708), 1, + ACTIONS(7702), 1, anon_sym_RPAREN, - STATE(5141), 1, - aux_sym_shape_type_specifier_repeat1, - [165577] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7710), 1, + ACTIONS(7704), 1, anon_sym_COMMA, + ACTIONS(7706), 1, + anon_sym_SEMI, + STATE(4927), 1, + aux_sym_use_statement_repeat1, + [165659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7710), 1, + sym_xhp_class_identifier, + ACTIONS(7708), 2, + sym_identifier, + sym_xhp_identifier, + [165670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(395), 1, + anon_sym_LBRACE, ACTIONS(7712), 1, - anon_sym_RBRACE, - STATE(4946), 1, - aux_sym_xhp_enum_type_repeat1, - [165590] = 4, + anon_sym_SEMI, + STATE(1465), 1, + sym_compound_statement, + [165683] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(5568), 1, + anon_sym_extends, ACTIONS(7714), 1, - anon_sym_COMMA, - ACTIONS(7717), 1, - anon_sym_SEMI, - STATE(5162), 1, - aux_sym__class_const_declaration_repeat1, - [165603] = 4, + anon_sym_LBRACE, + STATE(6063), 1, + sym_extends_clause, + [165696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, - anon_sym_GT, - ACTIONS(7719), 1, + ACTIONS(5012), 1, + anon_sym_RPAREN, + ACTIONS(7696), 1, anon_sym_COMMA, - STATE(5096), 1, + STATE(5247), 1, aux_sym_tuple_type_specifier_repeat1, - [165616] = 4, + [165709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1287), 1, + ACTIONS(1637), 1, anon_sym_RPAREN, - ACTIONS(7721), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4549), 1, - aux_sym_arguments_repeat1, - [165629] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7716), 1, + anon_sym_COMMA, + ACTIONS(7718), 1, + anon_sym_GT, + STATE(4785), 1, + aux_sym_type_parameters_repeat1, + [165735] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7723), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(6182), 1, + STATE(6196), 1, sym_extends_clause, - [165642] = 4, + [165748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(3987), 1, + ACTIONS(1687), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [165655] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7725), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7727), 1, - anon_sym_GT, - STATE(4794), 1, - aux_sym_type_parameters_repeat1, - [165668] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + ACTIONS(7722), 1, + anon_sym_SEMI, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [165681] = 4, + [165774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_RBRACE, - ACTIONS(7729), 1, + ACTIONS(7724), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [165694] = 4, + [165787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, + ACTIONS(5494), 1, + anon_sym_RBRACE, + ACTIONS(7724), 1, anon_sym_COMMA, - ACTIONS(7731), 1, - anon_sym_SEMI, - STATE(5162), 1, - aux_sym__class_const_declaration_repeat1, - [165707] = 4, + STATE(5154), 1, + aux_sym_use_statement_repeat1, + [165800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7733), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [165720] = 3, + ACTIONS(7726), 1, + anon_sym_SEMI, + STATE(5069), 1, + aux_sym_const_declaration_repeat1, + [165813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7730), 1, sym_xhp_class_identifier, - ACTIONS(7735), 2, + ACTIONS(7728), 2, sym_identifier, sym_xhp_identifier, - [165731] = 4, + [165824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(7739), 1, - anon_sym_LBRACE, - STATE(6193), 1, - sym_extends_clause, - [165744] = 4, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7732), 1, + anon_sym_RPAREN, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [165837] = 4, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(7734), 1, + anon_sym_LPAREN, + ACTIONS(7736), 1, + aux_sym_function_type_specifier_token1, + STATE(3796), 1, + sym_parameters, + [165850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6793), 1, anon_sym_COMMA, - ACTIONS(7741), 1, + ACTIONS(7738), 1, anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [165757] = 4, + STATE(4714), 1, + aux_sym_property_declaration_repeat1, + [165863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - anon_sym_RPAREN, - ACTIONS(7743), 1, + ACTIONS(7740), 1, anon_sym_COMMA, - STATE(5128), 1, - aux_sym_tuple_type_specifier_repeat1, - [165770] = 4, + ACTIONS(7742), 1, + anon_sym_RBRACE, + STATE(5168), 1, + aux_sym_use_statement_repeat1, + [165876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(7745), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [165783] = 4, + ACTIONS(7744), 1, + anon_sym_RPAREN, + STATE(4708), 1, + aux_sym_unset_statement_repeat1, + [165889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1709), 1, - anon_sym_SEMI, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + ACTIONS(7746), 1, + anon_sym_SEMI, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [165796] = 4, - ACTIONS(5544), 1, - sym_comment, - ACTIONS(7747), 1, - anon_sym_LPAREN, - ACTIONS(7749), 1, - aux_sym_function_type_specifier_token1, - STATE(3780), 1, - sym_parameters, - [165809] = 4, + [165902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 1, - anon_sym_RBRACE, - ACTIONS(7751), 1, + ACTIONS(1303), 1, + anon_sym_RPAREN, + ACTIONS(7748), 1, anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [165822] = 3, + STATE(4535), 1, + aux_sym_arguments_repeat1, + [165915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, + ACTIONS(7752), 1, sym_xhp_class_identifier, - ACTIONS(7753), 2, + ACTIONS(7750), 2, sym_identifier, sym_xhp_identifier, - [165833] = 4, + [165926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - anon_sym_RPAREN, - ACTIONS(7743), 1, + ACTIONS(7756), 1, + sym_xhp_class_identifier, + ACTIONS(7754), 2, + sym_identifier, + sym_xhp_identifier, + [165937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_GT, + ACTIONS(7758), 1, anon_sym_COMMA, - STATE(3798), 1, + STATE(5239), 1, aux_sym_tuple_type_specifier_repeat1, - [165846] = 4, + [165950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 1, - anon_sym_RPAREN, - ACTIONS(7757), 1, + ACTIONS(6793), 1, anon_sym_COMMA, - STATE(5134), 1, - aux_sym_shape_type_specifier_repeat1, - [165859] = 4, + ACTIONS(6926), 1, + anon_sym_SEMI, + STATE(4714), 1, + aux_sym_property_declaration_repeat1, + [165963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 1, - anon_sym_RBRACE, - ACTIONS(7751), 1, + ACTIONS(7760), 1, + anon_sym_EQ, + ACTIONS(6511), 2, anon_sym_COMMA, - STATE(5169), 1, - aux_sym_use_statement_repeat1, - [165872] = 4, + anon_sym_RPAREN, + [165974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(7759), 1, + ACTIONS(7762), 1, anon_sym_RPAREN, - STATE(4734), 1, + STATE(4708), 1, aux_sym_unset_statement_repeat1, - [165885] = 4, + [165987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 1, + ACTIONS(7764), 1, anon_sym_COMMA, - ACTIONS(7763), 1, + ACTIONS(7766), 1, anon_sym_RBRACE, STATE(5202), 1, aux_sym_use_statement_repeat1, - [165898] = 3, + [166000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, - sym_xhp_class_identifier, - ACTIONS(7765), 2, - sym_identifier, - sym_xhp_identifier, - [165909] = 4, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7768), 1, + anon_sym_SEMI, + STATE(5069), 1, + aux_sym_const_declaration_repeat1, + [166013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(7769), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [165922] = 3, + ACTIONS(993), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7770), 1, + sym_variable, + STATE(6206), 1, + sym_variadic_modifier, + [166026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 1, + ACTIONS(7774), 1, anon_sym_EQ, - ACTIONS(6563), 2, + ACTIONS(7772), 2, anon_sym_COMMA, anon_sym_RPAREN, - [165933] = 4, + [166037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - anon_sym_GT_GT, - ACTIONS(7773), 1, + ACTIONS(1487), 1, + anon_sym_RBRACK, + ACTIONS(3773), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [165946] = 4, + STATE(4462), 1, + aux_sym_array_repeat1, + [166050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, + ACTIONS(1487), 1, + anon_sym_RBRACK, + ACTIONS(3773), 1, anon_sym_COMMA, - ACTIONS(7777), 1, - anon_sym_RBRACE, - STATE(5179), 1, - aux_sym_use_statement_repeat1, - [165959] = 4, + STATE(5258), 1, + aux_sym_array_repeat1, + [166063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7779), 1, + ACTIONS(7776), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [165972] = 4, + [166076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - ACTIONS(7781), 1, - anon_sym_RPAREN, - STATE(4734), 1, - aux_sym_unset_statement_repeat1, - [165985] = 3, + ACTIONS(7780), 1, + sym_xhp_class_identifier, + ACTIONS(7778), 2, + sym_identifier, + sym_xhp_identifier, + [166087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7785), 1, + ACTIONS(7784), 1, sym_xhp_class_identifier, - ACTIONS(7783), 2, + ACTIONS(7782), 2, sym_identifier, sym_xhp_identifier, - [165996] = 4, + [166098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 1, + ACTIONS(1524), 1, anon_sym_RBRACK, - ACTIONS(3776), 1, + ACTIONS(3782), 1, anon_sym_COMMA, - STATE(5057), 1, + STATE(5050), 1, aux_sym_array_repeat1, - [166009] = 3, + [166111] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(7786), 1, + anon_sym_COMMA, ACTIONS(7789), 1, - sym_xhp_class_identifier, - ACTIONS(7787), 2, - sym_identifier, - sym_xhp_identifier, - [166020] = 4, + anon_sym_SEMI, + STATE(5195), 1, + aux_sym_xhp_category_declaration_repeat1, + [166124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(7791), 1, - sym_variable, - STATE(6109), 1, - sym_variadic_modifier, - [166033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7795), 1, - anon_sym_EQ, - ACTIONS(7793), 2, anon_sym_COMMA, + ACTIONS(7793), 1, anon_sym_RPAREN, - [166044] = 4, + STATE(5043), 1, + aux_sym_list_expression_repeat1, + [166137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3692), 1, - anon_sym_RPAREN, ACTIONS(7797), 1, + sym_xhp_class_identifier, + ACTIONS(7795), 2, + sym_identifier, + sym_xhp_identifier, + [166148] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3596), 1, + anon_sym_RPAREN, + ACTIONS(7799), 1, anon_sym_COMMA, - STATE(5117), 1, + STATE(5107), 1, aux_sym_parameters_repeat1, - [166057] = 3, + [166161] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(877), 1, + anon_sym_LBRACE, ACTIONS(7801), 1, - sym_xhp_class_identifier, - ACTIONS(7799), 2, - sym_identifier, - sym_xhp_identifier, - [166068] = 4, + anon_sym_SEMI, + STATE(4824), 1, + sym_compound_statement, + [166174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(5478), 1, anon_sym_RBRACE, ACTIONS(7803), 1, anon_sym_COMMA, STATE(5219), 1, aux_sym_use_statement_repeat1, - [166081] = 4, + [166187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, - anon_sym_LBRACE, + ACTIONS(5038), 1, + anon_sym_GT, ACTIONS(7805), 1, - anon_sym_SEMI, - STATE(1639), 1, - sym_compound_statement, - [166094] = 4, + anon_sym_COMMA, + STATE(5239), 1, + aux_sym_tuple_type_specifier_repeat1, + [166200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, + ACTIONS(5478), 1, anon_sym_RBRACE, ACTIONS(7803), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [166107] = 4, + [166213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7807), 1, - anon_sym_SEMI, - ACTIONS(7809), 1, - anon_sym_as, - ACTIONS(7811), 1, - anon_sym_EQ, - [166120] = 3, + ACTIONS(1482), 1, + anon_sym_RBRACE, + ACTIONS(3769), 1, + anon_sym_COMMA, + STATE(4462), 1, + aux_sym_array_repeat1, + [166226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7815), 1, - sym_xhp_class_identifier, - ACTIONS(7813), 2, - sym_identifier, - sym_xhp_identifier, - [166131] = 4, + ACTIONS(1482), 1, + anon_sym_RBRACE, + ACTIONS(3769), 1, + anon_sym_COMMA, + STATE(5262), 1, + aux_sym_array_repeat1, + [166239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1721), 1, anon_sym_SEMI, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166144] = 4, + [166252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + ACTIONS(7807), 1, + anon_sym_RPAREN, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166157] = 4, + [166265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7817), 1, + ACTIONS(7809), 1, anon_sym_SEMI, - STATE(3798), 1, - aux_sym_tuple_type_specifier_repeat1, - [166170] = 4, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [166278] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7819), 1, + ACTIONS(7811), 1, anon_sym_LBRACE, - STATE(6330), 1, + STATE(6332), 1, sym_extends_clause, - [166183] = 4, + [166291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, - ACTIONS(7821), 1, + ACTIONS(877), 1, + anon_sym_LBRACE, + ACTIONS(7813), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166196] = 4, + STATE(4827), 1, + sym_compound_statement, + [166304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(6081), 1, anon_sym_COMMA, - ACTIONS(7823), 1, + ACTIONS(7815), 1, anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166209] = 4, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [166317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(1287), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(7817), 1, anon_sym_COMMA, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166222] = 3, + STATE(4535), 1, + aux_sym_arguments_repeat1, + [166330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7827), 1, + ACTIONS(7821), 1, sym_xhp_class_identifier, - ACTIONS(7825), 2, + ACTIONS(7819), 2, sym_identifier, sym_xhp_identifier, - [166233] = 4, + [166341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 1, + ACTIONS(1641), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166246] = 4, + [166354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(7829), 1, - anon_sym_LBRACE, - STATE(6299), 1, - sym_extends_clause, - [166259] = 4, + ACTIONS(6081), 1, + anon_sym_COMMA, + ACTIONS(7823), 1, + anon_sym_SEMI, + STATE(3780), 1, + aux_sym_tuple_type_specifier_repeat1, + [166367] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7831), 1, + ACTIONS(7825), 1, anon_sym_LBRACE, - STATE(5863), 1, + STATE(6299), 1, sym_extends_clause, - [166272] = 4, + [166380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7833), 1, + ACTIONS(7827), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166285] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7835), 1, - anon_sym_COMMA, - ACTIONS(7838), 1, - anon_sym_RPAREN, - STATE(5217), 1, - aux_sym__anonymous_function_use_clause_repeat1, - [166298] = 4, + [166393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(3858), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166311] = 4, + [166406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5488), 1, anon_sym_RBRACE, - ACTIONS(7840), 1, + ACTIONS(7829), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [166324] = 4, + [166419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 1, + ACTIONS(5522), 1, anon_sym_RBRACE, - ACTIONS(7842), 1, + ACTIONS(7831), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [166337] = 4, + [166432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7186), 1, anon_sym_COMMA, - ACTIONS(7844), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166350] = 4, + ACTIONS(7833), 1, + anon_sym_RBRACK, + STATE(4914), 1, + aux_sym_capability_list_repeat1, + [166445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(5927), 1, + anon_sym_GT_GT, + ACTIONS(7835), 1, + anon_sym_COMMA, + STATE(5238), 1, + aux_sym_module_attribute_repeat1, + [166458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(3897), 1, + ACTIONS(3968), 1, anon_sym_SEMI, - STATE(4366), 1, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [166471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5927), 1, + anon_sym_GT_GT, + ACTIONS(7835), 1, + anon_sym_COMMA, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [166484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(7837), 1, + anon_sym_RPAREN, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166363] = 3, + [166497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7841), 1, sym_xhp_class_identifier, - ACTIONS(7846), 2, + ACTIONS(7839), 2, sym_identifier, sym_xhp_identifier, - [166374] = 4, + [166508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_SEMI, - ACTIONS(7850), 1, + ACTIONS(5716), 1, anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [166387] = 4, + ACTIONS(7843), 1, + anon_sym_RPAREN, + STATE(4270), 1, + aux_sym_xhp_children_declaration_repeat1, + [166521] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5568), 1, anon_sym_extends, - ACTIONS(7852), 1, + ACTIONS(7845), 1, anon_sym_LBRACE, STATE(6311), 1, sym_extends_clause, - [166400] = 4, + [166534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5568), 1, + anon_sym_extends, + ACTIONS(7847), 1, + anon_sym_LBRACE, + STATE(6359), 1, + sym_extends_clause, + [166547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 1, + anon_sym_RPAREN, + ACTIONS(7849), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [166560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, + ACTIONS(1595), 1, anon_sym_SEMI, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166413] = 4, + [166573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5524), 1, - anon_sym_RBRACE, - ACTIONS(7854), 1, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(7851), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [166586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5532), 1, + anon_sym_SEMI, + ACTIONS(7853), 1, anon_sym_COMMA, - STATE(4298), 1, + STATE(4310), 1, aux_sym_use_statement_repeat1, - [166426] = 4, + [166599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, - anon_sym_extends, - ACTIONS(7856), 1, - anon_sym_LBRACE, - STATE(6359), 1, - sym_extends_clause, - [166439] = 4, + ACTIONS(1391), 1, + anon_sym_RPAREN, + ACTIONS(7855), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [166612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7858), 1, - anon_sym_RBRACK, - STATE(4924), 1, - aux_sym_capability_list_repeat1, - [166452] = 4, + ACTIONS(7857), 1, + anon_sym_SEMI, + STATE(4302), 1, + aux_sym_echo_statement_repeat1, + [166625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5524), 1, + ACTIONS(5530), 1, anon_sym_RBRACE, - ACTIONS(7854), 1, + ACTIONS(7859), 1, anon_sym_COMMA, - STATE(5220), 1, + STATE(4310), 1, + aux_sym_use_statement_repeat1, + [166638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_RPAREN, + ACTIONS(7861), 1, + anon_sym_COMMA, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [166651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5530), 1, + anon_sym_RBRACE, + ACTIONS(7859), 1, + anon_sym_COMMA, + STATE(5218), 1, aux_sym_use_statement_repeat1, - [166465] = 4, + [166664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(5887), 1, + anon_sym_GT_GT, + ACTIONS(7863), 1, anon_sym_COMMA, - ACTIONS(7862), 1, + STATE(5143), 1, + aux_sym_module_attribute_repeat1, + [166677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5266), 1, anon_sym_GT, - STATE(5163), 1, + ACTIONS(7865), 1, + anon_sym_COMMA, + STATE(5239), 1, aux_sym_tuple_type_specifier_repeat1, - [166478] = 4, + [166690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(7868), 1, anon_sym_COMMA, - ACTIONS(3967), 1, + ACTIONS(7870), 1, anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166491] = 3, + STATE(5233), 1, + aux_sym_shape_type_specifier_repeat1, + [166703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7864), 1, - anon_sym_EQ, - ACTIONS(3784), 2, - anon_sym_COMMA, + ACTIONS(1459), 1, anon_sym_RPAREN, - [166502] = 4, + ACTIONS(7861), 1, + anon_sym_COMMA, + STATE(5231), 1, + aux_sym_shape_type_specifier_repeat1, + [166716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(1492), 1, + anon_sym_RBRACE, + ACTIONS(3761), 1, anon_sym_COMMA, - ACTIONS(7866), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166515] = 3, + STATE(4923), 1, + aux_sym_array_repeat1, + [166729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7870), 1, + ACTIONS(7874), 1, sym_xhp_class_identifier, - ACTIONS(7868), 2, + ACTIONS(7872), 2, sym_identifier, sym_xhp_identifier, - [166526] = 4, + [166740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3786), 1, anon_sym_COMMA, - ACTIONS(7872), 1, + ACTIONS(7876), 1, anon_sym_RPAREN, - STATE(4366), 1, + STATE(4302), 1, aux_sym_echo_statement_repeat1, - [166539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7874), 1, - anon_sym_COMMA, - ACTIONS(7876), 1, - anon_sym_RBRACE, - STATE(5227), 1, - aux_sym_use_statement_repeat1, - [166552] = 4, + [166753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7878), 1, + anon_sym_EQ, + ACTIONS(3757), 2, anon_sym_COMMA, - ACTIONS(7880), 1, anon_sym_RPAREN, - STATE(5164), 1, - aux_sym_arguments_repeat1, - [166565] = 4, + [166764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, + ACTIONS(7880), 1, + anon_sym_SEMI, ACTIONS(7882), 1, - anon_sym_RPAREN, - STATE(4734), 1, - aux_sym_unset_statement_repeat1, - [166578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, + anon_sym_as, ACTIONS(7884), 1, - anon_sym_RPAREN, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166591] = 4, + anon_sym_EQ, + [166777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5973), 1, - anon_sym_COMMA, - ACTIONS(5975), 1, + ACTIONS(5046), 1, anon_sym_RPAREN, - STATE(5133), 1, + ACTIONS(7886), 1, + anon_sym_COMMA, + STATE(3780), 1, aux_sym_tuple_type_specifier_repeat1, - [166604] = 3, + [166790] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(6727), 1, + anon_sym_COMMA, ACTIONS(7888), 1, - sym_xhp_class_identifier, - ACTIONS(7886), 2, - sym_identifier, - sym_xhp_identifier, - [166615] = 4, + anon_sym_SEMI, + STATE(5186), 1, + aux_sym_const_declaration_repeat1, + [166803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(5979), 1, + anon_sym_GT_GT, + ACTIONS(7685), 1, anon_sym_COMMA, - ACTIONS(7890), 1, - anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [166628] = 4, + STATE(5144), 1, + aux_sym_module_attribute_repeat1, + [166816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(7890), 1, anon_sym_COMMA, ACTIONS(7892), 1, - anon_sym_SEMI, - STATE(5077), 1, - aux_sym_const_declaration_repeat1, - [166641] = 4, + anon_sym_RBRACE, + STATE(5235), 1, + aux_sym_use_statement_repeat1, + [166829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(3152), 1, anon_sym_COMMA, ACTIONS(7894), 1, - anon_sym_SEMI, - STATE(5174), 1, - aux_sym_const_declaration_repeat1, - [166654] = 4, + anon_sym_RPAREN, + STATE(4708), 1, + aux_sym_unset_statement_repeat1, + [166842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7896), 1, - anon_sym_COMMA, ACTIONS(7898), 1, - anon_sym_RPAREN, - STATE(5181), 1, - aux_sym_tuple_type_specifier_repeat1, - [166667] = 4, + sym_xhp_class_identifier, + ACTIONS(7896), 2, + sym_identifier, + sym_xhp_identifier, + [166853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - anon_sym_SEMI, - ACTIONS(7900), 1, - anon_sym_COMMA, - STATE(4298), 1, - aux_sym_use_statement_repeat1, - [166680] = 4, + ACTIONS(7902), 1, + sym_xhp_class_identifier, + ACTIONS(7900), 2, + sym_identifier, + sym_xhp_identifier, + [166864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(5963), 1, anon_sym_COMMA, - ACTIONS(7902), 1, - anon_sym_SEMI, - STATE(5075), 1, - aux_sym_const_declaration_repeat1, - [166693] = 4, + ACTIONS(5965), 1, + anon_sym_RPAREN, + STATE(5122), 1, + aux_sym_tuple_type_specifier_repeat1, + [166877] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7904), 1, anon_sym_COMMA, ACTIONS(7906), 1, - anon_sym_RPAREN, - STATE(5061), 1, - aux_sym_arguments_repeat1, - [166706] = 4, + anon_sym_GT, + STATE(5051), 1, + aux_sym_tuple_type_specifier_repeat1, + [166890] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7908), 1, anon_sym_COMMA, ACTIONS(7910), 1, - anon_sym_GT, - STATE(5058), 1, - aux_sym_tuple_type_specifier_repeat1, - [166719] = 4, + anon_sym_RPAREN, + STATE(5054), 1, + aux_sym_arguments_repeat1, + [166903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_COMMA, ACTIONS(7912), 1, - anon_sym_SEMI, - STATE(4366), 1, - aux_sym_echo_statement_repeat1, - [166732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7916), 1, - anon_sym_EQ, - ACTIONS(7914), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [166743] = 4, + ACTIONS(7915), 1, + anon_sym_SEMI, + STATE(5257), 1, + aux_sym__class_const_declaration_repeat1, + [166916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 1, - anon_sym_RBRACE, - ACTIONS(3772), 1, + ACTIONS(1473), 1, + anon_sym_RBRACK, + ACTIONS(7917), 1, anon_sym_COMMA, - STATE(4951), 1, + STATE(4462), 1, aux_sym_array_repeat1, - [166756] = 4, + [166929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 1, - anon_sym_GT_GT, - ACTIONS(7918), 1, + ACTIONS(6690), 1, anon_sym_COMMA, - STATE(5146), 1, - aux_sym_module_attribute_repeat1, - [166769] = 4, + ACTIONS(7919), 1, + anon_sym_SEMI, + STATE(5257), 1, + aux_sym__class_const_declaration_repeat1, + [166942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(3936), 1, anon_sym_COMMA, - ACTIONS(3932), 1, + ACTIONS(3938), 1, anon_sym_RPAREN, - STATE(5050), 1, + STATE(5043), 1, aux_sym_list_expression_repeat1, - [166782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_RPAREN, - ACTIONS(6035), 1, - anon_sym_COMMA, - STATE(4929), 1, - aux_sym_function_type_specifier_repeat1, - [166795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_else, - ACTIONS(2203), 2, - anon_sym_elseif, - anon_sym_while, - [166806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - ACTIONS(7920), 1, - anon_sym_COLON, - STATE(5822), 1, - sym_capability_list, - [166819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7924), 1, - sym_xhp_class_identifier, - ACTIONS(7922), 2, - sym_identifier, - sym_xhp_identifier, - [166830] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(805), 1, - anon_sym_LBRACE, - ACTIONS(7926), 1, - anon_sym_SEMI, - STATE(982), 1, - sym_compound_statement, - [166843] = 3, + [166955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7930), 1, + ACTIONS(7923), 1, sym_xhp_class_identifier, - ACTIONS(7928), 2, + ACTIONS(7921), 2, sym_identifier, sym_xhp_identifier, - [166854] = 4, + [166966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 1, - anon_sym_GT_GT, - ACTIONS(7918), 1, + ACTIONS(1471), 1, + anon_sym_RBRACE, + ACTIONS(7925), 1, anon_sym_COMMA, - STATE(5189), 1, - aux_sym_module_attribute_repeat1, - [166867] = 4, + STATE(4462), 1, + aux_sym_array_repeat1, + [166979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(7932), 1, + ACTIONS(7927), 1, anon_sym_SEMI, - STATE(973), 1, + STATE(1662), 1, sym_compound_statement, - [166880] = 4, + [166992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, - anon_sym_LBRACE, - ACTIONS(7934), 1, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(7929), 1, anon_sym_SEMI, - STATE(949), 1, - sym_compound_statement, - [166893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7938), 1, - sym_xhp_class_identifier, - ACTIONS(7936), 2, - sym_identifier, - sym_xhp_identifier, - [166904] = 4, + STATE(5071), 1, + aux_sym_const_declaration_repeat1, + [167005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(5652), 1, - anon_sym_LBRACK, - STATE(2261), 1, - sym_arguments, - [166917] = 4, + ACTIONS(7931), 1, + anon_sym_COMMA, + ACTIONS(7933), 1, + anon_sym_RBRACE, + STATE(4992), 1, + aux_sym_xhp_enum_type_repeat1, + [167018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6727), 1, anon_sym_COMMA, - ACTIONS(7940), 1, + ACTIONS(7935), 1, anon_sym_SEMI, - STATE(5243), 1, + STATE(5069), 1, aux_sym_const_declaration_repeat1, - [166930] = 4, + [167031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7942), 1, + ACTIONS(7937), 1, anon_sym_COMMA, - ACTIONS(7944), 1, - anon_sym_SEMI, - STATE(5247), 1, - aux_sym_use_statement_repeat1, - [166943] = 3, + ACTIONS(7940), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_shape_type_specifier_repeat1, + [167044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_member_declarations, - [166953] = 3, + ACTIONS(7944), 1, + sym_xhp_class_identifier, + ACTIONS(7942), 2, + sym_identifier, + sym_xhp_identifier, + [167055] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7946), 1, anon_sym_class, ACTIONS(7948), 1, sym_xhp_modifier, - [166963] = 3, + [167065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(7950), 1, anon_sym_LBRACE, - STATE(4031), 1, - sym_compound_statement, - [166973] = 3, + ACTIONS(7952), 1, + anon_sym_as, + [167075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4522), 1, - sym_member_declarations, - [166983] = 3, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(178), 1, + sym_parenthesized_expression, + [167085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(4610), 1, - sym_member_declarations, - [166993] = 3, + STATE(4156), 1, + sym_compound_statement, + [167095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(7956), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [167103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(4045), 1, + STATE(4114), 1, sym_compound_statement, - [167003] = 2, + [167113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [167011] = 3, + ACTIONS(7958), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [167121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(7960), 2, anon_sym_LBRACE, - STATE(4513), 1, - sym_member_declarations, - [167021] = 3, + anon_sym_SEMI, + [167129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - STATE(2221), 1, - aux_sym_qualified_identifier_repeat1, - [167031] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(4990), 1, + sym_capability_list, + [167139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(1471), 1, - sym_member_declarations, - [167041] = 3, + STATE(4138), 1, + sym_compound_statement, + [167149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, - sym_variable, - STATE(5603), 1, - sym_property_declarator, - [167051] = 3, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(4834), 1, + sym_compound_statement, + [167159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4557), 1, + STATE(1654), 1, sym_member_declarations, - [167061] = 3, + [167169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(4558), 1, + STATE(1557), 1, sym_member_declarations, - [167071] = 3, + [167179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1474), 1, + STATE(1059), 1, sym_member_declarations, - [167081] = 3, + [167189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(91), 1, - sym_parenthesized_expression, - [167091] = 3, + ACTIONS(7940), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [167197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1011), 1, - sym_compound_statement, - [167101] = 3, + STATE(1655), 1, + sym_member_declarations, + [167207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4562), 1, - sym_member_declarations, - [167111] = 3, + ACTIONS(7567), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [167215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1477), 1, + STATE(4486), 1, sym_member_declarations, - [167121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7954), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [167129] = 3, + [167225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4563), 1, + STATE(4487), 1, sym_member_declarations, - [167139] = 3, + [167235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4123), 1, - sym_compound_statement, - [167149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(180), 1, - sym_parenthesized_expression, - [167159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7956), 1, - sym_identifier, - ACTIONS(7958), 1, - anon_sym_class, - [167169] = 3, + STATE(1659), 1, + sym_member_declarations, + [167245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4503), 1, + STATE(4488), 1, sym_member_declarations, - [167179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7960), 1, - sym_identifier, - ACTIONS(7962), 1, - anon_sym_class, - [167189] = 2, + [167255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7964), 2, + ACTIONS(5576), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [167197] = 3, + STATE(1559), 1, + sym_member_declarations, + [167265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4502), 1, + STATE(1660), 1, sym_member_declarations, - [167207] = 3, + [167275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4564), 1, + STATE(1661), 1, sym_member_declarations, - [167217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7966), 1, - sym_identifier, - ACTIONS(7968), 1, - anon_sym_class, - [167227] = 3, + [167285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - sym_identifier, - ACTIONS(7972), 1, - anon_sym_class, - [167237] = 3, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_member_declarations, + [167295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(4579), 1, + STATE(1563), 1, sym_member_declarations, - [167247] = 2, + [167305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [167255] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5817), 1, + sym_capability_list, + [167315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - sym_identifier, - ACTIONS(7978), 1, - anon_sym_class, - [167265] = 3, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4493), 1, + sym_member_declarations, + [167325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(4497), 1, + STATE(1067), 1, sym_member_declarations, - [167275] = 3, + [167335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7980), 1, + ACTIONS(7962), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [167343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7964), 1, sym_identifier, - ACTIONS(7982), 1, + ACTIONS(7966), 1, anon_sym_class, - [167285] = 3, + [167353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(1624), 1, sym_compound_statement, - [167295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2655), 1, - sym_variable, - STATE(5081), 1, - sym_property_declarator, - [167305] = 3, + [167363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_LPAREN, - STATE(5965), 1, - sym_parenthesized_expression, - [167315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7986), 1, + ACTIONS(7968), 1, sym_identifier, - ACTIONS(7988), 1, + ACTIONS(7970), 1, anon_sym_class, - [167325] = 3, + [167373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7990), 1, - sym_identifier, - ACTIONS(7992), 1, + ACTIONS(6698), 1, + anon_sym_RPAREN, + ACTIONS(7972), 1, sym_variable, - [167335] = 3, + [167383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7994), 1, + ACTIONS(7974), 1, sym_identifier, - ACTIONS(7996), 1, + ACTIONS(7976), 1, anon_sym_class, - [167345] = 3, + [167393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4536), 1, - sym_member_declarations, - [167355] = 3, + ACTIONS(7978), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [167401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(5777), 1, - sym_capability_list, - [167365] = 3, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_member_declarations, + [167411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, + ACTIONS(7980), 1, anon_sym_LPAREN, - STATE(6211), 1, + STATE(5968), 1, sym_parenthesized_expression, - [167375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1643), 1, - sym_member_declarations, - [167385] = 3, + [167421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1521), 1, - sym_member_declarations, - [167395] = 3, + ACTIONS(6686), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [167429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(7982), 1, sym_identifier, - ACTIONS(8000), 1, + ACTIONS(7984), 1, anon_sym_class, - [167405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4485), 1, - sym_member_declarations, - [167415] = 3, + [167439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(988), 1, + STATE(1915), 1, sym_compound_statement, - [167425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8002), 1, - sym_identifier, - ACTIONS(8004), 1, - anon_sym_class, - [167435] = 3, + [167449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4489), 1, + STATE(4501), 1, sym_member_declarations, - [167445] = 3, + [167459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8006), 1, + ACTIONS(7986), 1, sym_identifier, - ACTIONS(8008), 1, + ACTIONS(7988), 1, anon_sym_class, - [167455] = 3, + [167469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7980), 1, anon_sym_LPAREN, - STATE(184), 1, + STATE(6090), 1, sym_parenthesized_expression, - [167465] = 3, + [167479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8010), 1, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4502), 1, + sym_member_declarations, + [167489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7990), 1, sym_identifier, - ACTIONS(8012), 1, + ACTIONS(7992), 1, anon_sym_class, - [167475] = 3, + [167499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(1903), 1, + STATE(1992), 1, sym_compound_statement, - [167485] = 3, + [167509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1607), 1, - sym_member_declarations, - [167495] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5696), 1, + sym_capability_list, + [167519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(1518), 1, anon_sym_LBRACE, - STATE(4600), 1, - sym_member_declarations, - [167505] = 3, + STATE(2663), 1, + sym_compound_statement, + [167529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8014), 1, - anon_sym_LBRACE, - ACTIONS(8016), 1, - anon_sym_as, - [167515] = 3, + ACTIONS(7994), 1, + sym_identifier, + ACTIONS(7996), 1, + anon_sym_class, + [167539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4527), 1, + STATE(1651), 1, sym_member_declarations, - [167525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_compound_statement, - [167535] = 3, + [167549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(4511), 1, sym_member_declarations, - [167545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(1370), 1, - sym_compound_statement, - [167555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7838), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [167563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5748), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [167571] = 3, + [167559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(172), 1, + STATE(184), 1, sym_parenthesized_expression, - [167581] = 3, + [167569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(64), 1, + STATE(162), 1, sym_parenthesized_expression, - [167591] = 2, + [167579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6259), 2, + ACTIONS(5562), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [167599] = 3, + STATE(1644), 1, + sym_member_declarations, + [167589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(183), 1, - sym_parenthesized_expression, - [167609] = 3, + ACTIONS(7998), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [167597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_LPAREN, - STATE(3757), 1, - sym_parameters, - [167619] = 3, + ACTIONS(1518), 1, + anon_sym_LBRACE, + STATE(2737), 1, + sym_compound_statement, + [167607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(8000), 1, anon_sym_LBRACE, - STATE(4605), 1, - sym_member_declarations, - [167629] = 3, + ACTIONS(8002), 1, + anon_sym_as, + [167617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4606), 1, - sym_member_declarations, - [167639] = 3, + ACTIONS(8004), 1, + sym_identifier, + ACTIONS(8006), 1, + anon_sym_class, + [167627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_BSLASH, - STATE(1808), 1, - aux_sym_qualified_identifier_repeat1, - [167649] = 3, + ACTIONS(8008), 1, + sym_identifier, + ACTIONS(8010), 1, + anon_sym_class, + [167637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(3787), 1, + sym_parameters, + [167647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4611), 1, + STATE(4517), 1, sym_member_declarations, - [167659] = 2, + [167657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6734), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8012), 1, + sym_identifier, + ACTIONS(8014), 1, + anon_sym_class, [167667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1520), 1, + STATE(4525), 1, sym_member_declarations, [167677] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(8016), 1, + sym_identifier, ACTIONS(8018), 1, - anon_sym_LBRACE, - ACTIONS(8020), 1, - anon_sym_as, + anon_sym_class, [167687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4614), 1, - sym_member_declarations, + ACTIONS(8020), 1, + sym_identifier, + ACTIONS(8022), 1, + anon_sym_class, [167697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1634), 1, + STATE(4685), 1, sym_member_declarations, [167707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(992), 1, - sym_member_declarations, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(183), 1, + sym_parenthesized_expression, [167717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(1479), 1, - sym_member_declarations, + STATE(1370), 1, + sym_compound_statement, [167727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1470), 1, - sym_member_declarations, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(174), 1, + sym_parenthesized_expression, [167737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(993), 1, + STATE(1053), 1, sym_member_declarations, [167747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8022), 1, - sym_variable, - ACTIONS(8024), 1, - anon_sym_RPAREN, - [167757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1081), 1, sym_member_declarations, - [167767] = 3, + [167757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(1518), 1, anon_sym_LBRACE, - STATE(1633), 1, - sym_member_declarations, - [167777] = 3, + STATE(2735), 1, + sym_compound_statement, + [167767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1632), 1, - sym_member_declarations, - [167787] = 3, + ACTIONS(6711), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [167775] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(321), 1, anon_sym_LBRACE, - STATE(987), 1, + STATE(1016), 1, sym_compound_statement, - [167797] = 3, + [167785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(8024), 1, anon_sym_LBRACE, - STATE(995), 1, - sym_member_declarations, - [167807] = 3, + ACTIONS(8026), 1, + anon_sym_as, + [167795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(996), 1, - sym_member_declarations, - [167817] = 3, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym_parenthesized_expression, + [167805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(998), 1, - sym_member_declarations, - [167827] = 3, + ACTIONS(2909), 1, + anon_sym_BSLASH, + STATE(1809), 1, + aux_sym_qualified_identifier_repeat1, + [167815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(163), 1, + STATE(177), 1, sym_parenthesized_expression, - [167837] = 3, + [167825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(1505), 1, - sym_member_declarations, - [167847] = 3, + STATE(1961), 1, + sym_compound_statement, + [167835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1507), 1, + STATE(4550), 1, sym_member_declarations, - [167857] = 3, + [167845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(182), 1, - sym_parenthesized_expression, - [167867] = 3, + ACTIONS(5798), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [167853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8026), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_as, - [167877] = 3, + STATE(1084), 1, + sym_member_declarations, + [167863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4704), 1, + STATE(920), 1, sym_member_declarations, - [167887] = 3, + [167873] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(8028), 1, + anon_sym_COLON, ACTIONS(8030), 1, + anon_sym_EQ_EQ_GT, + [167883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1370), 1, - sym_compound_statement, - [167897] = 3, + STATE(1085), 1, + sym_member_declarations, + [167893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4706), 1, + STATE(1335), 1, sym_member_declarations, - [167907] = 3, + [167903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(4715), 1, + STATE(1086), 1, sym_member_declarations, - [167917] = 3, + [167913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(4716), 1, + STATE(4555), 1, sym_member_declarations, - [167927] = 3, + [167923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8032), 1, + anon_sym_LBRACE, + STATE(881), 1, + sym_compound_statement, + [167933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4720), 1, + STATE(1363), 1, sym_member_declarations, - [167937] = 3, + [167943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4724), 1, + STATE(1735), 1, sym_member_declarations, - [167947] = 3, + [167953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1608), 1, + sym_member_declarations, + [167963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(169), 1, + STATE(182), 1, sym_parenthesized_expression, - [167957] = 3, + [167973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(6085), 2, anon_sym_LBRACE, - STATE(1626), 1, + anon_sym_SEMI, + [167981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8034), 1, + anon_sym_LBRACE, + ACTIONS(8036), 1, + anon_sym_as, + [167991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(1736), 1, sym_member_declarations, - [167967] = 3, + [168001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(321), 1, anon_sym_LBRACE, - STATE(1965), 1, + STATE(1103), 1, sym_compound_statement, - [167977] = 3, + [168011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(2771), 1, - sym_compound_statement, - [167987] = 3, + STATE(1046), 1, + sym_member_declarations, + [168021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1451), 1, + STATE(4556), 1, sym_member_declarations, - [167997] = 3, + [168031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1481), 1, + STATE(1116), 1, sym_member_declarations, - [168007] = 3, + [168041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1485), 1, + STATE(4557), 1, sym_member_declarations, - [168017] = 3, + [168051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1498), 1, + STATE(1581), 1, sym_member_declarations, - [168027] = 3, + [168061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8032), 1, - sym_identifier, - STATE(3508), 1, - sym_enumerator, - [168037] = 3, + ACTIONS(1117), 1, + anon_sym_BSLASH, + STATE(1865), 1, + aux_sym_qualified_identifier_repeat1, + [168071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(4492), 1, + STATE(1117), 1, sym_member_declarations, - [168047] = 3, + [168081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(922), 1, - sym_compound_statement, - [168057] = 3, + STATE(1118), 1, + sym_member_declarations, + [168091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1062), 1, + STATE(4571), 1, sym_member_declarations, - [168067] = 3, + [168101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(1366), 1, sym_member_declarations, - [168077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(165), 1, - sym_parenthesized_expression, - [168087] = 3, + [168111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4047), 1, - sym_compound_statement, - [168097] = 3, + STATE(1740), 1, + sym_member_declarations, + [168121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(149), 1, + STATE(169), 1, sym_parenthesized_expression, - [168107] = 3, + [168131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(1741), 1, sym_member_declarations, - [168117] = 3, + [168141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4740), 1, - sym_member_declarations, - [168127] = 3, + ACTIONS(8038), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [168149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1067), 1, + STATE(1534), 1, sym_member_declarations, - [168137] = 3, + [168159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(4743), 1, + STATE(1742), 1, sym_member_declarations, - [168147] = 3, + [168169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(4744), 1, + STATE(961), 1, sym_member_declarations, - [168157] = 3, + [168179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8036), 1, - anon_sym_class, - ACTIONS(8038), 1, - sym_xhp_modifier, - [168167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_member_declarations, - [168177] = 3, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_parenthesized_expression, + [168189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(4747), 1, + STATE(4042), 1, sym_compound_statement, - [168187] = 3, + [168199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(170), 1, - sym_parenthesized_expression, - [168197] = 2, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1105), 1, + sym_member_declarations, + [168209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6141), 2, + ACTIONS(5572), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [168205] = 3, + STATE(1107), 1, + sym_member_declarations, + [168219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1624), 1, + STATE(1336), 1, sym_member_declarations, - [168215] = 3, + [168229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1106), 1, + STATE(1744), 1, sym_member_declarations, - [168225] = 3, + [168239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, STATE(1109), 1, sym_member_declarations, - [168235] = 3, + [168249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1517), 1, - sym_member_declarations, - [168245] = 3, + ACTIONS(7789), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [168257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1110), 1, + STATE(1043), 1, sym_member_declarations, - [168255] = 3, + [168267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1748), 1, + STATE(1110), 1, sym_member_declarations, - [168265] = 3, + [168277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1746), 1, + STATE(1200), 1, sym_member_declarations, - [168275] = 3, + [168287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1112), 1, + STATE(1519), 1, sym_member_declarations, - [168285] = 3, + [168297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1113), 1, + STATE(1213), 1, sym_member_declarations, - [168295] = 3, + [168307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6535), 1, - anon_sym_COLON, - ACTIONS(6537), 1, - anon_sym_EQ_EQ_GT, - [168305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, - sym_variable, ACTIONS(8040), 1, - sym_identifier, - [168315] = 2, + anon_sym_class, + ACTIONS(8042), 1, + sym_xhp_modifier, + [168317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6865), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [168323] = 3, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1112), 1, + sym_member_declarations, + [168327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1115), 1, + STATE(1221), 1, sym_member_declarations, - [168333] = 3, + [168337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1119), 1, + STATE(1115), 1, sym_member_declarations, - [168343] = 3, + [168347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_LPAREN, - STATE(6001), 1, - sym_parenthesized_expression, - [168353] = 3, + ACTIONS(8044), 1, + anon_sym_LBRACE, + ACTIONS(8046), 1, + anon_sym_as, + [168357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - anon_sym_BSLASH, - STATE(1840), 1, - aux_sym_qualified_identifier_repeat1, - [168363] = 3, + ACTIONS(8048), 2, + sym_integer, + sym_string, + [168365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1617), 1, + STATE(921), 1, sym_member_declarations, - [168373] = 3, + [168375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1244), 1, - sym_member_declarations, - [168383] = 3, + ACTIONS(8050), 1, + sym_identifier, + ACTIONS(8052), 1, + sym_variable, + [168385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(5758), 1, - sym_capability_list, - [168393] = 3, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1242), 1, + sym_member_declarations, + [168395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(4814), 1, - sym_compound_statement, + ACTIONS(8054), 2, + anon_sym_COMMA, + anon_sym_SEMI, [168403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8042), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - ACTIONS(8044), 1, - anon_sym_as, + STATE(1331), 1, + sym_member_declarations, [168413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(164), 1, - sym_parenthesized_expression, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1332), 1, + sym_member_declarations, [168423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1130), 1, + STATE(1333), 1, sym_member_declarations, [168433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1616), 1, + STATE(1389), 1, sym_member_declarations, [168443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(4950), 1, - sym_capability_list, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(6257), 1, + sym_parenthesized_expression, [168453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8046), 1, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(166), 1, + sym_parenthesized_expression, + [168463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8056), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [168471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + sym_variable, + STATE(5457), 1, + sym_property_declarator, + [168481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8058), 1, anon_sym_LBRACE, - ACTIONS(8048), 1, - anon_sym_as, - [168463] = 3, + STATE(1370), 1, + sym_compound_statement, + [168491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8050), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - ACTIONS(8052), 1, - anon_sym_as, - [168473] = 3, + STATE(1337), 1, + sym_member_declarations, + [168501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7980), 1, anon_sym_LPAREN, - STATE(167), 1, + STATE(6231), 1, sym_parenthesized_expression, - [168483] = 3, + [168511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(165), 1, + sym_parenthesized_expression, + [168521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1744), 1, + STATE(1338), 1, sym_member_declarations, - [168493] = 3, + [168531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(1340), 1, sym_member_declarations, - [168503] = 3, + [168541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1134), 1, + STATE(1515), 1, sym_member_declarations, - [168513] = 3, + [168551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1741), 1, + STATE(1491), 1, sym_member_declarations, - [168523] = 3, + [168561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(8060), 1, anon_sym_LBRACE, - STATE(1135), 1, - sym_member_declarations, - [168533] = 3, + ACTIONS(8062), 1, + anon_sym_as, + [168571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(160), 1, - sym_parenthesized_expression, - [168543] = 3, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1610), 1, + sym_member_declarations, + [168581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1136), 1, + STATE(1341), 1, sym_member_declarations, - [168553] = 3, + [168591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1518), 1, + STATE(1126), 1, sym_member_declarations, - [168563] = 3, + [168601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1139), 1, + STATE(1127), 1, sym_member_declarations, - [168573] = 3, + [168611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(1518), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_compound_statement, + [168621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1141), 1, + STATE(4584), 1, sym_member_declarations, - [168583] = 3, + [168631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(5934), 1, + STATE(164), 1, sym_parenthesized_expression, - [168593] = 3, + [168641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1731), 1, + STATE(1130), 1, sym_member_declarations, - [168603] = 3, + [168651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8054), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - ACTIONS(8056), 1, - anon_sym_as, - [168613] = 3, + STATE(1350), 1, + sym_member_declarations, + [168661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(975), 1, + sym_member_declarations, + [168671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1193), 1, + STATE(4587), 1, sym_member_declarations, - [168623] = 3, + [168681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(1194), 1, sym_member_declarations, - [168633] = 3, + [168691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1706), 1, + STATE(1316), 1, sym_member_declarations, - [168643] = 3, + [168701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8064), 1, + anon_sym_LBRACE, + ACTIONS(8066), 1, + anon_sym_as, + [168711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(3759), 1, + sym_parameters, + [168721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1198), 1, + STATE(4589), 1, sym_member_declarations, - [168653] = 3, + [168731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1206), 1, + STATE(1354), 1, sym_member_declarations, - [168663] = 3, + [168741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1215), 1, + STATE(1131), 1, sym_member_declarations, - [168673] = 3, + [168751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8058), 1, + ACTIONS(807), 1, anon_sym_LBRACE, - STATE(895), 1, + STATE(992), 1, sym_compound_statement, - [168683] = 3, + [168761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_member_declarations, - [168693] = 3, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(55), 1, + sym_parenthesized_expression, + [168771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(158), 1, + sym_parenthesized_expression, + [168781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1225), 1, + STATE(1355), 1, sym_member_declarations, - [168703] = 3, + [168791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1157), 1, + STATE(4590), 1, sym_member_declarations, - [168713] = 3, + [168801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1160), 1, + STATE(4601), 1, sym_member_declarations, - [168723] = 3, + [168811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1164), 1, + STATE(1360), 1, sym_member_declarations, - [168733] = 2, + [168821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 2, + ACTIONS(5574), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [168741] = 2, + STATE(1361), 1, + sym_member_declarations, + [168831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8060), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [168749] = 3, + ACTIONS(7972), 1, + sym_variable, + ACTIONS(8068), 1, + anon_sym_RPAREN, + [168841] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1239), 1, + STATE(4602), 1, sym_member_declarations, - [168759] = 3, + [168851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7694), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [168859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(157), 1, + STATE(163), 1, sym_parenthesized_expression, - [168769] = 3, + [168869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_LPAREN, - STATE(3772), 1, - sym_parameters, - [168779] = 3, + ACTIONS(5572), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym_member_declarations, + [168879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1170), 1, + STATE(1135), 1, sym_member_declarations, - [168789] = 3, + [168889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1242), 1, + STATE(1138), 1, sym_member_declarations, - [168799] = 2, + [168899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8062), 2, + ACTIONS(6891), 2, anon_sym_COMMA, anon_sym_SEMI, - [168807] = 3, + [168907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(8070), 1, anon_sym_LBRACE, - STATE(1243), 1, - sym_member_declarations, - [168817] = 3, + STATE(865), 1, + sym_compound_statement, + [168917] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1278), 1, + STATE(4605), 1, sym_member_declarations, - [168827] = 3, + [168927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(889), 1, - sym_compound_statement, - [168837] = 2, + STATE(1225), 1, + sym_member_declarations, + [168937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7698), 2, - anon_sym_COMMA, + ACTIONS(8072), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [168845] = 3, + [168945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1939), 1, - sym_compound_statement, - [168855] = 3, + STATE(1241), 1, + sym_member_declarations, + [168955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6529), 1, + anon_sym_COLON, + ACTIONS(6531), 1, + anon_sym_EQ_EQ_GT, + [168965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(2646), 1, - sym_compound_statement, - [168865] = 3, + STATE(1249), 1, + sym_member_declarations, + [168975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, STATE(168), 1, sym_parenthesized_expression, - [168875] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8066), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [168883] = 3, + [168985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1027), 1, - sym_member_declarations, - [168893] = 3, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(5844), 1, + sym_parenthesized_expression, + [168995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(5853), 1, + STATE(171), 1, sym_parenthesized_expression, - [168903] = 3, + [169005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1189), 1, + STATE(1298), 1, sym_member_declarations, - [168913] = 3, + [169015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1028), 1, - sym_member_declarations, - [168923] = 3, + ACTIONS(6494), 1, + anon_sym_COLON, + ACTIONS(6496), 1, + anon_sym_EQ_EQ_GT, + [169025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1029), 1, - sym_member_declarations, - [168933] = 3, + ACTIONS(2728), 1, + sym_variable, + STATE(4719), 1, + sym_property_declarator, + [169035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(171), 1, - sym_parenthesized_expression, - [168943] = 3, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(1353), 1, + sym_member_declarations, + [169045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1341), 1, + STATE(1008), 1, sym_member_declarations, - [168953] = 3, + [169055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(130), 1, + STATE(159), 1, sym_parenthesized_expression, - [168963] = 3, + [169065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(4100), 1, + STATE(4089), 1, sym_compound_statement, - [168973] = 3, + [169075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1258), 1, + STATE(993), 1, sym_member_declarations, - [168983] = 3, + [169085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1259), 1, + STATE(1195), 1, sym_member_declarations, - [168993] = 3, + [169095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(8074), 1, anon_sym_LBRACE, - STATE(1031), 1, - sym_member_declarations, - [169003] = 3, + STATE(1408), 1, + sym_compound_statement, + [169105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, - anon_sym_LBRACE, - STATE(2674), 1, - sym_compound_statement, - [169013] = 3, + ACTIONS(8076), 1, + sym_identifier, + STATE(3508), 1, + sym_enumerator, + [169115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1261), 1, + STATE(930), 1, sym_member_declarations, - [169023] = 3, + [169125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1384), 1, + STATE(1394), 1, sym_member_declarations, - [169033] = 3, + [169135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1034), 1, - sym_member_declarations, - [169043] = 3, + ACTIONS(8078), 1, + sym_identifier, + STATE(3516), 1, + sym_enumerator, + [169145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1262), 1, - sym_member_declarations, - [169053] = 3, + ACTIONS(2736), 1, + anon_sym_BSLASH, + STATE(3793), 1, + aux_sym_qualified_identifier_repeat1, + [169155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1705), 1, - sym_member_declarations, - [169063] = 3, + ACTIONS(6916), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1263), 1, + STATE(1433), 1, sym_member_declarations, - [169073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8068), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [169081] = 3, + [169173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1267), 1, + STATE(1197), 1, sym_member_declarations, - [169091] = 3, + [169183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1038), 1, + STATE(1448), 1, sym_member_declarations, - [169101] = 2, + [169193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 2, - anon_sym_COMMA, - anon_sym_GT, - [169109] = 3, + ACTIONS(5574), 1, + anon_sym_LBRACE, + STATE(995), 1, + sym_member_declarations, + [169203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1703), 1, + STATE(1199), 1, sym_member_declarations, - [169119] = 3, + [169213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1658), 1, + STATE(1432), 1, sym_member_declarations, - [169129] = 3, + [169223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1650), 1, + STATE(965), 1, sym_member_declarations, - [169139] = 3, + [169233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1649), 1, + STATE(1619), 1, sym_member_declarations, - [169149] = 3, + [169243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 1, + ACTIONS(3715), 1, anon_sym_LPAREN, - STATE(1912), 1, + STATE(1991), 1, sym_arguments, - [169159] = 3, + [169253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(3779), 1, + STATE(3790), 1, sym_parameters, - [169169] = 3, + [169263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(967), 1, + sym_member_declarations, + [169273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1644), 1, + STATE(1449), 1, sym_member_declarations, - [169179] = 3, + [169283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(980), 1, + STATE(1028), 1, sym_member_declarations, - [169189] = 3, + [169293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(5574), 1, anon_sym_LBRACE, - STATE(1012), 1, + STATE(1051), 1, sym_member_declarations, - [169199] = 2, + [169303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7622), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [169207] = 3, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(4068), 1, + sym_compound_statement, + [169313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, + ACTIONS(7980), 1, anon_sym_LPAREN, - STATE(6291), 1, + STATE(5883), 1, sym_parenthesized_expression, - [169217] = 3, + [169323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8080), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [169331] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, anon_sym_LBRACE, - STATE(841), 1, + STATE(868), 1, sym_compound_statement, - [169227] = 3, + [169341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(105), 1, + STATE(117), 1, sym_parenthesized_expression, - [169237] = 2, + [169351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [169245] = 3, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(1450), 1, + sym_member_declarations, + [169361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(4151), 1, + STATE(1446), 1, sym_compound_statement, - [169255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3760), 1, - anon_sym_BSLASH, - STATE(2215), 1, - aux_sym_qualified_identifier_repeat1, - [169265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8070), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [169273] = 3, + [169371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1275), 1, + STATE(1518), 1, sym_member_declarations, - [169283] = 3, + [169381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 1, + ACTIONS(6523), 1, anon_sym_as, - ACTIONS(6546), 1, + ACTIONS(6525), 1, anon_sym_EQ, - [169293] = 3, + [169391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + anon_sym_BSLASH, + STATE(2197), 1, + aux_sym_qualified_identifier_repeat1, + [169401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1404), 1, sym_member_declarations, - [169303] = 3, + [169411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1276), 1, + STATE(1201), 1, sym_member_declarations, - [169313] = 3, + [169421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8072), 1, + ACTIONS(8082), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(8084), 1, anon_sym_as, - [169323] = 3, + [169431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1598), 1, - sym_compound_statement, - [169333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7601), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [169341] = 3, + STATE(1454), 1, + sym_member_declarations, + [169441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1279), 1, + STATE(1202), 1, sym_member_declarations, - [169351] = 3, + [169451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1281), 1, + STATE(1572), 1, sym_member_declarations, - [169361] = 3, + [169461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(7588), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1282), 1, + STATE(1420), 1, sym_member_declarations, - [169371] = 3, + [169479] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(3777), 1, + STATE(3768), 1, sym_parameters, - [169381] = 3, + [169489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(128), 1, + STATE(130), 1, sym_parenthesized_expression, - [169391] = 3, + [169499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1285), 1, + STATE(1560), 1, sym_member_declarations, - [169401] = 3, + [169509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1167), 1, + STATE(1203), 1, sym_member_declarations, - [169411] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8076), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [169419] = 2, + [169519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8078), 2, + ACTIONS(8086), 2, sym_xhp_identifier, sym_xhp_class_identifier, - [169427] = 3, + [169527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(1518), 1, anon_sym_LBRACE, - STATE(1169), 1, - sym_member_declarations, - [169437] = 3, + STATE(2636), 1, + sym_compound_statement, + [169537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + sym_variable, + STATE(5155), 1, + sym_property_declarator, + [169547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(2688), 1, - sym_compound_statement, - [169447] = 3, + STATE(973), 1, + sym_member_declarations, + [169557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8080), 1, + ACTIONS(8088), 1, anon_sym_LBRACE, - ACTIONS(8082), 1, + ACTIONS(8090), 1, anon_sym_as, - [169457] = 3, + [169567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1173), 1, + STATE(1562), 1, sym_member_declarations, - [169467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8084), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [169475] = 3, + [169577] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, anon_sym_LBRACE, - STATE(891), 1, + STATE(874), 1, sym_compound_statement, - [169485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7005), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [169493] = 2, + [169587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8086), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [169501] = 3, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(1529), 1, + sym_member_declarations, + [169597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1176), 1, + STATE(871), 1, sym_member_declarations, - [169511] = 3, + [169607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(742), 1, + STATE(870), 1, sym_member_declarations, - [169521] = 2, + [169617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 2, - sym_xhp_identifier, - sym_xhp_class_identifier, - [169529] = 3, + ACTIONS(8092), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [169625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_member_declarations, - [169539] = 3, + ACTIONS(8094), 2, + sym_xhp_identifier, + sym_xhp_class_identifier, + [169633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(8096), 1, anon_sym_as, - ACTIONS(8092), 1, + ACTIONS(8098), 1, anon_sym_EQ, - [169549] = 2, + [169643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 2, - sym_identifier, - anon_sym_SEMI, - [169557] = 3, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_member_declarations, + [169653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8094), 1, + ACTIONS(8100), 1, anon_sym_class, - ACTIONS(8096), 1, + ACTIONS(8102), 1, sym_xhp_modifier, - [169567] = 3, + [169663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 1, + ACTIONS(6342), 1, anon_sym_as, - ACTIONS(6474), 1, + ACTIONS(6344), 1, anon_sym_EQ, - [169577] = 3, + [169673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(6245), 1, + anon_sym_class, + ACTIONS(6249), 1, + sym_xhp_modifier, + [169683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1178), 1, + STATE(1372), 1, sym_member_declarations, - [169587] = 3, + [169693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(4057), 1, + STATE(1553), 1, + sym_member_declarations, + [169703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(4051), 1, sym_compound_statement, - [169597] = 3, + [169713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(159), 1, + STATE(161), 1, sym_parenthesized_expression, - [169607] = 3, + [169723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, - sym_variable, - STATE(5109), 1, - sym_property_declarator, - [169617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6069), 1, - anon_sym_class, - ACTIONS(6073), 1, - sym_xhp_modifier, - [169627] = 2, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(5890), 1, + sym_parenthesized_expression, + [169733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7032), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [169635] = 3, + ACTIONS(5314), 1, + anon_sym_LPAREN, + STATE(3784), 1, + sym_parameters, + [169743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_LPAREN, - STATE(5897), 1, - sym_parenthesized_expression, - [169645] = 3, + ACTIONS(8104), 1, + anon_sym_COLON, + ACTIONS(8106), 1, + anon_sym_EQ_EQ_GT, + [169753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1344), 1, + STATE(1552), 1, sym_member_declarations, - [169655] = 3, + [169763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(846), 1, sym_member_declarations, - [169665] = 3, + [169773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(845), 1, sym_member_declarations, - [169675] = 3, + [169783] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1348), 1, + STATE(4704), 1, sym_member_declarations, - [169685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(6063), 1, - sym_capability_list, - [169695] = 3, + [169793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1183), 1, + STATE(844), 1, sym_member_declarations, - [169705] = 3, + [169803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(1185), 1, - sym_member_declarations, - [169715] = 3, + STATE(1477), 1, + sym_compound_statement, + [169813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(792), 1, + STATE(1436), 1, sym_member_declarations, - [169725] = 3, + [169823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1349), 1, + STATE(1377), 1, sym_member_declarations, - [169735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8098), 1, - anon_sym_COLON, - ACTIONS(8100), 1, - anon_sym_EQ_EQ_GT, - [169745] = 3, + [169833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(738), 1, + STATE(4706), 1, sym_member_declarations, - [169755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8102), 1, - anon_sym_as, - ACTIONS(8104), 1, - anon_sym_EQ, - [169765] = 3, + [169843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1463), 1, + STATE(1232), 1, sym_member_declarations, - [169775] = 3, + [169853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1455), 1, + STATE(1378), 1, sym_member_declarations, - [169785] = 3, + [169863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(124), 1, - sym_parenthesized_expression, - [169795] = 3, + ACTIONS(8108), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(1518), 1, anon_sym_LBRACE, - STATE(4050), 1, + STATE(2748), 1, sym_compound_statement, - [169805] = 3, + [169881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5802), 2, anon_sym_LBRACE, - STATE(1350), 1, + anon_sym_SEMI, + [169889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_member_declarations, - [169815] = 3, + [169899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8106), 1, - anon_sym_class, - ACTIONS(8108), 1, - sym_xhp_modifier, - [169825] = 2, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(114), 1, + sym_parenthesized_expression, + [169909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 2, + ACTIONS(877), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [169833] = 3, + STATE(4049), 1, + sym_compound_statement, + [169919] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(8110), 1, - anon_sym_SEMI, + anon_sym_as, ACTIONS(8112), 1, anon_sym_EQ, - [169843] = 3, + [169929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(741), 1, + STATE(1379), 1, sym_member_declarations, - [169853] = 3, + [169939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, - anon_sym_as, - ACTIONS(6640), 1, - anon_sym_EQ, - [169863] = 3, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(843), 1, + sym_member_declarations, + [169949] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(8052), 1, + sym_variable, ACTIONS(8114), 1, + sym_identifier, + [169959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5125), 2, + sym_identifier, anon_sym_SEMI, - ACTIONS(8116), 1, - anon_sym_EQ, - [169873] = 3, + [169967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6023), 1, + ACTIONS(8116), 1, + sym_identifier, + ACTIONS(8118), 1, anon_sym_class, - ACTIONS(6027), 1, - sym_xhp_modifier, - [169883] = 3, + [169977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(6032), 1, - sym_capability_list, - [169893] = 3, + ACTIONS(8120), 1, + anon_sym_class, + ACTIONS(8122), 1, + sym_xhp_modifier, + [169987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(750), 1, + STATE(1274), 1, sym_member_declarations, - [169903] = 3, + [169997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_LPAREN, - STATE(6008), 1, - sym_parenthesized_expression, - [169913] = 3, + ACTIONS(8124), 1, + sym_identifier, + ACTIONS(8126), 1, + sym_variable, + [170007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_member_declarations, - [169923] = 3, + ACTIONS(7158), 2, + anon_sym_COMMA, + anon_sym_GT, + [170015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5626), 1, + sym_capability_list, + [170025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6364), 1, + anon_sym_as, + ACTIONS(6366), 1, + anon_sym_EQ, + [170035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(801), 1, - sym_member_declarations, - [169933] = 3, + STATE(1955), 1, + sym_compound_statement, + [170045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1438), 1, + STATE(1233), 1, sym_member_declarations, - [169943] = 3, + [170055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8118), 1, - sym_identifier, - ACTIONS(8120), 1, + ACTIONS(6067), 1, anon_sym_class, - [169953] = 3, + ACTIONS(6071), 1, + sym_xhp_modifier, + [170065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(1925), 1, - sym_compound_statement, - [169963] = 2, + ACTIONS(5223), 1, + anon_sym_EQ, + ACTIONS(6665), 1, + anon_sym_LPAREN, + [170075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8122), 2, + ACTIONS(5562), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [169971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7517), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [169979] = 3, + STATE(1480), 1, + sym_member_declarations, + [170085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1603), 1, + STATE(1381), 1, sym_member_declarations, - [169989] = 3, + [170095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8124), 1, - anon_sym_SEMI, - ACTIONS(8126), 1, - anon_sym_EQ, - [169999] = 3, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(6017), 1, + sym_parenthesized_expression, + [170105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8128), 1, - anon_sym_as, - ACTIONS(8130), 1, - anon_sym_EQ, - [170009] = 3, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4823), 1, + sym_member_declarations, + [170115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5572), 1, anon_sym_LBRACE, - STATE(1440), 1, + STATE(1234), 1, sym_member_declarations, - [170019] = 3, + [170125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_LPAREN, - STATE(6293), 1, - sym_parenthesized_expression, - [170029] = 3, + ACTIONS(7506), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [170133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 1, - anon_sym_SEMI, - ACTIONS(8134), 1, - anon_sym_EQ, - [170039] = 3, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(6280), 1, + sym_parenthesized_expression, + [170143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(796), 1, + STATE(839), 1, sym_member_declarations, - [170049] = 3, + [170153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(6482), 1, + anon_sym_COLON, + ACTIONS(6484), 1, + anon_sym_EQ_EQ_GT, + [170163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7954), 1, anon_sym_LPAREN, STATE(116), 1, sym_parenthesized_expression, - [170059] = 3, + [170173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1444), 1, - sym_member_declarations, - [170069] = 3, + ACTIONS(5097), 1, + anon_sym_BSLASH, + STATE(3450), 1, + aux_sym_qualified_identifier_repeat1, + [170183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(6012), 1, - sym_capability_list, - [170079] = 3, + ACTIONS(7087), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [170191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - STATE(5567), 1, + STATE(6001), 1, sym_capability_list, - [170089] = 3, + [170201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 1, - anon_sym_COLON, - ACTIONS(6427), 1, - anon_sym_EQ_EQ_GT, - [170099] = 3, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(2762), 1, + sym_arguments, + [170211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1446), 1, - sym_member_declarations, - [170109] = 3, + ACTIONS(8128), 1, + anon_sym_as, + ACTIONS(8130), 1, + anon_sym_EQ, + [170221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8136), 1, - anon_sym_class, - ACTIONS(8138), 1, - sym_xhp_modifier, - [170119] = 3, + ACTIONS(3406), 1, + anon_sym_LPAREN, + STATE(1820), 1, + sym_arguments, + [170231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(6007), 1, - sym_capability_list, - [170129] = 3, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(840), 1, + sym_member_declarations, + [170241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, + ACTIONS(8132), 1, anon_sym_LBRACE, - ACTIONS(8142), 1, + ACTIONS(8134), 1, anon_sym_as, - [170139] = 3, + [170251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 1, - anon_sym_BSLASH, - STATE(3435), 1, - aux_sym_qualified_identifier_repeat1, - [170149] = 3, + ACTIONS(5598), 1, + anon_sym_LBRACE, + STATE(4549), 1, + sym_member_declarations, + [170261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_LPAREN, - STATE(1843), 1, - sym_arguments, - [170159] = 2, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_member_declarations, + [170271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7183), 2, - sym_integer, - sym_string, - [170167] = 3, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym_member_declarations, + [170281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1026), 1, + STATE(1382), 1, sym_member_declarations, - [170177] = 3, + [170291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8144), 1, + ACTIONS(8136), 1, sym_identifier, - STATE(3514), 1, - sym_enumerator, - [170187] = 3, + ACTIONS(8138), 1, + anon_sym_class, + [170301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8146), 1, - sym_identifier, - ACTIONS(8148), 1, - anon_sym_class, - [170197] = 3, + ACTIONS(6376), 1, + anon_sym_as, + ACTIONS(6378), 1, + anon_sym_EQ, + [170311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(114), 1, + STATE(113), 1, sym_parenthesized_expression, - [170207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8150), 1, - anon_sym_extends, - ACTIONS(8152), 1, - anon_sym_implements, - [170217] = 2, + [170321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 2, - anon_sym_COMMA, + ACTIONS(8140), 1, anon_sym_SEMI, - [170225] = 3, + ACTIONS(8142), 1, + anon_sym_EQ, + [170331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6665), 1, - anon_sym_as, - ACTIONS(6667), 1, - anon_sym_EQ, - [170235] = 3, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(1487), 1, + sym_member_declarations, + [170341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8154), 1, - anon_sym_SEMI, - ACTIONS(8156), 1, - anon_sym_EQ, - [170245] = 3, + ACTIONS(6033), 1, + anon_sym_class, + ACTIONS(6037), 1, + sym_xhp_modifier, + [170351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(8052), 2, + sym_identifier, sym_variable, - STATE(4486), 1, - sym_property_declarator, - [170255] = 3, + [170359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1195), 1, - sym_member_declarations, - [170265] = 3, + ACTIONS(8144), 1, + anon_sym_extends, + ACTIONS(8146), 1, + anon_sym_implements, + [170369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(6471), 1, + anon_sym_COLON, + ACTIONS(6473), 1, + anon_sym_EQ_EQ_GT, + [170379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8148), 1, anon_sym_LBRACE, - ACTIONS(8160), 1, + ACTIONS(8150), 1, anon_sym_as, - [170275] = 3, + [170389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1200), 1, + STATE(1271), 1, sym_member_declarations, - [170285] = 3, + [170399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1202), 1, + STATE(1496), 1, sym_member_declarations, - [170295] = 3, + [170409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5993), 1, - anon_sym_class, - ACTIONS(5999), 1, - sym_xhp_modifier, - [170305] = 2, + ACTIONS(3796), 1, + anon_sym_LPAREN, + STATE(2386), 1, + sym_arguments, + [170419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 2, - sym_identifier, - sym_variable, - [170313] = 3, + ACTIONS(8152), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [170427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1207), 1, + STATE(1612), 1, sym_member_declarations, - [170323] = 3, + [170437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8162), 1, - sym_identifier, - ACTIONS(8164), 1, - sym_variable, - [170333] = 3, + ACTIONS(6011), 1, + anon_sym_class, + ACTIONS(6015), 1, + sym_xhp_modifier, + [170447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_LPAREN, - STATE(3794), 1, - sym_parameters, - [170343] = 3, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(1950), 1, + sym_compound_statement, + [170457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6290), 1, + ACTIONS(5121), 2, anon_sym_class, - ACTIONS(6294), 1, sym_xhp_modifier, - [170353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8166), 1, - anon_sym_COLON, - ACTIONS(8168), 1, - anon_sym_EQ_EQ_GT, - [170363] = 3, + [170465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, + ACTIONS(7980), 1, anon_sym_LPAREN, - STATE(6149), 1, + STATE(6142), 1, sym_parenthesized_expression, - [170373] = 3, + [170475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1376), 1, + STATE(1547), 1, sym_member_declarations, - [170383] = 3, + [170485] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1377), 1, - sym_member_declarations, - [170393] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8170), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [170401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1429), 1, + STATE(4713), 1, sym_member_declarations, - [170411] = 3, + [170495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(1468), 1, sym_member_declarations, - [170421] = 2, + [170505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 2, - anon_sym_class, - sym_xhp_modifier, - [170429] = 3, + ACTIONS(2728), 1, + sym_variable, + STATE(4611), 1, + sym_property_declarator, + [170515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1210), 1, + STATE(781), 1, sym_member_declarations, - [170439] = 3, + [170525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(8154), 2, anon_sym_LBRACE, - STATE(852), 1, - sym_member_declarations, - [170449] = 3, + anon_sym_SEMI, + [170533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - STATE(1599), 1, + STATE(1503), 1, sym_member_declarations, - [170459] = 3, + [170543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(851), 1, + STATE(775), 1, sym_member_declarations, - [170469] = 3, + [170553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1571), 1, - sym_member_declarations, - [170479] = 3, + ACTIONS(8156), 1, + anon_sym_SEMI, + ACTIONS(8158), 1, + anon_sym_EQ, + [170563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(1565), 1, - sym_member_declarations, - [170489] = 3, + STATE(1971), 1, + sym_compound_statement, + [170573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1702), 1, + STATE(822), 1, sym_member_declarations, - [170499] = 3, + [170583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8172), 1, - anon_sym_as, - ACTIONS(8174), 1, - anon_sym_EQ, - [170509] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5973), 1, + sym_capability_list, + [170593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(2774), 1, - sym_compound_statement, - [170519] = 3, + STATE(4715), 1, + sym_member_declarations, + [170603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1211), 1, + STATE(4716), 1, sym_member_declarations, - [170529] = 3, + [170613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1433), 1, + STATE(726), 1, sym_member_declarations, - [170539] = 3, + [170623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 1, + ACTIONS(8160), 1, + anon_sym_as, + ACTIONS(8162), 1, + anon_sym_EQ, + [170633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, anon_sym_BSLASH, - STATE(3612), 1, + STATE(3615), 1, aux_sym_qualified_identifier_repeat1, - [170549] = 3, + [170643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(142), 1, + STATE(141), 1, sym_parenthesized_expression, - [170559] = 2, + [170653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 2, - sym_identifier, - anon_sym_RBRACE, - [170567] = 3, + ACTIONS(8164), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [170661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(727), 1, sym_member_declarations, - [170577] = 3, + [170671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8176), 1, - anon_sym_class, - ACTIONS(8178), 1, - sym_xhp_modifier, - [170587] = 3, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1603), 1, + sym_member_declarations, + [170681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8180), 1, - anon_sym_SEMI, - ACTIONS(8182), 1, - anon_sym_EQ, - [170597] = 3, + ACTIONS(8166), 1, + anon_sym_class, + ACTIONS(8168), 1, + sym_xhp_modifier, + [170691] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_BSLASH, - STATE(1772), 1, + STATE(1774), 1, aux_sym_qualified_identifier_repeat1, - [170607] = 3, + [170701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(111), 1, - sym_parenthesized_expression, - [170617] = 3, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym_member_declarations, + [170711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(4159), 1, - sym_compound_statement, - [170627] = 3, + ACTIONS(8170), 1, + anon_sym_SEMI, + ACTIONS(8172), 1, + anon_sym_EQ, + [170721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_compound_statement, - [170637] = 3, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym_parenthesized_expression, + [170731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8184), 1, - anon_sym_SEMI, - ACTIONS(8186), 1, - anon_sym_EQ, - [170647] = 3, + ACTIONS(877), 1, + anon_sym_LBRACE, + STATE(4117), 1, + sym_compound_statement, + [170741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6435), 1, + ACTIONS(6390), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6392), 1, anon_sym_EQ, - [170657] = 2, + [170751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 2, - anon_sym_COMMA, + ACTIONS(8174), 1, anon_sym_SEMI, - [170665] = 3, + ACTIONS(8176), 1, + anon_sym_EQ, + [170761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6221), 1, + ACTIONS(6239), 1, anon_sym_class, - ACTIONS(6225), 1, + ACTIONS(6243), 1, sym_xhp_modifier, - [170675] = 3, + [170771] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5314), 1, anon_sym_LPAREN, - STATE(3780), 1, + STATE(3796), 1, sym_parameters, - [170685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(844), 1, - sym_member_declarations, - [170695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(840), 1, - sym_member_declarations, - [170705] = 2, + [170781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7177), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [170713] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5948), 1, + sym_capability_list, + [170791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5736), 1, anon_sym_LBRACK, - STATE(5959), 1, + STATE(5931), 1, sym_capability_list, - [170723] = 3, + [170801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, + ACTIONS(7980), 1, anon_sym_LPAREN, - STATE(6266), 1, + STATE(6267), 1, sym_parenthesized_expression, - [170733] = 3, + [170811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(763), 1, + STATE(729), 1, sym_member_declarations, - [170743] = 3, + [170821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(755), 1, + STATE(1615), 1, sym_member_declarations, - [170753] = 3, + [170831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(795), 1, + sym_member_declarations, + [170841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(730), 1, + sym_member_declarations, + [170851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8052), 1, sym_variable, - ACTIONS(8190), 1, + ACTIONS(8178), 1, sym_identifier, - [170763] = 3, + [170861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(5605), 1, - sym_capability_list, - [170773] = 3, + ACTIONS(8180), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [170869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - STATE(1724), 1, - sym_member_declarations, - [170783] = 3, + ACTIONS(8184), 1, + anon_sym_as, + [170879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 1, - anon_sym_COLON, - ACTIONS(6598), 1, - anon_sym_EQ_EQ_GT, - [170793] = 3, + ACTIONS(7265), 2, + sym_integer, + sym_string, + [170887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_LBRACE, - STATE(1573), 1, - sym_member_declarations, - [170803] = 3, + ACTIONS(977), 1, + anon_sym_BSLASH, + STATE(1856), 1, + aux_sym_qualified_identifier_repeat1, + [170897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(6004), 1, - sym_capability_list, - [170813] = 3, + ACTIONS(8186), 1, + anon_sym_SEMI, + ACTIONS(8188), 1, + anon_sym_EQ, + [170907] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(5562), 1, + anon_sym_LBRACE, + STATE(1520), 1, + sym_member_declarations, + [170917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8190), 1, + anon_sym_as, ACTIONS(8192), 1, - anon_sym_SEMI, - ACTIONS(8194), 1, anon_sym_EQ, - [170823] = 3, + [170927] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(8194), 1, + anon_sym_COLON, ACTIONS(8196), 1, - sym_identifier, - ACTIONS(8198), 1, - anon_sym_SEMI, - [170833] = 3, + anon_sym_EQ_EQ_GT, + [170937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8200), 1, - anon_sym_COLON, - ACTIONS(8202), 1, - anon_sym_EQ_EQ_GT, - [170843] = 3, + ACTIONS(8198), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [170945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_LPAREN, - STATE(6048), 1, - sym_parenthesized_expression, - [170853] = 3, + ACTIONS(8126), 2, + sym_identifier, + sym_variable, + [170953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, - anon_sym_LBRACE, - STATE(1732), 1, - sym_member_declarations, - [170863] = 3, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(6050), 1, + sym_parenthesized_expression, + [170963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8204), 1, + ACTIONS(8200), 1, anon_sym_as, - ACTIONS(8206), 1, + ACTIONS(8202), 1, anon_sym_EQ, - [170873] = 2, + [170973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 2, + ACTIONS(5796), 2, anon_sym_LBRACE, anon_sym_SEMI, - [170881] = 3, + [170981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1436), 1, + STATE(790), 1, sym_member_declarations, - [170891] = 3, + [170991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8210), 1, - anon_sym_as, - ACTIONS(8212), 1, - anon_sym_EQ, - [170901] = 3, + ACTIONS(6398), 1, + anon_sym_COLON, + ACTIONS(6400), 1, + anon_sym_EQ_EQ_GT, + [171001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(8204), 1, + anon_sym_class, + ACTIONS(8206), 1, + sym_xhp_modifier, + [171011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8208), 2, anon_sym_LBRACE, - STATE(731), 1, - sym_member_declarations, - [170911] = 2, + anon_sym_SEMI, + [171019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 2, + ACTIONS(8210), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [170919] = 3, + anon_sym_RBRACK, + [171027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1286), 1, + STATE(783), 1, sym_member_declarations, - [170929] = 2, + [171037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8214), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [170937] = 3, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_member_declarations, + [171047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8216), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(866), 1, - sym_compound_statement, - [170947] = 3, + STATE(1571), 1, + sym_member_declarations, + [171057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8218), 1, + ACTIONS(8212), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, + ACTIONS(8214), 1, anon_sym_as, - [170957] = 3, + [171067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(816), 1, - sym_member_declarations, - [170967] = 2, + ACTIONS(6402), 1, + anon_sym_as, + ACTIONS(6404), 1, + anon_sym_EQ, + [171077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8222), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [170975] = 2, + ACTIONS(8052), 1, + sym_variable, + ACTIONS(8216), 1, + sym_identifier, + [171087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [170983] = 3, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(112), 1, + sym_parenthesized_expression, + [171097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_member_declarations, - [170993] = 3, + ACTIONS(6406), 1, + anon_sym_COLON, + ACTIONS(6408), 1, + anon_sym_EQ_EQ_GT, + [171107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(1895), 1, + STATE(1691), 1, sym_compound_statement, - [171003] = 3, + [171117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1710), 1, + STATE(933), 1, sym_member_declarations, - [171013] = 3, + [171127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(110), 1, + STATE(107), 1, sym_parenthesized_expression, - [171023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6364), 1, - anon_sym_COLON, - ACTIONS(6366), 1, - anon_sym_EQ_EQ_GT, - [171033] = 3, + [171137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(6279), 1, anon_sym_class, - ACTIONS(8228), 1, + ACTIONS(6283), 1, sym_xhp_modifier, - [171043] = 3, + [171147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - anon_sym_LBRACE, - STATE(1269), 1, - sym_member_declarations, - [171053] = 3, + ACTIONS(8218), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [171155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1584), 1, + STATE(778), 1, sym_member_declarations, - [171063] = 3, + [171165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1271), 1, + STATE(1565), 1, sym_member_declarations, - [171073] = 3, + [171175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - STATE(1585), 1, - sym_member_declarations, - [171083] = 3, + STATE(4761), 1, + sym_compound_statement, + [171185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8230), 1, + ACTIONS(8220), 1, + anon_sym_SEMI, + ACTIONS(8222), 1, + anon_sym_EQ, + [171195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, anon_sym_LBRACE, - ACTIONS(8232), 1, + ACTIONS(8226), 1, anon_sym_as, - [171093] = 3, + [171205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(766), 1, + STATE(1614), 1, sym_member_declarations, - [171103] = 3, + [171215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(828), 1, + STATE(934), 1, sym_member_declarations, - [171113] = 3, + [171225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(772), 1, + STATE(769), 1, sym_member_declarations, - [171123] = 2, + [171235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8234), 2, - anon_sym_LBRACE, + ACTIONS(8228), 1, anon_sym_SEMI, - [171131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8236), 2, - sym_integer, - sym_string, - [171139] = 2, + ACTIONS(8230), 1, + anon_sym_EQ, + [171245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8238), 2, + ACTIONS(5598), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [171147] = 3, + STATE(4757), 1, + sym_member_declarations, + [171255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(770), 1, sym_member_declarations, - [171157] = 3, + [171265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(723), 1, - sym_member_declarations, - [171167] = 3, + ACTIONS(5304), 2, + sym_identifier, + anon_sym_RBRACE, + [171273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1519), 1, + STATE(739), 1, sym_member_declarations, - [171177] = 3, + [171283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6318), 1, - anon_sym_as, - ACTIONS(6320), 1, - anon_sym_EQ, - [171187] = 3, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(740), 1, + sym_member_declarations, + [171293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 1, - anon_sym_COLON, - ACTIONS(6348), 1, - anon_sym_EQ_EQ_GT, - [171197] = 3, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1239), 1, + sym_compound_statement, + [171303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6241), 1, - anon_sym_class, - ACTIONS(6245), 1, - sym_xhp_modifier, - [171207] = 3, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(6453), 1, + sym_parenthesized_expression, + [171313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1309), 1, + STATE(1545), 1, sym_member_declarations, - [171217] = 3, + [171323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1318), 1, + STATE(741), 1, sym_member_declarations, - [171227] = 3, + [171333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1714), 1, + STATE(743), 1, sym_member_declarations, - [171237] = 3, + [171343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1509), 1, + STATE(4756), 1, sym_member_declarations, - [171247] = 3, + [171353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(935), 1, sym_member_declarations, - [171257] = 3, + [171363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - STATE(1508), 1, + STATE(4755), 1, sym_member_declarations, - [171267] = 3, + [171373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - ACTIONS(8242), 1, - anon_sym_as, - [171277] = 3, + STATE(744), 1, + sym_member_declarations, + [171383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7254), 1, - anon_sym_RPAREN, - ACTIONS(8022), 1, - sym_variable, - [171287] = 3, + ACTIONS(8232), 1, + anon_sym_SEMI, + ACTIONS(8234), 1, + anon_sym_EQ, + [171393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(817), 1, + STATE(1544), 1, sym_member_declarations, - [171297] = 3, + [171403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(1375), 1, - sym_member_declarations, - [171307] = 2, + ACTIONS(8236), 1, + anon_sym_SEMI, + ACTIONS(8238), 1, + anon_sym_EQ, + [171413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8244), 2, - anon_sym_LBRACE, + ACTIONS(8240), 2, + anon_sym_COMMA, anon_sym_SEMI, - [171315] = 3, + [171421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - anon_sym_LPAREN, - STATE(6460), 1, - sym_parenthesized_expression, - [171325] = 3, + ACTIONS(8242), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [171429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1628), 1, - sym_compound_statement, - [171335] = 3, + STATE(1623), 1, + sym_member_declarations, + [171439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(1926), 1, - sym_compound_statement, - [171345] = 2, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5713), 1, + sym_capability_list, + [171449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8246), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [171353] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(4944), 1, + sym_capability_list, + [171459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5809), 1, + sym_capability_list, + [171469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(813), 1, + STATE(1620), 1, sym_member_declarations, - [171363] = 3, + [171479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_BSLASH, - STATE(3788), 1, - aux_sym_qualified_identifier_repeat1, - [171373] = 3, + ACTIONS(747), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_compound_statement, + [171489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(2755), 1, - sym_compound_statement, - [171383] = 3, + STATE(1626), 1, + sym_member_declarations, + [171499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 1, - anon_sym_EQ, - ACTIONS(6653), 1, - anon_sym_LPAREN, - [171393] = 3, + ACTIONS(7261), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [171507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(4896), 1, - sym_capability_list, - [171403] = 3, + ACTIONS(7954), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, + [171517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1345), 1, + STATE(1508), 1, sym_member_declarations, - [171413] = 3, + [171527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(724), 1, + STATE(1422), 1, sym_member_declarations, - [171423] = 3, + [171537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - sym_variable, - ACTIONS(8248), 1, - sym_identifier, - [171433] = 3, + ACTIONS(8244), 1, + anon_sym_COLON, + ACTIONS(8246), 1, + anon_sym_EQ_EQ_GT, + [171547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5592), 1, - anon_sym_LBRACE, - STATE(4524), 1, - sym_member_declarations, - [171443] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5876), 1, + sym_capability_list, + [171557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, + ACTIONS(807), 1, anon_sym_LBRACE, - STATE(1691), 1, + STATE(939), 1, sym_compound_statement, - [171453] = 3, + [171567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(1359), 1, + STATE(1509), 1, sym_member_declarations, - [171463] = 3, + [171577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - STATE(115), 1, + STATE(83), 1, sym_parenthesized_expression, - [171473] = 3, + [171587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1372), 1, + STATE(761), 1, sym_member_declarations, - [171483] = 3, + [171597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(5646), 1, - sym_capability_list, - [171493] = 3, + ACTIONS(8248), 1, + anon_sym_as, + ACTIONS(8250), 1, + anon_sym_EQ, + [171607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, - anon_sym_LBRACE, - STATE(810), 1, - sym_member_declarations, - [171503] = 3, + ACTIONS(6430), 1, + anon_sym_COLON, + ACTIONS(6432), 1, + anon_sym_EQ_EQ_GT, + [171617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(785), 1, + STATE(1628), 1, sym_member_declarations, - [171513] = 3, + [171627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(5908), 1, - sym_capability_list, - [171523] = 3, + ACTIONS(2736), 1, + anon_sym_BSLASH, + STATE(2220), 1, + aux_sym_qualified_identifier_repeat1, + [171637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5578), 1, anon_sym_LBRACE, - STATE(788), 1, + STATE(1425), 1, sym_member_declarations, - [171533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(56), 1, - sym_parenthesized_expression, - [171543] = 3, + [171647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(3989), 1, sym_variable, - ACTIONS(7310), 1, + ACTIONS(7295), 1, anon_sym_RPAREN, - [171553] = 3, + [171657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5897), 1, + sym_capability_list, + [171667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8250), 1, - anon_sym_COLON, ACTIONS(8252), 1, - anon_sym_EQ_EQ_GT, - [171563] = 3, + anon_sym_LBRACE, + STATE(793), 1, + sym_compound_statement, + [171677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, STATE(61), 1, sym_parenthesized_expression, - [171573] = 3, + [171687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, + ACTIONS(7980), 1, anon_sym_LPAREN, - STATE(6122), 1, + STATE(6172), 1, sym_parenthesized_expression, - [171583] = 3, + [171697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, - anon_sym_LPAREN, - STATE(2747), 1, - sym_arguments, - [171593] = 3, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(758), 1, + sym_member_declarations, + [171707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 1, + ACTIONS(5576), 1, anon_sym_LBRACE, - STATE(789), 1, + STATE(1588), 1, sym_member_declarations, - [171603] = 2, + [171717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8254), 2, + ACTIONS(5578), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [171611] = 2, + STATE(1314), 1, + sym_member_declarations, + [171727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8164), 2, - sym_identifier, - sym_variable, - [171619] = 3, + ACTIONS(8254), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [171735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8256), 1, + ACTIONS(6426), 1, anon_sym_as, - ACTIONS(8258), 1, + ACTIONS(6428), 1, anon_sym_EQ, - [171629] = 2, + [171745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8260), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [171637] = 3, + ACTIONS(5736), 1, + anon_sym_LBRACK, + STATE(5661), 1, + sym_capability_list, + [171755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 1, - anon_sym_COLON, - ACTIONS(6514), 1, - anon_sym_EQ_EQ_GT, - [171647] = 3, + ACTIONS(5578), 1, + anon_sym_LBRACE, + STATE(1419), 1, + sym_member_declarations, + [171765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5580), 1, anon_sym_LBRACE, - STATE(1721), 1, + STATE(757), 1, sym_member_declarations, - [171657] = 3, + [171775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 1, - anon_sym_COLON, - ACTIONS(6622), 1, - anon_sym_EQ_EQ_GT, - [171667] = 3, + ACTIONS(5580), 1, + anon_sym_LBRACE, + STATE(756), 1, + sym_member_declarations, + [171785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_LPAREN, - STATE(2261), 1, - sym_arguments, - [171677] = 3, + ACTIONS(8256), 1, + sym_identifier, + ACTIONS(8258), 1, + anon_sym_SEMI, + [171795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, - anon_sym_COLON, - ACTIONS(6470), 1, - anon_sym_EQ_EQ_GT, - [171687] = 3, + ACTIONS(6293), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [171803] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(8260), 1, + anon_sym_class, ACTIONS(8262), 1, - anon_sym_SEMI, - ACTIONS(8264), 1, - anon_sym_EQ, - [171697] = 3, + sym_xhp_modifier, + [171813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_as, - ACTIONS(6492), 1, - anon_sym_EQ, - [171707] = 3, + ACTIONS(5576), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_member_declarations, + [171823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_LPAREN, - STATE(62), 1, - sym_parenthesized_expression, - [171717] = 3, + ACTIONS(8264), 1, + anon_sym_SEMI, + ACTIONS(8266), 1, + anon_sym_EQ, + [171833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(977), 1, - anon_sym_BSLASH, - STATE(1810), 1, - aux_sym_qualified_identifier_repeat1, - [171727] = 3, + ACTIONS(6434), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [171841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8266), 1, - anon_sym_SEMI, - ACTIONS(8268), 1, - anon_sym_EQ, - [171737] = 3, + ACTIONS(6422), 1, + anon_sym_COLON, + ACTIONS(6424), 1, + anon_sym_EQ_EQ_GT, + [171851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, + ACTIONS(8268), 1, anon_sym_LBRACE, - STATE(1403), 1, + STATE(710), 1, sym_compound_statement, - [171747] = 3, + [171861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8270), 1, + ACTIONS(8270), 2, anon_sym_LBRACE, - STATE(712), 1, - sym_compound_statement, - [171757] = 3, + anon_sym_SEMI, + [171869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 1, + ACTIONS(6201), 1, anon_sym_class, - ACTIONS(6111), 1, + ACTIONS(6205), 1, sym_xhp_modifier, - [171767] = 2, + [171879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8272), 1, sym_variable, - [171774] = 2, + [171886] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8274), 1, sym_identifier, - [171781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6622), 1, - anon_sym_EQ_EQ_GT, - [171788] = 2, + [171893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8276), 1, - anon_sym_LBRACE, - [171795] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8022), 1, - sym_variable, - [171802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8278), 1, - sym_identifier, - [171809] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8280), 1, - anon_sym_RPAREN, - [171816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8282), 1, - sym_identifier, - [171823] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8284), 1, - anon_sym_while, - [171830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8286), 1, - sym_identifier, - [171837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6107), 1, - anon_sym_class, - [171844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6514), 1, - anon_sym_EQ_EQ_GT, - [171851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8288), 1, - anon_sym_SEMI, - [171858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8290), 1, - anon_sym_RPAREN, - [171865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7946), 1, - anon_sym_class, - [171872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8292), 1, - anon_sym_SEMI, - [171879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8294), 1, - anon_sym_EQ_EQ_GT, - [171886] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8296), 1, anon_sym_SEMI, - [171893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6470), 1, - anon_sym_EQ_EQ_GT, [171900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8298), 1, - anon_sym_LPAREN, + ACTIONS(8278), 1, + anon_sym_LBRACE, [171907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, - anon_sym_EQ, + ACTIONS(8280), 1, + anon_sym_LPAREN, [171914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - anon_sym_as2, + ACTIONS(5372), 1, + anon_sym_class, [171921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8304), 1, - anon_sym_SEMI, + ACTIONS(6446), 1, + anon_sym_EQ_EQ_GT, [171928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8306), 1, + ACTIONS(8282), 1, anon_sym_RPAREN, [171935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8308), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(7287), 1, + anon_sym_COLON, [171942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8284), 1, + anon_sym_SEMI, [171949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_class, + ACTIONS(8286), 1, + anon_sym_while, [171956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8310), 1, + ACTIONS(6201), 1, anon_sym_class, [171963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8312), 1, - anon_sym_RPAREN, + ACTIONS(6432), 1, + anon_sym_EQ_EQ_GT, [171970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8314), 1, - anon_sym_EQ, + ACTIONS(8258), 1, + anon_sym_SEMI, [171977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8316), 1, - anon_sym_LPAREN, + ACTIONS(8288), 1, + anon_sym_insteadof, [171984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8318), 1, - sym_variable, + ACTIONS(8260), 1, + anon_sym_class, [171991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8320), 1, - anon_sym_SEMI, + ACTIONS(8290), 1, + anon_sym_LPAREN, [171998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6573), 1, + ACTIONS(8292), 1, anon_sym_EQ_EQ_GT, [172005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8322), 1, - sym_identifier, + ACTIONS(8294), 1, + anon_sym_EQ_EQ_GT, [172012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8324), 1, + ACTIONS(6424), 1, anon_sym_EQ_EQ_GT, [172019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8326), 1, - anon_sym_RPAREN, + ACTIONS(8296), 1, + anon_sym_COLON, [172026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8328), 1, - anon_sym_if, + ACTIONS(8298), 1, + anon_sym_SEMI, [172033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8330), 1, - anon_sym_RPAREN, + ACTIONS(8300), 1, + anon_sym_EQ, [172040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8332), 1, - anon_sym_EQ, + ACTIONS(8302), 1, + anon_sym_as2, [172047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_RPAREN, + ACTIONS(8304), 1, + anon_sym_EQ_EQ_GT, [172054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8336), 1, - anon_sym_EQ, + ACTIONS(8306), 1, + anon_sym_LBRACE, [172061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 1, - sym__heredoc_end, + ACTIONS(8308), 1, + anon_sym_SEMI, [172068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_RPAREN, + ACTIONS(8310), 1, + anon_sym_class, [172075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8340), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8312), 1, + anon_sym_RPAREN, [172082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7266), 1, - anon_sym_COLON, + ACTIONS(8314), 1, + anon_sym_EQ, [172089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_SEMI, [172096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8344), 1, - sym_identifier, + ACTIONS(8318), 1, + sym_variable, [172103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8346), 1, + ACTIONS(8320), 1, anon_sym_SEMI, [172110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7264), 1, + ACTIONS(8322), 1, anon_sym_COLON, [172117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 1, - anon_sym_EQ, + ACTIONS(8324), 1, + anon_sym_SEMI, [172124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7260), 1, - anon_sym_COLON, + ACTIONS(8326), 1, + anon_sym_EQ_EQ_GT, [172131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7258), 1, - anon_sym_COLON, + ACTIONS(5223), 1, + anon_sym_EQ, [172138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8348), 1, - anon_sym_RPAREN, + ACTIONS(8328), 1, + anon_sym_if, [172145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7256), 1, - anon_sym_COLON, + ACTIONS(8330), 1, + anon_sym_RPAREN, [172152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8350), 1, - anon_sym_SEMI, + ACTIONS(8332), 1, + anon_sym_EQ, [172159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_COLON, + ACTIONS(8334), 1, + anon_sym_LBRACE, [172166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8352), 1, - anon_sym_COLON, + ACTIONS(8336), 1, + anon_sym_EQ, [172173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, + ACTIONS(8338), 1, + anon_sym_LBRACE, [172180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8356), 1, - anon_sym_LPAREN, + ACTIONS(8340), 1, + anon_sym_SEMI, [172187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7354), 1, - anon_sym_COLON, + ACTIONS(8342), 1, + anon_sym_EQ_EQ_GT, [172194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8358), 1, - anon_sym_LBRACE, + ACTIONS(7240), 1, + anon_sym_COLON, [172201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 1, - anon_sym_class, + ACTIONS(8344), 1, + anon_sym_LBRACE, [172208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8346), 1, + anon_sym_SEMI, [172215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8360), 1, - sym_identifier, + ACTIONS(8348), 1, + anon_sym_LBRACE, [172222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8362), 1, - sym_identifier, + ACTIONS(7238), 1, + anon_sym_COLON, [172229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8364), 1, + ACTIONS(8350), 1, anon_sym_LBRACE, [172236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8366), 1, - anon_sym_LBRACE, + ACTIONS(7236), 1, + anon_sym_COLON, [172243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8368), 1, - anon_sym_LBRACE, + ACTIONS(7234), 1, + anon_sym_COLON, [172250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8370), 1, - anon_sym_while, + ACTIONS(8352), 1, + anon_sym_SEMI, [172257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8372), 1, - anon_sym_LBRACE, + ACTIONS(7232), 1, + anon_sym_COLON, [172264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8374), 1, - anon_sym_LBRACE, + ACTIONS(8354), 1, + anon_sym_SEMI, [172271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8376), 1, - anon_sym_SEMI, + ACTIONS(7230), 1, + anon_sym_COLON, [172278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6241), 1, - anon_sym_class, + ACTIONS(8356), 1, + sym_identifier, [172285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8378), 1, - anon_sym_LBRACE, + ACTIONS(8358), 1, + anon_sym_COLON, [172292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8380), 1, - anon_sym_SEMI, + ACTIONS(8360), 1, + anon_sym_LPAREN, [172299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6348), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8362), 1, + anon_sym_LBRACE, [172306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 1, + ACTIONS(8364), 1, anon_sym_LBRACE, [172313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8384), 1, - anon_sym_LBRACE, + ACTIONS(5404), 1, + anon_sym_class, [172320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8386), 1, - anon_sym_LBRACE, + ACTIONS(6418), 1, + anon_sym_EQ_EQ_GT, [172327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8388), 1, - anon_sym_RPAREN, + ACTIONS(8366), 1, + anon_sym_LBRACE, [172334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8390), 1, - anon_sym_SEMI, + ACTIONS(8368), 1, + anon_sym_EQ_EQ_GT, [172341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_RPAREN, + ACTIONS(8370), 1, + anon_sym_SEMI, [172348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, - anon_sym_class, + ACTIONS(8372), 1, + anon_sym_RPAREN, [172355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8394), 1, + ACTIONS(8374), 1, anon_sym_SEMI, [172362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8396), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8376), 1, + anon_sym_while, [172369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 1, - anon_sym_COLON, + ACTIONS(8378), 1, + sym_identifier, [172376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8398), 1, - anon_sym_SEMI, + ACTIONS(8380), 1, + sym_identifier, [172383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 1, - anon_sym_RPAREN, + ACTIONS(8382), 1, + sym_identifier, [172390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6366), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(6279), 1, + anon_sym_class, [172397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8402), 1, - anon_sym_RPAREN, + ACTIONS(8384), 1, + sym_identifier, [172404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8404), 1, - anon_sym_LBRACE, + ACTIONS(8386), 1, + anon_sym_RPAREN, [172411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_EQ, + ACTIONS(6408), 1, + anon_sym_EQ_EQ_GT, [172418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8408), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8388), 1, + anon_sym_SEMI, [172425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8410), 1, - anon_sym_as2, + ACTIONS(8390), 1, + sym_identifier, [172432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8412), 1, - anon_sym_while, + ACTIONS(8392), 1, + anon_sym_RPAREN, [172439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8414), 1, - anon_sym_SEMI, + ACTIONS(8394), 1, + anon_sym_RPAREN, [172446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8416), 1, + ACTIONS(6465), 1, anon_sym_EQ_EQ_GT, [172453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8418), 1, - anon_sym_RPAREN, + ACTIONS(8396), 1, + anon_sym_LBRACE, [172460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LBRACE, + ACTIONS(8204), 1, + anon_sym_class, [172467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8422), 1, - anon_sym_class, + ACTIONS(8398), 1, + anon_sym_SEMI, [172474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, - anon_sym_LBRACE, + ACTIONS(8400), 1, + anon_sym_EQ_EQ_GT, [172481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8426), 1, - anon_sym_EQ, + ACTIONS(8402), 1, + anon_sym_SEMI, [172488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8428), 1, - anon_sym_using, + ACTIONS(8404), 1, + anon_sym_RPAREN, [172495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8198), 1, - anon_sym_SEMI, + ACTIONS(8406), 1, + anon_sym_RPAREN, [172502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8430), 1, - anon_sym_LBRACE, + ACTIONS(6400), 1, + anon_sym_EQ_EQ_GT, [172509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8432), 1, - anon_sym_insteadof, + ACTIONS(8408), 1, + anon_sym_RPAREN, [172516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(7184), 1, + anon_sym_COLON, [172523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8436), 1, - anon_sym_SEMI, + ACTIONS(8410), 1, + anon_sym_EQ, [172530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8438), 1, - anon_sym_if, + ACTIONS(8412), 1, + anon_sym_RPAREN, [172537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8440), 1, - anon_sym_EQ, + ACTIONS(8414), 1, + anon_sym_as2, [172544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8442), 1, - anon_sym_LPAREN, + ACTIONS(8416), 1, + anon_sym_SEMI, [172551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8444), 1, - anon_sym_EQ, + ACTIONS(8418), 1, + anon_sym_SEMI, [172558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 1, - anon_sym_SEMI, + ACTIONS(8420), 1, + anon_sym_EQ_EQ_GT, [172565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8448), 1, - anon_sym_LPAREN, + ACTIONS(8422), 1, + anon_sym_while, [172572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8450), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8424), 1, + anon_sym_SEMI, [172579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7205), 1, - anon_sym_COLON, + ACTIONS(8426), 1, + anon_sym_class, [172586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8452), 1, - anon_sym_SEMI, + ACTIONS(8428), 1, + anon_sym_LPAREN, [172593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8430), 1, + anon_sym_EQ, [172600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, - anon_sym_SEMI, + ACTIONS(8432), 1, + sym_identifier, [172607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 1, - anon_sym_COLON, + ACTIONS(8434), 1, + anon_sym_EQ_EQ_GT, [172614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8456), 1, - anon_sym_SEMI, + ACTIONS(8436), 1, + anon_sym_LPAREN, [172621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 1, - anon_sym_COLON, + ACTIONS(8438), 1, + anon_sym_SEMI, [172628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 1, - anon_sym_COLON, + ACTIONS(8440), 1, + anon_sym_EQ_EQ_GT, [172635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8458), 1, - anon_sym_GT, + ACTIONS(8442), 1, + anon_sym_EQ, [172642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 1, - anon_sym_COLON, + ACTIONS(8444), 1, + anon_sym_if, [172649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8460), 1, - sym_identifier, + ACTIONS(8446), 1, + anon_sym_EQ, [172656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 1, - anon_sym_COLON, + ACTIONS(8448), 1, + anon_sym_SEMI, [172663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8462), 1, - anon_sym_SEMI, + ACTIONS(8450), 1, + anon_sym_EQ, [172670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8464), 1, - anon_sym_COLON, + ACTIONS(8452), 1, + anon_sym_RPAREN, [172677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8466), 1, - anon_sym_LPAREN, + ACTIONS(8454), 1, + anon_sym_SEMI, [172684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8468), 1, - sym_identifier, + ACTIONS(8456), 1, + anon_sym_EQ_EQ_GT, [172691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6290), 1, - anon_sym_class, + ACTIONS(7174), 1, + anon_sym_COLON, [172698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 1, - anon_sym_class, + ACTIONS(8458), 1, + anon_sym_SEMI, [172705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8470), 1, - anon_sym_RPAREN, + ACTIONS(7972), 1, + sym_variable, [172712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8472), 1, - anon_sym_LBRACE, + ACTIONS(8460), 1, + sym_xhp_category_identifier, [172719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_while, + ACTIONS(7172), 1, + anon_sym_COLON, [172726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8476), 1, - anon_sym_RPAREN, + ACTIONS(8462), 1, + anon_sym_SEMI, [172733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8478), 1, - anon_sym_RPAREN, + ACTIONS(7170), 1, + anon_sym_COLON, [172740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8480), 1, + ACTIONS(7168), 1, anon_sym_COLON, [172747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6221), 1, - anon_sym_class, + ACTIONS(8464), 1, + sym_identifier, [172754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8482), 1, - anon_sym_using, + ACTIONS(7166), 1, + anon_sym_COLON, [172761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - sym__heredoc_end, + ACTIONS(8466), 1, + sym_identifier, [172768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8484), 1, - anon_sym_RPAREN, + ACTIONS(6681), 1, + anon_sym_COLON, [172775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8486), 1, - sym_identifier, + ACTIONS(8468), 1, + anon_sym_LBRACE, [172782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8488), 1, - sym_identifier, + ACTIONS(8470), 1, + anon_sym_COLON, [172789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8490), 1, - anon_sym_SEMI, + ACTIONS(8472), 1, + anon_sym_LPAREN, [172796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8176), 1, - anon_sym_class, + ACTIONS(8474), 1, + anon_sym_SEMI, [172803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8492), 1, - sym_identifier, + ACTIONS(8476), 1, + anon_sym_RPAREN, [172810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8494), 1, - anon_sym_SEMI, + ACTIONS(5356), 1, + anon_sym_class, [172817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8496), 1, - anon_sym_SEMI, + ACTIONS(8478), 1, + sym_identifier, [172824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8498), 1, - anon_sym_EQ, + ACTIONS(8480), 1, + anon_sym_SEMI, [172831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_class, + ACTIONS(8482), 1, + anon_sym_while, [172838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8502), 1, - anon_sym_as2, + ACTIONS(8484), 1, + anon_sym_RPAREN, [172845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8504), 1, - anon_sym_SEMI, + ACTIONS(8486), 1, + anon_sym_using, [172852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8506), 1, - anon_sym_RPAREN, + ACTIONS(7414), 1, + anon_sym_COLON, [172859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8508), 1, - sym_identifier, + ACTIONS(6239), 1, + anon_sym_class, [172866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8510), 1, - sym_identifier, + ACTIONS(8488), 1, + anon_sym_RPAREN, [172873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8512), 1, - anon_sym_class, + ACTIONS(8490), 1, + sym_identifier, [172880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8514), 1, - anon_sym_EQ, + ACTIONS(8492), 1, + anon_sym_SEMI, [172887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 1, - sym_variable, + ACTIONS(8494), 1, + sym_identifier, [172894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8518), 1, - anon_sym_LBRACE, + ACTIONS(8496), 1, + anon_sym_COLON, [172901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8520), 1, - anon_sym_LBRACE, + ACTIONS(8498), 1, + anon_sym_SEMI, [172908] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(8522), 1, - anon_sym_SEMI, + sym_comment, + ACTIONS(8166), 1, + anon_sym_class, [172915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8524), 1, - anon_sym_LBRACE, + ACTIONS(8500), 1, + anon_sym_SEMI, [172922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8526), 1, - anon_sym_if, + ACTIONS(8502), 1, + sym_identifier, [172929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_COLON, + ACTIONS(8504), 1, + anon_sym_SEMI, [172936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8528), 1, + ACTIONS(8506), 1, anon_sym_EQ, [172943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8530), 1, - anon_sym_RPAREN, + ACTIONS(8508), 1, + anon_sym_class, [172950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8532), 1, - anon_sym_LBRACE, + ACTIONS(8510), 1, + anon_sym_as2, [172957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7146), 1, - anon_sym_COLON, + ACTIONS(8512), 1, + anon_sym_RPAREN, [172964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LBRACE, + ACTIONS(8514), 1, + anon_sym_RPAREN, [172971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8536), 1, - anon_sym_SEMI, + ACTIONS(8516), 1, + sym_identifier, [172978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8538), 1, - anon_sym_SEMI, + ACTIONS(8518), 1, + anon_sym_RPAREN, [172985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, - anon_sym_COLON, + ACTIONS(8520), 1, + anon_sym_class, [172992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8540), 1, - anon_sym_COLON, + ACTIONS(8522), 1, + anon_sym_EQ, [172999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7140), 1, - anon_sym_COLON, + ACTIONS(8524), 1, + sym_variable, [173006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7138), 1, + ACTIONS(7145), 1, anon_sym_COLON, [173013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8542), 1, - sym_identifier, + ACTIONS(8526), 1, + anon_sym_RPAREN, [173020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7136), 1, - anon_sym_COLON, + ACTIONS(8528), 1, + anon_sym_LBRACE, [173027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8544), 1, - anon_sym_class, + ACTIONS(5921), 1, + anon_sym_function, [173034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7134), 1, - anon_sym_COLON, + ACTIONS(8530), 1, + anon_sym_if, [173041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8546), 1, - anon_sym_LBRACE, + ACTIONS(8532), 1, + anon_sym_SEMI, [173048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8548), 1, - anon_sym_COLON, + ACTIONS(8534), 1, + anon_sym_EQ, [173055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8550), 1, - anon_sym_LPAREN, + ACTIONS(8536), 1, + anon_sym_LBRACE, [173062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8552), 1, - anon_sym_LBRACE, + ACTIONS(8538), 1, + anon_sym_SEMI, [173069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8554), 1, - anon_sym_LBRACE, + ACTIONS(7139), 1, + anon_sym_COLON, [173076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 1, - anon_sym_class, + ACTIONS(8540), 1, + anon_sym_LBRACE, [173083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8556), 1, - anon_sym_RPAREN, + ACTIONS(8542), 1, + anon_sym_LBRACE, [173090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8558), 1, - sym_xhp_category_identifier, + ACTIONS(8544), 1, + anon_sym_LBRACE, [173097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8560), 1, - anon_sym_while, + ACTIONS(7137), 1, + anon_sym_COLON, [173104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8562), 1, - anon_sym_SEMI, + ACTIONS(8546), 1, + anon_sym_RPAREN, [173111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 1, - anon_sym_LBRACE, + ACTIONS(7131), 1, + anon_sym_COLON, [173118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8566), 1, - anon_sym_LBRACE, + ACTIONS(7129), 1, + anon_sym_COLON, [173125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5993), 1, - anon_sym_class, + ACTIONS(8548), 1, + sym_identifier, [173132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, - anon_sym_function, + ACTIONS(7125), 1, + anon_sym_COLON, [173139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8568), 1, - sym_identifier, + ACTIONS(8550), 1, + anon_sym_LBRACE, [173146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8570), 1, - anon_sym_SEMI, + ACTIONS(7121), 1, + anon_sym_COLON, [173153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8572), 1, - sym_xhp_category_identifier, + ACTIONS(8552), 1, + anon_sym_LBRACE, [173160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8574), 1, - anon_sym_using, + ACTIONS(8554), 1, + anon_sym_COLON, [173167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8576), 1, - anon_sym_if, + ACTIONS(8556), 1, + anon_sym_LPAREN, [173174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8136), 1, - anon_sym_class, + ACTIONS(8558), 1, + anon_sym_LBRACE, [173181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8560), 1, anon_sym_SEMI, [173188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8580), 1, - anon_sym_SEMI, + ACTIONS(5388), 1, + anon_sym_class, [173195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8582), 1, - anon_sym_as2, + ACTIONS(8562), 1, + anon_sym_RPAREN, [173202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_EQ, + ACTIONS(8564), 1, + anon_sym_RPAREN, [173209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8586), 1, - anon_sym_as2, + ACTIONS(8566), 1, + anon_sym_while, [173216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8588), 1, - anon_sym_as2, + ACTIONS(8568), 1, + anon_sym_LBRACE, [173223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8590), 1, - anon_sym_COLON, + ACTIONS(8570), 1, + anon_sym_RPAREN, [173230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(6011), 1, + anon_sym_class, [173237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8592), 1, - sym_identifier, + ACTIONS(6033), 1, + anon_sym_class, [173244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, - anon_sym_SEMI, + ACTIONS(8572), 1, + sym_identifier, [173251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8596), 1, - anon_sym_class, + ACTIONS(6473), 1, + anon_sym_EQ_EQ_GT, [173258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 1, - anon_sym_EQ, + ACTIONS(8574), 1, + anon_sym_SEMI, [173265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, - sym_variable, + ACTIONS(8576), 1, + sym_identifier, [173272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, - anon_sym_LPAREN, + ACTIONS(8578), 1, + anon_sym_using, [173279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8604), 1, - anon_sym_SEMI, + ACTIONS(8580), 1, + anon_sym_RPAREN, [173286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 1, - anon_sym_SEMI, + ACTIONS(7946), 1, + anon_sym_class, [173293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8608), 1, + ACTIONS(8582), 1, anon_sym_SEMI, [173300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 1, - anon_sym_LPAREN, + ACTIONS(8584), 1, + anon_sym_SEMI, [173307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8612), 1, - anon_sym_EQ, + ACTIONS(7119), 1, + anon_sym_COLON, [173314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, - sym_identifier, + ACTIONS(8586), 1, + anon_sym_EQ, [173321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_RPAREN, + ACTIONS(8588), 1, + anon_sym_SEMI, [173328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7112), 1, - anon_sym_COLON, + ACTIONS(8590), 1, + anon_sym_as2, [173335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8616), 1, - anon_sym_SEMI, + ACTIONS(8592), 1, + anon_sym_COLON, [173342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym_COLON, + ACTIONS(8594), 1, + anon_sym_SEMI, [173349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 1, - anon_sym_SEMI, + ACTIONS(8596), 1, + anon_sym_as2, [173356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7110), 1, - anon_sym_COLON, + ACTIONS(8598), 1, + anon_sym_SEMI, [173363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8620), 1, - anon_sym_SEMI, + ACTIONS(8600), 1, + anon_sym_class, [173370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7102), 1, - anon_sym_COLON, + ACTIONS(8602), 1, + anon_sym_EQ, [173377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7098), 1, - anon_sym_COLON, + ACTIONS(8604), 1, + sym_variable, [173384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8622), 1, - anon_sym_SEMI, + ACTIONS(8606), 1, + anon_sym_as2, [173391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7092), 1, - anon_sym_COLON, + ACTIONS(8608), 1, + anon_sym_SEMI, [173398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8624), 1, - sym_identifier, + ACTIONS(8610), 1, + anon_sym_SEMI, [173405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7088), 1, - anon_sym_COLON, + ACTIONS(8612), 1, + sym_identifier, [173412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6510), 1, - sym_identifier, + ACTIONS(8614), 1, + anon_sym_RPAREN, [173419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8626), 1, - anon_sym_COLON, + ACTIONS(8616), 1, + anon_sym_EQ, [173426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, + ACTIONS(8618), 1, + anon_sym_COLON, [173433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8630), 1, - sym_identifier, + ACTIONS(8620), 1, + anon_sym_SEMI, [173440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8632), 1, - anon_sym_SEMI, + ACTIONS(7095), 1, + anon_sym_COLON, [173447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 1, + ACTIONS(8622), 1, anon_sym_class, [173454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8634), 1, - sym_identifier, + ACTIONS(8624), 1, + anon_sym_SEMI, [173461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8636), 1, + ACTIONS(8626), 1, anon_sym_SEMI, [173468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8638), 1, - anon_sym_while, + ACTIONS(7078), 1, + anon_sym_COLON, [173475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8640), 1, - sym_variable, + ACTIONS(8628), 1, + anon_sym_COLON, [173482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8642), 1, - anon_sym_SEMI, + ACTIONS(7076), 1, + anon_sym_COLON, [173489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8644), 1, - anon_sym_LBRACE, + ACTIONS(7074), 1, + anon_sym_COLON, [173496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6023), 1, - anon_sym_class, + ACTIONS(2870), 1, + anon_sym_EQ_EQ_GT, [173503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8646), 1, - anon_sym_RPAREN, + ACTIONS(7072), 1, + anon_sym_COLON, [173510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8648), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8630), 1, + anon_sym_LPAREN, [173517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8650), 1, - anon_sym_SEMI, + ACTIONS(7068), 1, + anon_sym_COLON, [173524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8652), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8632), 1, + anon_sym_SEMI, [173531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8654), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8634), 1, + anon_sym_COLON, [173538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8656), 1, - anon_sym_SEMI, + ACTIONS(8636), 1, + anon_sym_LPAREN, [173545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8106), 1, - anon_sym_class, + ACTIONS(8638), 1, + anon_sym_LPAREN, [173552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8658), 1, - anon_sym_using, + ACTIONS(8640), 1, + anon_sym_SEMI, [173559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8660), 1, - anon_sym_LPAREN, + ACTIONS(5340), 1, + anon_sym_class, [173566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6649), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8642), 1, + sym_identifier, [173573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8662), 1, - anon_sym_EQ, + ACTIONS(8644), 1, + anon_sym_SEMI, [173580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8664), 1, - anon_sym_SEMI, + ACTIONS(8646), 1, + anon_sym_while, [173587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8666), 1, - anon_sym_as2, + ACTIONS(8648), 1, + anon_sym_RPAREN, [173594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8668), 1, - sym_identifier, + ACTIONS(8650), 1, + anon_sym_SEMI, [173601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RPAREN, + ACTIONS(6871), 1, + sym_identifier, [173608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8672), 1, - sym_identifier, + ACTIONS(6067), 1, + anon_sym_class, [173615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7066), 1, - anon_sym_COLON, + ACTIONS(8652), 1, + sym_identifier, [173622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8674), 1, - anon_sym_class, + ACTIONS(5752), 1, + sym__heredoc_end, [173629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8676), 1, - anon_sym_EQ, + ACTIONS(8654), 1, + sym_identifier, [173636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8678), 1, - sym_variable, + ACTIONS(8656), 1, + sym_identifier, [173643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6427), 1, + ACTIONS(8658), 1, anon_sym_EQ_EQ_GT, [173650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8680), 1, + ACTIONS(8660), 1, anon_sym_SEMI, [173657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8682), 1, - anon_sym_SEMI, + ACTIONS(8120), 1, + anon_sym_class, [173664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8684), 1, - anon_sym_SEMI, + ACTIONS(8662), 1, + anon_sym_LBRACE, [173671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8686), 1, - sym__heredoc_start, + ACTIONS(8664), 1, + anon_sym_SEMI, [173678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8688), 1, - anon_sym_EQ, + ACTIONS(6370), 1, + anon_sym_EQ_EQ_GT, [173685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8690), 1, - anon_sym_SEMI, + ACTIONS(8666), 1, + anon_sym_EQ, [173692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8692), 1, + ACTIONS(8668), 1, anon_sym_SEMI, [173699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7056), 1, - anon_sym_COLON, + ACTIONS(8670), 1, + anon_sym_as2, [173706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8694), 1, - sym__heredoc_end, + ACTIONS(8672), 1, + anon_sym_using, [173713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8696), 1, - anon_sym_RPAREN, + ACTIONS(8674), 1, + sym_variable, [173720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8698), 1, - anon_sym_LBRACE, + ACTIONS(8676), 1, + sym_identifier, [173727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7054), 1, - anon_sym_COLON, + ACTIONS(8678), 1, + sym_identifier, [173734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8700), 1, - anon_sym_SEMI, + ACTIONS(8680), 1, + anon_sym_class, [173741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7052), 1, - anon_sym_COLON, + ACTIONS(8682), 1, + anon_sym_EQ, [173748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7050), 1, - anon_sym_COLON, + ACTIONS(8684), 1, + sym_variable, [173755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8702), 1, - anon_sym_LBRACE, + ACTIONS(8686), 1, + sym_identifier, [173762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, - anon_sym_COLON, + ACTIONS(6484), 1, + anon_sym_EQ_EQ_GT, [173769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 1, - anon_sym_SEMI, + ACTIONS(8688), 1, + anon_sym_RPAREN, [173776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7040), 1, + ACTIONS(7544), 1, anon_sym_COLON, [173783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8706), 1, - anon_sym_SEMI, + ACTIONS(8690), 1, + anon_sym_LPAREN, [173790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8708), 1, - anon_sym_COLON, + ACTIONS(8692), 1, + anon_sym_EQ, [173797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 1, + ACTIONS(8694), 1, anon_sym_LPAREN, [173804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8712), 1, + ACTIONS(8696), 1, anon_sym_LBRACE, [173811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8714), 1, + ACTIONS(7054), 1, anon_sym_COLON, [173818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5372), 1, - anon_sym_class, + ACTIONS(8698), 1, + sym__heredoc_start, [173825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_LBRACE, + ACTIONS(8700), 1, + anon_sym_SEMI, [173832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8718), 1, - anon_sym_SEMI, + ACTIONS(8702), 1, + anon_sym_LBRACE, [173839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_while, + ACTIONS(7046), 1, + anon_sym_COLON, [173846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8722), 1, - ts_builtin_sym_end, + ACTIONS(8704), 1, + anon_sym_LBRACE, [173853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, - anon_sym_class, + ACTIONS(7044), 1, + anon_sym_COLON, [173860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8724), 1, - anon_sym_type, + ACTIONS(7042), 1, + anon_sym_COLON, [173867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6069), 1, - anon_sym_class, + ACTIONS(8706), 1, + anon_sym_LBRACE, [173874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8726), 1, - anon_sym_SEMI, + ACTIONS(7040), 1, + anon_sym_COLON, [173881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8728), 1, - anon_sym_LBRACE, + ACTIONS(8708), 1, + sym_identifier, [173888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8730), 1, - anon_sym_SEMI, + ACTIONS(7036), 1, + anon_sym_COLON, [173895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8732), 1, - anon_sym_RPAREN, + ACTIONS(8710), 1, + anon_sym_SEMI, [173902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8734), 1, - sym_identifier, + ACTIONS(8712), 1, + anon_sym_COLON, [173909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8736), 1, - anon_sym_RPAREN, + ACTIONS(8714), 1, + anon_sym_LPAREN, [173916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8094), 1, - anon_sym_class, + ACTIONS(8716), 1, + anon_sym_LBRACE, [173923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8738), 1, + ACTIONS(8718), 1, anon_sym_SEMI, [173930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8740), 1, - sym_identifier, + ACTIONS(5324), 1, + anon_sym_class, [173937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_SEMI, + ACTIONS(8720), 1, + anon_sym_LBRACE, [173944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8744), 1, - anon_sym_EQ, + ACTIONS(8722), 1, + anon_sym_LBRACE, [173951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8746), 1, - anon_sym_LBRACE, + ACTIONS(8724), 1, + anon_sym_while, [173958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8748), 1, - anon_sym_as2, + ACTIONS(8726), 1, + ts_builtin_sym_end, [173965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 1, - sym_variable, + ACTIONS(5420), 1, + anon_sym_class, [173972] = 2, - ACTIONS(3), 1, + ACTIONS(5544), 1, sym_comment, - ACTIONS(8752), 1, - anon_sym_SEMI, + ACTIONS(8728), 1, + aux_sym_function_type_specifier_token1, [173979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8754), 1, - anon_sym_LBRACE, + ACTIONS(6245), 1, + anon_sym_class, [173986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8756), 1, - anon_sym_SEMI, + ACTIONS(8730), 1, + anon_sym_LBRACE, [173993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8758), 1, - anon_sym_class, + ACTIONS(8732), 1, + anon_sym_LBRACE, [174000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8760), 1, - anon_sym_EQ, + ACTIONS(8734), 1, + anon_sym_SEMI, [174007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8762), 1, - sym_variable, + ACTIONS(8736), 1, + anon_sym_LBRACE, [174014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8764), 1, - anon_sym_SEMI, + ACTIONS(8738), 1, + sym_identifier, [174021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8766), 1, + ACTIONS(8740), 1, anon_sym_SEMI, [174028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8768), 1, - anon_sym_RPAREN, + ACTIONS(8100), 1, + anon_sym_class, [174035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN, + ACTIONS(8742), 1, + anon_sym_EQ, [174042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8772), 1, - sym_identifier, + ACTIONS(8744), 1, + anon_sym_LBRACE, [174049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8774), 1, - anon_sym_EQ, + ACTIONS(8746), 1, + anon_sym_SEMI, [174056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8776), 1, - sym_identifier, + ACTIONS(8748), 1, + anon_sym_EQ, [174063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - sym_variable, + ACTIONS(8750), 1, + anon_sym_GT, [174070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, - anon_sym_COLON, + ACTIONS(8752), 1, + anon_sym_as2, [174077] = 2, - ACTIONS(5544), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(8778), 1, - aux_sym_function_type_specifier_token1, + ACTIONS(8754), 1, + anon_sym_LBRACE, [174084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8780), 1, - sym_identifier, + ACTIONS(8756), 1, + anon_sym_SEMI, [174091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, - anon_sym_SEMI, + ACTIONS(8758), 1, + anon_sym_RPAREN, [174098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6978), 1, - anon_sym_COLON, + ACTIONS(8760), 1, + anon_sym_RPAREN, [174105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8784), 1, - anon_sym_using, + ACTIONS(8762), 1, + anon_sym_class, [174112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_COLON, + ACTIONS(8764), 1, + anon_sym_EQ, [174119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6972), 1, - anon_sym_COLON, + ACTIONS(8766), 1, + sym_variable, [174126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8786), 1, + ACTIONS(8768), 1, sym_identifier, [174133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_COLON, + ACTIONS(8770), 1, + anon_sym_LPAREN, [174140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8788), 1, - sym_identifier, + ACTIONS(8772), 1, + anon_sym_SEMI, [174147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6966), 1, - anon_sym_COLON, + ACTIONS(4800), 1, + sym_variable, [174154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - sym_variable, + ACTIONS(8774), 1, + sym_identifier, [174161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8790), 1, - anon_sym_COLON, + ACTIONS(8776), 1, + anon_sym_EQ, [174168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8792), 1, - anon_sym_LPAREN, + ACTIONS(8778), 1, + anon_sym_SEMI, [174175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8794), 1, - anon_sym_LPAREN, + ACTIONS(8780), 1, + anon_sym_SEMI, [174182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8796), 1, - sym_identifier, + ACTIONS(6968), 1, + anon_sym_COLON, [174189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8798), 1, - anon_sym_as2, + ACTIONS(8782), 1, + sym_identifier, [174196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8800), 1, - sym_variable, + ACTIONS(8784), 1, + sym_identifier, [174203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8802), 1, - sym_identifier, + ACTIONS(3989), 1, + sym_variable, [174210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8804), 1, - sym_identifier, + ACTIONS(6964), 1, + anon_sym_COLON, [174217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8806), 1, - sym_identifier, + ACTIONS(8786), 1, + anon_sym_using, [174224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_RPAREN, + ACTIONS(6962), 1, + anon_sym_COLON, [174231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8810), 1, - anon_sym_LPAREN, + ACTIONS(6960), 1, + anon_sym_COLON, [174238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8812), 1, - sym_identifier, + ACTIONS(8788), 1, + anon_sym_SEMI, [174245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8814), 1, - anon_sym_EQ, + ACTIONS(6956), 1, + anon_sym_COLON, [174252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8816), 1, - anon_sym_LPAREN, + ACTIONS(8790), 1, + sym_identifier, [174259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, - anon_sym_COLON_COLON, + ACTIONS(6950), 1, + anon_sym_COLON, [174266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8818), 1, + ACTIONS(8792), 1, anon_sym_SEMI, [174273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_SEMI, + ACTIONS(8794), 1, + anon_sym_COLON, [174280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8822), 1, - anon_sym_COLON, + ACTIONS(8796), 1, + anon_sym_LBRACE, [174287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8824), 1, - anon_sym_LBRACE, + ACTIONS(8798), 1, + sym_identifier, [174294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, - anon_sym_LPAREN, + ACTIONS(8800), 1, + sym_identifier, [174301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 1, - sym_identifier, + ACTIONS(8802), 1, + anon_sym_as2, [174308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, - anon_sym_SEMI, + ACTIONS(8804), 1, + anon_sym_LPAREN, [174315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8832), 1, - anon_sym_EQ, + ACTIONS(8806), 1, + sym_identifier, [174322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8834), 1, - anon_sym_EQ_GT, + ACTIONS(8808), 1, + anon_sym_SEMI, [174329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8836), 1, - anon_sym_COLON, + ACTIONS(8810), 1, + sym_identifier, [174336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8838), 1, - sym_identifier, + ACTIONS(8812), 1, + anon_sym_SEMI, [174343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8840), 1, - anon_sym_COLON, + ACTIONS(8814), 1, + anon_sym_LPAREN, [174350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8842), 1, - anon_sym_RPAREN, + ACTIONS(8816), 1, + sym_identifier, [174357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8844), 1, - anon_sym_RPAREN, + ACTIONS(8818), 1, + anon_sym_EQ, [174364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8846), 1, - anon_sym_COLON, + ACTIONS(8820), 1, + anon_sym_LPAREN, [174371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8848), 1, - anon_sym_COLON, + ACTIONS(2841), 1, + anon_sym_COLON_COLON, [174378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8850), 1, - anon_sym_RPAREN, + ACTIONS(8822), 1, + anon_sym_SEMI, [174385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8852), 1, - anon_sym_RPAREN, + ACTIONS(8824), 1, + sym_identifier, [174392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8854), 1, - sym_variable, + ACTIONS(8826), 1, + anon_sym_COLON, [174399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8856), 1, - anon_sym_RPAREN, + ACTIONS(8828), 1, + anon_sym_EQ_GT, [174406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8858), 1, - anon_sym_COLON, + ACTIONS(8830), 1, + anon_sym_RPAREN, [174413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8860), 1, - anon_sym_SEMI, + ACTIONS(8832), 1, + sym_identifier, [174420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, + ACTIONS(8834), 1, anon_sym_RPAREN, [174427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8864), 1, - anon_sym_LPAREN, + ACTIONS(8836), 1, + anon_sym_RPAREN, [174434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8866), 1, - anon_sym_SEMI, + ACTIONS(8838), 1, + anon_sym_RPAREN, [174441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8868), 1, - anon_sym_LPAREN, + ACTIONS(8840), 1, + anon_sym_COLON, [174448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8870), 1, - sym_identifier, + ACTIONS(8842), 1, + anon_sym_RPAREN, [174455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, - sym_identifier, + ACTIONS(8844), 1, + anon_sym_COLON, [174462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 1, - sym__heredoc_end, + ACTIONS(8846), 1, + anon_sym_SEMI, [174469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8848), 1, anon_sym_RPAREN, [174476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8876), 1, - anon_sym_LBRACE, + ACTIONS(8850), 1, + anon_sym_COLON, [174483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8878), 1, - anon_sym_SEMI, + ACTIONS(8852), 1, + anon_sym_COLON, [174490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8880), 1, + ACTIONS(8854), 1, anon_sym_LPAREN, [174497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8882), 1, - anon_sym_EQ_EQ_GT, + ACTIONS(8856), 1, + anon_sym_LPAREN, [174504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8884), 1, - anon_sym_SEMI, + ACTIONS(8858), 1, + sym_variable, [174511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8886), 1, - anon_sym_using, + ACTIONS(8860), 1, + anon_sym_type, [174518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8888), 1, - sym_identifier, + ACTIONS(8862), 1, + anon_sym_COLON, [174525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8890), 1, - anon_sym_SEMI, + ACTIONS(8864), 1, + sym_identifier, [174532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8892), 1, + ACTIONS(8866), 1, sym_identifier, [174539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8894), 1, - sym_identifier, + ACTIONS(8868), 1, + anon_sym_LBRACE, [174546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8896), 1, - anon_sym_LPAREN, + ACTIONS(8870), 1, + anon_sym_RPAREN, [174553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8898), 1, - anon_sym_LBRACE, + ACTIONS(8872), 1, + anon_sym_SEMI, [174560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8900), 1, - anon_sym_LPAREN, + ACTIONS(8874), 1, + anon_sym_LBRACE, [174567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym_SEMI, + ACTIONS(8876), 1, + anon_sym_LPAREN, [174574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_SEMI, + ACTIONS(8878), 1, + anon_sym_using, [174581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8906), 1, - anon_sym_LPAREN, + ACTIONS(8880), 1, + anon_sym_SEMI, [174588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8882), 1, anon_sym_SEMI, [174595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, + ACTIONS(8884), 1, sym_identifier, [174602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8912), 1, - anon_sym_COLON, + ACTIONS(8886), 1, + sym_identifier, [174609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8914), 1, - sym_identifier, + ACTIONS(8888), 1, + anon_sym_SEMI, [174616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8916), 1, + ACTIONS(8890), 1, anon_sym_SEMI, [174623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8918), 1, - sym_identifier, + ACTIONS(8892), 1, + anon_sym_SEMI, [174630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8894), 1, + anon_sym_RPAREN, + [174637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8896), 1, + anon_sym_LPAREN, + [174644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8898), 1, + sym_identifier, + [174651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8900), 1, + anon_sym_EQ_EQ_GT, + [174658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8902), 1, + anon_sym_LPAREN, + [174665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6496), 1, + anon_sym_EQ_EQ_GT, + [174672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8904), 1, + anon_sym_LPAREN, + [174679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8906), 1, + anon_sym_type, + [174686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8908), 1, + anon_sym_SEMI, + [174693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8910), 1, + anon_sym_LPAREN, + [174700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8912), 1, + anon_sym_SEMI, + [174707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8914), 1, + anon_sym_RPAREN, + [174714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8916), 1, + anon_sym_COLON, + [174721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8918), 1, + anon_sym_GT, + [174728] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8920), 1, anon_sym_SEMI, - [174637] = 2, + [174735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8922), 1, - anon_sym_LBRACE, - [174644] = 2, + sym_identifier, + [174742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8924), 1, - sym__heredoc_end, - [174651] = 2, + anon_sym_SEMI, + [174749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8926), 1, - anon_sym_COLON, - [174658] = 2, + anon_sym_LBRACE, + [174756] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8928), 1, - anon_sym_LBRACE, - [174665] = 2, + anon_sym_SEMI, + [174763] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8930), 1, anon_sym_COLON, - [174672] = 2, + [174770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8932), 1, - anon_sym_SEMI, - [174679] = 2, + anon_sym_LBRACE, + [174777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8934), 1, - anon_sym_SEMI, - [174686] = 2, + anon_sym_COLON, + [174784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6604), 1, + sym_identifier, + [174791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8936), 1, - anon_sym_COLON, - [174693] = 2, + sym_identifier, + [174798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8938), 1, anon_sym_COLON, - [174700] = 2, + [174805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8940), 1, - anon_sym_RPAREN, - [174707] = 2, + anon_sym_COLON, + [174812] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8942), 1, anon_sym_LBRACE, - [174714] = 2, + [174819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8944), 1, anon_sym_LBRACE, - [174721] = 2, + [174826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 1, - anon_sym_COLON, - [174728] = 2, + ACTIONS(8946), 1, + anon_sym_LBRACE, + [174833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8948), 1, - anon_sym_LBRACE, - [174735] = 2, + anon_sym_COLON, + [174840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8950), 1, - anon_sym_LBRACE, - [174742] = 2, + sym__heredoc_end, + [174847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8952), 1, - anon_sym_RPAREN, - [174749] = 2, + anon_sym_SEMI, + [174854] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8954), 1, anon_sym_SEMI, - [174756] = 2, + [174861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5742), 1, + sym__heredoc_end, + [174868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8956), 1, - anon_sym_SEMI, - [174763] = 2, + anon_sym_LBRACE, + [174875] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8958), 1, - anon_sym_EQ_EQ_GT, - [174770] = 2, + anon_sym_SEMI, + [174882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5808), 1, + sym__heredoc_end, + [174889] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8960), 1, - anon_sym_LBRACE, - [174777] = 2, + anon_sym_SEMI, + [174896] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8962), 1, anon_sym_LBRACE, - [174784] = 2, + [174903] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8964), 1, anon_sym_LBRACE, - [174791] = 2, + [174910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8966), 1, - anon_sym_COLON, - [174798] = 2, + anon_sym_SEMI, + [174917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8968), 1, anon_sym_LBRACE, - [174805] = 2, + [174924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8970), 1, - anon_sym_RPAREN, - [174812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5744), 1, - sym__heredoc_end, - [174819] = 2, + anon_sym_LBRACE, + [174931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8972), 1, - anon_sym_SEMI, - [174826] = 2, + anon_sym_RPAREN, + [174938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8974), 1, - sym_identifier, - [174833] = 2, + anon_sym_SEMI, + [174945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8976), 1, - anon_sym_RPAREN, - [174840] = 2, + anon_sym_SEMI, + [174952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8978), 1, - sym_identifier, - [174847] = 2, + anon_sym_SEMI, + [174959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8980), 1, sym_identifier, - [174854] = 2, + [174966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8982), 1, - anon_sym_SEMI, - [174861] = 2, + sym_identifier, + [174973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8984), 1, - anon_sym_LPAREN, - [174868] = 2, + sym_identifier, + [174980] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8986), 1, anon_sym_LPAREN, - [174875] = 2, + [174987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8988), 1, - anon_sym_RPAREN, - [174882] = 2, + sym_variable, + [174994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8990), 1, - anon_sym_LPAREN, - [174889] = 2, + sym_identifier, + [175001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8992), 1, anon_sym_COLON, - [174896] = 2, + [175008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8994), 1, sym_identifier, - [174903] = 2, + [175015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 1, + ACTIONS(7590), 1, sym_identifier, - [174910] = 2, + [175022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5748), 1, + sym__heredoc_end, + [175029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8996), 1, + anon_sym_COLON, + [175036] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8998), 1, - anon_sym_SEMI, - [174917] = 2, + anon_sym_COLON, + [175043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9000), 1, - anon_sym_COLON, - [174924] = 2, + sym_identifier, + [175050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9002), 1, - anon_sym_COLON, - [174931] = 2, + anon_sym_EQ_EQ_GT, + [175057] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9004), 1, - sym_identifier, - [174938] = 2, + anon_sym_COLON, + [175064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9006), 1, - anon_sym_SEMI, - [174945] = 2, + anon_sym_COLON, + [175071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9008), 1, - anon_sym_COLON, - [174952] = 2, + anon_sym_EQ, + [175078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9010), 1, - anon_sym_COLON, - [174959] = 2, + anon_sym_ctx, + [175085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9012), 1, - anon_sym_RPAREN, - [174966] = 2, + anon_sym_COLON, + [175092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9014), 1, - anon_sym_RPAREN, - [174973] = 2, + anon_sym_LPAREN, + [175099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9016), 1, - anon_sym_COLON, - [174980] = 2, + anon_sym_SEMI, + [175106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9018), 1, - anon_sym_SEMI, - [174987] = 2, + sym_xhp_category_identifier, + [175113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9020), 1, - anon_sym_RPAREN, - [174994] = 2, + sym_variable, + [175120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9022), 1, - anon_sym_RPAREN, - [175001] = 2, + anon_sym_SEMI, + [175127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9024), 1, - anon_sym_RPAREN, - [175008] = 2, + anon_sym_SEMI, + [175134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9026), 1, - anon_sym_EQ, - [175015] = 2, + anon_sym_LPAREN, + [175141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9028), 1, sym_identifier, - [175022] = 2, + [175148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9030), 1, - anon_sym_RPAREN, - [175029] = 2, + anon_sym_SEMI, + [175155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9032), 1, anon_sym_SEMI, - [175036] = 2, + [175162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9034), 1, - anon_sym_GT, - [175043] = 2, + anon_sym_SEMI, + [175169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9036), 1, anon_sym_SEMI, - [175050] = 2, + [175176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9038), 1, - sym_variable, - [175057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6653), 1, - anon_sym_LPAREN, - [175064] = 2, + anon_sym_GT, + [175183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9040), 1, - sym_variable, - [175071] = 2, + anon_sym_RPAREN, + [175190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9042), 1, anon_sym_LPAREN, - [175078] = 2, + [175197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9044), 1, - anon_sym_SEMI, - [175085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6537), 1, - anon_sym_EQ_EQ_GT, - [175092] = 2, + anon_sym_LPAREN, + [175204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9046), 1, sym_identifier, - [175099] = 2, + [175211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9048), 1, - anon_sym_GT, - [175106] = 2, + anon_sym_SEMI, + [175218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9050), 1, sym_identifier, - [175113] = 2, + [175225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9052), 1, anon_sym_LPAREN, - [175120] = 2, + [175232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9054), 1, - anon_sym_SEMI, - [175127] = 2, + sym_variable, + [175239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9056), 1, anon_sym_LPAREN, - [175134] = 2, + [175246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9058), 1, anon_sym_COLON, - [175141] = 2, + [175253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9060), 1, sym_identifier, - [175148] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7566), 1, - sym_identifier, - [175155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4610), 1, - sym_variable, - [175162] = 2, + [175260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9062), 1, - anon_sym_COLON, - [175169] = 2, + anon_sym_if, + [175267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9064), 1, - anon_sym_COLON, - [175176] = 2, + anon_sym_LPAREN, + [175274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9066), 1, - anon_sym_SEMI, - [175183] = 2, + anon_sym_COLON, + [175281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9068), 1, - anon_sym_LPAREN, - [175190] = 2, + anon_sym_COLON, + [175288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9070), 1, - anon_sym_COLON, - [175197] = 2, + anon_sym_SEMI, + [175295] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9072), 1, - anon_sym_COLON, - [175204] = 2, + anon_sym_SEMI, + [175302] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9074), 1, - anon_sym_LPAREN, - [175211] = 2, + anon_sym_COLON, + [175309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9076), 1, - sym_variable, - [175218] = 2, + anon_sym_COLON, + [175316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6665), 1, + anon_sym_LPAREN, + [175323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9078), 1, - anon_sym_COLON, - [175225] = 2, + anon_sym_SEMI, + [175330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9080), 1, - sym_identifier, - [175232] = 2, + anon_sym_COLON, + [175337] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9082), 1, - anon_sym_EQ_EQ_GT, - [175239] = 2, + anon_sym_RPAREN, + [175344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9084), 1, + anon_sym_SEMI, + [175351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, sym_variable, - [175246] = 2, + [175358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6531), 1, + anon_sym_EQ_EQ_GT, + [175365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9086), 1, anon_sym_SEMI, - [175253] = 2, + [175372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9088), 1, - sym_identifier, - [175260] = 2, + anon_sym_SEMI, + [175379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9090), 1, - anon_sym_SEMI, - [175267] = 2, + anon_sym_RPAREN, + [175386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9092), 1, - sym_identifier, - [175274] = 2, + sym_variable, + [175393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9094), 1, - anon_sym_EQ, - [175281] = 2, + sym_identifier, + [175400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9096), 1, - anon_sym_SEMI, - [175288] = 2, + anon_sym_RPAREN, + [175407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9098), 1, - anon_sym_SEMI, - [175295] = 2, + sym_identifier, + [175414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9100), 1, anon_sym_LBRACE, - [175302] = 2, + [175421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9102), 1, - anon_sym_SEMI, - [175309] = 2, + anon_sym_RPAREN, + [175428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9104), 1, - anon_sym_SEMI, - [175316] = 2, + sym_identifier, + [175435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9106), 1, - anon_sym_LPAREN, - [175323] = 2, + anon_sym_class, + [175442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9108), 1, - anon_sym_SEMI, - [175330] = 2, + anon_sym_LPAREN, + [175449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9110), 1, - anon_sym_using, - [175337] = 2, + sym_identifier, + [175456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9112), 1, sym_identifier, - [175344] = 2, + [175463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9114), 1, - anon_sym_SEMI, - [175351] = 2, + sym__heredoc_start, + [175470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9116), 1, - sym__heredoc_start, - [175358] = 2, + anon_sym_LPAREN, + [175477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9118), 1, - anon_sym_LPAREN, - [175365] = 2, + anon_sym_SEMI, + [175484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9120), 1, anon_sym_SEMI, - [175372] = 2, + [175491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9122), 1, - anon_sym_SEMI, - [175379] = 2, + anon_sym_COLON, + [175498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9124), 1, - anon_sym_COLON, - [175386] = 2, + sym_identifier, + [175505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9126), 1, - sym_identifier, - [175393] = 2, + anon_sym_SEMI, + [175512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9128), 1, - anon_sym_class, - [175400] = 2, + anon_sym_using, + [175519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9130), 1, - sym_identifier, - [175407] = 2, + anon_sym_COLON, + [175526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9132), 1, anon_sym_COLON, - [175414] = 2, + [175533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9134), 1, - anon_sym_COLON, - [175421] = 2, + anon_sym_SEMI, + [175540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9136), 1, sym_identifier, - [175428] = 2, + [175547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9138), 1, - anon_sym_COLON_COLON, - [175435] = 2, + anon_sym_COLON, + [175554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9140), 1, anon_sym_COLON, - [175442] = 2, + [175561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9142), 1, - anon_sym_COLON, - [175449] = 2, + anon_sym_SEMI, + [175568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9144), 1, sym_identifier, - [175456] = 2, + [175575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9146), 1, - anon_sym_LPAREN, - [175463] = 2, + anon_sym_COLON, + [175582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9148), 1, - anon_sym_COLON, - [175470] = 2, + sym_identifier, + [175589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9150), 1, anon_sym_SEMI, - [175477] = 2, + [175596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9152), 1, - anon_sym_LBRACE, - [175484] = 2, + anon_sym_RPAREN, + [175603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9154), 1, - anon_sym_SEMI, - [175491] = 2, + anon_sym_RPAREN, + [175610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9156), 1, - anon_sym_RPAREN, - [175498] = 2, + anon_sym_COLON, + [175617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9158), 1, anon_sym_SEMI, - [175505] = 2, + [175624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9160), 1, - anon_sym_SEMI, - [175512] = 2, + anon_sym_LBRACE, + [175631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9162), 1, anon_sym_LBRACE, - [175519] = 2, + [175638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9164), 1, - anon_sym_SEMI, - [175526] = 2, + anon_sym_LBRACE, + [175645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9166), 1, anon_sym_LBRACE, - [175533] = 2, + [175652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9168), 1, - anon_sym_LBRACE, - [175540] = 2, + anon_sym_EQ_EQ_GT, + [175659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9170), 1, - anon_sym_COLON, - [175547] = 2, + anon_sym_LBRACE, + [175666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9172), 1, - anon_sym_LBRACE, - [175554] = 2, + sym_identifier, + [175673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9174), 1, anon_sym_SEMI, - [175561] = 2, + [175680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9176), 1, - anon_sym_SEMI, - [175568] = 2, + anon_sym_LPAREN, + [175687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9178), 1, - anon_sym_EQ_EQ_GT, - [175575] = 2, + anon_sym_COLON_COLON, + [175694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9180), 1, - anon_sym_SEMI, - [175582] = 2, + sym_identifier, + [175701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9182), 1, - sym_identifier, - [175589] = 2, + anon_sym_LBRACE, + [175708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9184), 1, - anon_sym_LBRACE, - [175596] = 2, + sym_identifier, + [175715] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9186), 1, - sym_identifier, - [175603] = 2, + anon_sym_LPAREN, + [175722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9188), 1, - anon_sym_LPAREN, - [175610] = 2, + anon_sym_LBRACE, + [175729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9190), 1, - anon_sym_LBRACE, - [175617] = 2, + anon_sym_LPAREN, + [175736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9192), 1, - anon_sym_LPAREN, - [175624] = 2, + anon_sym_COLON, + [175743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9194), 1, - anon_sym_COLON, - [175631] = 2, + sym_identifier, + [175750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9196), 1, - sym_identifier, - [175638] = 2, + anon_sym_LBRACE, + [175757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9198), 1, - anon_sym_SEMI, - [175645] = 2, + anon_sym_RPAREN, + [175764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9200), 1, - sym_identifier, - [175652] = 2, + anon_sym_COLON, + [175771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9202), 1, anon_sym_COLON, - [175659] = 2, + [175778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9204), 1, - anon_sym_COLON, - [175666] = 2, + anon_sym_SEMI, + [175785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9206), 1, anon_sym_SEMI, - [175673] = 2, + [175792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9208), 1, - sym_variable, - [175680] = 2, + anon_sym_COLON, + [175799] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9210), 1, anon_sym_COLON, - [175687] = 2, + [175806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9212), 1, - anon_sym_COLON, - [175694] = 2, + anon_sym_SEMI, + [175813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9214), 1, - anon_sym_LBRACE, - [175701] = 2, + sym_variable, + [175820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9216), 1, - anon_sym_RPAREN, - [175708] = 2, + anon_sym_COLON, + [175827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9218), 1, - anon_sym_COLON, - [175715] = 2, + anon_sym_RPAREN, + [175834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9220), 1, - sym_identifier, - [175722] = 2, + anon_sym_RPAREN, + [175841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9222), 1, anon_sym_SEMI, - [175729] = 2, + [175848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9224), 1, - anon_sym_RPAREN, - [175736] = 2, + anon_sym_LBRACE, + [175855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9226), 1, - anon_sym_LBRACE, - [175743] = 2, + sym_variable, + [175862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9228), 1, - anon_sym_LBRACE, - [175750] = 2, + sym__heredoc_end, + [175869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9230), 1, anon_sym_LBRACE, - [175757] = 2, + [175876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9232), 1, - sym_identifier, - [175764] = 2, + anon_sym_SEMI, + [175883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9234), 1, anon_sym_LBRACE, - [175771] = 2, + [175890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9236), 1, anon_sym_RPAREN, - [175778] = 2, + [175897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9238), 1, - anon_sym_LPAREN, - [175785] = 2, + anon_sym_RPAREN, + [175904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9240), 1, - sym_identifier, - [175792] = 2, + anon_sym_RPAREN, + [175911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9242), 1, - anon_sym_SEMI, - [175799] = 2, + anon_sym_RPAREN, + [175918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9244), 1, - sym_identifier, - [175806] = 2, + anon_sym_RPAREN, + [175925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9246), 1, anon_sym_RPAREN, - [175813] = 2, + [175932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9248), 1, - anon_sym_RPAREN, - [175820] = 2, + sym_identifier, + [175939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9250), 1, - anon_sym_RPAREN, - [175827] = 2, + anon_sym_LPAREN, + [175946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9252), 1, anon_sym_LPAREN, - [175834] = 2, + [175953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9254), 1, anon_sym_LPAREN, - [175841] = 2, + [175960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9256), 1, - anon_sym_LPAREN, - [175848] = 2, + anon_sym_EQ_EQ_GT, + [175967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9258), 1, - anon_sym_LBRACE, - [175855] = 2, + anon_sym_RPAREN, + [175974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9260), 1, - anon_sym_RPAREN, - [175862] = 2, + sym_identifier, + [175981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9262), 1, - sym_identifier, - [175869] = 2, + anon_sym_LBRACE, + [175988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9264), 1, - anon_sym_RPAREN, - [175876] = 2, + anon_sym_LPAREN, + [175995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9266), 1, - anon_sym_LPAREN, - [175883] = 2, + sym_identifier, + [176002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9268), 1, sym_identifier, - [175890] = 2, + [176009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9270), 1, - sym_identifier, - [175897] = 2, + anon_sym_LPAREN, + [176016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9272), 1, - anon_sym_LPAREN, - [175904] = 2, + anon_sym_LBRACE, + [176023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9274), 1, - anon_sym_RPAREN, - [175911] = 2, + sym_identifier, + [176030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9276), 1, - sym_identifier, - [175918] = 2, + anon_sym_LPAREN, + [176037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9278), 1, - anon_sym_LPAREN, - [175925] = 2, + anon_sym_RPAREN, + [176044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9280), 1, - anon_sym_LBRACE, - [175932] = 2, + anon_sym_SEMI, + [176051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9282), 1, - anon_sym_RPAREN, - [175939] = 2, + anon_sym_LPAREN, + [176058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9284), 1, - anon_sym_LPAREN, - [175946] = 2, + anon_sym_LBRACE, + [176065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9286), 1, anon_sym_LBRACE, - [175953] = 2, + [176072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9288), 1, - anon_sym_LBRACE, - [175960] = 2, + sym_identifier, + [176079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9290), 1, sym_identifier, - [175967] = 2, + [176086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9292), 1, - anon_sym_LBRACE, - [175974] = 2, + anon_sym_LPAREN, + [176093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9294), 1, - anon_sym_LPAREN, - [175981] = 2, + sym_identifier, + [176100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9296), 1, sym_identifier, - [175988] = 2, + [176107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9298), 1, - sym_identifier, - [175995] = 2, + anon_sym_LPAREN, + [176114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9300), 1, - anon_sym_LPAREN, - [176002] = 2, + sym_identifier, + [176121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9302), 1, - sym_identifier, - [176009] = 2, + anon_sym_LPAREN, + [176128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9304), 1, - anon_sym_LPAREN, - [176016] = 2, + anon_sym_RPAREN, + [176135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9306), 1, - anon_sym_SEMI, - [176023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5167), 1, - anon_sym_EQ, - [176030] = 2, + anon_sym_RPAREN, + [176142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9308), 1, anon_sym_LPAREN, - [176037] = 2, + [176149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9310), 1, - anon_sym_LPAREN, - [176044] = 2, + anon_sym_SEMI, + [176156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9312), 1, - anon_sym_RPAREN, - [176051] = 2, + anon_sym_LBRACE, + [176163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9314), 1, sym_identifier, - [176058] = 2, + [176170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8040), 1, + anon_sym_class, + [176177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9316), 1, anon_sym_LPAREN, - [176065] = 2, + [176184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9318), 1, - anon_sym_LPAREN, - [176072] = 2, + sym_identifier, + [176191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9320), 1, sym_identifier, - [176079] = 2, + [176198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9322), 1, - sym_identifier, - [176086] = 2, + anon_sym_LPAREN, + [176205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9324), 1, - anon_sym_LPAREN, - [176093] = 2, + sym_identifier, + [176212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9326), 1, - sym_identifier, - [176100] = 2, + anon_sym_LPAREN, + [176219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9328), 1, - anon_sym_LPAREN, - [176107] = 2, + sym_variable, + [176226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9330), 1, - anon_sym_RPAREN, - [176114] = 2, + anon_sym_SEMI, + [176233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9332), 1, - anon_sym_type, - [176121] = 2, + anon_sym_LPAREN, + [176240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9334), 1, - anon_sym_LPAREN, - [176128] = 2, + anon_sym_SEMI, + [176247] = 2, + ACTIONS(5544), 1, + sym_comment, + ACTIONS(7736), 1, + aux_sym_function_type_specifier_token1, + [176254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9336), 1, - anon_sym_LPAREN, - [176135] = 2, + sym_identifier, + [176261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9338), 1, - anon_sym_RPAREN, - [176142] = 2, + anon_sym_EQ_EQ_GT, + [176268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9340), 1, - sym_identifier, - [176149] = 2, + anon_sym_LPAREN, + [176275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9342), 1, - anon_sym_RPAREN, - [176156] = 2, + sym_identifier, + [176282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9344), 1, - anon_sym_LPAREN, - [176163] = 2, + sym_identifier, + [176289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9346), 1, - sym_identifier, - [176170] = 2, + anon_sym_LPAREN, + [176296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9348), 1, sym_identifier, - [176177] = 2, + [176303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9350), 1, anon_sym_LPAREN, - [176184] = 2, + [176310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9352), 1, sym_identifier, - [176191] = 2, + [176317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9354), 1, anon_sym_LPAREN, - [176198] = 2, + [176324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9356), 1, - anon_sym_ctx, - [176205] = 2, + anon_sym_LPAREN, + [176331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9358), 1, - anon_sym_RPAREN, - [176212] = 2, + anon_sym_LPAREN, + [176338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9360), 1, - anon_sym_LPAREN, - [176219] = 2, + anon_sym_LBRACE, + [176345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9362), 1, - anon_sym_SEMI, - [176226] = 2, + sym_identifier, + [176352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5167), 1, + anon_sym_EQ, + [176359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9364), 1, - anon_sym_SEMI, - [176233] = 2, + anon_sym_LPAREN, + [176366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9366), 1, sym_identifier, - [176240] = 2, + [176373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9368), 1, sym_identifier, - [176247] = 2, + [176380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9370), 1, anon_sym_LPAREN, - [176254] = 2, + [176387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9372), 1, sym_identifier, - [176261] = 2, + [176394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9374), 1, - sym_identifier, - [176268] = 2, + anon_sym_LPAREN, + [176401] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9376), 1, anon_sym_LPAREN, - [176275] = 2, + [176408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9378), 1, - sym_identifier, - [176282] = 2, + anon_sym_SEMI, + [176415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9380), 1, anon_sym_LPAREN, - [176289] = 2, + [176422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9382), 1, sym_identifier, - [176296] = 2, + [176429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9384), 1, - anon_sym_EQ_EQ_GT, - [176303] = 2, + anon_sym_RPAREN, + [176436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9386), 1, - anon_sym_LPAREN, - [176310] = 2, - ACTIONS(5544), 1, - sym_comment, - ACTIONS(7749), 1, - aux_sym_function_type_specifier_token1, - [176317] = 2, + sym_identifier, + [176443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9388), 1, - anon_sym_EQ, - [176324] = 2, + sym_identifier, + [176450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9390), 1, - sym_identifier, - [176331] = 2, + anon_sym_LPAREN, + [176457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9392), 1, - anon_sym_SEMI, - [176338] = 2, + sym_identifier, + [176464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9394), 1, - anon_sym_LPAREN, - [176345] = 2, + sym_identifier, + [176471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9396), 1, - sym_identifier, - [176352] = 2, + anon_sym_LPAREN, + [176478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9398), 1, sym_identifier, - [176359] = 2, + [176485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9400), 1, anon_sym_LPAREN, - [176366] = 2, + [176492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9402), 1, - sym_identifier, - [176373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 1, anon_sym_LPAREN, - [176380] = 2, + [176499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8036), 1, - anon_sym_class, - [176387] = 2, + ACTIONS(9404), 1, + anon_sym_EQ, + [176506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9406), 1, - sym_identifier, - [176394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9408), 1, anon_sym_LPAREN, - [176401] = 2, + [176513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9410), 1, + ACTIONS(9408), 1, anon_sym_class, - [176408] = 2, + [176520] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9412), 1, + ACTIONS(9410), 1, aux_sym_function_type_specifier_token1, - [176415] = 2, + [176527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9414), 1, + ACTIONS(9412), 1, anon_sym_LPAREN, - [176422] = 2, + [176534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 1, - anon_sym_SEMI, - [176429] = 2, + ACTIONS(9414), 1, + anon_sym_RPAREN, + [176541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9416), 1, anon_sym_class, - [176436] = 2, + [176548] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9420), 1, + ACTIONS(9418), 1, aux_sym_function_type_specifier_token1, - [176443] = 2, + [176555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9422), 1, + ACTIONS(9420), 1, anon_sym_class, - [176450] = 2, + [176562] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9424), 1, + ACTIONS(9422), 1, aux_sym_function_type_specifier_token1, - [176457] = 2, + [176569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9426), 1, + ACTIONS(9424), 1, anon_sym_class, - [176464] = 2, + [176576] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9428), 1, + ACTIONS(9426), 1, aux_sym_function_type_specifier_token1, - [176471] = 2, + [176583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9430), 1, + ACTIONS(9428), 1, anon_sym_class, - [176478] = 2, + [176590] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9432), 1, + ACTIONS(9430), 1, aux_sym_function_type_specifier_token1, - [176485] = 2, + [176597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9434), 1, + ACTIONS(9432), 1, anon_sym_class, - [176492] = 2, + [176604] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9436), 1, + ACTIONS(9434), 1, aux_sym_function_type_specifier_token1, - [176499] = 2, + [176611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(9436), 1, anon_sym_class, - [176506] = 2, + [176618] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9440), 1, + ACTIONS(9438), 1, aux_sym_function_type_specifier_token1, - [176513] = 2, + [176625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9442), 1, + ACTIONS(9440), 1, anon_sym_class, - [176520] = 2, + [176632] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9444), 1, + ACTIONS(9442), 1, aux_sym_function_type_specifier_token1, - [176527] = 2, + [176639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9446), 1, + ACTIONS(9444), 1, anon_sym_class, - [176534] = 2, + [176646] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9448), 1, + ACTIONS(9446), 1, aux_sym_function_type_specifier_token1, - [176541] = 2, + [176653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9450), 1, + ACTIONS(9448), 1, anon_sym_class, - [176548] = 2, + [176660] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9452), 1, + ACTIONS(9450), 1, aux_sym_function_type_specifier_token1, - [176555] = 2, + [176667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9454), 1, + ACTIONS(9452), 1, anon_sym_class, - [176562] = 2, + [176674] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9456), 1, + ACTIONS(9454), 1, aux_sym_function_type_specifier_token1, - [176569] = 2, + [176681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9458), 1, + ACTIONS(9456), 1, anon_sym_class, - [176576] = 2, + [176688] = 2, ACTIONS(5544), 1, sym_comment, - ACTIONS(9460), 1, + ACTIONS(9458), 1, aux_sym_function_type_specifier_token1, - [176583] = 2, + [176695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9462), 1, - sym_identifier, - [176590] = 2, + ACTIONS(9460), 1, + anon_sym_SEMI, + [176702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, - anon_sym_COLON, - [176597] = 2, + ACTIONS(9462), 1, + anon_sym_RPAREN, + [176709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9464), 1, - anon_sym_SEMI, - [176604] = 2, + anon_sym_RPAREN, + [176716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9466), 1, - sym_identifier, - [176611] = 2, + anon_sym_LBRACE, + [176723] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9468), 1, sym_identifier, - [176618] = 2, + [176730] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9470), 1, - anon_sym_LBRACE, - [176625] = 2, + anon_sym_LPAREN, + [176737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9472), 1, - anon_sym_SEMI, - [176632] = 2, + anon_sym_COLON, + [176744] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9474), 1, anon_sym_RPAREN, - [176639] = 2, + [176751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9476), 1, - anon_sym_SEMI, - [176646] = 2, + sym_identifier, + [176758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9478), 1, - sym_identifier, - [176653] = 2, + anon_sym_SEMI, + [176765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9480), 1, anon_sym_LBRACE, - [176660] = 2, + [176772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9482), 1, - anon_sym_SEMI, - [176667] = 2, + anon_sym_using, + [176779] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9484), 1, - anon_sym_LPAREN, - [176674] = 2, + anon_sym_SEMI, + [176786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9486), 1, - anon_sym_COLON, + sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1778)] = 0, - [SMALL_STATE(1779)] = 71, + [SMALL_STATE(1779)] = 79, [SMALL_STATE(1780)] = 150, - [SMALL_STATE(1781)] = 224, - [SMALL_STATE(1782)] = 294, - [SMALL_STATE(1783)] = 364, - [SMALL_STATE(1784)] = 487, - [SMALL_STATE(1785)] = 560, - [SMALL_STATE(1786)] = 635, - [SMALL_STATE(1787)] = 720, - [SMALL_STATE(1788)] = 843, - [SMALL_STATE(1789)] = 920, - [SMALL_STATE(1790)] = 995, - [SMALL_STATE(1791)] = 1076, - [SMALL_STATE(1792)] = 1199, - [SMALL_STATE(1793)] = 1272, - [SMALL_STATE(1794)] = 1345, - [SMALL_STATE(1795)] = 1422, - [SMALL_STATE(1796)] = 1506, - [SMALL_STATE(1797)] = 1578, - [SMALL_STATE(1798)] = 1648, - [SMALL_STATE(1799)] = 1720, - [SMALL_STATE(1800)] = 1790, - [SMALL_STATE(1801)] = 1860, - [SMALL_STATE(1802)] = 1928, - [SMALL_STATE(1803)] = 2000, - [SMALL_STATE(1804)] = 2068, - [SMALL_STATE(1805)] = 2144, - [SMALL_STATE(1806)] = 2214, - [SMALL_STATE(1807)] = 2286, - [SMALL_STATE(1808)] = 2354, - [SMALL_STATE(1809)] = 2426, - [SMALL_STATE(1810)] = 2498, - [SMALL_STATE(1811)] = 2569, - [SMALL_STATE(1812)] = 2652, - [SMALL_STATE(1813)] = 2719, - [SMALL_STATE(1814)] = 2786, - [SMALL_STATE(1815)] = 2853, - [SMALL_STATE(1816)] = 2932, - [SMALL_STATE(1817)] = 2999, - [SMALL_STATE(1818)] = 3078, - [SMALL_STATE(1819)] = 3145, - [SMALL_STATE(1820)] = 3212, - [SMALL_STATE(1821)] = 3279, - [SMALL_STATE(1822)] = 3350, - [SMALL_STATE(1823)] = 3417, - [SMALL_STATE(1824)] = 3484, - [SMALL_STATE(1825)] = 3551, - [SMALL_STATE(1826)] = 3618, - [SMALL_STATE(1827)] = 3691, - [SMALL_STATE(1828)] = 3758, - [SMALL_STATE(1829)] = 3825, - [SMALL_STATE(1830)] = 3892, - [SMALL_STATE(1831)] = 3959, - [SMALL_STATE(1832)] = 4026, - [SMALL_STATE(1833)] = 4093, - [SMALL_STATE(1834)] = 4164, - [SMALL_STATE(1835)] = 4231, - [SMALL_STATE(1836)] = 4298, - [SMALL_STATE(1837)] = 4365, - [SMALL_STATE(1838)] = 4432, - [SMALL_STATE(1839)] = 4499, - [SMALL_STATE(1840)] = 4566, - [SMALL_STATE(1841)] = 4637, - [SMALL_STATE(1842)] = 4708, - [SMALL_STATE(1843)] = 4775, - [SMALL_STATE(1844)] = 4842, - [SMALL_STATE(1845)] = 4909, - [SMALL_STATE(1846)] = 4982, - [SMALL_STATE(1847)] = 5049, - [SMALL_STATE(1848)] = 5116, - [SMALL_STATE(1849)] = 5183, - [SMALL_STATE(1850)] = 5250, - [SMALL_STATE(1851)] = 5317, - [SMALL_STATE(1852)] = 5384, - [SMALL_STATE(1853)] = 5457, - [SMALL_STATE(1854)] = 5524, - [SMALL_STATE(1855)] = 5591, - [SMALL_STATE(1856)] = 5658, - [SMALL_STATE(1857)] = 5729, - [SMALL_STATE(1858)] = 5796, - [SMALL_STATE(1859)] = 5863, - [SMALL_STATE(1860)] = 5930, - [SMALL_STATE(1861)] = 5997, - [SMALL_STATE(1862)] = 6064, - [SMALL_STATE(1863)] = 6131, - [SMALL_STATE(1864)] = 6198, - [SMALL_STATE(1865)] = 6271, - [SMALL_STATE(1866)] = 6338, - [SMALL_STATE(1867)] = 6405, - [SMALL_STATE(1868)] = 6472, - [SMALL_STATE(1869)] = 6539, - [SMALL_STATE(1870)] = 6606, - [SMALL_STATE(1871)] = 6673, - [SMALL_STATE(1872)] = 6740, - [SMALL_STATE(1873)] = 6807, - [SMALL_STATE(1874)] = 6874, - [SMALL_STATE(1875)] = 6941, - [SMALL_STATE(1876)] = 7007, - [SMALL_STATE(1877)] = 7079, - [SMALL_STATE(1878)] = 7147, - [SMALL_STATE(1879)] = 7217, - [SMALL_STATE(1880)] = 7287, - [SMALL_STATE(1881)] = 7355, - [SMALL_STATE(1882)] = 7435, - [SMALL_STATE(1883)] = 7503, - [SMALL_STATE(1884)] = 7585, - [SMALL_STATE(1885)] = 7655, - [SMALL_STATE(1886)] = 7725, - [SMALL_STATE(1887)] = 7791, - [SMALL_STATE(1888)] = 7873, - [SMALL_STATE(1889)] = 7939, - [SMALL_STATE(1890)] = 8017, - [SMALL_STATE(1891)] = 8082, - [SMALL_STATE(1892)] = 8147, - [SMALL_STATE(1893)] = 8214, - [SMALL_STATE(1894)] = 8279, - [SMALL_STATE(1895)] = 8352, - [SMALL_STATE(1896)] = 8417, - [SMALL_STATE(1897)] = 8482, - [SMALL_STATE(1898)] = 8547, - [SMALL_STATE(1899)] = 8630, - [SMALL_STATE(1900)] = 8701, - [SMALL_STATE(1901)] = 8766, - [SMALL_STATE(1902)] = 8831, - [SMALL_STATE(1903)] = 8896, - [SMALL_STATE(1904)] = 8961, - [SMALL_STATE(1905)] = 9032, - [SMALL_STATE(1906)] = 9097, - [SMALL_STATE(1907)] = 9162, - [SMALL_STATE(1908)] = 9227, - [SMALL_STATE(1909)] = 9292, - [SMALL_STATE(1910)] = 9357, - [SMALL_STATE(1911)] = 9422, - [SMALL_STATE(1912)] = 9487, - [SMALL_STATE(1913)] = 9552, - [SMALL_STATE(1914)] = 9617, - [SMALL_STATE(1915)] = 9682, - [SMALL_STATE(1916)] = 9747, - [SMALL_STATE(1917)] = 9812, - [SMALL_STATE(1918)] = 9877, - [SMALL_STATE(1919)] = 9942, - [SMALL_STATE(1920)] = 10007, - [SMALL_STATE(1921)] = 10072, - [SMALL_STATE(1922)] = 10155, - [SMALL_STATE(1923)] = 10220, - [SMALL_STATE(1924)] = 10285, - [SMALL_STATE(1925)] = 10350, - [SMALL_STATE(1926)] = 10415, - [SMALL_STATE(1927)] = 10480, - [SMALL_STATE(1928)] = 10557, - [SMALL_STATE(1929)] = 10622, - [SMALL_STATE(1930)] = 10687, - [SMALL_STATE(1931)] = 10752, - [SMALL_STATE(1932)] = 10817, - [SMALL_STATE(1933)] = 10900, - [SMALL_STATE(1934)] = 10965, - [SMALL_STATE(1935)] = 11030, - [SMALL_STATE(1936)] = 11095, - [SMALL_STATE(1937)] = 11160, - [SMALL_STATE(1938)] = 11225, - [SMALL_STATE(1939)] = 11290, - [SMALL_STATE(1940)] = 11355, - [SMALL_STATE(1941)] = 11420, - [SMALL_STATE(1942)] = 11485, - [SMALL_STATE(1943)] = 11550, - [SMALL_STATE(1944)] = 11633, - [SMALL_STATE(1945)] = 11698, - [SMALL_STATE(1946)] = 11763, - [SMALL_STATE(1947)] = 11828, - [SMALL_STATE(1948)] = 11893, - [SMALL_STATE(1949)] = 11958, - [SMALL_STATE(1950)] = 12023, - [SMALL_STATE(1951)] = 12088, - [SMALL_STATE(1952)] = 12153, - [SMALL_STATE(1953)] = 12218, - [SMALL_STATE(1954)] = 12283, - [SMALL_STATE(1955)] = 12348, - [SMALL_STATE(1956)] = 12413, - [SMALL_STATE(1957)] = 12478, - [SMALL_STATE(1958)] = 12555, - [SMALL_STATE(1959)] = 12620, - [SMALL_STATE(1960)] = 12685, - [SMALL_STATE(1961)] = 12768, - [SMALL_STATE(1962)] = 12833, - [SMALL_STATE(1963)] = 12898, - [SMALL_STATE(1964)] = 12963, - [SMALL_STATE(1965)] = 13028, - [SMALL_STATE(1966)] = 13093, - [SMALL_STATE(1967)] = 13158, - [SMALL_STATE(1968)] = 13223, - [SMALL_STATE(1969)] = 13288, - [SMALL_STATE(1970)] = 13353, - [SMALL_STATE(1971)] = 13418, - [SMALL_STATE(1972)] = 13501, - [SMALL_STATE(1973)] = 13566, - [SMALL_STATE(1974)] = 13631, - [SMALL_STATE(1975)] = 13714, - [SMALL_STATE(1976)] = 13779, - [SMALL_STATE(1977)] = 13844, - [SMALL_STATE(1978)] = 13909, - [SMALL_STATE(1979)] = 13974, - [SMALL_STATE(1980)] = 14039, - [SMALL_STATE(1981)] = 14104, - [SMALL_STATE(1982)] = 14169, - [SMALL_STATE(1983)] = 14234, - [SMALL_STATE(1984)] = 14299, - [SMALL_STATE(1985)] = 14364, - [SMALL_STATE(1986)] = 14429, - [SMALL_STATE(1987)] = 14494, - [SMALL_STATE(1988)] = 14559, - [SMALL_STATE(1989)] = 14624, - [SMALL_STATE(1990)] = 14689, - [SMALL_STATE(1991)] = 14762, - [SMALL_STATE(1992)] = 14827, - [SMALL_STATE(1993)] = 14892, - [SMALL_STATE(1994)] = 14957, - [SMALL_STATE(1995)] = 15073, - [SMALL_STATE(1996)] = 15191, - [SMALL_STATE(1997)] = 15307, - [SMALL_STATE(1998)] = 15387, - [SMALL_STATE(1999)] = 15503, - [SMALL_STATE(2000)] = 15619, - [SMALL_STATE(2001)] = 15727, - [SMALL_STATE(2002)] = 15839, - [SMALL_STATE(2003)] = 15947, - [SMALL_STATE(2004)] = 16027, - [SMALL_STATE(2005)] = 16143, - [SMALL_STATE(2006)] = 16223, - [SMALL_STATE(2007)] = 16339, - [SMALL_STATE(2008)] = 16455, - [SMALL_STATE(2009)] = 16571, - [SMALL_STATE(2010)] = 16651, - [SMALL_STATE(2011)] = 16767, - [SMALL_STATE(2012)] = 16883, - [SMALL_STATE(2013)] = 16999, - [SMALL_STATE(2014)] = 17083, - [SMALL_STATE(2015)] = 17199, - [SMALL_STATE(2016)] = 17277, - [SMALL_STATE(2017)] = 17363, - [SMALL_STATE(2018)] = 17479, - [SMALL_STATE(2019)] = 17587, - [SMALL_STATE(2020)] = 17703, - [SMALL_STATE(2021)] = 17785, - [SMALL_STATE(2022)] = 17877, - [SMALL_STATE(2023)] = 17979, - [SMALL_STATE(2024)] = 18077, - [SMALL_STATE(2025)] = 18181, - [SMALL_STATE(2026)] = 18277, - [SMALL_STATE(2027)] = 18377, - [SMALL_STATE(2028)] = 18485, - [SMALL_STATE(2029)] = 18565, - [SMALL_STATE(2030)] = 18677, - [SMALL_STATE(2031)] = 18793, - [SMALL_STATE(2032)] = 18909, - [SMALL_STATE(2033)] = 18985, - [SMALL_STATE(2034)] = 19101, - [SMALL_STATE(2035)] = 19181, - [SMALL_STATE(2036)] = 19265, - [SMALL_STATE(2037)] = 19353, - [SMALL_STATE(2038)] = 19439, - [SMALL_STATE(2039)] = 19517, - [SMALL_STATE(2040)] = 19633, - [SMALL_STATE(2041)] = 19711, - [SMALL_STATE(2042)] = 19791, - [SMALL_STATE(2043)] = 19873, - [SMALL_STATE(2044)] = 19943, - [SMALL_STATE(2045)] = 20039, - [SMALL_STATE(2046)] = 20115, - [SMALL_STATE(2047)] = 20219, - [SMALL_STATE(2048)] = 20297, - [SMALL_STATE(2049)] = 20377, - [SMALL_STATE(2050)] = 20493, - [SMALL_STATE(2051)] = 20591, - [SMALL_STATE(2052)] = 20693, - [SMALL_STATE(2053)] = 20801, - [SMALL_STATE(2054)] = 20917, - [SMALL_STATE(2055)] = 21009, - [SMALL_STATE(2056)] = 21091, - [SMALL_STATE(2057)] = 21169, - [SMALL_STATE(2058)] = 21277, - [SMALL_STATE(2059)] = 21393, - [SMALL_STATE(2060)] = 21473, - [SMALL_STATE(2061)] = 21541, - [SMALL_STATE(2062)] = 21629, - [SMALL_STATE(2063)] = 21747, - [SMALL_STATE(2064)] = 21847, - [SMALL_STATE(2065)] = 21923, - [SMALL_STATE(2066)] = 22005, - [SMALL_STATE(2067)] = 22085, - [SMALL_STATE(2068)] = 22163, - [SMALL_STATE(2069)] = 22241, - [SMALL_STATE(2070)] = 22357, - [SMALL_STATE(2071)] = 22427, - [SMALL_STATE(2072)] = 22543, - [SMALL_STATE(2073)] = 22659, - [SMALL_STATE(2074)] = 22739, - [SMALL_STATE(2075)] = 22819, - [SMALL_STATE(2076)] = 22935, - [SMALL_STATE(2077)] = 23051, - [SMALL_STATE(2078)] = 23119, - [SMALL_STATE(2079)] = 23235, - [SMALL_STATE(2080)] = 23315, - [SMALL_STATE(2081)] = 23389, - [SMALL_STATE(2082)] = 23505, - [SMALL_STATE(2083)] = 23575, - [SMALL_STATE(2084)] = 23649, - [SMALL_STATE(2085)] = 23717, - [SMALL_STATE(2086)] = 23781, - [SMALL_STATE(2087)] = 23861, - [SMALL_STATE(2088)] = 23977, - [SMALL_STATE(2089)] = 24057, - [SMALL_STATE(2090)] = 24129, - [SMALL_STATE(2091)] = 24205, - [SMALL_STATE(2092)] = 24279, - [SMALL_STATE(2093)] = 24359, - [SMALL_STATE(2094)] = 24474, - [SMALL_STATE(2095)] = 24589, - [SMALL_STATE(2096)] = 24666, - [SMALL_STATE(2097)] = 24769, - [SMALL_STATE(2098)] = 24846, - [SMALL_STATE(2099)] = 24923, - [SMALL_STATE(2100)] = 25000, - [SMALL_STATE(2101)] = 25077, - [SMALL_STATE(2102)] = 25144, - [SMALL_STATE(2103)] = 25251, - [SMALL_STATE(2104)] = 25328, - [SMALL_STATE(2105)] = 25403, - [SMALL_STATE(2106)] = 25518, - [SMALL_STATE(2107)] = 25625, - [SMALL_STATE(2108)] = 25702, - [SMALL_STATE(2109)] = 25767, - [SMALL_STATE(2110)] = 25848, - [SMALL_STATE(2111)] = 25961, - [SMALL_STATE(2112)] = 26052, - [SMALL_STATE(2113)] = 26167, - [SMALL_STATE(2114)] = 26280, - [SMALL_STATE(2115)] = 26347, - [SMALL_STATE(2116)] = 26412, - [SMALL_STATE(2117)] = 26525, - [SMALL_STATE(2118)] = 26626, - [SMALL_STATE(2119)] = 26693, - [SMALL_STATE(2120)] = 26808, - [SMALL_STATE(2121)] = 26883, - [SMALL_STATE(2122)] = 26980, - [SMALL_STATE(2123)] = 27083, - [SMALL_STATE(2124)] = 27158, - [SMALL_STATE(2125)] = 27253, - [SMALL_STATE(2126)] = 27352, - [SMALL_STATE(2127)] = 27459, - [SMALL_STATE(2128)] = 27534, - [SMALL_STATE(2129)] = 27645, - [SMALL_STATE(2130)] = 27720, - [SMALL_STATE(2131)] = 27835, - [SMALL_STATE(2132)] = 27918, - [SMALL_STATE(2133)] = 28005, - [SMALL_STATE(2134)] = 28084, - [SMALL_STATE(2135)] = 28153, - [SMALL_STATE(2136)] = 28238, - [SMALL_STATE(2137)] = 28307, - [SMALL_STATE(2138)] = 28384, - [SMALL_STATE(2139)] = 28459, - [SMALL_STATE(2140)] = 28536, - [SMALL_STATE(2141)] = 28603, - [SMALL_STATE(2142)] = 28670, - [SMALL_STATE(2143)] = 28737, - [SMALL_STATE(2144)] = 28804, - [SMALL_STATE(2145)] = 28921, - [SMALL_STATE(2146)] = 29000, - [SMALL_STATE(2147)] = 29075, - [SMALL_STATE(2148)] = 29156, - [SMALL_STATE(2149)] = 29233, - [SMALL_STATE(2150)] = 29348, - [SMALL_STATE(2151)] = 29463, - [SMALL_STATE(2152)] = 29578, - [SMALL_STATE(2153)] = 29693, - [SMALL_STATE(2154)] = 29766, - [SMALL_STATE(2155)] = 29843, - [SMALL_STATE(2156)] = 29920, - [SMALL_STATE(2157)] = 30035, - [SMALL_STATE(2158)] = 30112, - [SMALL_STATE(2159)] = 30189, - [SMALL_STATE(2160)] = 30266, - [SMALL_STATE(2161)] = 30343, - [SMALL_STATE(2162)] = 30458, - [SMALL_STATE(2163)] = 30573, - [SMALL_STATE(2164)] = 30650, - [SMALL_STATE(2165)] = 30727, - [SMALL_STATE(2166)] = 30802, - [SMALL_STATE(2167)] = 30871, - [SMALL_STATE(2168)] = 30948, - [SMALL_STATE(2169)] = 31064, - [SMALL_STATE(2170)] = 31162, - [SMALL_STATE(2171)] = 31234, - [SMALL_STATE(2172)] = 31350, - [SMALL_STATE(2173)] = 31422, - [SMALL_STATE(2174)] = 31494, - [SMALL_STATE(2175)] = 31592, - [SMALL_STATE(2176)] = 31664, - [SMALL_STATE(2177)] = 31774, - [SMALL_STATE(2178)] = 31894, - [SMALL_STATE(2179)] = 31966, - [SMALL_STATE(2180)] = 32086, - [SMALL_STATE(2181)] = 32162, - [SMALL_STATE(2182)] = 32260, - [SMALL_STATE(2183)] = 32326, - [SMALL_STATE(2184)] = 32424, - [SMALL_STATE(2185)] = 32496, - [SMALL_STATE(2186)] = 32562, - [SMALL_STATE(2187)] = 32634, - [SMALL_STATE(2188)] = 32754, - [SMALL_STATE(2189)] = 32874, - [SMALL_STATE(2190)] = 32946, - [SMALL_STATE(2191)] = 33016, - [SMALL_STATE(2192)] = 33136, - [SMALL_STATE(2193)] = 33208, - [SMALL_STATE(2194)] = 33274, - [SMALL_STATE(2195)] = 33346, - [SMALL_STATE(2196)] = 33410, - [SMALL_STATE(2197)] = 33478, - [SMALL_STATE(2198)] = 33550, - [SMALL_STATE(2199)] = 33624, - [SMALL_STATE(2200)] = 33740, - [SMALL_STATE(2201)] = 33804, - [SMALL_STATE(2202)] = 33876, - [SMALL_STATE(2203)] = 33942, - [SMALL_STATE(2204)] = 34006, - [SMALL_STATE(2205)] = 34068, - [SMALL_STATE(2206)] = 34140, - [SMALL_STATE(2207)] = 34212, - [SMALL_STATE(2208)] = 34288, - [SMALL_STATE(2209)] = 34362, - [SMALL_STATE(2210)] = 34428, - [SMALL_STATE(2211)] = 34526, - [SMALL_STATE(2212)] = 34600, - [SMALL_STATE(2213)] = 34672, - [SMALL_STATE(2214)] = 34744, - [SMALL_STATE(2215)] = 34864, - [SMALL_STATE(2216)] = 34930, - [SMALL_STATE(2217)] = 34994, - [SMALL_STATE(2218)] = 35056, - [SMALL_STATE(2219)] = 35122, - [SMALL_STATE(2220)] = 35184, - [SMALL_STATE(2221)] = 35304, - [SMALL_STATE(2222)] = 35370, - [SMALL_STATE(2223)] = 35470, - [SMALL_STATE(2224)] = 35536, - [SMALL_STATE(2225)] = 35608, - [SMALL_STATE(2226)] = 35680, - [SMALL_STATE(2227)] = 35752, - [SMALL_STATE(2228)] = 35824, - [SMALL_STATE(2229)] = 35922, - [SMALL_STATE(2230)] = 36042, - [SMALL_STATE(2231)] = 36116, - [SMALL_STATE(2232)] = 36188, - [SMALL_STATE(2233)] = 36262, - [SMALL_STATE(2234)] = 36360, - [SMALL_STATE(2235)] = 36434, - [SMALL_STATE(2236)] = 36506, - [SMALL_STATE(2237)] = 36580, - [SMALL_STATE(2238)] = 36652, - [SMALL_STATE(2239)] = 36726, - [SMALL_STATE(2240)] = 36798, - [SMALL_STATE(2241)] = 36915, - [SMALL_STATE(2242)] = 37032, - [SMALL_STATE(2243)] = 37101, - [SMALL_STATE(2244)] = 37166, - [SMALL_STATE(2245)] = 37285, - [SMALL_STATE(2246)] = 37354, - [SMALL_STATE(2247)] = 37415, - [SMALL_STATE(2248)] = 37476, - [SMALL_STATE(2249)] = 37593, - [SMALL_STATE(2250)] = 37710, - [SMALL_STATE(2251)] = 37779, - [SMALL_STATE(2252)] = 37840, - [SMALL_STATE(2253)] = 37953, - [SMALL_STATE(2254)] = 38014, - [SMALL_STATE(2255)] = 38131, - [SMALL_STATE(2256)] = 38248, - [SMALL_STATE(2257)] = 38317, - [SMALL_STATE(2258)] = 38382, - [SMALL_STATE(2259)] = 38465, - [SMALL_STATE(2260)] = 38536, - [SMALL_STATE(2261)] = 38597, - [SMALL_STATE(2262)] = 38658, - [SMALL_STATE(2263)] = 38719, - [SMALL_STATE(2264)] = 38836, - [SMALL_STATE(2265)] = 38953, - [SMALL_STATE(2266)] = 39014, - [SMALL_STATE(2267)] = 39133, - [SMALL_STATE(2268)] = 39252, - [SMALL_STATE(2269)] = 39369, - [SMALL_STATE(2270)] = 39486, - [SMALL_STATE(2271)] = 39555, - [SMALL_STATE(2272)] = 39640, - [SMALL_STATE(2273)] = 39727, - [SMALL_STATE(2274)] = 39788, - [SMALL_STATE(2275)] = 39903, - [SMALL_STATE(2276)] = 39964, - [SMALL_STATE(2277)] = 40075, - [SMALL_STATE(2278)] = 40192, - [SMALL_STATE(2279)] = 40309, - [SMALL_STATE(2280)] = 40370, - [SMALL_STATE(2281)] = 40487, - [SMALL_STATE(2282)] = 40604, - [SMALL_STATE(2283)] = 40721, - [SMALL_STATE(2284)] = 40838, - [SMALL_STATE(2285)] = 40907, - [SMALL_STATE(2286)] = 40976, - [SMALL_STATE(2287)] = 41093, - [SMALL_STATE(2288)] = 41210, - [SMALL_STATE(2289)] = 41327, - [SMALL_STATE(2290)] = 41444, - [SMALL_STATE(2291)] = 41561, - [SMALL_STATE(2292)] = 41626, - [SMALL_STATE(2293)] = 41743, - [SMALL_STATE(2294)] = 41862, - [SMALL_STATE(2295)] = 41979, - [SMALL_STATE(2296)] = 42048, - [SMALL_STATE(2297)] = 42165, - [SMALL_STATE(2298)] = 42236, - [SMALL_STATE(2299)] = 42305, - [SMALL_STATE(2300)] = 42366, - [SMALL_STATE(2301)] = 42483, - [SMALL_STATE(2302)] = 42552, - [SMALL_STATE(2303)] = 42669, - [SMALL_STATE(2304)] = 42730, - [SMALL_STATE(2305)] = 42791, - [SMALL_STATE(2306)] = 42860, - [SMALL_STATE(2307)] = 42977, - [SMALL_STATE(2308)] = 43084, - [SMALL_STATE(2309)] = 43201, - [SMALL_STATE(2310)] = 43270, - [SMALL_STATE(2311)] = 43387, - [SMALL_STATE(2312)] = 43486, - [SMALL_STATE(2313)] = 43581, - [SMALL_STATE(2314)] = 43684, - [SMALL_STATE(2315)] = 43755, - [SMALL_STATE(2316)] = 43852, - [SMALL_STATE(2317)] = 43921, - [SMALL_STATE(2318)] = 44038, - [SMALL_STATE(2319)] = 44155, - [SMALL_STATE(2320)] = 44256, - [SMALL_STATE(2321)] = 44347, - [SMALL_STATE(2322)] = 44418, - [SMALL_STATE(2323)] = 44499, - [SMALL_STATE(2324)] = 44566, - [SMALL_STATE(2325)] = 44635, - [SMALL_STATE(2326)] = 44706, - [SMALL_STATE(2327)] = 44823, - [SMALL_STATE(2328)] = 44940, - [SMALL_STATE(2329)] = 45057, - [SMALL_STATE(2330)] = 45122, - [SMALL_STATE(2331)] = 45197, - [SMALL_STATE(2332)] = 45266, - [SMALL_STATE(2333)] = 45335, - [SMALL_STATE(2334)] = 45452, - [SMALL_STATE(2335)] = 45569, - [SMALL_STATE(2336)] = 45686, - [SMALL_STATE(2337)] = 45803, - [SMALL_STATE(2338)] = 45864, - [SMALL_STATE(2339)] = 45981, - [SMALL_STATE(2340)] = 46042, - [SMALL_STATE(2341)] = 46149, - [SMALL_STATE(2342)] = 46210, - [SMALL_STATE(2343)] = 46271, - [SMALL_STATE(2344)] = 46386, - [SMALL_STATE(2345)] = 46455, - [SMALL_STATE(2346)] = 46516, - [SMALL_STATE(2347)] = 46633, - [SMALL_STATE(2348)] = 46750, - [SMALL_STATE(2349)] = 46811, - [SMALL_STATE(2350)] = 46872, - [SMALL_STATE(2351)] = 46943, - [SMALL_STATE(2352)] = 47004, - [SMALL_STATE(2353)] = 47065, - [SMALL_STATE(2354)] = 47126, - [SMALL_STATE(2355)] = 47193, - [SMALL_STATE(2356)] = 47312, - [SMALL_STATE(2357)] = 47429, - [SMALL_STATE(2358)] = 47494, - [SMALL_STATE(2359)] = 47611, - [SMALL_STATE(2360)] = 47680, - [SMALL_STATE(2361)] = 47797, - [SMALL_STATE(2362)] = 47862, - [SMALL_STATE(2363)] = 47979, - [SMALL_STATE(2364)] = 48096, - [SMALL_STATE(2365)] = 48157, - [SMALL_STATE(2366)] = 48274, - [SMALL_STATE(2367)] = 48345, - [SMALL_STATE(2368)] = 48416, - [SMALL_STATE(2369)] = 48533, - [SMALL_STATE(2370)] = 48650, - [SMALL_STATE(2371)] = 48711, - [SMALL_STATE(2372)] = 48780, - [SMALL_STATE(2373)] = 48841, - [SMALL_STATE(2374)] = 48908, - [SMALL_STATE(2375)] = 48969, - [SMALL_STATE(2376)] = 49038, - [SMALL_STATE(2377)] = 49105, - [SMALL_STATE(2378)] = 49180, - [SMALL_STATE(2379)] = 49245, - [SMALL_STATE(2380)] = 49362, - [SMALL_STATE(2381)] = 49423, - [SMALL_STATE(2382)] = 49542, - [SMALL_STATE(2383)] = 49603, - [SMALL_STATE(2384)] = 49720, - [SMALL_STATE(2385)] = 49785, - [SMALL_STATE(2386)] = 49902, - [SMALL_STATE(2387)] = 49973, - [SMALL_STATE(2388)] = 50034, - [SMALL_STATE(2389)] = 50099, - [SMALL_STATE(2390)] = 50216, - [SMALL_STATE(2391)] = 50287, - [SMALL_STATE(2392)] = 50348, - [SMALL_STATE(2393)] = 50417, - [SMALL_STATE(2394)] = 50478, - [SMALL_STATE(2395)] = 50539, - [SMALL_STATE(2396)] = 50654, - [SMALL_STATE(2397)] = 50771, - [SMALL_STATE(2398)] = 50888, - [SMALL_STATE(2399)] = 50949, - [SMALL_STATE(2400)] = 51022, - [SMALL_STATE(2401)] = 51139, - [SMALL_STATE(2402)] = 51256, - [SMALL_STATE(2403)] = 51317, - [SMALL_STATE(2404)] = 51378, - [SMALL_STATE(2405)] = 51495, - [SMALL_STATE(2406)] = 51560, - [SMALL_STATE(2407)] = 51677, - [SMALL_STATE(2408)] = 51744, - [SMALL_STATE(2409)] = 51805, - [SMALL_STATE(2410)] = 51922, - [SMALL_STATE(2411)] = 52037, - [SMALL_STATE(2412)] = 52098, - [SMALL_STATE(2413)] = 52215, - [SMALL_STATE(2414)] = 52330, - [SMALL_STATE(2415)] = 52447, - [SMALL_STATE(2416)] = 52564, - [SMALL_STATE(2417)] = 52625, - [SMALL_STATE(2418)] = 52742, - [SMALL_STATE(2419)] = 52859, - [SMALL_STATE(2420)] = 52976, - [SMALL_STATE(2421)] = 53045, - [SMALL_STATE(2422)] = 53114, - [SMALL_STATE(2423)] = 53175, - [SMALL_STATE(2424)] = 53236, - [SMALL_STATE(2425)] = 53305, - [SMALL_STATE(2426)] = 53368, - [SMALL_STATE(2427)] = 53437, - [SMALL_STATE(2428)] = 53506, - [SMALL_STATE(2429)] = 53623, - [SMALL_STATE(2430)] = 53740, - [SMALL_STATE(2431)] = 53857, - [SMALL_STATE(2432)] = 53976, - [SMALL_STATE(2433)] = 54037, - [SMALL_STATE(2434)] = 54154, - [SMALL_STATE(2435)] = 54225, - [SMALL_STATE(2436)] = 54342, - [SMALL_STATE(2437)] = 54459, - [SMALL_STATE(2438)] = 54576, - [SMALL_STATE(2439)] = 54693, - [SMALL_STATE(2440)] = 54810, - [SMALL_STATE(2441)] = 54881, - [SMALL_STATE(2442)] = 54942, - [SMALL_STATE(2443)] = 55061, - [SMALL_STATE(2444)] = 55130, - [SMALL_STATE(2445)] = 55247, - [SMALL_STATE(2446)] = 55314, - [SMALL_STATE(2447)] = 55431, - [SMALL_STATE(2448)] = 55502, - [SMALL_STATE(2449)] = 55619, - [SMALL_STATE(2450)] = 55680, - [SMALL_STATE(2451)] = 55797, - [SMALL_STATE(2452)] = 55912, - [SMALL_STATE(2453)] = 55981, - [SMALL_STATE(2454)] = 56098, - [SMALL_STATE(2455)] = 56215, - [SMALL_STATE(2456)] = 56330, - [SMALL_STATE(2457)] = 56395, - [SMALL_STATE(2458)] = 56464, - [SMALL_STATE(2459)] = 56579, - [SMALL_STATE(2460)] = 56652, - [SMALL_STATE(2461)] = 56713, - [SMALL_STATE(2462)] = 56820, - [SMALL_STATE(2463)] = 56889, - [SMALL_STATE(2464)] = 57004, - [SMALL_STATE(2465)] = 57065, - [SMALL_STATE(2466)] = 57134, - [SMALL_STATE(2467)] = 57249, - [SMALL_STATE(2468)] = 57364, - [SMALL_STATE(2469)] = 57435, - [SMALL_STATE(2470)] = 57496, - [SMALL_STATE(2471)] = 57565, - [SMALL_STATE(2472)] = 57682, - [SMALL_STATE(2473)] = 57799, - [SMALL_STATE(2474)] = 57916, - [SMALL_STATE(2475)] = 57985, - [SMALL_STATE(2476)] = 58046, - [SMALL_STATE(2477)] = 58111, - [SMALL_STATE(2478)] = 58176, - [SMALL_STATE(2479)] = 58293, - [SMALL_STATE(2480)] = 58362, - [SMALL_STATE(2481)] = 58479, - [SMALL_STATE(2482)] = 58540, - [SMALL_STATE(2483)] = 58605, - [SMALL_STATE(2484)] = 58722, - [SMALL_STATE(2485)] = 58839, - [SMALL_STATE(2486)] = 58900, - [SMALL_STATE(2487)] = 58961, - [SMALL_STATE(2488)] = 59030, - [SMALL_STATE(2489)] = 59091, - [SMALL_STATE(2490)] = 59208, - [SMALL_STATE(2491)] = 59277, - [SMALL_STATE(2492)] = 59346, - [SMALL_STATE(2493)] = 59415, - [SMALL_STATE(2494)] = 59484, - [SMALL_STATE(2495)] = 59553, - [SMALL_STATE(2496)] = 59614, - [SMALL_STATE(2497)] = 59675, - [SMALL_STATE(2498)] = 59792, - [SMALL_STATE(2499)] = 59867, - [SMALL_STATE(2500)] = 59936, - [SMALL_STATE(2501)] = 60051, - [SMALL_STATE(2502)] = 60122, - [SMALL_STATE(2503)] = 60239, - [SMALL_STATE(2504)] = 60356, - [SMALL_STATE(2505)] = 60417, - [SMALL_STATE(2506)] = 60488, - [SMALL_STATE(2507)] = 60569, - [SMALL_STATE(2508)] = 60686, - [SMALL_STATE(2509)] = 60747, - [SMALL_STATE(2510)] = 60864, - [SMALL_STATE(2511)] = 60935, - [SMALL_STATE(2512)] = 60996, - [SMALL_STATE(2513)] = 61057, - [SMALL_STATE(2514)] = 61172, - [SMALL_STATE(2515)] = 61233, - [SMALL_STATE(2516)] = 61298, - [SMALL_STATE(2517)] = 61367, - [SMALL_STATE(2518)] = 61440, - [SMALL_STATE(2519)] = 61505, - [SMALL_STATE(2520)] = 61622, - [SMALL_STATE(2521)] = 61739, - [SMALL_STATE(2522)] = 61856, - [SMALL_STATE(2523)] = 61925, - [SMALL_STATE(2524)] = 61986, - [SMALL_STATE(2525)] = 62103, - [SMALL_STATE(2526)] = 62215, - [SMALL_STATE(2527)] = 62281, - [SMALL_STATE(2528)] = 62349, - [SMALL_STATE(2529)] = 62415, - [SMALL_STATE(2530)] = 62481, - [SMALL_STATE(2531)] = 62551, - [SMALL_STATE(2532)] = 62617, - [SMALL_STATE(2533)] = 62687, - [SMALL_STATE(2534)] = 62753, - [SMALL_STATE(2535)] = 62821, - [SMALL_STATE(2536)] = 62887, - [SMALL_STATE(2537)] = 62999, - [SMALL_STATE(2538)] = 63065, - [SMALL_STATE(2539)] = 63177, - [SMALL_STATE(2540)] = 63289, - [SMALL_STATE(2541)] = 63355, - [SMALL_STATE(2542)] = 63421, - [SMALL_STATE(2543)] = 63533, - [SMALL_STATE(2544)] = 63645, - [SMALL_STATE(2545)] = 63711, - [SMALL_STATE(2546)] = 63823, - [SMALL_STATE(2547)] = 63891, - [SMALL_STATE(2548)] = 64003, - [SMALL_STATE(2549)] = 64071, - [SMALL_STATE(2550)] = 64137, - [SMALL_STATE(2551)] = 64201, - [SMALL_STATE(2552)] = 64267, + [SMALL_STATE(1781)] = 274, + [SMALL_STATE(1782)] = 344, + [SMALL_STATE(1783)] = 468, + [SMALL_STATE(1784)] = 542, + [SMALL_STATE(1785)] = 666, + [SMALL_STATE(1786)] = 736, + [SMALL_STATE(1787)] = 813, + [SMALL_STATE(1788)] = 894, + [SMALL_STATE(1789)] = 967, + [SMALL_STATE(1790)] = 1042, + [SMALL_STATE(1791)] = 1115, + [SMALL_STATE(1792)] = 1192, + [SMALL_STATE(1793)] = 1265, + [SMALL_STATE(1794)] = 1340, + [SMALL_STATE(1795)] = 1425, + [SMALL_STATE(1796)] = 1495, + [SMALL_STATE(1797)] = 1567, + [SMALL_STATE(1798)] = 1639, + [SMALL_STATE(1799)] = 1707, + [SMALL_STATE(1800)] = 1775, + [SMALL_STATE(1801)] = 1843, + [SMALL_STATE(1802)] = 1915, + [SMALL_STATE(1803)] = 1985, + [SMALL_STATE(1804)] = 2069, + [SMALL_STATE(1805)] = 2141, + [SMALL_STATE(1806)] = 2213, + [SMALL_STATE(1807)] = 2283, + [SMALL_STATE(1808)] = 2353, + [SMALL_STATE(1809)] = 2429, + [SMALL_STATE(1810)] = 2501, + [SMALL_STATE(1811)] = 2568, + [SMALL_STATE(1812)] = 2635, + [SMALL_STATE(1813)] = 2708, + [SMALL_STATE(1814)] = 2775, + [SMALL_STATE(1815)] = 2842, + [SMALL_STATE(1816)] = 2913, + [SMALL_STATE(1817)] = 2992, + [SMALL_STATE(1818)] = 3063, + [SMALL_STATE(1819)] = 3130, + [SMALL_STATE(1820)] = 3197, + [SMALL_STATE(1821)] = 3264, + [SMALL_STATE(1822)] = 3337, + [SMALL_STATE(1823)] = 3404, + [SMALL_STATE(1824)] = 3471, + [SMALL_STATE(1825)] = 3538, + [SMALL_STATE(1826)] = 3605, + [SMALL_STATE(1827)] = 3672, + [SMALL_STATE(1828)] = 3739, + [SMALL_STATE(1829)] = 3806, + [SMALL_STATE(1830)] = 3877, + [SMALL_STATE(1831)] = 3944, + [SMALL_STATE(1832)] = 4011, + [SMALL_STATE(1833)] = 4078, + [SMALL_STATE(1834)] = 4145, + [SMALL_STATE(1835)] = 4224, + [SMALL_STATE(1836)] = 4291, + [SMALL_STATE(1837)] = 4358, + [SMALL_STATE(1838)] = 4425, + [SMALL_STATE(1839)] = 4492, + [SMALL_STATE(1840)] = 4559, + [SMALL_STATE(1841)] = 4626, + [SMALL_STATE(1842)] = 4693, + [SMALL_STATE(1843)] = 4760, + [SMALL_STATE(1844)] = 4827, + [SMALL_STATE(1845)] = 4894, + [SMALL_STATE(1846)] = 4961, + [SMALL_STATE(1847)] = 5028, + [SMALL_STATE(1848)] = 5095, + [SMALL_STATE(1849)] = 5162, + [SMALL_STATE(1850)] = 5235, + [SMALL_STATE(1851)] = 5302, + [SMALL_STATE(1852)] = 5369, + [SMALL_STATE(1853)] = 5436, + [SMALL_STATE(1854)] = 5503, + [SMALL_STATE(1855)] = 5570, + [SMALL_STATE(1856)] = 5637, + [SMALL_STATE(1857)] = 5708, + [SMALL_STATE(1858)] = 5775, + [SMALL_STATE(1859)] = 5842, + [SMALL_STATE(1860)] = 5909, + [SMALL_STATE(1861)] = 5976, + [SMALL_STATE(1862)] = 6059, + [SMALL_STATE(1863)] = 6126, + [SMALL_STATE(1864)] = 6193, + [SMALL_STATE(1865)] = 6260, + [SMALL_STATE(1866)] = 6331, + [SMALL_STATE(1867)] = 6398, + [SMALL_STATE(1868)] = 6465, + [SMALL_STATE(1869)] = 6532, + [SMALL_STATE(1870)] = 6599, + [SMALL_STATE(1871)] = 6666, + [SMALL_STATE(1872)] = 6737, + [SMALL_STATE(1873)] = 6810, + [SMALL_STATE(1874)] = 6877, + [SMALL_STATE(1875)] = 6944, + [SMALL_STATE(1876)] = 7014, + [SMALL_STATE(1877)] = 7082, + [SMALL_STATE(1878)] = 7154, + [SMALL_STATE(1879)] = 7236, + [SMALL_STATE(1880)] = 7318, + [SMALL_STATE(1881)] = 7386, + [SMALL_STATE(1882)] = 7452, + [SMALL_STATE(1883)] = 7522, + [SMALL_STATE(1884)] = 7602, + [SMALL_STATE(1885)] = 7668, + [SMALL_STATE(1886)] = 7738, + [SMALL_STATE(1887)] = 7816, + [SMALL_STATE(1888)] = 7882, + [SMALL_STATE(1889)] = 7950, + [SMALL_STATE(1890)] = 8020, + [SMALL_STATE(1891)] = 8085, + [SMALL_STATE(1892)] = 8150, + [SMALL_STATE(1893)] = 8227, + [SMALL_STATE(1894)] = 8300, + [SMALL_STATE(1895)] = 8365, + [SMALL_STATE(1896)] = 8430, + [SMALL_STATE(1897)] = 8495, + [SMALL_STATE(1898)] = 8560, + [SMALL_STATE(1899)] = 8625, + [SMALL_STATE(1900)] = 8690, + [SMALL_STATE(1901)] = 8755, + [SMALL_STATE(1902)] = 8820, + [SMALL_STATE(1903)] = 8903, + [SMALL_STATE(1904)] = 8968, + [SMALL_STATE(1905)] = 9033, + [SMALL_STATE(1906)] = 9098, + [SMALL_STATE(1907)] = 9163, + [SMALL_STATE(1908)] = 9234, + [SMALL_STATE(1909)] = 9299, + [SMALL_STATE(1910)] = 9416, + [SMALL_STATE(1911)] = 9489, + [SMALL_STATE(1912)] = 9554, + [SMALL_STATE(1913)] = 9619, + [SMALL_STATE(1914)] = 9684, + [SMALL_STATE(1915)] = 9749, + [SMALL_STATE(1916)] = 9814, + [SMALL_STATE(1917)] = 9879, + [SMALL_STATE(1918)] = 9944, + [SMALL_STATE(1919)] = 10009, + [SMALL_STATE(1920)] = 10074, + [SMALL_STATE(1921)] = 10139, + [SMALL_STATE(1922)] = 10222, + [SMALL_STATE(1923)] = 10287, + [SMALL_STATE(1924)] = 10352, + [SMALL_STATE(1925)] = 10417, + [SMALL_STATE(1926)] = 10482, + [SMALL_STATE(1927)] = 10547, + [SMALL_STATE(1928)] = 10612, + [SMALL_STATE(1929)] = 10677, + [SMALL_STATE(1930)] = 10742, + [SMALL_STATE(1931)] = 10807, + [SMALL_STATE(1932)] = 10872, + [SMALL_STATE(1933)] = 10937, + [SMALL_STATE(1934)] = 11002, + [SMALL_STATE(1935)] = 11067, + [SMALL_STATE(1936)] = 11132, + [SMALL_STATE(1937)] = 11197, + [SMALL_STATE(1938)] = 11262, + [SMALL_STATE(1939)] = 11327, + [SMALL_STATE(1940)] = 11392, + [SMALL_STATE(1941)] = 11457, + [SMALL_STATE(1942)] = 11522, + [SMALL_STATE(1943)] = 11587, + [SMALL_STATE(1944)] = 11652, + [SMALL_STATE(1945)] = 11717, + [SMALL_STATE(1946)] = 11782, + [SMALL_STATE(1947)] = 11847, + [SMALL_STATE(1948)] = 11912, + [SMALL_STATE(1949)] = 11977, + [SMALL_STATE(1950)] = 12042, + [SMALL_STATE(1951)] = 12107, + [SMALL_STATE(1952)] = 12174, + [SMALL_STATE(1953)] = 12291, + [SMALL_STATE(1954)] = 12356, + [SMALL_STATE(1955)] = 12421, + [SMALL_STATE(1956)] = 12486, + [SMALL_STATE(1957)] = 12551, + [SMALL_STATE(1958)] = 12616, + [SMALL_STATE(1959)] = 12681, + [SMALL_STATE(1960)] = 12746, + [SMALL_STATE(1961)] = 12811, + [SMALL_STATE(1962)] = 12876, + [SMALL_STATE(1963)] = 12953, + [SMALL_STATE(1964)] = 13018, + [SMALL_STATE(1965)] = 13083, + [SMALL_STATE(1966)] = 13166, + [SMALL_STATE(1967)] = 13231, + [SMALL_STATE(1968)] = 13348, + [SMALL_STATE(1969)] = 13413, + [SMALL_STATE(1970)] = 13478, + [SMALL_STATE(1971)] = 13543, + [SMALL_STATE(1972)] = 13608, + [SMALL_STATE(1973)] = 13673, + [SMALL_STATE(1974)] = 13738, + [SMALL_STATE(1975)] = 13803, + [SMALL_STATE(1976)] = 13868, + [SMALL_STATE(1977)] = 13933, + [SMALL_STATE(1978)] = 13998, + [SMALL_STATE(1979)] = 14063, + [SMALL_STATE(1980)] = 14128, + [SMALL_STATE(1981)] = 14193, + [SMALL_STATE(1982)] = 14258, + [SMALL_STATE(1983)] = 14323, + [SMALL_STATE(1984)] = 14406, + [SMALL_STATE(1985)] = 14489, + [SMALL_STATE(1986)] = 14560, + [SMALL_STATE(1987)] = 14625, + [SMALL_STATE(1988)] = 14690, + [SMALL_STATE(1989)] = 14755, + [SMALL_STATE(1990)] = 14820, + [SMALL_STATE(1991)] = 14885, + [SMALL_STATE(1992)] = 14950, + [SMALL_STATE(1993)] = 15015, + [SMALL_STATE(1994)] = 15080, + [SMALL_STATE(1995)] = 15163, + [SMALL_STATE(1996)] = 15246, + [SMALL_STATE(1997)] = 15311, + [SMALL_STATE(1998)] = 15393, + [SMALL_STATE(1999)] = 15473, + [SMALL_STATE(2000)] = 15537, + [SMALL_STATE(2001)] = 15653, + [SMALL_STATE(2002)] = 15727, + [SMALL_STATE(2003)] = 15843, + [SMALL_STATE(2004)] = 15923, + [SMALL_STATE(2005)] = 16009, + [SMALL_STATE(2006)] = 16077, + [SMALL_STATE(2007)] = 16147, + [SMALL_STATE(2008)] = 16261, + [SMALL_STATE(2009)] = 16331, + [SMALL_STATE(2010)] = 16419, + [SMALL_STATE(2011)] = 16527, + [SMALL_STATE(2012)] = 16607, + [SMALL_STATE(2013)] = 16687, + [SMALL_STATE(2014)] = 16765, + [SMALL_STATE(2015)] = 16881, + [SMALL_STATE(2016)] = 16997, + [SMALL_STATE(2017)] = 17079, + [SMALL_STATE(2018)] = 17195, + [SMALL_STATE(2019)] = 17311, + [SMALL_STATE(2020)] = 17419, + [SMALL_STATE(2021)] = 17487, + [SMALL_STATE(2022)] = 17571, + [SMALL_STATE(2023)] = 17687, + [SMALL_STATE(2024)] = 17805, + [SMALL_STATE(2025)] = 17917, + [SMALL_STATE(2026)] = 17987, + [SMALL_STATE(2027)] = 18103, + [SMALL_STATE(2028)] = 18181, + [SMALL_STATE(2029)] = 18289, + [SMALL_STATE(2030)] = 18405, + [SMALL_STATE(2031)] = 18521, + [SMALL_STATE(2032)] = 18635, + [SMALL_STATE(2033)] = 18735, + [SMALL_STATE(2034)] = 18815, + [SMALL_STATE(2035)] = 18923, + [SMALL_STATE(2036)] = 18997, + [SMALL_STATE(2037)] = 19071, + [SMALL_STATE(2038)] = 19187, + [SMALL_STATE(2039)] = 19305, + [SMALL_STATE(2040)] = 19385, + [SMALL_STATE(2041)] = 19463, + [SMALL_STATE(2042)] = 19545, + [SMALL_STATE(2043)] = 19649, + [SMALL_STATE(2044)] = 19745, + [SMALL_STATE(2045)] = 19837, + [SMALL_STATE(2046)] = 19953, + [SMALL_STATE(2047)] = 20057, + [SMALL_STATE(2048)] = 20155, + [SMALL_STATE(2049)] = 20257, + [SMALL_STATE(2050)] = 20359, + [SMALL_STATE(2051)] = 20439, + [SMALL_STATE(2052)] = 20531, + [SMALL_STATE(2053)] = 20609, + [SMALL_STATE(2054)] = 20689, + [SMALL_STATE(2055)] = 20769, + [SMALL_STATE(2056)] = 20885, + [SMALL_STATE(2057)] = 21001, + [SMALL_STATE(2058)] = 21069, + [SMALL_STATE(2059)] = 21149, + [SMALL_STATE(2060)] = 21225, + [SMALL_STATE(2061)] = 21333, + [SMALL_STATE(2062)] = 21413, + [SMALL_STATE(2063)] = 21493, + [SMALL_STATE(2064)] = 21609, + [SMALL_STATE(2065)] = 21687, + [SMALL_STATE(2066)] = 21803, + [SMALL_STATE(2067)] = 21919, + [SMALL_STATE(2068)] = 22033, + [SMALL_STATE(2069)] = 22109, + [SMALL_STATE(2070)] = 22189, + [SMALL_STATE(2071)] = 22305, + [SMALL_STATE(2072)] = 22381, + [SMALL_STATE(2073)] = 22497, + [SMALL_STATE(2074)] = 22577, + [SMALL_STATE(2075)] = 22675, + [SMALL_STATE(2076)] = 22791, + [SMALL_STATE(2077)] = 22907, + [SMALL_STATE(2078)] = 23023, + [SMALL_STATE(2079)] = 23103, + [SMALL_STATE(2080)] = 23219, + [SMALL_STATE(2081)] = 23297, + [SMALL_STATE(2082)] = 23413, + [SMALL_STATE(2083)] = 23529, + [SMALL_STATE(2084)] = 23615, + [SMALL_STATE(2085)] = 23693, + [SMALL_STATE(2086)] = 23775, + [SMALL_STATE(2087)] = 23847, + [SMALL_STATE(2088)] = 23935, + [SMALL_STATE(2089)] = 24019, + [SMALL_STATE(2090)] = 24135, + [SMALL_STATE(2091)] = 24211, + [SMALL_STATE(2092)] = 24323, + [SMALL_STATE(2093)] = 24431, + [SMALL_STATE(2094)] = 24531, + [SMALL_STATE(2095)] = 24627, + [SMALL_STATE(2096)] = 24707, + [SMALL_STATE(2097)] = 24784, + [SMALL_STATE(2098)] = 24859, + [SMALL_STATE(2099)] = 24974, + [SMALL_STATE(2100)] = 25051, + [SMALL_STATE(2101)] = 25118, + [SMALL_STATE(2102)] = 25185, + [SMALL_STATE(2103)] = 25260, + [SMALL_STATE(2104)] = 25325, + [SMALL_STATE(2105)] = 25416, + [SMALL_STATE(2106)] = 25517, + [SMALL_STATE(2107)] = 25596, + [SMALL_STATE(2108)] = 25693, + [SMALL_STATE(2109)] = 25770, + [SMALL_STATE(2110)] = 25847, + [SMALL_STATE(2111)] = 25924, + [SMALL_STATE(2112)] = 25999, + [SMALL_STATE(2113)] = 26116, + [SMALL_STATE(2114)] = 26191, + [SMALL_STATE(2115)] = 26266, + [SMALL_STATE(2116)] = 26341, + [SMALL_STATE(2117)] = 26422, + [SMALL_STATE(2118)] = 26499, + [SMALL_STATE(2119)] = 26580, + [SMALL_STATE(2120)] = 26695, + [SMALL_STATE(2121)] = 26798, + [SMALL_STATE(2122)] = 26875, + [SMALL_STATE(2123)] = 26970, + [SMALL_STATE(2124)] = 27069, + [SMALL_STATE(2125)] = 27184, + [SMALL_STATE(2126)] = 27291, + [SMALL_STATE(2127)] = 27394, + [SMALL_STATE(2128)] = 27471, + [SMALL_STATE(2129)] = 27586, + [SMALL_STATE(2130)] = 27663, + [SMALL_STATE(2131)] = 27738, + [SMALL_STATE(2132)] = 27849, + [SMALL_STATE(2133)] = 27964, + [SMALL_STATE(2134)] = 28041, + [SMALL_STATE(2135)] = 28124, + [SMALL_STATE(2136)] = 28211, + [SMALL_STATE(2137)] = 28284, + [SMALL_STATE(2138)] = 28369, + [SMALL_STATE(2139)] = 28446, + [SMALL_STATE(2140)] = 28553, + [SMALL_STATE(2141)] = 28668, + [SMALL_STATE(2142)] = 28735, + [SMALL_STATE(2143)] = 28812, + [SMALL_STATE(2144)] = 28879, + [SMALL_STATE(2145)] = 28956, + [SMALL_STATE(2146)] = 29033, + [SMALL_STATE(2147)] = 29112, + [SMALL_STATE(2148)] = 29189, + [SMALL_STATE(2149)] = 29304, + [SMALL_STATE(2150)] = 29371, + [SMALL_STATE(2151)] = 29486, + [SMALL_STATE(2152)] = 29553, + [SMALL_STATE(2153)] = 29630, + [SMALL_STATE(2154)] = 29699, + [SMALL_STATE(2155)] = 29810, + [SMALL_STATE(2156)] = 29875, + [SMALL_STATE(2157)] = 29982, + [SMALL_STATE(2158)] = 30051, + [SMALL_STATE(2159)] = 30166, + [SMALL_STATE(2160)] = 30281, + [SMALL_STATE(2161)] = 30396, + [SMALL_STATE(2162)] = 30473, + [SMALL_STATE(2163)] = 30542, + [SMALL_STATE(2164)] = 30617, + [SMALL_STATE(2165)] = 30732, + [SMALL_STATE(2166)] = 30847, + [SMALL_STATE(2167)] = 30924, + [SMALL_STATE(2168)] = 31001, + [SMALL_STATE(2169)] = 31068, + [SMALL_STATE(2170)] = 31140, + [SMALL_STATE(2171)] = 31210, + [SMALL_STATE(2172)] = 31308, + [SMALL_STATE(2173)] = 31382, + [SMALL_STATE(2174)] = 31448, + [SMALL_STATE(2175)] = 31510, + [SMALL_STATE(2176)] = 31574, + [SMALL_STATE(2177)] = 31646, + [SMALL_STATE(2178)] = 31744, + [SMALL_STATE(2179)] = 31808, + [SMALL_STATE(2180)] = 31928, + [SMALL_STATE(2181)] = 32002, + [SMALL_STATE(2182)] = 32074, + [SMALL_STATE(2183)] = 32146, + [SMALL_STATE(2184)] = 32218, + [SMALL_STATE(2185)] = 32284, + [SMALL_STATE(2186)] = 32350, + [SMALL_STATE(2187)] = 32422, + [SMALL_STATE(2188)] = 32486, + [SMALL_STATE(2189)] = 32558, + [SMALL_STATE(2190)] = 32630, + [SMALL_STATE(2191)] = 32698, + [SMALL_STATE(2192)] = 32770, + [SMALL_STATE(2193)] = 32832, + [SMALL_STATE(2194)] = 32948, + [SMALL_STATE(2195)] = 33012, + [SMALL_STATE(2196)] = 33078, + [SMALL_STATE(2197)] = 33150, + [SMALL_STATE(2198)] = 33216, + [SMALL_STATE(2199)] = 33282, + [SMALL_STATE(2200)] = 33356, + [SMALL_STATE(2201)] = 33418, + [SMALL_STATE(2202)] = 33492, + [SMALL_STATE(2203)] = 33564, + [SMALL_STATE(2204)] = 33638, + [SMALL_STATE(2205)] = 33710, + [SMALL_STATE(2206)] = 33830, + [SMALL_STATE(2207)] = 33950, + [SMALL_STATE(2208)] = 34022, + [SMALL_STATE(2209)] = 34094, + [SMALL_STATE(2210)] = 34192, + [SMALL_STATE(2211)] = 34292, + [SMALL_STATE(2212)] = 34364, + [SMALL_STATE(2213)] = 34480, + [SMALL_STATE(2214)] = 34552, + [SMALL_STATE(2215)] = 34624, + [SMALL_STATE(2216)] = 34722, + [SMALL_STATE(2217)] = 34794, + [SMALL_STATE(2218)] = 34860, + [SMALL_STATE(2219)] = 34936, + [SMALL_STATE(2220)] = 35056, + [SMALL_STATE(2221)] = 35122, + [SMALL_STATE(2222)] = 35194, + [SMALL_STATE(2223)] = 35314, + [SMALL_STATE(2224)] = 35434, + [SMALL_STATE(2225)] = 35508, + [SMALL_STATE(2226)] = 35606, + [SMALL_STATE(2227)] = 35680, + [SMALL_STATE(2228)] = 35796, + [SMALL_STATE(2229)] = 35868, + [SMALL_STATE(2230)] = 35940, + [SMALL_STATE(2231)] = 36014, + [SMALL_STATE(2232)] = 36086, + [SMALL_STATE(2233)] = 36184, + [SMALL_STATE(2234)] = 36260, + [SMALL_STATE(2235)] = 36358, + [SMALL_STATE(2236)] = 36430, + [SMALL_STATE(2237)] = 36502, + [SMALL_STATE(2238)] = 36568, + [SMALL_STATE(2239)] = 36688, + [SMALL_STATE(2240)] = 36808, + [SMALL_STATE(2241)] = 36925, + [SMALL_STATE(2242)] = 36994, + [SMALL_STATE(2243)] = 37055, + [SMALL_STATE(2244)] = 37116, + [SMALL_STATE(2245)] = 37233, + [SMALL_STATE(2246)] = 37294, + [SMALL_STATE(2247)] = 37407, + [SMALL_STATE(2248)] = 37524, + [SMALL_STATE(2249)] = 37641, + [SMALL_STATE(2250)] = 37758, + [SMALL_STATE(2251)] = 37819, + [SMALL_STATE(2252)] = 37880, + [SMALL_STATE(2253)] = 37941, + [SMALL_STATE(2254)] = 38052, + [SMALL_STATE(2255)] = 38169, + [SMALL_STATE(2256)] = 38230, + [SMALL_STATE(2257)] = 38347, + [SMALL_STATE(2258)] = 38408, + [SMALL_STATE(2259)] = 38525, + [SMALL_STATE(2260)] = 38586, + [SMALL_STATE(2261)] = 38647, + [SMALL_STATE(2262)] = 38764, + [SMALL_STATE(2263)] = 38825, + [SMALL_STATE(2264)] = 38894, + [SMALL_STATE(2265)] = 39013, + [SMALL_STATE(2266)] = 39074, + [SMALL_STATE(2267)] = 39135, + [SMALL_STATE(2268)] = 39196, + [SMALL_STATE(2269)] = 39261, + [SMALL_STATE(2270)] = 39368, + [SMALL_STATE(2271)] = 39487, + [SMALL_STATE(2272)] = 39604, + [SMALL_STATE(2273)] = 39721, + [SMALL_STATE(2274)] = 39790, + [SMALL_STATE(2275)] = 39851, + [SMALL_STATE(2276)] = 39922, + [SMALL_STATE(2277)] = 40039, + [SMALL_STATE(2278)] = 40138, + [SMALL_STATE(2279)] = 40233, + [SMALL_STATE(2280)] = 40350, + [SMALL_STATE(2281)] = 40419, + [SMALL_STATE(2282)] = 40488, + [SMALL_STATE(2283)] = 40549, + [SMALL_STATE(2284)] = 40610, + [SMALL_STATE(2285)] = 40727, + [SMALL_STATE(2286)] = 40792, + [SMALL_STATE(2287)] = 40861, + [SMALL_STATE(2288)] = 40930, + [SMALL_STATE(2289)] = 41005, + [SMALL_STATE(2290)] = 41122, + [SMALL_STATE(2291)] = 41191, + [SMALL_STATE(2292)] = 41294, + [SMALL_STATE(2293)] = 41365, + [SMALL_STATE(2294)] = 41462, + [SMALL_STATE(2295)] = 41563, + [SMALL_STATE(2296)] = 41646, + [SMALL_STATE(2297)] = 41763, + [SMALL_STATE(2298)] = 41882, + [SMALL_STATE(2299)] = 41973, + [SMALL_STATE(2300)] = 42090, + [SMALL_STATE(2301)] = 42207, + [SMALL_STATE(2302)] = 42288, + [SMALL_STATE(2303)] = 42357, + [SMALL_STATE(2304)] = 42432, + [SMALL_STATE(2305)] = 42503, + [SMALL_STATE(2306)] = 42610, + [SMALL_STATE(2307)] = 42671, + [SMALL_STATE(2308)] = 42788, + [SMALL_STATE(2309)] = 42907, + [SMALL_STATE(2310)] = 42968, + [SMALL_STATE(2311)] = 43037, + [SMALL_STATE(2312)] = 43102, + [SMALL_STATE(2313)] = 43163, + [SMALL_STATE(2314)] = 43224, + [SMALL_STATE(2315)] = 43341, + [SMALL_STATE(2316)] = 43460, + [SMALL_STATE(2317)] = 43521, + [SMALL_STATE(2318)] = 43638, + [SMALL_STATE(2319)] = 43755, + [SMALL_STATE(2320)] = 43824, + [SMALL_STATE(2321)] = 43941, + [SMALL_STATE(2322)] = 44002, + [SMALL_STATE(2323)] = 44063, + [SMALL_STATE(2324)] = 44128, + [SMALL_STATE(2325)] = 44189, + [SMALL_STATE(2326)] = 44306, + [SMALL_STATE(2327)] = 44377, + [SMALL_STATE(2328)] = 44492, + [SMALL_STATE(2329)] = 44561, + [SMALL_STATE(2330)] = 44630, + [SMALL_STATE(2331)] = 44691, + [SMALL_STATE(2332)] = 44808, + [SMALL_STATE(2333)] = 44923, + [SMALL_STATE(2334)] = 44992, + [SMALL_STATE(2335)] = 45063, + [SMALL_STATE(2336)] = 45132, + [SMALL_STATE(2337)] = 45193, + [SMALL_STATE(2338)] = 45254, + [SMALL_STATE(2339)] = 45315, + [SMALL_STATE(2340)] = 45432, + [SMALL_STATE(2341)] = 45549, + [SMALL_STATE(2342)] = 45666, + [SMALL_STATE(2343)] = 45735, + [SMALL_STATE(2344)] = 45800, + [SMALL_STATE(2345)] = 45917, + [SMALL_STATE(2346)] = 46034, + [SMALL_STATE(2347)] = 46095, + [SMALL_STATE(2348)] = 46212, + [SMALL_STATE(2349)] = 46329, + [SMALL_STATE(2350)] = 46446, + [SMALL_STATE(2351)] = 46563, + [SMALL_STATE(2352)] = 46624, + [SMALL_STATE(2353)] = 46693, + [SMALL_STATE(2354)] = 46810, + [SMALL_STATE(2355)] = 46877, + [SMALL_STATE(2356)] = 46994, + [SMALL_STATE(2357)] = 47111, + [SMALL_STATE(2358)] = 47176, + [SMALL_STATE(2359)] = 47293, + [SMALL_STATE(2360)] = 47410, + [SMALL_STATE(2361)] = 47497, + [SMALL_STATE(2362)] = 47614, + [SMALL_STATE(2363)] = 47731, + [SMALL_STATE(2364)] = 47816, + [SMALL_STATE(2365)] = 47885, + [SMALL_STATE(2366)] = 47946, + [SMALL_STATE(2367)] = 48063, + [SMALL_STATE(2368)] = 48180, + [SMALL_STATE(2369)] = 48297, + [SMALL_STATE(2370)] = 48414, + [SMALL_STATE(2371)] = 48531, + [SMALL_STATE(2372)] = 48648, + [SMALL_STATE(2373)] = 48763, + [SMALL_STATE(2374)] = 48830, + [SMALL_STATE(2375)] = 48901, + [SMALL_STATE(2376)] = 49020, + [SMALL_STATE(2377)] = 49089, + [SMALL_STATE(2378)] = 49150, + [SMALL_STATE(2379)] = 49267, + [SMALL_STATE(2380)] = 49328, + [SMALL_STATE(2381)] = 49393, + [SMALL_STATE(2382)] = 49454, + [SMALL_STATE(2383)] = 49515, + [SMALL_STATE(2384)] = 49576, + [SMALL_STATE(2385)] = 49693, + [SMALL_STATE(2386)] = 49810, + [SMALL_STATE(2387)] = 49871, + [SMALL_STATE(2388)] = 49988, + [SMALL_STATE(2389)] = 50057, + [SMALL_STATE(2390)] = 50174, + [SMALL_STATE(2391)] = 50245, + [SMALL_STATE(2392)] = 50316, + [SMALL_STATE(2393)] = 50385, + [SMALL_STATE(2394)] = 50446, + [SMALL_STATE(2395)] = 50515, + [SMALL_STATE(2396)] = 50632, + [SMALL_STATE(2397)] = 50749, + [SMALL_STATE(2398)] = 50810, + [SMALL_STATE(2399)] = 50879, + [SMALL_STATE(2400)] = 50996, + [SMALL_STATE(2401)] = 51113, + [SMALL_STATE(2402)] = 51230, + [SMALL_STATE(2403)] = 51295, + [SMALL_STATE(2404)] = 51356, + [SMALL_STATE(2405)] = 51473, + [SMALL_STATE(2406)] = 51534, + [SMALL_STATE(2407)] = 51603, + [SMALL_STATE(2408)] = 51664, + [SMALL_STATE(2409)] = 51729, + [SMALL_STATE(2410)] = 51798, + [SMALL_STATE(2411)] = 51869, + [SMALL_STATE(2412)] = 51934, + [SMALL_STATE(2413)] = 52051, + [SMALL_STATE(2414)] = 52168, + [SMALL_STATE(2415)] = 52237, + [SMALL_STATE(2416)] = 52308, + [SMALL_STATE(2417)] = 52369, + [SMALL_STATE(2418)] = 52436, + [SMALL_STATE(2419)] = 52509, + [SMALL_STATE(2420)] = 52626, + [SMALL_STATE(2421)] = 52743, + [SMALL_STATE(2422)] = 52804, + [SMALL_STATE(2423)] = 52877, + [SMALL_STATE(2424)] = 52992, + [SMALL_STATE(2425)] = 53053, + [SMALL_STATE(2426)] = 53170, + [SMALL_STATE(2427)] = 53287, + [SMALL_STATE(2428)] = 53356, + [SMALL_STATE(2429)] = 53425, + [SMALL_STATE(2430)] = 53486, + [SMALL_STATE(2431)] = 53547, + [SMALL_STATE(2432)] = 53608, + [SMALL_STATE(2433)] = 53669, + [SMALL_STATE(2434)] = 53730, + [SMALL_STATE(2435)] = 53791, + [SMALL_STATE(2436)] = 53908, + [SMALL_STATE(2437)] = 54025, + [SMALL_STATE(2438)] = 54090, + [SMALL_STATE(2439)] = 54207, + [SMALL_STATE(2440)] = 54324, + [SMALL_STATE(2441)] = 54431, + [SMALL_STATE(2442)] = 54502, + [SMALL_STATE(2443)] = 54617, + [SMALL_STATE(2444)] = 54686, + [SMALL_STATE(2445)] = 54747, + [SMALL_STATE(2446)] = 54816, + [SMALL_STATE(2447)] = 54881, + [SMALL_STATE(2448)] = 54998, + [SMALL_STATE(2449)] = 55115, + [SMALL_STATE(2450)] = 55232, + [SMALL_STATE(2451)] = 55301, + [SMALL_STATE(2452)] = 55362, + [SMALL_STATE(2453)] = 55429, + [SMALL_STATE(2454)] = 55490, + [SMALL_STATE(2455)] = 55607, + [SMALL_STATE(2456)] = 55722, + [SMALL_STATE(2457)] = 55839, + [SMALL_STATE(2458)] = 55904, + [SMALL_STATE(2459)] = 56021, + [SMALL_STATE(2460)] = 56138, + [SMALL_STATE(2461)] = 56253, + [SMALL_STATE(2462)] = 56322, + [SMALL_STATE(2463)] = 56439, + [SMALL_STATE(2464)] = 56558, + [SMALL_STATE(2465)] = 56629, + [SMALL_STATE(2466)] = 56746, + [SMALL_STATE(2467)] = 56863, + [SMALL_STATE(2468)] = 56980, + [SMALL_STATE(2469)] = 57045, + [SMALL_STATE(2470)] = 57162, + [SMALL_STATE(2471)] = 57279, + [SMALL_STATE(2472)] = 57340, + [SMALL_STATE(2473)] = 57457, + [SMALL_STATE(2474)] = 57526, + [SMALL_STATE(2475)] = 57587, + [SMALL_STATE(2476)] = 57658, + [SMALL_STATE(2477)] = 57727, + [SMALL_STATE(2478)] = 57844, + [SMALL_STATE(2479)] = 57905, + [SMALL_STATE(2480)] = 58020, + [SMALL_STATE(2481)] = 58089, + [SMALL_STATE(2482)] = 58158, + [SMALL_STATE(2483)] = 58275, + [SMALL_STATE(2484)] = 58342, + [SMALL_STATE(2485)] = 58459, + [SMALL_STATE(2486)] = 58528, + [SMALL_STATE(2487)] = 58645, + [SMALL_STATE(2488)] = 58714, + [SMALL_STATE(2489)] = 58781, + [SMALL_STATE(2490)] = 58850, + [SMALL_STATE(2491)] = 58967, + [SMALL_STATE(2492)] = 59084, + [SMALL_STATE(2493)] = 59201, + [SMALL_STATE(2494)] = 59274, + [SMALL_STATE(2495)] = 59391, + [SMALL_STATE(2496)] = 59452, + [SMALL_STATE(2497)] = 59569, + [SMALL_STATE(2498)] = 59640, + [SMALL_STATE(2499)] = 59757, + [SMALL_STATE(2500)] = 59838, + [SMALL_STATE(2501)] = 59907, + [SMALL_STATE(2502)] = 59982, + [SMALL_STATE(2503)] = 60051, + [SMALL_STATE(2504)] = 60120, + [SMALL_STATE(2505)] = 60185, + [SMALL_STATE(2506)] = 60300, + [SMALL_STATE(2507)] = 60417, + [SMALL_STATE(2508)] = 60488, + [SMALL_STATE(2509)] = 60605, + [SMALL_STATE(2510)] = 60720, + [SMALL_STATE(2511)] = 60835, + [SMALL_STATE(2512)] = 60904, + [SMALL_STATE(2513)] = 61019, + [SMALL_STATE(2514)] = 61134, + [SMALL_STATE(2515)] = 61205, + [SMALL_STATE(2516)] = 61322, + [SMALL_STATE(2517)] = 61387, + [SMALL_STATE(2518)] = 61504, + [SMALL_STATE(2519)] = 61621, + [SMALL_STATE(2520)] = 61738, + [SMALL_STATE(2521)] = 61857, + [SMALL_STATE(2522)] = 61928, + [SMALL_STATE(2523)] = 61991, + [SMALL_STATE(2524)] = 62052, + [SMALL_STATE(2525)] = 62113, + [SMALL_STATE(2526)] = 62181, + [SMALL_STATE(2527)] = 62249, + [SMALL_STATE(2528)] = 62351, + [SMALL_STATE(2529)] = 62463, + [SMALL_STATE(2530)] = 62525, + [SMALL_STATE(2531)] = 62591, + [SMALL_STATE(2532)] = 62703, + [SMALL_STATE(2533)] = 62815, + [SMALL_STATE(2534)] = 62927, + [SMALL_STATE(2535)] = 62995, + [SMALL_STATE(2536)] = 63063, + [SMALL_STATE(2537)] = 63129, + [SMALL_STATE(2538)] = 63195, + [SMALL_STATE(2539)] = 63265, + [SMALL_STATE(2540)] = 63329, + [SMALL_STATE(2541)] = 63395, + [SMALL_STATE(2542)] = 63463, + [SMALL_STATE(2543)] = 63529, + [SMALL_STATE(2544)] = 63595, + [SMALL_STATE(2545)] = 63661, + [SMALL_STATE(2546)] = 63729, + [SMALL_STATE(2547)] = 63841, + [SMALL_STATE(2548)] = 63907, + [SMALL_STATE(2549)] = 63973, + [SMALL_STATE(2550)] = 64085, + [SMALL_STATE(2551)] = 64151, + [SMALL_STATE(2552)] = 64221, [SMALL_STATE(2553)] = 64333, - [SMALL_STATE(2554)] = 64445, - [SMALL_STATE(2555)] = 64507, - [SMALL_STATE(2556)] = 64575, - [SMALL_STATE(2557)] = 64641, - [SMALL_STATE(2558)] = 64709, - [SMALL_STATE(2559)] = 64777, - [SMALL_STATE(2560)] = 64843, - [SMALL_STATE(2561)] = 64909, - [SMALL_STATE(2562)] = 64975, - [SMALL_STATE(2563)] = 65043, - [SMALL_STATE(2564)] = 65109, - [SMALL_STATE(2565)] = 65173, - [SMALL_STATE(2566)] = 65233, - [SMALL_STATE(2567)] = 65301, - [SMALL_STATE(2568)] = 65367, - [SMALL_STATE(2569)] = 65479, - [SMALL_STATE(2570)] = 65541, - [SMALL_STATE(2571)] = 65607, - [SMALL_STATE(2572)] = 65675, - [SMALL_STATE(2573)] = 65787, - [SMALL_STATE(2574)] = 65899, - [SMALL_STATE(2575)] = 66011, - [SMALL_STATE(2576)] = 66123, - [SMALL_STATE(2577)] = 66235, - [SMALL_STATE(2578)] = 66303, - [SMALL_STATE(2579)] = 66369, - [SMALL_STATE(2580)] = 66435, - [SMALL_STATE(2581)] = 66547, - [SMALL_STATE(2582)] = 66613, - [SMALL_STATE(2583)] = 66725, - [SMALL_STATE(2584)] = 66785, - [SMALL_STATE(2585)] = 66897, - [SMALL_STATE(2586)] = 67009, - [SMALL_STATE(2587)] = 67121, - [SMALL_STATE(2588)] = 67189, - [SMALL_STATE(2589)] = 67255, - [SMALL_STATE(2590)] = 67321, - [SMALL_STATE(2591)] = 67389, - [SMALL_STATE(2592)] = 67455, - [SMALL_STATE(2593)] = 67521, - [SMALL_STATE(2594)] = 67583, - [SMALL_STATE(2595)] = 67651, - [SMALL_STATE(2596)] = 67717, - [SMALL_STATE(2597)] = 67781, - [SMALL_STATE(2598)] = 67849, - [SMALL_STATE(2599)] = 67915, - [SMALL_STATE(2600)] = 67981, - [SMALL_STATE(2601)] = 68049, - [SMALL_STATE(2602)] = 68119, - [SMALL_STATE(2603)] = 68183, - [SMALL_STATE(2604)] = 68253, - [SMALL_STATE(2605)] = 68365, - [SMALL_STATE(2606)] = 68427, - [SMALL_STATE(2607)] = 68487, - [SMALL_STATE(2608)] = 68551, - [SMALL_STATE(2609)] = 68619, - [SMALL_STATE(2610)] = 68685, - [SMALL_STATE(2611)] = 68797, - [SMALL_STATE(2612)] = 68863, - [SMALL_STATE(2613)] = 68926, - [SMALL_STATE(2614)] = 69037, - [SMALL_STATE(2615)] = 69100, - [SMALL_STATE(2616)] = 69211, - [SMALL_STATE(2617)] = 69270, - [SMALL_STATE(2618)] = 69381, - [SMALL_STATE(2619)] = 69440, - [SMALL_STATE(2620)] = 69499, - [SMALL_STATE(2621)] = 69558, - [SMALL_STATE(2622)] = 69669, - [SMALL_STATE(2623)] = 69780, - [SMALL_STATE(2624)] = 69891, - [SMALL_STATE(2625)] = 70002, - [SMALL_STATE(2626)] = 70065, - [SMALL_STATE(2627)] = 70176, - [SMALL_STATE(2628)] = 70287, - [SMALL_STATE(2629)] = 70398, - [SMALL_STATE(2630)] = 70509, - [SMALL_STATE(2631)] = 70620, - [SMALL_STATE(2632)] = 70731, - [SMALL_STATE(2633)] = 70842, - [SMALL_STATE(2634)] = 70953, - [SMALL_STATE(2635)] = 71064, - [SMALL_STATE(2636)] = 71123, - [SMALL_STATE(2637)] = 71182, - [SMALL_STATE(2638)] = 71241, - [SMALL_STATE(2639)] = 71300, - [SMALL_STATE(2640)] = 71411, - [SMALL_STATE(2641)] = 71470, - [SMALL_STATE(2642)] = 71529, - [SMALL_STATE(2643)] = 71640, - [SMALL_STATE(2644)] = 71751, - [SMALL_STATE(2645)] = 71862, - [SMALL_STATE(2646)] = 71973, - [SMALL_STATE(2647)] = 72032, - [SMALL_STATE(2648)] = 72143, - [SMALL_STATE(2649)] = 72202, - [SMALL_STATE(2650)] = 72261, - [SMALL_STATE(2651)] = 72320, - [SMALL_STATE(2652)] = 72379, - [SMALL_STATE(2653)] = 72490, - [SMALL_STATE(2654)] = 72551, - [SMALL_STATE(2655)] = 72614, - [SMALL_STATE(2656)] = 72677, - [SMALL_STATE(2657)] = 72736, - [SMALL_STATE(2658)] = 72799, - [SMALL_STATE(2659)] = 72910, - [SMALL_STATE(2660)] = 73021, - [SMALL_STATE(2661)] = 73132, - [SMALL_STATE(2662)] = 73191, - [SMALL_STATE(2663)] = 73250, - [SMALL_STATE(2664)] = 73309, - [SMALL_STATE(2665)] = 73372, - [SMALL_STATE(2666)] = 73431, - [SMALL_STATE(2667)] = 73490, - [SMALL_STATE(2668)] = 73549, - [SMALL_STATE(2669)] = 73612, - [SMALL_STATE(2670)] = 73671, - [SMALL_STATE(2671)] = 73734, - [SMALL_STATE(2672)] = 73793, - [SMALL_STATE(2673)] = 73904, - [SMALL_STATE(2674)] = 73963, - [SMALL_STATE(2675)] = 74022, - [SMALL_STATE(2676)] = 74081, - [SMALL_STATE(2677)] = 74140, - [SMALL_STATE(2678)] = 74199, - [SMALL_STATE(2679)] = 74258, - [SMALL_STATE(2680)] = 74369, - [SMALL_STATE(2681)] = 74428, - [SMALL_STATE(2682)] = 74487, - [SMALL_STATE(2683)] = 74546, - [SMALL_STATE(2684)] = 74609, - [SMALL_STATE(2685)] = 74720, - [SMALL_STATE(2686)] = 74831, - [SMALL_STATE(2687)] = 74890, - [SMALL_STATE(2688)] = 74949, - [SMALL_STATE(2689)] = 75008, - [SMALL_STATE(2690)] = 75067, - [SMALL_STATE(2691)] = 75178, - [SMALL_STATE(2692)] = 75289, - [SMALL_STATE(2693)] = 75352, - [SMALL_STATE(2694)] = 75411, - [SMALL_STATE(2695)] = 75470, - [SMALL_STATE(2696)] = 75529, - [SMALL_STATE(2697)] = 75588, - [SMALL_STATE(2698)] = 75647, - [SMALL_STATE(2699)] = 75758, - [SMALL_STATE(2700)] = 75869, - [SMALL_STATE(2701)] = 75932, - [SMALL_STATE(2702)] = 75995, - [SMALL_STATE(2703)] = 76054, - [SMALL_STATE(2704)] = 76165, - [SMALL_STATE(2705)] = 76224, - [SMALL_STATE(2706)] = 76335, - [SMALL_STATE(2707)] = 76446, - [SMALL_STATE(2708)] = 76557, - [SMALL_STATE(2709)] = 76668, - [SMALL_STATE(2710)] = 76727, - [SMALL_STATE(2711)] = 76790, - [SMALL_STATE(2712)] = 76849, - [SMALL_STATE(2713)] = 76908, - [SMALL_STATE(2714)] = 77019, - [SMALL_STATE(2715)] = 77078, - [SMALL_STATE(2716)] = 77189, - [SMALL_STATE(2717)] = 77248, - [SMALL_STATE(2718)] = 77311, - [SMALL_STATE(2719)] = 77370, - [SMALL_STATE(2720)] = 77481, - [SMALL_STATE(2721)] = 77592, - [SMALL_STATE(2722)] = 77651, - [SMALL_STATE(2723)] = 77710, - [SMALL_STATE(2724)] = 77821, - [SMALL_STATE(2725)] = 77880, - [SMALL_STATE(2726)] = 77939, - [SMALL_STATE(2727)] = 77998, - [SMALL_STATE(2728)] = 78057, - [SMALL_STATE(2729)] = 78116, - [SMALL_STATE(2730)] = 78227, - [SMALL_STATE(2731)] = 78286, - [SMALL_STATE(2732)] = 78345, - [SMALL_STATE(2733)] = 78404, - [SMALL_STATE(2734)] = 78463, - [SMALL_STATE(2735)] = 78522, - [SMALL_STATE(2736)] = 78633, - [SMALL_STATE(2737)] = 78692, - [SMALL_STATE(2738)] = 78751, - [SMALL_STATE(2739)] = 78810, - [SMALL_STATE(2740)] = 78869, - [SMALL_STATE(2741)] = 78928, - [SMALL_STATE(2742)] = 79039, - [SMALL_STATE(2743)] = 79150, - [SMALL_STATE(2744)] = 79261, - [SMALL_STATE(2745)] = 79372, - [SMALL_STATE(2746)] = 79483, - [SMALL_STATE(2747)] = 79542, - [SMALL_STATE(2748)] = 79601, - [SMALL_STATE(2749)] = 79660, - [SMALL_STATE(2750)] = 79719, - [SMALL_STATE(2751)] = 79778, - [SMALL_STATE(2752)] = 79889, - [SMALL_STATE(2753)] = 79948, - [SMALL_STATE(2754)] = 80007, - [SMALL_STATE(2755)] = 80066, - [SMALL_STATE(2756)] = 80125, - [SMALL_STATE(2757)] = 80188, - [SMALL_STATE(2758)] = 80247, - [SMALL_STATE(2759)] = 80306, - [SMALL_STATE(2760)] = 80369, - [SMALL_STATE(2761)] = 80428, - [SMALL_STATE(2762)] = 80487, - [SMALL_STATE(2763)] = 80546, - [SMALL_STATE(2764)] = 80605, - [SMALL_STATE(2765)] = 80664, - [SMALL_STATE(2766)] = 80765, - [SMALL_STATE(2767)] = 80824, - [SMALL_STATE(2768)] = 80935, - [SMALL_STATE(2769)] = 80994, - [SMALL_STATE(2770)] = 81053, - [SMALL_STATE(2771)] = 81112, - [SMALL_STATE(2772)] = 81171, - [SMALL_STATE(2773)] = 81230, - [SMALL_STATE(2774)] = 81289, - [SMALL_STATE(2775)] = 81348, - [SMALL_STATE(2776)] = 81407, - [SMALL_STATE(2777)] = 81518, - [SMALL_STATE(2778)] = 81579, - [SMALL_STATE(2779)] = 81690, - [SMALL_STATE(2780)] = 81749, - [SMALL_STATE(2781)] = 81807, - [SMALL_STATE(2782)] = 81865, - [SMALL_STATE(2783)] = 81923, - [SMALL_STATE(2784)] = 81981, - [SMALL_STATE(2785)] = 82039, - [SMALL_STATE(2786)] = 82097, - [SMALL_STATE(2787)] = 82155, - [SMALL_STATE(2788)] = 82213, - [SMALL_STATE(2789)] = 82271, - [SMALL_STATE(2790)] = 82329, - [SMALL_STATE(2791)] = 82387, - [SMALL_STATE(2792)] = 82445, - [SMALL_STATE(2793)] = 82503, - [SMALL_STATE(2794)] = 82561, - [SMALL_STATE(2795)] = 82619, - [SMALL_STATE(2796)] = 82677, - [SMALL_STATE(2797)] = 82735, - [SMALL_STATE(2798)] = 82793, - [SMALL_STATE(2799)] = 82901, - [SMALL_STATE(2800)] = 82959, - [SMALL_STATE(2801)] = 83017, - [SMALL_STATE(2802)] = 83075, - [SMALL_STATE(2803)] = 83139, - [SMALL_STATE(2804)] = 83197, - [SMALL_STATE(2805)] = 83255, - [SMALL_STATE(2806)] = 83313, - [SMALL_STATE(2807)] = 83373, - [SMALL_STATE(2808)] = 83481, - [SMALL_STATE(2809)] = 83545, - [SMALL_STATE(2810)] = 83603, - [SMALL_STATE(2811)] = 83660, - [SMALL_STATE(2812)] = 83717, - [SMALL_STATE(2813)] = 83774, - [SMALL_STATE(2814)] = 83831, - [SMALL_STATE(2815)] = 83888, - [SMALL_STATE(2816)] = 83945, - [SMALL_STATE(2817)] = 84002, - [SMALL_STATE(2818)] = 84059, - [SMALL_STATE(2819)] = 84116, - [SMALL_STATE(2820)] = 84173, - [SMALL_STATE(2821)] = 84230, - [SMALL_STATE(2822)] = 84287, - [SMALL_STATE(2823)] = 84344, - [SMALL_STATE(2824)] = 84401, - [SMALL_STATE(2825)] = 84458, - [SMALL_STATE(2826)] = 84515, - [SMALL_STATE(2827)] = 84572, - [SMALL_STATE(2828)] = 84629, - [SMALL_STATE(2829)] = 84686, - [SMALL_STATE(2830)] = 84743, - [SMALL_STATE(2831)] = 84800, - [SMALL_STATE(2832)] = 84859, - [SMALL_STATE(2833)] = 84916, - [SMALL_STATE(2834)] = 84973, - [SMALL_STATE(2835)] = 85030, - [SMALL_STATE(2836)] = 85087, - [SMALL_STATE(2837)] = 85144, - [SMALL_STATE(2838)] = 85201, - [SMALL_STATE(2839)] = 85258, - [SMALL_STATE(2840)] = 85315, - [SMALL_STATE(2841)] = 85372, - [SMALL_STATE(2842)] = 85429, - [SMALL_STATE(2843)] = 85486, - [SMALL_STATE(2844)] = 85547, - [SMALL_STATE(2845)] = 85604, - [SMALL_STATE(2846)] = 85661, - [SMALL_STATE(2847)] = 85718, - [SMALL_STATE(2848)] = 85775, - [SMALL_STATE(2849)] = 85832, - [SMALL_STATE(2850)] = 85889, - [SMALL_STATE(2851)] = 85946, - [SMALL_STATE(2852)] = 86003, - [SMALL_STATE(2853)] = 86060, - [SMALL_STATE(2854)] = 86121, - [SMALL_STATE(2855)] = 86178, - [SMALL_STATE(2856)] = 86235, - [SMALL_STATE(2857)] = 86292, - [SMALL_STATE(2858)] = 86349, - [SMALL_STATE(2859)] = 86406, - [SMALL_STATE(2860)] = 86463, - [SMALL_STATE(2861)] = 86520, - [SMALL_STATE(2862)] = 86577, - [SMALL_STATE(2863)] = 86634, - [SMALL_STATE(2864)] = 86691, - [SMALL_STATE(2865)] = 86748, - [SMALL_STATE(2866)] = 86805, - [SMALL_STATE(2867)] = 86862, - [SMALL_STATE(2868)] = 86919, - [SMALL_STATE(2869)] = 86976, - [SMALL_STATE(2870)] = 87033, + [SMALL_STATE(2554)] = 64399, + [SMALL_STATE(2555)] = 64511, + [SMALL_STATE(2556)] = 64623, + [SMALL_STATE(2557)] = 64735, + [SMALL_STATE(2558)] = 64847, + [SMALL_STATE(2559)] = 64913, + [SMALL_STATE(2560)] = 64981, + [SMALL_STATE(2561)] = 65045, + [SMALL_STATE(2562)] = 65113, + [SMALL_STATE(2563)] = 65175, + [SMALL_STATE(2564)] = 65241, + [SMALL_STATE(2565)] = 65307, + [SMALL_STATE(2566)] = 65375, + [SMALL_STATE(2567)] = 65487, + [SMALL_STATE(2568)] = 65553, + [SMALL_STATE(2569)] = 65621, + [SMALL_STATE(2570)] = 65687, + [SMALL_STATE(2571)] = 65799, + [SMALL_STATE(2572)] = 65865, + [SMALL_STATE(2573)] = 65977, + [SMALL_STATE(2574)] = 66041, + [SMALL_STATE(2575)] = 66105, + [SMALL_STATE(2576)] = 66171, + [SMALL_STATE(2577)] = 66233, + [SMALL_STATE(2578)] = 66345, + [SMALL_STATE(2579)] = 66457, + [SMALL_STATE(2580)] = 66523, + [SMALL_STATE(2581)] = 66583, + [SMALL_STATE(2582)] = 66651, + [SMALL_STATE(2583)] = 66711, + [SMALL_STATE(2584)] = 66771, + [SMALL_STATE(2585)] = 66839, + [SMALL_STATE(2586)] = 66901, + [SMALL_STATE(2587)] = 66967, + [SMALL_STATE(2588)] = 67035, + [SMALL_STATE(2589)] = 67147, + [SMALL_STATE(2590)] = 67215, + [SMALL_STATE(2591)] = 67327, + [SMALL_STATE(2592)] = 67439, + [SMALL_STATE(2593)] = 67505, + [SMALL_STATE(2594)] = 67571, + [SMALL_STATE(2595)] = 67641, + [SMALL_STATE(2596)] = 67707, + [SMALL_STATE(2597)] = 67773, + [SMALL_STATE(2598)] = 67839, + [SMALL_STATE(2599)] = 67905, + [SMALL_STATE(2600)] = 67971, + [SMALL_STATE(2601)] = 68041, + [SMALL_STATE(2602)] = 68109, + [SMALL_STATE(2603)] = 68221, + [SMALL_STATE(2604)] = 68333, + [SMALL_STATE(2605)] = 68399, + [SMALL_STATE(2606)] = 68465, + [SMALL_STATE(2607)] = 68577, + [SMALL_STATE(2608)] = 68645, + [SMALL_STATE(2609)] = 68711, + [SMALL_STATE(2610)] = 68777, + [SMALL_STATE(2611)] = 68843, + [SMALL_STATE(2612)] = 68907, + [SMALL_STATE(2613)] = 68975, + [SMALL_STATE(2614)] = 69034, + [SMALL_STATE(2615)] = 69093, + [SMALL_STATE(2616)] = 69204, + [SMALL_STATE(2617)] = 69263, + [SMALL_STATE(2618)] = 69374, + [SMALL_STATE(2619)] = 69485, + [SMALL_STATE(2620)] = 69596, + [SMALL_STATE(2621)] = 69707, + [SMALL_STATE(2622)] = 69818, + [SMALL_STATE(2623)] = 69929, + [SMALL_STATE(2624)] = 69990, + [SMALL_STATE(2625)] = 70101, + [SMALL_STATE(2626)] = 70212, + [SMALL_STATE(2627)] = 70323, + [SMALL_STATE(2628)] = 70434, + [SMALL_STATE(2629)] = 70493, + [SMALL_STATE(2630)] = 70552, + [SMALL_STATE(2631)] = 70611, + [SMALL_STATE(2632)] = 70670, + [SMALL_STATE(2633)] = 70781, + [SMALL_STATE(2634)] = 70892, + [SMALL_STATE(2635)] = 70951, + [SMALL_STATE(2636)] = 71010, + [SMALL_STATE(2637)] = 71069, + [SMALL_STATE(2638)] = 71128, + [SMALL_STATE(2639)] = 71187, + [SMALL_STATE(2640)] = 71298, + [SMALL_STATE(2641)] = 71409, + [SMALL_STATE(2642)] = 71468, + [SMALL_STATE(2643)] = 71531, + [SMALL_STATE(2644)] = 71590, + [SMALL_STATE(2645)] = 71653, + [SMALL_STATE(2646)] = 71712, + [SMALL_STATE(2647)] = 71775, + [SMALL_STATE(2648)] = 71834, + [SMALL_STATE(2649)] = 71893, + [SMALL_STATE(2650)] = 71952, + [SMALL_STATE(2651)] = 72011, + [SMALL_STATE(2652)] = 72070, + [SMALL_STATE(2653)] = 72129, + [SMALL_STATE(2654)] = 72188, + [SMALL_STATE(2655)] = 72247, + [SMALL_STATE(2656)] = 72306, + [SMALL_STATE(2657)] = 72365, + [SMALL_STATE(2658)] = 72424, + [SMALL_STATE(2659)] = 72483, + [SMALL_STATE(2660)] = 72542, + [SMALL_STATE(2661)] = 72601, + [SMALL_STATE(2662)] = 72660, + [SMALL_STATE(2663)] = 72719, + [SMALL_STATE(2664)] = 72778, + [SMALL_STATE(2665)] = 72889, + [SMALL_STATE(2666)] = 72948, + [SMALL_STATE(2667)] = 73011, + [SMALL_STATE(2668)] = 73074, + [SMALL_STATE(2669)] = 73133, + [SMALL_STATE(2670)] = 73192, + [SMALL_STATE(2671)] = 73251, + [SMALL_STATE(2672)] = 73310, + [SMALL_STATE(2673)] = 73369, + [SMALL_STATE(2674)] = 73480, + [SMALL_STATE(2675)] = 73543, + [SMALL_STATE(2676)] = 73602, + [SMALL_STATE(2677)] = 73661, + [SMALL_STATE(2678)] = 73720, + [SMALL_STATE(2679)] = 73831, + [SMALL_STATE(2680)] = 73890, + [SMALL_STATE(2681)] = 73949, + [SMALL_STATE(2682)] = 74008, + [SMALL_STATE(2683)] = 74119, + [SMALL_STATE(2684)] = 74178, + [SMALL_STATE(2685)] = 74289, + [SMALL_STATE(2686)] = 74400, + [SMALL_STATE(2687)] = 74511, + [SMALL_STATE(2688)] = 74570, + [SMALL_STATE(2689)] = 74629, + [SMALL_STATE(2690)] = 74688, + [SMALL_STATE(2691)] = 74799, + [SMALL_STATE(2692)] = 74858, + [SMALL_STATE(2693)] = 74917, + [SMALL_STATE(2694)] = 74976, + [SMALL_STATE(2695)] = 75035, + [SMALL_STATE(2696)] = 75098, + [SMALL_STATE(2697)] = 75161, + [SMALL_STATE(2698)] = 75220, + [SMALL_STATE(2699)] = 75279, + [SMALL_STATE(2700)] = 75338, + [SMALL_STATE(2701)] = 75449, + [SMALL_STATE(2702)] = 75560, + [SMALL_STATE(2703)] = 75619, + [SMALL_STATE(2704)] = 75678, + [SMALL_STATE(2705)] = 75737, + [SMALL_STATE(2706)] = 75796, + [SMALL_STATE(2707)] = 75907, + [SMALL_STATE(2708)] = 75966, + [SMALL_STATE(2709)] = 76029, + [SMALL_STATE(2710)] = 76140, + [SMALL_STATE(2711)] = 76251, + [SMALL_STATE(2712)] = 76362, + [SMALL_STATE(2713)] = 76473, + [SMALL_STATE(2714)] = 76584, + [SMALL_STATE(2715)] = 76643, + [SMALL_STATE(2716)] = 76702, + [SMALL_STATE(2717)] = 76813, + [SMALL_STATE(2718)] = 76924, + [SMALL_STATE(2719)] = 77035, + [SMALL_STATE(2720)] = 77098, + [SMALL_STATE(2721)] = 77161, + [SMALL_STATE(2722)] = 77272, + [SMALL_STATE(2723)] = 77335, + [SMALL_STATE(2724)] = 77394, + [SMALL_STATE(2725)] = 77453, + [SMALL_STATE(2726)] = 77512, + [SMALL_STATE(2727)] = 77571, + [SMALL_STATE(2728)] = 77682, + [SMALL_STATE(2729)] = 77741, + [SMALL_STATE(2730)] = 77800, + [SMALL_STATE(2731)] = 77859, + [SMALL_STATE(2732)] = 77970, + [SMALL_STATE(2733)] = 78029, + [SMALL_STATE(2734)] = 78088, + [SMALL_STATE(2735)] = 78147, + [SMALL_STATE(2736)] = 78206, + [SMALL_STATE(2737)] = 78265, + [SMALL_STATE(2738)] = 78324, + [SMALL_STATE(2739)] = 78383, + [SMALL_STATE(2740)] = 78442, + [SMALL_STATE(2741)] = 78505, + [SMALL_STATE(2742)] = 78564, + [SMALL_STATE(2743)] = 78623, + [SMALL_STATE(2744)] = 78682, + [SMALL_STATE(2745)] = 78741, + [SMALL_STATE(2746)] = 78852, + [SMALL_STATE(2747)] = 78911, + [SMALL_STATE(2748)] = 78974, + [SMALL_STATE(2749)] = 79033, + [SMALL_STATE(2750)] = 79144, + [SMALL_STATE(2751)] = 79203, + [SMALL_STATE(2752)] = 79262, + [SMALL_STATE(2753)] = 79321, + [SMALL_STATE(2754)] = 79380, + [SMALL_STATE(2755)] = 79439, + [SMALL_STATE(2756)] = 79498, + [SMALL_STATE(2757)] = 79609, + [SMALL_STATE(2758)] = 79672, + [SMALL_STATE(2759)] = 79783, + [SMALL_STATE(2760)] = 79894, + [SMALL_STATE(2761)] = 80005, + [SMALL_STATE(2762)] = 80116, + [SMALL_STATE(2763)] = 80175, + [SMALL_STATE(2764)] = 80286, + [SMALL_STATE(2765)] = 80345, + [SMALL_STATE(2766)] = 80456, + [SMALL_STATE(2767)] = 80515, + [SMALL_STATE(2768)] = 80626, + [SMALL_STATE(2769)] = 80737, + [SMALL_STATE(2770)] = 80848, + [SMALL_STATE(2771)] = 80907, + [SMALL_STATE(2772)] = 81018, + [SMALL_STATE(2773)] = 81129, + [SMALL_STATE(2774)] = 81240, + [SMALL_STATE(2775)] = 81351, + [SMALL_STATE(2776)] = 81412, + [SMALL_STATE(2777)] = 81523, + [SMALL_STATE(2778)] = 81586, + [SMALL_STATE(2779)] = 81649, + [SMALL_STATE(2780)] = 81760, + [SMALL_STATE(2781)] = 81818, + [SMALL_STATE(2782)] = 81876, + [SMALL_STATE(2783)] = 81984, + [SMALL_STATE(2784)] = 82042, + [SMALL_STATE(2785)] = 82100, + [SMALL_STATE(2786)] = 82158, + [SMALL_STATE(2787)] = 82216, + [SMALL_STATE(2788)] = 82274, + [SMALL_STATE(2789)] = 82332, + [SMALL_STATE(2790)] = 82390, + [SMALL_STATE(2791)] = 82448, + [SMALL_STATE(2792)] = 82506, + [SMALL_STATE(2793)] = 82564, + [SMALL_STATE(2794)] = 82622, + [SMALL_STATE(2795)] = 82680, + [SMALL_STATE(2796)] = 82738, + [SMALL_STATE(2797)] = 82796, + [SMALL_STATE(2798)] = 82854, + [SMALL_STATE(2799)] = 82912, + [SMALL_STATE(2800)] = 82970, + [SMALL_STATE(2801)] = 83028, + [SMALL_STATE(2802)] = 83086, + [SMALL_STATE(2803)] = 83144, + [SMALL_STATE(2804)] = 83202, + [SMALL_STATE(2805)] = 83260, + [SMALL_STATE(2806)] = 83318, + [SMALL_STATE(2807)] = 83376, + [SMALL_STATE(2808)] = 83434, + [SMALL_STATE(2809)] = 83492, + [SMALL_STATE(2810)] = 83550, + [SMALL_STATE(2811)] = 83608, + [SMALL_STATE(2812)] = 83666, + [SMALL_STATE(2813)] = 83724, + [SMALL_STATE(2814)] = 83782, + [SMALL_STATE(2815)] = 83840, + [SMALL_STATE(2816)] = 83898, + [SMALL_STATE(2817)] = 83956, + [SMALL_STATE(2818)] = 84014, + [SMALL_STATE(2819)] = 84072, + [SMALL_STATE(2820)] = 84130, + [SMALL_STATE(2821)] = 84188, + [SMALL_STATE(2822)] = 84246, + [SMALL_STATE(2823)] = 84304, + [SMALL_STATE(2824)] = 84362, + [SMALL_STATE(2825)] = 84420, + [SMALL_STATE(2826)] = 84478, + [SMALL_STATE(2827)] = 84536, + [SMALL_STATE(2828)] = 84594, + [SMALL_STATE(2829)] = 84652, + [SMALL_STATE(2830)] = 84710, + [SMALL_STATE(2831)] = 84768, + [SMALL_STATE(2832)] = 84826, + [SMALL_STATE(2833)] = 84884, + [SMALL_STATE(2834)] = 84942, + [SMALL_STATE(2835)] = 85000, + [SMALL_STATE(2836)] = 85058, + [SMALL_STATE(2837)] = 85116, + [SMALL_STATE(2838)] = 85174, + [SMALL_STATE(2839)] = 85232, + [SMALL_STATE(2840)] = 85290, + [SMALL_STATE(2841)] = 85348, + [SMALL_STATE(2842)] = 85406, + [SMALL_STATE(2843)] = 85464, + [SMALL_STATE(2844)] = 85522, + [SMALL_STATE(2845)] = 85580, + [SMALL_STATE(2846)] = 85638, + [SMALL_STATE(2847)] = 85696, + [SMALL_STATE(2848)] = 85754, + [SMALL_STATE(2849)] = 85812, + [SMALL_STATE(2850)] = 85870, + [SMALL_STATE(2851)] = 85928, + [SMALL_STATE(2852)] = 85986, + [SMALL_STATE(2853)] = 86044, + [SMALL_STATE(2854)] = 86102, + [SMALL_STATE(2855)] = 86160, + [SMALL_STATE(2856)] = 86218, + [SMALL_STATE(2857)] = 86276, + [SMALL_STATE(2858)] = 86334, + [SMALL_STATE(2859)] = 86392, + [SMALL_STATE(2860)] = 86450, + [SMALL_STATE(2861)] = 86508, + [SMALL_STATE(2862)] = 86566, + [SMALL_STATE(2863)] = 86624, + [SMALL_STATE(2864)] = 86684, + [SMALL_STATE(2865)] = 86742, + [SMALL_STATE(2866)] = 86800, + [SMALL_STATE(2867)] = 86858, + [SMALL_STATE(2868)] = 86916, + [SMALL_STATE(2869)] = 86974, + [SMALL_STATE(2870)] = 87032, [SMALL_STATE(2871)] = 87090, - [SMALL_STATE(2872)] = 87147, - [SMALL_STATE(2873)] = 87204, - [SMALL_STATE(2874)] = 87261, - [SMALL_STATE(2875)] = 87318, - [SMALL_STATE(2876)] = 87375, - [SMALL_STATE(2877)] = 87432, - [SMALL_STATE(2878)] = 87489, - [SMALL_STATE(2879)] = 87546, - [SMALL_STATE(2880)] = 87603, - [SMALL_STATE(2881)] = 87660, - [SMALL_STATE(2882)] = 87717, - [SMALL_STATE(2883)] = 87774, - [SMALL_STATE(2884)] = 87831, - [SMALL_STATE(2885)] = 87888, - [SMALL_STATE(2886)] = 87945, - [SMALL_STATE(2887)] = 88002, - [SMALL_STATE(2888)] = 88059, - [SMALL_STATE(2889)] = 88116, - [SMALL_STATE(2890)] = 88173, - [SMALL_STATE(2891)] = 88230, - [SMALL_STATE(2892)] = 88287, - [SMALL_STATE(2893)] = 88344, - [SMALL_STATE(2894)] = 88401, - [SMALL_STATE(2895)] = 88458, - [SMALL_STATE(2896)] = 88515, - [SMALL_STATE(2897)] = 88606, - [SMALL_STATE(2898)] = 88697, - [SMALL_STATE(2899)] = 88788, - [SMALL_STATE(2900)] = 88879, - [SMALL_STATE(2901)] = 88970, - [SMALL_STATE(2902)] = 89061, - [SMALL_STATE(2903)] = 89152, - [SMALL_STATE(2904)] = 89243, - [SMALL_STATE(2905)] = 89334, - [SMALL_STATE(2906)] = 89425, - [SMALL_STATE(2907)] = 89516, - [SMALL_STATE(2908)] = 89607, - [SMALL_STATE(2909)] = 89698, - [SMALL_STATE(2910)] = 89789, - [SMALL_STATE(2911)] = 89880, - [SMALL_STATE(2912)] = 89971, - [SMALL_STATE(2913)] = 90062, - [SMALL_STATE(2914)] = 90153, - [SMALL_STATE(2915)] = 90244, - [SMALL_STATE(2916)] = 90335, - [SMALL_STATE(2917)] = 90426, - [SMALL_STATE(2918)] = 90517, - [SMALL_STATE(2919)] = 90608, - [SMALL_STATE(2920)] = 90699, - [SMALL_STATE(2921)] = 90790, - [SMALL_STATE(2922)] = 90881, - [SMALL_STATE(2923)] = 90972, - [SMALL_STATE(2924)] = 91063, - [SMALL_STATE(2925)] = 91154, - [SMALL_STATE(2926)] = 91245, - [SMALL_STATE(2927)] = 91336, - [SMALL_STATE(2928)] = 91427, - [SMALL_STATE(2929)] = 91518, - [SMALL_STATE(2930)] = 91609, - [SMALL_STATE(2931)] = 91700, - [SMALL_STATE(2932)] = 91791, - [SMALL_STATE(2933)] = 91882, - [SMALL_STATE(2934)] = 91973, - [SMALL_STATE(2935)] = 92064, - [SMALL_STATE(2936)] = 92155, - [SMALL_STATE(2937)] = 92246, - [SMALL_STATE(2938)] = 92337, - [SMALL_STATE(2939)] = 92430, - [SMALL_STATE(2940)] = 92521, - [SMALL_STATE(2941)] = 92612, - [SMALL_STATE(2942)] = 92703, - [SMALL_STATE(2943)] = 92794, - [SMALL_STATE(2944)] = 92885, - [SMALL_STATE(2945)] = 92976, - [SMALL_STATE(2946)] = 93067, - [SMALL_STATE(2947)] = 93158, - [SMALL_STATE(2948)] = 93249, - [SMALL_STATE(2949)] = 93340, - [SMALL_STATE(2950)] = 93431, - [SMALL_STATE(2951)] = 93524, - [SMALL_STATE(2952)] = 93589, - [SMALL_STATE(2953)] = 93680, - [SMALL_STATE(2954)] = 93771, - [SMALL_STATE(2955)] = 93862, - [SMALL_STATE(2956)] = 93953, - [SMALL_STATE(2957)] = 94044, - [SMALL_STATE(2958)] = 94135, - [SMALL_STATE(2959)] = 94223, - [SMALL_STATE(2960)] = 94311, - [SMALL_STATE(2961)] = 94399, - [SMALL_STATE(2962)] = 94487, - [SMALL_STATE(2963)] = 94575, - [SMALL_STATE(2964)] = 94663, - [SMALL_STATE(2965)] = 94751, - [SMALL_STATE(2966)] = 94839, - [SMALL_STATE(2967)] = 94927, - [SMALL_STATE(2968)] = 95015, - [SMALL_STATE(2969)] = 95103, - [SMALL_STATE(2970)] = 95191, - [SMALL_STATE(2971)] = 95279, - [SMALL_STATE(2972)] = 95367, - [SMALL_STATE(2973)] = 95455, - [SMALL_STATE(2974)] = 95543, - [SMALL_STATE(2975)] = 95631, - [SMALL_STATE(2976)] = 95719, - [SMALL_STATE(2977)] = 95807, - [SMALL_STATE(2978)] = 95895, - [SMALL_STATE(2979)] = 95983, - [SMALL_STATE(2980)] = 96071, - [SMALL_STATE(2981)] = 96159, - [SMALL_STATE(2982)] = 96247, - [SMALL_STATE(2983)] = 96335, - [SMALL_STATE(2984)] = 96425, - [SMALL_STATE(2985)] = 96513, - [SMALL_STATE(2986)] = 96601, - [SMALL_STATE(2987)] = 96689, - [SMALL_STATE(2988)] = 96777, - [SMALL_STATE(2989)] = 96867, - [SMALL_STATE(2990)] = 96955, - [SMALL_STATE(2991)] = 97043, - [SMALL_STATE(2992)] = 97131, - [SMALL_STATE(2993)] = 97219, - [SMALL_STATE(2994)] = 97307, - [SMALL_STATE(2995)] = 97395, - [SMALL_STATE(2996)] = 97483, - [SMALL_STATE(2997)] = 97571, - [SMALL_STATE(2998)] = 97659, - [SMALL_STATE(2999)] = 97747, - [SMALL_STATE(3000)] = 97835, - [SMALL_STATE(3001)] = 97923, - [SMALL_STATE(3002)] = 98011, - [SMALL_STATE(3003)] = 98099, - [SMALL_STATE(3004)] = 98187, - [SMALL_STATE(3005)] = 98275, - [SMALL_STATE(3006)] = 98363, - [SMALL_STATE(3007)] = 98451, - [SMALL_STATE(3008)] = 98539, - [SMALL_STATE(3009)] = 98627, - [SMALL_STATE(3010)] = 98715, - [SMALL_STATE(3011)] = 98803, - [SMALL_STATE(3012)] = 98891, - [SMALL_STATE(3013)] = 98979, - [SMALL_STATE(3014)] = 99069, - [SMALL_STATE(3015)] = 99157, - [SMALL_STATE(3016)] = 99245, - [SMALL_STATE(3017)] = 99333, - [SMALL_STATE(3018)] = 99421, - [SMALL_STATE(3019)] = 99509, - [SMALL_STATE(3020)] = 99597, - [SMALL_STATE(3021)] = 99684, - [SMALL_STATE(3022)] = 99771, - [SMALL_STATE(3023)] = 99858, - [SMALL_STATE(3024)] = 99945, - [SMALL_STATE(3025)] = 100032, - [SMALL_STATE(3026)] = 100119, - [SMALL_STATE(3027)] = 100206, - [SMALL_STATE(3028)] = 100293, - [SMALL_STATE(3029)] = 100380, - [SMALL_STATE(3030)] = 100467, - [SMALL_STATE(3031)] = 100554, - [SMALL_STATE(3032)] = 100641, - [SMALL_STATE(3033)] = 100728, - [SMALL_STATE(3034)] = 100815, - [SMALL_STATE(3035)] = 100902, - [SMALL_STATE(3036)] = 100989, - [SMALL_STATE(3037)] = 101076, - [SMALL_STATE(3038)] = 101163, - [SMALL_STATE(3039)] = 101250, - [SMALL_STATE(3040)] = 101337, - [SMALL_STATE(3041)] = 101424, - [SMALL_STATE(3042)] = 101511, - [SMALL_STATE(3043)] = 101598, - [SMALL_STATE(3044)] = 101685, - [SMALL_STATE(3045)] = 101772, - [SMALL_STATE(3046)] = 101859, - [SMALL_STATE(3047)] = 101946, - [SMALL_STATE(3048)] = 102033, - [SMALL_STATE(3049)] = 102120, - [SMALL_STATE(3050)] = 102207, - [SMALL_STATE(3051)] = 102294, - [SMALL_STATE(3052)] = 102381, - [SMALL_STATE(3053)] = 102468, - [SMALL_STATE(3054)] = 102555, - [SMALL_STATE(3055)] = 102642, - [SMALL_STATE(3056)] = 102729, - [SMALL_STATE(3057)] = 102816, - [SMALL_STATE(3058)] = 102903, - [SMALL_STATE(3059)] = 102990, - [SMALL_STATE(3060)] = 103077, - [SMALL_STATE(3061)] = 103164, - [SMALL_STATE(3062)] = 103251, - [SMALL_STATE(3063)] = 103338, - [SMALL_STATE(3064)] = 103425, - [SMALL_STATE(3065)] = 103512, - [SMALL_STATE(3066)] = 103599, - [SMALL_STATE(3067)] = 103686, - [SMALL_STATE(3068)] = 103773, - [SMALL_STATE(3069)] = 103860, - [SMALL_STATE(3070)] = 103947, - [SMALL_STATE(3071)] = 104034, - [SMALL_STATE(3072)] = 104121, - [SMALL_STATE(3073)] = 104208, - [SMALL_STATE(3074)] = 104295, - [SMALL_STATE(3075)] = 104382, - [SMALL_STATE(3076)] = 104469, - [SMALL_STATE(3077)] = 104556, - [SMALL_STATE(3078)] = 104643, - [SMALL_STATE(3079)] = 104730, - [SMALL_STATE(3080)] = 104817, - [SMALL_STATE(3081)] = 104904, - [SMALL_STATE(3082)] = 104991, - [SMALL_STATE(3083)] = 105078, - [SMALL_STATE(3084)] = 105165, - [SMALL_STATE(3085)] = 105252, - [SMALL_STATE(3086)] = 105339, - [SMALL_STATE(3087)] = 105426, - [SMALL_STATE(3088)] = 105513, - [SMALL_STATE(3089)] = 105600, - [SMALL_STATE(3090)] = 105687, - [SMALL_STATE(3091)] = 105771, - [SMALL_STATE(3092)] = 105855, - [SMALL_STATE(3093)] = 105939, - [SMALL_STATE(3094)] = 106023, - [SMALL_STATE(3095)] = 106107, - [SMALL_STATE(3096)] = 106191, - [SMALL_STATE(3097)] = 106275, - [SMALL_STATE(3098)] = 106359, - [SMALL_STATE(3099)] = 106443, - [SMALL_STATE(3100)] = 106527, - [SMALL_STATE(3101)] = 106611, - [SMALL_STATE(3102)] = 106695, - [SMALL_STATE(3103)] = 106779, - [SMALL_STATE(3104)] = 106863, - [SMALL_STATE(3105)] = 106947, - [SMALL_STATE(3106)] = 107031, - [SMALL_STATE(3107)] = 107115, - [SMALL_STATE(3108)] = 107199, - [SMALL_STATE(3109)] = 107283, - [SMALL_STATE(3110)] = 107367, - [SMALL_STATE(3111)] = 107451, - [SMALL_STATE(3112)] = 107509, - [SMALL_STATE(3113)] = 107593, - [SMALL_STATE(3114)] = 107677, - [SMALL_STATE(3115)] = 107761, - [SMALL_STATE(3116)] = 107845, - [SMALL_STATE(3117)] = 107929, - [SMALL_STATE(3118)] = 108013, - [SMALL_STATE(3119)] = 108097, - [SMALL_STATE(3120)] = 108181, - [SMALL_STATE(3121)] = 108265, - [SMALL_STATE(3122)] = 108349, - [SMALL_STATE(3123)] = 108433, - [SMALL_STATE(3124)] = 108517, - [SMALL_STATE(3125)] = 108601, - [SMALL_STATE(3126)] = 108659, - [SMALL_STATE(3127)] = 108743, - [SMALL_STATE(3128)] = 108827, - [SMALL_STATE(3129)] = 108911, - [SMALL_STATE(3130)] = 108995, - [SMALL_STATE(3131)] = 109079, - [SMALL_STATE(3132)] = 109163, - [SMALL_STATE(3133)] = 109247, - [SMALL_STATE(3134)] = 109331, - [SMALL_STATE(3135)] = 109415, - [SMALL_STATE(3136)] = 109499, - [SMALL_STATE(3137)] = 109583, - [SMALL_STATE(3138)] = 109667, - [SMALL_STATE(3139)] = 109751, - [SMALL_STATE(3140)] = 109835, - [SMALL_STATE(3141)] = 109919, - [SMALL_STATE(3142)] = 110003, - [SMALL_STATE(3143)] = 110087, - [SMALL_STATE(3144)] = 110171, - [SMALL_STATE(3145)] = 110255, - [SMALL_STATE(3146)] = 110339, - [SMALL_STATE(3147)] = 110423, - [SMALL_STATE(3148)] = 110507, - [SMALL_STATE(3149)] = 110591, - [SMALL_STATE(3150)] = 110675, - [SMALL_STATE(3151)] = 110759, - [SMALL_STATE(3152)] = 110843, - [SMALL_STATE(3153)] = 110924, - [SMALL_STATE(3154)] = 111005, - [SMALL_STATE(3155)] = 111086, - [SMALL_STATE(3156)] = 111167, - [SMALL_STATE(3157)] = 111248, - [SMALL_STATE(3158)] = 111329, - [SMALL_STATE(3159)] = 111410, - [SMALL_STATE(3160)] = 111491, - [SMALL_STATE(3161)] = 111572, - [SMALL_STATE(3162)] = 111653, - [SMALL_STATE(3163)] = 111734, - [SMALL_STATE(3164)] = 111815, - [SMALL_STATE(3165)] = 111896, - [SMALL_STATE(3166)] = 111977, - [SMALL_STATE(3167)] = 112058, - [SMALL_STATE(3168)] = 112139, - [SMALL_STATE(3169)] = 112220, - [SMALL_STATE(3170)] = 112301, - [SMALL_STATE(3171)] = 112382, - [SMALL_STATE(3172)] = 112463, - [SMALL_STATE(3173)] = 112544, - [SMALL_STATE(3174)] = 112625, - [SMALL_STATE(3175)] = 112706, - [SMALL_STATE(3176)] = 112787, - [SMALL_STATE(3177)] = 112868, - [SMALL_STATE(3178)] = 112949, - [SMALL_STATE(3179)] = 113030, - [SMALL_STATE(3180)] = 113111, - [SMALL_STATE(3181)] = 113192, - [SMALL_STATE(3182)] = 113273, - [SMALL_STATE(3183)] = 113354, - [SMALL_STATE(3184)] = 113435, - [SMALL_STATE(3185)] = 113516, - [SMALL_STATE(3186)] = 113597, - [SMALL_STATE(3187)] = 113678, - [SMALL_STATE(3188)] = 113759, - [SMALL_STATE(3189)] = 113840, - [SMALL_STATE(3190)] = 113921, - [SMALL_STATE(3191)] = 114002, - [SMALL_STATE(3192)] = 114083, - [SMALL_STATE(3193)] = 114164, - [SMALL_STATE(3194)] = 114245, - [SMALL_STATE(3195)] = 114326, - [SMALL_STATE(3196)] = 114407, - [SMALL_STATE(3197)] = 114488, - [SMALL_STATE(3198)] = 114569, - [SMALL_STATE(3199)] = 114650, - [SMALL_STATE(3200)] = 114731, - [SMALL_STATE(3201)] = 114812, - [SMALL_STATE(3202)] = 114893, - [SMALL_STATE(3203)] = 114974, - [SMALL_STATE(3204)] = 115055, - [SMALL_STATE(3205)] = 115136, - [SMALL_STATE(3206)] = 115217, - [SMALL_STATE(3207)] = 115298, - [SMALL_STATE(3208)] = 115379, - [SMALL_STATE(3209)] = 115460, - [SMALL_STATE(3210)] = 115541, - [SMALL_STATE(3211)] = 115622, - [SMALL_STATE(3212)] = 115703, - [SMALL_STATE(3213)] = 115784, - [SMALL_STATE(3214)] = 115865, - [SMALL_STATE(3215)] = 115946, - [SMALL_STATE(3216)] = 116027, - [SMALL_STATE(3217)] = 116108, - [SMALL_STATE(3218)] = 116189, - [SMALL_STATE(3219)] = 116270, - [SMALL_STATE(3220)] = 116351, - [SMALL_STATE(3221)] = 116432, - [SMALL_STATE(3222)] = 116513, - [SMALL_STATE(3223)] = 116594, - [SMALL_STATE(3224)] = 116675, - [SMALL_STATE(3225)] = 116756, - [SMALL_STATE(3226)] = 116837, - [SMALL_STATE(3227)] = 116918, - [SMALL_STATE(3228)] = 116999, - [SMALL_STATE(3229)] = 117080, - [SMALL_STATE(3230)] = 117161, - [SMALL_STATE(3231)] = 117242, - [SMALL_STATE(3232)] = 117323, - [SMALL_STATE(3233)] = 117404, - [SMALL_STATE(3234)] = 117485, - [SMALL_STATE(3235)] = 117566, - [SMALL_STATE(3236)] = 117647, - [SMALL_STATE(3237)] = 117728, - [SMALL_STATE(3238)] = 117809, - [SMALL_STATE(3239)] = 117890, - [SMALL_STATE(3240)] = 117941, - [SMALL_STATE(3241)] = 118022, - [SMALL_STATE(3242)] = 118103, - [SMALL_STATE(3243)] = 118184, - [SMALL_STATE(3244)] = 118265, - [SMALL_STATE(3245)] = 118346, - [SMALL_STATE(3246)] = 118427, - [SMALL_STATE(3247)] = 118508, - [SMALL_STATE(3248)] = 118589, - [SMALL_STATE(3249)] = 118670, - [SMALL_STATE(3250)] = 118751, - [SMALL_STATE(3251)] = 118832, - [SMALL_STATE(3252)] = 118913, - [SMALL_STATE(3253)] = 118994, - [SMALL_STATE(3254)] = 119075, - [SMALL_STATE(3255)] = 119156, - [SMALL_STATE(3256)] = 119237, - [SMALL_STATE(3257)] = 119318, - [SMALL_STATE(3258)] = 119399, - [SMALL_STATE(3259)] = 119480, - [SMALL_STATE(3260)] = 119561, - [SMALL_STATE(3261)] = 119642, - [SMALL_STATE(3262)] = 119723, - [SMALL_STATE(3263)] = 119804, - [SMALL_STATE(3264)] = 119885, - [SMALL_STATE(3265)] = 119966, - [SMALL_STATE(3266)] = 120047, - [SMALL_STATE(3267)] = 120098, - [SMALL_STATE(3268)] = 120179, - [SMALL_STATE(3269)] = 120260, - [SMALL_STATE(3270)] = 120341, - [SMALL_STATE(3271)] = 120422, - [SMALL_STATE(3272)] = 120503, - [SMALL_STATE(3273)] = 120584, - [SMALL_STATE(3274)] = 120665, - [SMALL_STATE(3275)] = 120746, - [SMALL_STATE(3276)] = 120827, - [SMALL_STATE(3277)] = 120908, - [SMALL_STATE(3278)] = 120989, - [SMALL_STATE(3279)] = 121070, - [SMALL_STATE(3280)] = 121151, - [SMALL_STATE(3281)] = 121232, - [SMALL_STATE(3282)] = 121313, - [SMALL_STATE(3283)] = 121394, - [SMALL_STATE(3284)] = 121475, - [SMALL_STATE(3285)] = 121526, - [SMALL_STATE(3286)] = 121607, - [SMALL_STATE(3287)] = 121688, - [SMALL_STATE(3288)] = 121769, - [SMALL_STATE(3289)] = 121850, - [SMALL_STATE(3290)] = 121931, - [SMALL_STATE(3291)] = 122012, - [SMALL_STATE(3292)] = 122093, - [SMALL_STATE(3293)] = 122174, - [SMALL_STATE(3294)] = 122255, - [SMALL_STATE(3295)] = 122336, - [SMALL_STATE(3296)] = 122417, - [SMALL_STATE(3297)] = 122498, - [SMALL_STATE(3298)] = 122579, - [SMALL_STATE(3299)] = 122660, - [SMALL_STATE(3300)] = 122741, - [SMALL_STATE(3301)] = 122822, - [SMALL_STATE(3302)] = 122903, - [SMALL_STATE(3303)] = 122984, - [SMALL_STATE(3304)] = 123065, - [SMALL_STATE(3305)] = 123146, - [SMALL_STATE(3306)] = 123227, - [SMALL_STATE(3307)] = 123308, - [SMALL_STATE(3308)] = 123389, - [SMALL_STATE(3309)] = 123470, - [SMALL_STATE(3310)] = 123551, - [SMALL_STATE(3311)] = 123632, - [SMALL_STATE(3312)] = 123713, - [SMALL_STATE(3313)] = 123794, - [SMALL_STATE(3314)] = 123875, - [SMALL_STATE(3315)] = 123956, - [SMALL_STATE(3316)] = 124037, - [SMALL_STATE(3317)] = 124118, - [SMALL_STATE(3318)] = 124199, - [SMALL_STATE(3319)] = 124280, - [SMALL_STATE(3320)] = 124361, - [SMALL_STATE(3321)] = 124442, - [SMALL_STATE(3322)] = 124523, - [SMALL_STATE(3323)] = 124604, - [SMALL_STATE(3324)] = 124685, - [SMALL_STATE(3325)] = 124766, - [SMALL_STATE(3326)] = 124847, - [SMALL_STATE(3327)] = 124928, - [SMALL_STATE(3328)] = 125009, - [SMALL_STATE(3329)] = 125090, - [SMALL_STATE(3330)] = 125171, - [SMALL_STATE(3331)] = 125252, - [SMALL_STATE(3332)] = 125333, - [SMALL_STATE(3333)] = 125414, - [SMALL_STATE(3334)] = 125495, - [SMALL_STATE(3335)] = 125576, - [SMALL_STATE(3336)] = 125657, - [SMALL_STATE(3337)] = 125738, - [SMALL_STATE(3338)] = 125819, - [SMALL_STATE(3339)] = 125900, - [SMALL_STATE(3340)] = 125981, - [SMALL_STATE(3341)] = 126062, - [SMALL_STATE(3342)] = 126143, - [SMALL_STATE(3343)] = 126224, - [SMALL_STATE(3344)] = 126305, - [SMALL_STATE(3345)] = 126386, - [SMALL_STATE(3346)] = 126467, - [SMALL_STATE(3347)] = 126522, - [SMALL_STATE(3348)] = 126603, - [SMALL_STATE(3349)] = 126684, - [SMALL_STATE(3350)] = 126765, - [SMALL_STATE(3351)] = 126816, - [SMALL_STATE(3352)] = 126897, - [SMALL_STATE(3353)] = 126978, - [SMALL_STATE(3354)] = 127059, - [SMALL_STATE(3355)] = 127140, - [SMALL_STATE(3356)] = 127221, - [SMALL_STATE(3357)] = 127302, - [SMALL_STATE(3358)] = 127383, - [SMALL_STATE(3359)] = 127464, - [SMALL_STATE(3360)] = 127545, - [SMALL_STATE(3361)] = 127626, - [SMALL_STATE(3362)] = 127707, - [SMALL_STATE(3363)] = 127788, - [SMALL_STATE(3364)] = 127869, - [SMALL_STATE(3365)] = 127950, - [SMALL_STATE(3366)] = 128031, - [SMALL_STATE(3367)] = 128112, - [SMALL_STATE(3368)] = 128193, - [SMALL_STATE(3369)] = 128248, - [SMALL_STATE(3370)] = 128329, - [SMALL_STATE(3371)] = 128410, - [SMALL_STATE(3372)] = 128491, - [SMALL_STATE(3373)] = 128572, - [SMALL_STATE(3374)] = 128653, - [SMALL_STATE(3375)] = 128734, - [SMALL_STATE(3376)] = 128815, - [SMALL_STATE(3377)] = 128896, - [SMALL_STATE(3378)] = 128977, - [SMALL_STATE(3379)] = 129058, - [SMALL_STATE(3380)] = 129139, - [SMALL_STATE(3381)] = 129220, - [SMALL_STATE(3382)] = 129301, - [SMALL_STATE(3383)] = 129382, - [SMALL_STATE(3384)] = 129463, - [SMALL_STATE(3385)] = 129544, - [SMALL_STATE(3386)] = 129625, - [SMALL_STATE(3387)] = 129706, - [SMALL_STATE(3388)] = 129787, - [SMALL_STATE(3389)] = 129868, - [SMALL_STATE(3390)] = 129949, - [SMALL_STATE(3391)] = 130030, - [SMALL_STATE(3392)] = 130111, - [SMALL_STATE(3393)] = 130192, - [SMALL_STATE(3394)] = 130273, - [SMALL_STATE(3395)] = 130354, - [SMALL_STATE(3396)] = 130435, - [SMALL_STATE(3397)] = 130516, - [SMALL_STATE(3398)] = 130597, - [SMALL_STATE(3399)] = 130678, - [SMALL_STATE(3400)] = 130759, - [SMALL_STATE(3401)] = 130840, - [SMALL_STATE(3402)] = 130921, - [SMALL_STATE(3403)] = 131002, - [SMALL_STATE(3404)] = 131083, - [SMALL_STATE(3405)] = 131164, - [SMALL_STATE(3406)] = 131245, - [SMALL_STATE(3407)] = 131326, - [SMALL_STATE(3408)] = 131407, - [SMALL_STATE(3409)] = 131488, - [SMALL_STATE(3410)] = 131569, - [SMALL_STATE(3411)] = 131650, - [SMALL_STATE(3412)] = 131731, - [SMALL_STATE(3413)] = 131812, - [SMALL_STATE(3414)] = 131893, - [SMALL_STATE(3415)] = 131974, - [SMALL_STATE(3416)] = 132055, - [SMALL_STATE(3417)] = 132136, - [SMALL_STATE(3418)] = 132217, - [SMALL_STATE(3419)] = 132298, - [SMALL_STATE(3420)] = 132379, - [SMALL_STATE(3421)] = 132437, - [SMALL_STATE(3422)] = 132489, - [SMALL_STATE(3423)] = 132539, - [SMALL_STATE(3424)] = 132589, - [SMALL_STATE(3425)] = 132639, - [SMALL_STATE(3426)] = 132689, - [SMALL_STATE(3427)] = 132739, - [SMALL_STATE(3428)] = 132789, - [SMALL_STATE(3429)] = 132839, - [SMALL_STATE(3430)] = 132893, - [SMALL_STATE(3431)] = 132947, - [SMALL_STATE(3432)] = 132994, - [SMALL_STATE(3433)] = 133041, - [SMALL_STATE(3434)] = 133088, - [SMALL_STATE(3435)] = 133135, - [SMALL_STATE(3436)] = 133185, - [SMALL_STATE(3437)] = 133231, - [SMALL_STATE(3438)] = 133305, - [SMALL_STATE(3439)] = 133355, - [SMALL_STATE(3440)] = 133429, - [SMALL_STATE(3441)] = 133481, - [SMALL_STATE(3442)] = 133531, - [SMALL_STATE(3443)] = 133577, - [SMALL_STATE(3444)] = 133651, - [SMALL_STATE(3445)] = 133725, - [SMALL_STATE(3446)] = 133799, - [SMALL_STATE(3447)] = 133849, - [SMALL_STATE(3448)] = 133895, - [SMALL_STATE(3449)] = 133945, - [SMALL_STATE(3450)] = 134019, - [SMALL_STATE(3451)] = 134093, - [SMALL_STATE(3452)] = 134167, - [SMALL_STATE(3453)] = 134241, - [SMALL_STATE(3454)] = 134293, - [SMALL_STATE(3455)] = 134339, - [SMALL_STATE(3456)] = 134413, - [SMALL_STATE(3457)] = 134464, - [SMALL_STATE(3458)] = 134515, - [SMALL_STATE(3459)] = 134566, - [SMALL_STATE(3460)] = 134617, - [SMALL_STATE(3461)] = 134668, - [SMALL_STATE(3462)] = 134719, - [SMALL_STATE(3463)] = 134770, - [SMALL_STATE(3464)] = 134821, - [SMALL_STATE(3465)] = 134872, - [SMALL_STATE(3466)] = 134923, - [SMALL_STATE(3467)] = 134968, - [SMALL_STATE(3468)] = 135019, - [SMALL_STATE(3469)] = 135068, - [SMALL_STATE(3470)] = 135117, - [SMALL_STATE(3471)] = 135161, - [SMALL_STATE(3472)] = 135205, - [SMALL_STATE(3473)] = 135251, - [SMALL_STATE(3474)] = 135297, - [SMALL_STATE(3475)] = 135340, - [SMALL_STATE(3476)] = 135383, - [SMALL_STATE(3477)] = 135426, - [SMALL_STATE(3478)] = 135469, - [SMALL_STATE(3479)] = 135512, - [SMALL_STATE(3480)] = 135555, - [SMALL_STATE(3481)] = 135598, - [SMALL_STATE(3482)] = 135641, - [SMALL_STATE(3483)] = 135684, - [SMALL_STATE(3484)] = 135727, - [SMALL_STATE(3485)] = 135770, - [SMALL_STATE(3486)] = 135813, - [SMALL_STATE(3487)] = 135856, - [SMALL_STATE(3488)] = 135899, - [SMALL_STATE(3489)] = 135942, - [SMALL_STATE(3490)] = 135985, - [SMALL_STATE(3491)] = 136028, - [SMALL_STATE(3492)] = 136071, - [SMALL_STATE(3493)] = 136114, - [SMALL_STATE(3494)] = 136157, - [SMALL_STATE(3495)] = 136200, - [SMALL_STATE(3496)] = 136243, - [SMALL_STATE(3497)] = 136286, - [SMALL_STATE(3498)] = 136329, - [SMALL_STATE(3499)] = 136372, - [SMALL_STATE(3500)] = 136415, - [SMALL_STATE(3501)] = 136458, - [SMALL_STATE(3502)] = 136501, - [SMALL_STATE(3503)] = 136544, - [SMALL_STATE(3504)] = 136589, - [SMALL_STATE(3505)] = 136632, - [SMALL_STATE(3506)] = 136675, - [SMALL_STATE(3507)] = 136717, - [SMALL_STATE(3508)] = 136763, - [SMALL_STATE(3509)] = 136805, - [SMALL_STATE(3510)] = 136851, - [SMALL_STATE(3511)] = 136901, - [SMALL_STATE(3512)] = 136947, - [SMALL_STATE(3513)] = 136989, - [SMALL_STATE(3514)] = 137031, - [SMALL_STATE(3515)] = 137072, - [SMALL_STATE(3516)] = 137113, - [SMALL_STATE(3517)] = 137154, - [SMALL_STATE(3518)] = 137194, - [SMALL_STATE(3519)] = 137234, - [SMALL_STATE(3520)] = 137274, - [SMALL_STATE(3521)] = 137314, - [SMALL_STATE(3522)] = 137354, - [SMALL_STATE(3523)] = 137394, - [SMALL_STATE(3524)] = 137434, - [SMALL_STATE(3525)] = 137493, - [SMALL_STATE(3526)] = 137552, - [SMALL_STATE(3527)] = 137611, - [SMALL_STATE(3528)] = 137670, - [SMALL_STATE(3529)] = 137729, - [SMALL_STATE(3530)] = 137788, - [SMALL_STATE(3531)] = 137847, - [SMALL_STATE(3532)] = 137892, - [SMALL_STATE(3533)] = 137917, - [SMALL_STATE(3534)] = 137942, - [SMALL_STATE(3535)] = 137987, - [SMALL_STATE(3536)] = 138012, - [SMALL_STATE(3537)] = 138057, - [SMALL_STATE(3538)] = 138102, - [SMALL_STATE(3539)] = 138147, - [SMALL_STATE(3540)] = 138192, - [SMALL_STATE(3541)] = 138237, - [SMALL_STATE(3542)] = 138262, - [SMALL_STATE(3543)] = 138304, - [SMALL_STATE(3544)] = 138346, - [SMALL_STATE(3545)] = 138374, - [SMALL_STATE(3546)] = 138402, - [SMALL_STATE(3547)] = 138427, - [SMALL_STATE(3548)] = 138452, - [SMALL_STATE(3549)] = 138488, - [SMALL_STATE(3550)] = 138524, - [SMALL_STATE(3551)] = 138560, - [SMALL_STATE(3552)] = 138596, - [SMALL_STATE(3553)] = 138632, - [SMALL_STATE(3554)] = 138668, - [SMALL_STATE(3555)] = 138704, - [SMALL_STATE(3556)] = 138740, - [SMALL_STATE(3557)] = 138776, - [SMALL_STATE(3558)] = 138812, - [SMALL_STATE(3559)] = 138848, - [SMALL_STATE(3560)] = 138884, - [SMALL_STATE(3561)] = 138920, - [SMALL_STATE(3562)] = 138956, - [SMALL_STATE(3563)] = 138992, - [SMALL_STATE(3564)] = 139028, - [SMALL_STATE(3565)] = 139064, - [SMALL_STATE(3566)] = 139100, - [SMALL_STATE(3567)] = 139136, - [SMALL_STATE(3568)] = 139172, - [SMALL_STATE(3569)] = 139208, - [SMALL_STATE(3570)] = 139244, - [SMALL_STATE(3571)] = 139280, - [SMALL_STATE(3572)] = 139316, - [SMALL_STATE(3573)] = 139352, - [SMALL_STATE(3574)] = 139388, - [SMALL_STATE(3575)] = 139424, - [SMALL_STATE(3576)] = 139460, - [SMALL_STATE(3577)] = 139496, - [SMALL_STATE(3578)] = 139532, - [SMALL_STATE(3579)] = 139568, - [SMALL_STATE(3580)] = 139604, - [SMALL_STATE(3581)] = 139640, - [SMALL_STATE(3582)] = 139676, - [SMALL_STATE(3583)] = 139712, - [SMALL_STATE(3584)] = 139745, - [SMALL_STATE(3585)] = 139778, - [SMALL_STATE(3586)] = 139811, - [SMALL_STATE(3587)] = 139844, - [SMALL_STATE(3588)] = 139877, - [SMALL_STATE(3589)] = 139910, - [SMALL_STATE(3590)] = 139943, - [SMALL_STATE(3591)] = 139976, - [SMALL_STATE(3592)] = 140009, - [SMALL_STATE(3593)] = 140042, - [SMALL_STATE(3594)] = 140075, - [SMALL_STATE(3595)] = 140108, - [SMALL_STATE(3596)] = 140141, - [SMALL_STATE(3597)] = 140174, - [SMALL_STATE(3598)] = 140207, - [SMALL_STATE(3599)] = 140240, - [SMALL_STATE(3600)] = 140273, - [SMALL_STATE(3601)] = 140306, - [SMALL_STATE(3602)] = 140339, - [SMALL_STATE(3603)] = 140372, - [SMALL_STATE(3604)] = 140405, - [SMALL_STATE(3605)] = 140438, - [SMALL_STATE(3606)] = 140471, - [SMALL_STATE(3607)] = 140504, - [SMALL_STATE(3608)] = 140537, - [SMALL_STATE(3609)] = 140570, - [SMALL_STATE(3610)] = 140603, - [SMALL_STATE(3611)] = 140636, - [SMALL_STATE(3612)] = 140670, - [SMALL_STATE(3613)] = 140690, - [SMALL_STATE(3614)] = 140720, - [SMALL_STATE(3615)] = 140754, - [SMALL_STATE(3616)] = 140788, - [SMALL_STATE(3617)] = 140822, - [SMALL_STATE(3618)] = 140856, - [SMALL_STATE(3619)] = 140890, - [SMALL_STATE(3620)] = 140924, - [SMALL_STATE(3621)] = 140940, - [SMALL_STATE(3622)] = 140974, - [SMALL_STATE(3623)] = 141008, - [SMALL_STATE(3624)] = 141042, - [SMALL_STATE(3625)] = 141076, - [SMALL_STATE(3626)] = 141110, - [SMALL_STATE(3627)] = 141144, - [SMALL_STATE(3628)] = 141178, - [SMALL_STATE(3629)] = 141212, - [SMALL_STATE(3630)] = 141246, - [SMALL_STATE(3631)] = 141280, - [SMALL_STATE(3632)] = 141314, - [SMALL_STATE(3633)] = 141348, - [SMALL_STATE(3634)] = 141364, - [SMALL_STATE(3635)] = 141380, - [SMALL_STATE(3636)] = 141400, - [SMALL_STATE(3637)] = 141434, - [SMALL_STATE(3638)] = 141468, - [SMALL_STATE(3639)] = 141502, - [SMALL_STATE(3640)] = 141536, - [SMALL_STATE(3641)] = 141570, - [SMALL_STATE(3642)] = 141604, - [SMALL_STATE(3643)] = 141638, - [SMALL_STATE(3644)] = 141672, - [SMALL_STATE(3645)] = 141692, - [SMALL_STATE(3646)] = 141726, - [SMALL_STATE(3647)] = 141760, - [SMALL_STATE(3648)] = 141794, - [SMALL_STATE(3649)] = 141828, - [SMALL_STATE(3650)] = 141858, - [SMALL_STATE(3651)] = 141892, - [SMALL_STATE(3652)] = 141926, - [SMALL_STATE(3653)] = 141960, - [SMALL_STATE(3654)] = 141994, - [SMALL_STATE(3655)] = 142014, - [SMALL_STATE(3656)] = 142043, - [SMALL_STATE(3657)] = 142072, - [SMALL_STATE(3658)] = 142101, - [SMALL_STATE(3659)] = 142128, - [SMALL_STATE(3660)] = 142149, - [SMALL_STATE(3661)] = 142176, - [SMALL_STATE(3662)] = 142197, - [SMALL_STATE(3663)] = 142226, - [SMALL_STATE(3664)] = 142255, - [SMALL_STATE(3665)] = 142282, - [SMALL_STATE(3666)] = 142297, - [SMALL_STATE(3667)] = 142322, - [SMALL_STATE(3668)] = 142349, - [SMALL_STATE(3669)] = 142377, - [SMALL_STATE(3670)] = 142405, - [SMALL_STATE(3671)] = 142433, - [SMALL_STATE(3672)] = 142461, - [SMALL_STATE(3673)] = 142489, - [SMALL_STATE(3674)] = 142517, - [SMALL_STATE(3675)] = 142545, - [SMALL_STATE(3676)] = 142569, - [SMALL_STATE(3677)] = 142597, - [SMALL_STATE(3678)] = 142625, - [SMALL_STATE(3679)] = 142653, - [SMALL_STATE(3680)] = 142681, - [SMALL_STATE(3681)] = 142701, - [SMALL_STATE(3682)] = 142729, - [SMALL_STATE(3683)] = 142757, - [SMALL_STATE(3684)] = 142785, - [SMALL_STATE(3685)] = 142813, - [SMALL_STATE(3686)] = 142841, - [SMALL_STATE(3687)] = 142859, - [SMALL_STATE(3688)] = 142887, - [SMALL_STATE(3689)] = 142903, - [SMALL_STATE(3690)] = 142931, - [SMALL_STATE(3691)] = 142959, - [SMALL_STATE(3692)] = 142987, - [SMALL_STATE(3693)] = 143015, - [SMALL_STATE(3694)] = 143043, - [SMALL_STATE(3695)] = 143071, - [SMALL_STATE(3696)] = 143099, - [SMALL_STATE(3697)] = 143127, - [SMALL_STATE(3698)] = 143155, - [SMALL_STATE(3699)] = 143183, - [SMALL_STATE(3700)] = 143211, - [SMALL_STATE(3701)] = 143239, - [SMALL_STATE(3702)] = 143267, - [SMALL_STATE(3703)] = 143295, - [SMALL_STATE(3704)] = 143323, - [SMALL_STATE(3705)] = 143347, - [SMALL_STATE(3706)] = 143375, - [SMALL_STATE(3707)] = 143399, - [SMALL_STATE(3708)] = 143415, - [SMALL_STATE(3709)] = 143443, - [SMALL_STATE(3710)] = 143461, - [SMALL_STATE(3711)] = 143489, - [SMALL_STATE(3712)] = 143517, - [SMALL_STATE(3713)] = 143535, - [SMALL_STATE(3714)] = 143563, - [SMALL_STATE(3715)] = 143591, - [SMALL_STATE(3716)] = 143619, - [SMALL_STATE(3717)] = 143647, - [SMALL_STATE(3718)] = 143675, - [SMALL_STATE(3719)] = 143691, - [SMALL_STATE(3720)] = 143719, - [SMALL_STATE(3721)] = 143743, - [SMALL_STATE(3722)] = 143767, - [SMALL_STATE(3723)] = 143795, - [SMALL_STATE(3724)] = 143823, - [SMALL_STATE(3725)] = 143851, - [SMALL_STATE(3726)] = 143879, - [SMALL_STATE(3727)] = 143907, - [SMALL_STATE(3728)] = 143935, - [SMALL_STATE(3729)] = 143963, - [SMALL_STATE(3730)] = 143991, - [SMALL_STATE(3731)] = 144019, - [SMALL_STATE(3732)] = 144047, - [SMALL_STATE(3733)] = 144075, - [SMALL_STATE(3734)] = 144093, - [SMALL_STATE(3735)] = 144121, - [SMALL_STATE(3736)] = 144145, - [SMALL_STATE(3737)] = 144173, - [SMALL_STATE(3738)] = 144197, - [SMALL_STATE(3739)] = 144225, - [SMALL_STATE(3740)] = 144253, - [SMALL_STATE(3741)] = 144281, - [SMALL_STATE(3742)] = 144309, - [SMALL_STATE(3743)] = 144337, - [SMALL_STATE(3744)] = 144365, - [SMALL_STATE(3745)] = 144387, - [SMALL_STATE(3746)] = 144411, - [SMALL_STATE(3747)] = 144439, - [SMALL_STATE(3748)] = 144467, - [SMALL_STATE(3749)] = 144495, - [SMALL_STATE(3750)] = 144523, - [SMALL_STATE(3751)] = 144551, - [SMALL_STATE(3752)] = 144572, - [SMALL_STATE(3753)] = 144589, - [SMALL_STATE(3754)] = 144606, - [SMALL_STATE(3755)] = 144621, - [SMALL_STATE(3756)] = 144634, - [SMALL_STATE(3757)] = 144659, - [SMALL_STATE(3758)] = 144682, - [SMALL_STATE(3759)] = 144697, - [SMALL_STATE(3760)] = 144718, - [SMALL_STATE(3761)] = 144731, - [SMALL_STATE(3762)] = 144744, - [SMALL_STATE(3763)] = 144767, - [SMALL_STATE(3764)] = 144792, - [SMALL_STATE(3765)] = 144805, - [SMALL_STATE(3766)] = 144830, - [SMALL_STATE(3767)] = 144855, - [SMALL_STATE(3768)] = 144868, - [SMALL_STATE(3769)] = 144885, - [SMALL_STATE(3770)] = 144902, - [SMALL_STATE(3771)] = 144925, - [SMALL_STATE(3772)] = 144940, - [SMALL_STATE(3773)] = 144965, - [SMALL_STATE(3774)] = 144988, - [SMALL_STATE(3775)] = 145011, - [SMALL_STATE(3776)] = 145030, - [SMALL_STATE(3777)] = 145043, - [SMALL_STATE(3778)] = 145068, - [SMALL_STATE(3779)] = 145087, - [SMALL_STATE(3780)] = 145112, - [SMALL_STATE(3781)] = 145137, - [SMALL_STATE(3782)] = 145158, - [SMALL_STATE(3783)] = 145171, - [SMALL_STATE(3784)] = 145188, - [SMALL_STATE(3785)] = 145205, - [SMALL_STATE(3786)] = 145226, - [SMALL_STATE(3787)] = 145247, - [SMALL_STATE(3788)] = 145264, - [SMALL_STATE(3789)] = 145281, - [SMALL_STATE(3790)] = 145294, - [SMALL_STATE(3791)] = 145317, - [SMALL_STATE(3792)] = 145342, - [SMALL_STATE(3793)] = 145367, - [SMALL_STATE(3794)] = 145386, - [SMALL_STATE(3795)] = 145409, - [SMALL_STATE(3796)] = 145430, - [SMALL_STATE(3797)] = 145443, - [SMALL_STATE(3798)] = 145464, - [SMALL_STATE(3799)] = 145481, - [SMALL_STATE(3800)] = 145494, - [SMALL_STATE(3801)] = 145515, - [SMALL_STATE(3802)] = 145533, - [SMALL_STATE(3803)] = 145555, - [SMALL_STATE(3804)] = 145577, - [SMALL_STATE(3805)] = 145595, - [SMALL_STATE(3806)] = 145617, - [SMALL_STATE(3807)] = 145639, - [SMALL_STATE(3808)] = 145653, - [SMALL_STATE(3809)] = 145669, - [SMALL_STATE(3810)] = 145691, - [SMALL_STATE(3811)] = 145713, - [SMALL_STATE(3812)] = 145735, - [SMALL_STATE(3813)] = 145757, - [SMALL_STATE(3814)] = 145779, - [SMALL_STATE(3815)] = 145801, - [SMALL_STATE(3816)] = 145823, - [SMALL_STATE(3817)] = 145845, - [SMALL_STATE(3818)] = 145867, - [SMALL_STATE(3819)] = 145889, - [SMALL_STATE(3820)] = 145911, - [SMALL_STATE(3821)] = 145933, - [SMALL_STATE(3822)] = 145955, - [SMALL_STATE(3823)] = 145977, - [SMALL_STATE(3824)] = 145989, - [SMALL_STATE(3825)] = 146011, - [SMALL_STATE(3826)] = 146029, - [SMALL_STATE(3827)] = 146047, - [SMALL_STATE(3828)] = 146063, - [SMALL_STATE(3829)] = 146085, - [SMALL_STATE(3830)] = 146107, - [SMALL_STATE(3831)] = 146129, - [SMALL_STATE(3832)] = 146151, - [SMALL_STATE(3833)] = 146173, - [SMALL_STATE(3834)] = 146195, - [SMALL_STATE(3835)] = 146207, - [SMALL_STATE(3836)] = 146229, - [SMALL_STATE(3837)] = 146241, - [SMALL_STATE(3838)] = 146263, - [SMALL_STATE(3839)] = 146281, - [SMALL_STATE(3840)] = 146293, - [SMALL_STATE(3841)] = 146311, - [SMALL_STATE(3842)] = 146333, - [SMALL_STATE(3843)] = 146355, - [SMALL_STATE(3844)] = 146377, - [SMALL_STATE(3845)] = 146399, - [SMALL_STATE(3846)] = 146421, - [SMALL_STATE(3847)] = 146443, - [SMALL_STATE(3848)] = 146465, - [SMALL_STATE(3849)] = 146487, - [SMALL_STATE(3850)] = 146509, - [SMALL_STATE(3851)] = 146531, - [SMALL_STATE(3852)] = 146553, - [SMALL_STATE(3853)] = 146575, - [SMALL_STATE(3854)] = 146597, - [SMALL_STATE(3855)] = 146619, - [SMALL_STATE(3856)] = 146641, - [SMALL_STATE(3857)] = 146663, - [SMALL_STATE(3858)] = 146685, - [SMALL_STATE(3859)] = 146707, - [SMALL_STATE(3860)] = 146729, - [SMALL_STATE(3861)] = 146747, - [SMALL_STATE(3862)] = 146765, - [SMALL_STATE(3863)] = 146783, - [SMALL_STATE(3864)] = 146795, - [SMALL_STATE(3865)] = 146817, - [SMALL_STATE(3866)] = 146835, - [SMALL_STATE(3867)] = 146857, - [SMALL_STATE(3868)] = 146875, - [SMALL_STATE(3869)] = 146893, - [SMALL_STATE(3870)] = 146915, - [SMALL_STATE(3871)] = 146937, - [SMALL_STATE(3872)] = 146959, - [SMALL_STATE(3873)] = 146981, - [SMALL_STATE(3874)] = 147003, - [SMALL_STATE(3875)] = 147025, - [SMALL_STATE(3876)] = 147047, - [SMALL_STATE(3877)] = 147069, - [SMALL_STATE(3878)] = 147091, - [SMALL_STATE(3879)] = 147113, - [SMALL_STATE(3880)] = 147135, - [SMALL_STATE(3881)] = 147157, - [SMALL_STATE(3882)] = 147179, - [SMALL_STATE(3883)] = 147197, - [SMALL_STATE(3884)] = 147209, - [SMALL_STATE(3885)] = 147231, - [SMALL_STATE(3886)] = 147243, - [SMALL_STATE(3887)] = 147265, - [SMALL_STATE(3888)] = 147287, - [SMALL_STATE(3889)] = 147309, - [SMALL_STATE(3890)] = 147331, - [SMALL_STATE(3891)] = 147353, - [SMALL_STATE(3892)] = 147375, - [SMALL_STATE(3893)] = 147397, - [SMALL_STATE(3894)] = 147419, - [SMALL_STATE(3895)] = 147441, - [SMALL_STATE(3896)] = 147453, - [SMALL_STATE(3897)] = 147475, - [SMALL_STATE(3898)] = 147487, - [SMALL_STATE(3899)] = 147499, - [SMALL_STATE(3900)] = 147521, - [SMALL_STATE(3901)] = 147533, - [SMALL_STATE(3902)] = 147555, - [SMALL_STATE(3903)] = 147577, - [SMALL_STATE(3904)] = 147599, - [SMALL_STATE(3905)] = 147621, - [SMALL_STATE(3906)] = 147643, - [SMALL_STATE(3907)] = 147659, - [SMALL_STATE(3908)] = 147677, - [SMALL_STATE(3909)] = 147699, - [SMALL_STATE(3910)] = 147711, - [SMALL_STATE(3911)] = 147723, - [SMALL_STATE(3912)] = 147735, - [SMALL_STATE(3913)] = 147747, - [SMALL_STATE(3914)] = 147759, - [SMALL_STATE(3915)] = 147777, - [SMALL_STATE(3916)] = 147799, - [SMALL_STATE(3917)] = 147821, - [SMALL_STATE(3918)] = 147843, - [SMALL_STATE(3919)] = 147865, - [SMALL_STATE(3920)] = 147883, - [SMALL_STATE(3921)] = 147905, - [SMALL_STATE(3922)] = 147927, - [SMALL_STATE(3923)] = 147949, - [SMALL_STATE(3924)] = 147971, - [SMALL_STATE(3925)] = 147983, - [SMALL_STATE(3926)] = 148005, - [SMALL_STATE(3927)] = 148017, - [SMALL_STATE(3928)] = 148039, - [SMALL_STATE(3929)] = 148061, - [SMALL_STATE(3930)] = 148083, - [SMALL_STATE(3931)] = 148105, - [SMALL_STATE(3932)] = 148127, - [SMALL_STATE(3933)] = 148149, - [SMALL_STATE(3934)] = 148171, - [SMALL_STATE(3935)] = 148193, - [SMALL_STATE(3936)] = 148215, - [SMALL_STATE(3937)] = 148227, - [SMALL_STATE(3938)] = 148249, - [SMALL_STATE(3939)] = 148261, - [SMALL_STATE(3940)] = 148283, - [SMALL_STATE(3941)] = 148305, - [SMALL_STATE(3942)] = 148327, - [SMALL_STATE(3943)] = 148349, - [SMALL_STATE(3944)] = 148371, - [SMALL_STATE(3945)] = 148393, - [SMALL_STATE(3946)] = 148405, - [SMALL_STATE(3947)] = 148423, - [SMALL_STATE(3948)] = 148445, - [SMALL_STATE(3949)] = 148467, - [SMALL_STATE(3950)] = 148485, - [SMALL_STATE(3951)] = 148507, - [SMALL_STATE(3952)] = 148529, - [SMALL_STATE(3953)] = 148541, - [SMALL_STATE(3954)] = 148553, - [SMALL_STATE(3955)] = 148575, - [SMALL_STATE(3956)] = 148593, - [SMALL_STATE(3957)] = 148605, - [SMALL_STATE(3958)] = 148627, - [SMALL_STATE(3959)] = 148639, - [SMALL_STATE(3960)] = 148661, - [SMALL_STATE(3961)] = 148683, - [SMALL_STATE(3962)] = 148705, - [SMALL_STATE(3963)] = 148723, - [SMALL_STATE(3964)] = 148745, - [SMALL_STATE(3965)] = 148767, - [SMALL_STATE(3966)] = 148779, - [SMALL_STATE(3967)] = 148801, - [SMALL_STATE(3968)] = 148813, - [SMALL_STATE(3969)] = 148835, - [SMALL_STATE(3970)] = 148857, - [SMALL_STATE(3971)] = 148875, - [SMALL_STATE(3972)] = 148897, - [SMALL_STATE(3973)] = 148919, - [SMALL_STATE(3974)] = 148941, - [SMALL_STATE(3975)] = 148963, - [SMALL_STATE(3976)] = 148981, - [SMALL_STATE(3977)] = 149003, - [SMALL_STATE(3978)] = 149025, - [SMALL_STATE(3979)] = 149043, - [SMALL_STATE(3980)] = 149065, - [SMALL_STATE(3981)] = 149087, - [SMALL_STATE(3982)] = 149109, - [SMALL_STATE(3983)] = 149131, - [SMALL_STATE(3984)] = 149153, - [SMALL_STATE(3985)] = 149171, - [SMALL_STATE(3986)] = 149193, - [SMALL_STATE(3987)] = 149215, - [SMALL_STATE(3988)] = 149233, - [SMALL_STATE(3989)] = 149255, - [SMALL_STATE(3990)] = 149277, - [SMALL_STATE(3991)] = 149299, - [SMALL_STATE(3992)] = 149317, - [SMALL_STATE(3993)] = 149339, - [SMALL_STATE(3994)] = 149361, - [SMALL_STATE(3995)] = 149373, - [SMALL_STATE(3996)] = 149385, - [SMALL_STATE(3997)] = 149407, - [SMALL_STATE(3998)] = 149429, - [SMALL_STATE(3999)] = 149441, - [SMALL_STATE(4000)] = 149453, - [SMALL_STATE(4001)] = 149475, - [SMALL_STATE(4002)] = 149497, - [SMALL_STATE(4003)] = 149519, - [SMALL_STATE(4004)] = 149541, - [SMALL_STATE(4005)] = 149563, - [SMALL_STATE(4006)] = 149585, - [SMALL_STATE(4007)] = 149607, - [SMALL_STATE(4008)] = 149629, - [SMALL_STATE(4009)] = 149651, - [SMALL_STATE(4010)] = 149669, - [SMALL_STATE(4011)] = 149691, - [SMALL_STATE(4012)] = 149703, - [SMALL_STATE(4013)] = 149725, - [SMALL_STATE(4014)] = 149744, - [SMALL_STATE(4015)] = 149763, - [SMALL_STATE(4016)] = 149776, - [SMALL_STATE(4017)] = 149795, - [SMALL_STATE(4018)] = 149808, - [SMALL_STATE(4019)] = 149821, - [SMALL_STATE(4020)] = 149834, - [SMALL_STATE(4021)] = 149847, - [SMALL_STATE(4022)] = 149860, - [SMALL_STATE(4023)] = 149879, - [SMALL_STATE(4024)] = 149892, - [SMALL_STATE(4025)] = 149905, - [SMALL_STATE(4026)] = 149922, - [SMALL_STATE(4027)] = 149941, - [SMALL_STATE(4028)] = 149954, - [SMALL_STATE(4029)] = 149973, - [SMALL_STATE(4030)] = 149992, - [SMALL_STATE(4031)] = 150005, - [SMALL_STATE(4032)] = 150024, - [SMALL_STATE(4033)] = 150043, - [SMALL_STATE(4034)] = 150056, - [SMALL_STATE(4035)] = 150075, - [SMALL_STATE(4036)] = 150094, - [SMALL_STATE(4037)] = 150113, - [SMALL_STATE(4038)] = 150128, - [SMALL_STATE(4039)] = 150147, - [SMALL_STATE(4040)] = 150162, - [SMALL_STATE(4041)] = 150181, - [SMALL_STATE(4042)] = 150200, - [SMALL_STATE(4043)] = 150219, - [SMALL_STATE(4044)] = 150238, - [SMALL_STATE(4045)] = 150257, - [SMALL_STATE(4046)] = 150270, - [SMALL_STATE(4047)] = 150287, - [SMALL_STATE(4048)] = 150306, - [SMALL_STATE(4049)] = 150325, - [SMALL_STATE(4050)] = 150344, - [SMALL_STATE(4051)] = 150363, - [SMALL_STATE(4052)] = 150378, - [SMALL_STATE(4053)] = 150397, - [SMALL_STATE(4054)] = 150416, - [SMALL_STATE(4055)] = 150431, - [SMALL_STATE(4056)] = 150450, - [SMALL_STATE(4057)] = 150469, - [SMALL_STATE(4058)] = 150488, - [SMALL_STATE(4059)] = 150501, - [SMALL_STATE(4060)] = 150520, - [SMALL_STATE(4061)] = 150539, - [SMALL_STATE(4062)] = 150558, - [SMALL_STATE(4063)] = 150577, - [SMALL_STATE(4064)] = 150596, - [SMALL_STATE(4065)] = 150615, - [SMALL_STATE(4066)] = 150634, - [SMALL_STATE(4067)] = 150653, - [SMALL_STATE(4068)] = 150666, - [SMALL_STATE(4069)] = 150685, - [SMALL_STATE(4070)] = 150698, - [SMALL_STATE(4071)] = 150717, - [SMALL_STATE(4072)] = 150730, - [SMALL_STATE(4073)] = 150749, - [SMALL_STATE(4074)] = 150768, - [SMALL_STATE(4075)] = 150787, - [SMALL_STATE(4076)] = 150806, - [SMALL_STATE(4077)] = 150825, - [SMALL_STATE(4078)] = 150838, - [SMALL_STATE(4079)] = 150857, - [SMALL_STATE(4080)] = 150876, - [SMALL_STATE(4081)] = 150889, - [SMALL_STATE(4082)] = 150908, - [SMALL_STATE(4083)] = 150927, - [SMALL_STATE(4084)] = 150946, - [SMALL_STATE(4085)] = 150965, - [SMALL_STATE(4086)] = 150984, - [SMALL_STATE(4087)] = 151001, - [SMALL_STATE(4088)] = 151014, - [SMALL_STATE(4089)] = 151033, - [SMALL_STATE(4090)] = 151052, - [SMALL_STATE(4091)] = 151071, - [SMALL_STATE(4092)] = 151082, - [SMALL_STATE(4093)] = 151101, - [SMALL_STATE(4094)] = 151120, - [SMALL_STATE(4095)] = 151139, - [SMALL_STATE(4096)] = 151152, - [SMALL_STATE(4097)] = 151171, - [SMALL_STATE(4098)] = 151190, - [SMALL_STATE(4099)] = 151209, - [SMALL_STATE(4100)] = 151222, - [SMALL_STATE(4101)] = 151241, - [SMALL_STATE(4102)] = 151260, - [SMALL_STATE(4103)] = 151275, - [SMALL_STATE(4104)] = 151292, - [SMALL_STATE(4105)] = 151311, - [SMALL_STATE(4106)] = 151326, - [SMALL_STATE(4107)] = 151345, - [SMALL_STATE(4108)] = 151364, - [SMALL_STATE(4109)] = 151383, - [SMALL_STATE(4110)] = 151402, - [SMALL_STATE(4111)] = 151421, - [SMALL_STATE(4112)] = 151440, - [SMALL_STATE(4113)] = 151459, - [SMALL_STATE(4114)] = 151478, - [SMALL_STATE(4115)] = 151497, - [SMALL_STATE(4116)] = 151516, - [SMALL_STATE(4117)] = 151535, - [SMALL_STATE(4118)] = 151554, - [SMALL_STATE(4119)] = 151567, - [SMALL_STATE(4120)] = 151582, - [SMALL_STATE(4121)] = 151601, - [SMALL_STATE(4122)] = 151620, - [SMALL_STATE(4123)] = 151635, - [SMALL_STATE(4124)] = 151654, - [SMALL_STATE(4125)] = 151667, - [SMALL_STATE(4126)] = 151686, - [SMALL_STATE(4127)] = 151701, - [SMALL_STATE(4128)] = 151720, - [SMALL_STATE(4129)] = 151739, - [SMALL_STATE(4130)] = 151758, - [SMALL_STATE(4131)] = 151775, - [SMALL_STATE(4132)] = 151794, - [SMALL_STATE(4133)] = 151813, - [SMALL_STATE(4134)] = 151832, - [SMALL_STATE(4135)] = 151847, - [SMALL_STATE(4136)] = 151866, - [SMALL_STATE(4137)] = 151885, - [SMALL_STATE(4138)] = 151904, - [SMALL_STATE(4139)] = 151923, - [SMALL_STATE(4140)] = 151934, - [SMALL_STATE(4141)] = 151953, - [SMALL_STATE(4142)] = 151970, - [SMALL_STATE(4143)] = 151989, - [SMALL_STATE(4144)] = 152004, - [SMALL_STATE(4145)] = 152023, - [SMALL_STATE(4146)] = 152042, - [SMALL_STATE(4147)] = 152057, - [SMALL_STATE(4148)] = 152072, - [SMALL_STATE(4149)] = 152087, - [SMALL_STATE(4150)] = 152102, - [SMALL_STATE(4151)] = 152117, - [SMALL_STATE(4152)] = 152136, - [SMALL_STATE(4153)] = 152155, - [SMALL_STATE(4154)] = 152174, - [SMALL_STATE(4155)] = 152189, - [SMALL_STATE(4156)] = 152204, - [SMALL_STATE(4157)] = 152219, - [SMALL_STATE(4158)] = 152234, - [SMALL_STATE(4159)] = 152253, - [SMALL_STATE(4160)] = 152272, - [SMALL_STATE(4161)] = 152287, - [SMALL_STATE(4162)] = 152302, - [SMALL_STATE(4163)] = 152321, - [SMALL_STATE(4164)] = 152336, - [SMALL_STATE(4165)] = 152349, - [SMALL_STATE(4166)] = 152368, - [SMALL_STATE(4167)] = 152382, - [SMALL_STATE(4168)] = 152398, - [SMALL_STATE(4169)] = 152412, - [SMALL_STATE(4170)] = 152428, - [SMALL_STATE(4171)] = 152444, - [SMALL_STATE(4172)] = 152460, - [SMALL_STATE(4173)] = 152476, - [SMALL_STATE(4174)] = 152490, - [SMALL_STATE(4175)] = 152506, - [SMALL_STATE(4176)] = 152520, - [SMALL_STATE(4177)] = 152536, - [SMALL_STATE(4178)] = 152552, - [SMALL_STATE(4179)] = 152568, - [SMALL_STATE(4180)] = 152584, - [SMALL_STATE(4181)] = 152600, - [SMALL_STATE(4182)] = 152616, - [SMALL_STATE(4183)] = 152630, - [SMALL_STATE(4184)] = 152646, - [SMALL_STATE(4185)] = 152660, - [SMALL_STATE(4186)] = 152674, - [SMALL_STATE(4187)] = 152690, - [SMALL_STATE(4188)] = 152706, - [SMALL_STATE(4189)] = 152720, - [SMALL_STATE(4190)] = 152734, - [SMALL_STATE(4191)] = 152748, - [SMALL_STATE(4192)] = 152764, - [SMALL_STATE(4193)] = 152778, - [SMALL_STATE(4194)] = 152794, - [SMALL_STATE(4195)] = 152810, - [SMALL_STATE(4196)] = 152826, - [SMALL_STATE(4197)] = 152840, - [SMALL_STATE(4198)] = 152856, - [SMALL_STATE(4199)] = 152872, - [SMALL_STATE(4200)] = 152888, - [SMALL_STATE(4201)] = 152902, - [SMALL_STATE(4202)] = 152918, - [SMALL_STATE(4203)] = 152932, - [SMALL_STATE(4204)] = 152946, - [SMALL_STATE(4205)] = 152960, - [SMALL_STATE(4206)] = 152974, - [SMALL_STATE(4207)] = 152990, - [SMALL_STATE(4208)] = 153006, - [SMALL_STATE(4209)] = 153022, - [SMALL_STATE(4210)] = 153036, - [SMALL_STATE(4211)] = 153052, - [SMALL_STATE(4212)] = 153066, - [SMALL_STATE(4213)] = 153076, - [SMALL_STATE(4214)] = 153090, - [SMALL_STATE(4215)] = 153106, - [SMALL_STATE(4216)] = 153120, - [SMALL_STATE(4217)] = 153136, - [SMALL_STATE(4218)] = 153152, - [SMALL_STATE(4219)] = 153168, - [SMALL_STATE(4220)] = 153182, - [SMALL_STATE(4221)] = 153198, - [SMALL_STATE(4222)] = 153214, - [SMALL_STATE(4223)] = 153230, - [SMALL_STATE(4224)] = 153246, - [SMALL_STATE(4225)] = 153260, - [SMALL_STATE(4226)] = 153276, - [SMALL_STATE(4227)] = 153290, - [SMALL_STATE(4228)] = 153304, - [SMALL_STATE(4229)] = 153320, - [SMALL_STATE(4230)] = 153334, - [SMALL_STATE(4231)] = 153348, - [SMALL_STATE(4232)] = 153364, - [SMALL_STATE(4233)] = 153380, - [SMALL_STATE(4234)] = 153394, - [SMALL_STATE(4235)] = 153410, - [SMALL_STATE(4236)] = 153424, - [SMALL_STATE(4237)] = 153440, - [SMALL_STATE(4238)] = 153456, - [SMALL_STATE(4239)] = 153472, - [SMALL_STATE(4240)] = 153488, - [SMALL_STATE(4241)] = 153504, - [SMALL_STATE(4242)] = 153520, - [SMALL_STATE(4243)] = 153536, - [SMALL_STATE(4244)] = 153550, - [SMALL_STATE(4245)] = 153564, - [SMALL_STATE(4246)] = 153580, - [SMALL_STATE(4247)] = 153594, - [SMALL_STATE(4248)] = 153610, - [SMALL_STATE(4249)] = 153624, - [SMALL_STATE(4250)] = 153640, - [SMALL_STATE(4251)] = 153654, - [SMALL_STATE(4252)] = 153668, - [SMALL_STATE(4253)] = 153684, - [SMALL_STATE(4254)] = 153700, - [SMALL_STATE(4255)] = 153714, - [SMALL_STATE(4256)] = 153728, - [SMALL_STATE(4257)] = 153742, - [SMALL_STATE(4258)] = 153758, - [SMALL_STATE(4259)] = 153774, - [SMALL_STATE(4260)] = 153790, - [SMALL_STATE(4261)] = 153806, - [SMALL_STATE(4262)] = 153820, - [SMALL_STATE(4263)] = 153836, - [SMALL_STATE(4264)] = 153850, - [SMALL_STATE(4265)] = 153864, - [SMALL_STATE(4266)] = 153880, - [SMALL_STATE(4267)] = 153894, - [SMALL_STATE(4268)] = 153910, - [SMALL_STATE(4269)] = 153926, - [SMALL_STATE(4270)] = 153942, - [SMALL_STATE(4271)] = 153958, - [SMALL_STATE(4272)] = 153974, - [SMALL_STATE(4273)] = 153990, - [SMALL_STATE(4274)] = 154004, - [SMALL_STATE(4275)] = 154018, - [SMALL_STATE(4276)] = 154034, - [SMALL_STATE(4277)] = 154050, - [SMALL_STATE(4278)] = 154066, - [SMALL_STATE(4279)] = 154082, - [SMALL_STATE(4280)] = 154098, - [SMALL_STATE(4281)] = 154114, - [SMALL_STATE(4282)] = 154128, - [SMALL_STATE(4283)] = 154142, - [SMALL_STATE(4284)] = 154158, - [SMALL_STATE(4285)] = 154174, - [SMALL_STATE(4286)] = 154190, - [SMALL_STATE(4287)] = 154206, - [SMALL_STATE(4288)] = 154220, - [SMALL_STATE(4289)] = 154232, - [SMALL_STATE(4290)] = 154248, - [SMALL_STATE(4291)] = 154264, - [SMALL_STATE(4292)] = 154280, - [SMALL_STATE(4293)] = 154296, - [SMALL_STATE(4294)] = 154312, - [SMALL_STATE(4295)] = 154328, - [SMALL_STATE(4296)] = 154344, - [SMALL_STATE(4297)] = 154360, - [SMALL_STATE(4298)] = 154376, - [SMALL_STATE(4299)] = 154390, - [SMALL_STATE(4300)] = 154406, - [SMALL_STATE(4301)] = 154422, - [SMALL_STATE(4302)] = 154434, - [SMALL_STATE(4303)] = 154450, - [SMALL_STATE(4304)] = 154466, - [SMALL_STATE(4305)] = 154482, - [SMALL_STATE(4306)] = 154496, - [SMALL_STATE(4307)] = 154512, - [SMALL_STATE(4308)] = 154526, - [SMALL_STATE(4309)] = 154540, - [SMALL_STATE(4310)] = 154556, - [SMALL_STATE(4311)] = 154572, - [SMALL_STATE(4312)] = 154588, - [SMALL_STATE(4313)] = 154604, - [SMALL_STATE(4314)] = 154620, - [SMALL_STATE(4315)] = 154636, - [SMALL_STATE(4316)] = 154650, - [SMALL_STATE(4317)] = 154664, - [SMALL_STATE(4318)] = 154680, - [SMALL_STATE(4319)] = 154694, - [SMALL_STATE(4320)] = 154710, - [SMALL_STATE(4321)] = 154726, - [SMALL_STATE(4322)] = 154736, - [SMALL_STATE(4323)] = 154750, - [SMALL_STATE(4324)] = 154766, - [SMALL_STATE(4325)] = 154782, - [SMALL_STATE(4326)] = 154798, - [SMALL_STATE(4327)] = 154814, - [SMALL_STATE(4328)] = 154830, - [SMALL_STATE(4329)] = 154844, - [SMALL_STATE(4330)] = 154860, - [SMALL_STATE(4331)] = 154876, - [SMALL_STATE(4332)] = 154892, - [SMALL_STATE(4333)] = 154906, - [SMALL_STATE(4334)] = 154922, - [SMALL_STATE(4335)] = 154936, - [SMALL_STATE(4336)] = 154952, - [SMALL_STATE(4337)] = 154968, - [SMALL_STATE(4338)] = 154984, - [SMALL_STATE(4339)] = 155000, - [SMALL_STATE(4340)] = 155016, - [SMALL_STATE(4341)] = 155032, - [SMALL_STATE(4342)] = 155048, - [SMALL_STATE(4343)] = 155064, - [SMALL_STATE(4344)] = 155080, - [SMALL_STATE(4345)] = 155096, - [SMALL_STATE(4346)] = 155110, - [SMALL_STATE(4347)] = 155126, - [SMALL_STATE(4348)] = 155142, - [SMALL_STATE(4349)] = 155156, - [SMALL_STATE(4350)] = 155172, - [SMALL_STATE(4351)] = 155188, - [SMALL_STATE(4352)] = 155204, - [SMALL_STATE(4353)] = 155218, - [SMALL_STATE(4354)] = 155232, - [SMALL_STATE(4355)] = 155248, - [SMALL_STATE(4356)] = 155264, - [SMALL_STATE(4357)] = 155278, - [SMALL_STATE(4358)] = 155288, - [SMALL_STATE(4359)] = 155304, - [SMALL_STATE(4360)] = 155320, - [SMALL_STATE(4361)] = 155334, - [SMALL_STATE(4362)] = 155350, - [SMALL_STATE(4363)] = 155366, - [SMALL_STATE(4364)] = 155382, - [SMALL_STATE(4365)] = 155398, - [SMALL_STATE(4366)] = 155414, - [SMALL_STATE(4367)] = 155428, - [SMALL_STATE(4368)] = 155444, - [SMALL_STATE(4369)] = 155458, - [SMALL_STATE(4370)] = 155474, - [SMALL_STATE(4371)] = 155490, - [SMALL_STATE(4372)] = 155506, - [SMALL_STATE(4373)] = 155522, - [SMALL_STATE(4374)] = 155538, - [SMALL_STATE(4375)] = 155554, - [SMALL_STATE(4376)] = 155570, - [SMALL_STATE(4377)] = 155586, - [SMALL_STATE(4378)] = 155600, - [SMALL_STATE(4379)] = 155616, - [SMALL_STATE(4380)] = 155630, - [SMALL_STATE(4381)] = 155642, - [SMALL_STATE(4382)] = 155658, - [SMALL_STATE(4383)] = 155674, - [SMALL_STATE(4384)] = 155690, - [SMALL_STATE(4385)] = 155706, - [SMALL_STATE(4386)] = 155720, - [SMALL_STATE(4387)] = 155736, - [SMALL_STATE(4388)] = 155750, - [SMALL_STATE(4389)] = 155766, - [SMALL_STATE(4390)] = 155782, - [SMALL_STATE(4391)] = 155798, - [SMALL_STATE(4392)] = 155814, - [SMALL_STATE(4393)] = 155828, - [SMALL_STATE(4394)] = 155842, - [SMALL_STATE(4395)] = 155858, - [SMALL_STATE(4396)] = 155874, - [SMALL_STATE(4397)] = 155890, - [SMALL_STATE(4398)] = 155906, - [SMALL_STATE(4399)] = 155922, - [SMALL_STATE(4400)] = 155936, - [SMALL_STATE(4401)] = 155952, - [SMALL_STATE(4402)] = 155968, - [SMALL_STATE(4403)] = 155984, - [SMALL_STATE(4404)] = 155998, - [SMALL_STATE(4405)] = 156012, - [SMALL_STATE(4406)] = 156022, - [SMALL_STATE(4407)] = 156038, - [SMALL_STATE(4408)] = 156052, - [SMALL_STATE(4409)] = 156068, - [SMALL_STATE(4410)] = 156084, - [SMALL_STATE(4411)] = 156100, - [SMALL_STATE(4412)] = 156116, - [SMALL_STATE(4413)] = 156132, - [SMALL_STATE(4414)] = 156146, - [SMALL_STATE(4415)] = 156162, - [SMALL_STATE(4416)] = 156178, - [SMALL_STATE(4417)] = 156194, - [SMALL_STATE(4418)] = 156210, - [SMALL_STATE(4419)] = 156226, - [SMALL_STATE(4420)] = 156242, - [SMALL_STATE(4421)] = 156258, - [SMALL_STATE(4422)] = 156272, - [SMALL_STATE(4423)] = 156288, - [SMALL_STATE(4424)] = 156304, - [SMALL_STATE(4425)] = 156320, - [SMALL_STATE(4426)] = 156336, - [SMALL_STATE(4427)] = 156352, - [SMALL_STATE(4428)] = 156368, - [SMALL_STATE(4429)] = 156384, - [SMALL_STATE(4430)] = 156400, - [SMALL_STATE(4431)] = 156414, - [SMALL_STATE(4432)] = 156428, - [SMALL_STATE(4433)] = 156444, - [SMALL_STATE(4434)] = 156460, - [SMALL_STATE(4435)] = 156474, - [SMALL_STATE(4436)] = 156488, - [SMALL_STATE(4437)] = 156502, - [SMALL_STATE(4438)] = 156518, - [SMALL_STATE(4439)] = 156532, - [SMALL_STATE(4440)] = 156542, - [SMALL_STATE(4441)] = 156558, - [SMALL_STATE(4442)] = 156572, - [SMALL_STATE(4443)] = 156588, - [SMALL_STATE(4444)] = 156602, - [SMALL_STATE(4445)] = 156618, - [SMALL_STATE(4446)] = 156634, - [SMALL_STATE(4447)] = 156648, - [SMALL_STATE(4448)] = 156664, - [SMALL_STATE(4449)] = 156680, - [SMALL_STATE(4450)] = 156696, - [SMALL_STATE(4451)] = 156712, - [SMALL_STATE(4452)] = 156728, - [SMALL_STATE(4453)] = 156742, - [SMALL_STATE(4454)] = 156756, - [SMALL_STATE(4455)] = 156770, - [SMALL_STATE(4456)] = 156784, - [SMALL_STATE(4457)] = 156800, - [SMALL_STATE(4458)] = 156816, - [SMALL_STATE(4459)] = 156832, - [SMALL_STATE(4460)] = 156848, - [SMALL_STATE(4461)] = 156864, - [SMALL_STATE(4462)] = 156878, - [SMALL_STATE(4463)] = 156894, - [SMALL_STATE(4464)] = 156910, - [SMALL_STATE(4465)] = 156926, - [SMALL_STATE(4466)] = 156942, - [SMALL_STATE(4467)] = 156958, - [SMALL_STATE(4468)] = 156974, - [SMALL_STATE(4469)] = 156988, - [SMALL_STATE(4470)] = 157004, - [SMALL_STATE(4471)] = 157018, - [SMALL_STATE(4472)] = 157032, - [SMALL_STATE(4473)] = 157046, - [SMALL_STATE(4474)] = 157062, - [SMALL_STATE(4475)] = 157078, - [SMALL_STATE(4476)] = 157094, - [SMALL_STATE(4477)] = 157107, - [SMALL_STATE(4478)] = 157120, - [SMALL_STATE(4479)] = 157131, - [SMALL_STATE(4480)] = 157142, - [SMALL_STATE(4481)] = 157153, - [SMALL_STATE(4482)] = 157164, - [SMALL_STATE(4483)] = 157177, - [SMALL_STATE(4484)] = 157190, - [SMALL_STATE(4485)] = 157203, - [SMALL_STATE(4486)] = 157214, - [SMALL_STATE(4487)] = 157227, - [SMALL_STATE(4488)] = 157238, - [SMALL_STATE(4489)] = 157249, - [SMALL_STATE(4490)] = 157260, - [SMALL_STATE(4491)] = 157271, - [SMALL_STATE(4492)] = 157284, - [SMALL_STATE(4493)] = 157295, - [SMALL_STATE(4494)] = 157306, - [SMALL_STATE(4495)] = 157317, - [SMALL_STATE(4496)] = 157330, - [SMALL_STATE(4497)] = 157343, - [SMALL_STATE(4498)] = 157354, - [SMALL_STATE(4499)] = 157365, - [SMALL_STATE(4500)] = 157376, - [SMALL_STATE(4501)] = 157387, - [SMALL_STATE(4502)] = 157398, - [SMALL_STATE(4503)] = 157409, - [SMALL_STATE(4504)] = 157420, - [SMALL_STATE(4505)] = 157431, - [SMALL_STATE(4506)] = 157442, - [SMALL_STATE(4507)] = 157453, - [SMALL_STATE(4508)] = 157466, - [SMALL_STATE(4509)] = 157479, - [SMALL_STATE(4510)] = 157490, - [SMALL_STATE(4511)] = 157501, - [SMALL_STATE(4512)] = 157512, - [SMALL_STATE(4513)] = 157523, - [SMALL_STATE(4514)] = 157534, - [SMALL_STATE(4515)] = 157547, - [SMALL_STATE(4516)] = 157558, - [SMALL_STATE(4517)] = 157571, - [SMALL_STATE(4518)] = 157582, - [SMALL_STATE(4519)] = 157595, - [SMALL_STATE(4520)] = 157608, - [SMALL_STATE(4521)] = 157619, - [SMALL_STATE(4522)] = 157632, - [SMALL_STATE(4523)] = 157643, - [SMALL_STATE(4524)] = 157656, - [SMALL_STATE(4525)] = 157667, - [SMALL_STATE(4526)] = 157680, - [SMALL_STATE(4527)] = 157693, - [SMALL_STATE(4528)] = 157704, - [SMALL_STATE(4529)] = 157715, - [SMALL_STATE(4530)] = 157726, - [SMALL_STATE(4531)] = 157739, - [SMALL_STATE(4532)] = 157750, - [SMALL_STATE(4533)] = 157763, - [SMALL_STATE(4534)] = 157776, - [SMALL_STATE(4535)] = 157789, - [SMALL_STATE(4536)] = 157800, - [SMALL_STATE(4537)] = 157811, - [SMALL_STATE(4538)] = 157824, - [SMALL_STATE(4539)] = 157837, - [SMALL_STATE(4540)] = 157848, - [SMALL_STATE(4541)] = 157861, - [SMALL_STATE(4542)] = 157874, - [SMALL_STATE(4543)] = 157887, - [SMALL_STATE(4544)] = 157898, - [SMALL_STATE(4545)] = 157911, - [SMALL_STATE(4546)] = 157924, - [SMALL_STATE(4547)] = 157937, - [SMALL_STATE(4548)] = 157946, - [SMALL_STATE(4549)] = 157957, - [SMALL_STATE(4550)] = 157970, - [SMALL_STATE(4551)] = 157981, - [SMALL_STATE(4552)] = 157994, - [SMALL_STATE(4553)] = 158007, - [SMALL_STATE(4554)] = 158020, - [SMALL_STATE(4555)] = 158031, - [SMALL_STATE(4556)] = 158044, - [SMALL_STATE(4557)] = 158055, - [SMALL_STATE(4558)] = 158066, - [SMALL_STATE(4559)] = 158077, - [SMALL_STATE(4560)] = 158090, - [SMALL_STATE(4561)] = 158101, - [SMALL_STATE(4562)] = 158114, - [SMALL_STATE(4563)] = 158125, - [SMALL_STATE(4564)] = 158136, - [SMALL_STATE(4565)] = 158147, - [SMALL_STATE(4566)] = 158160, - [SMALL_STATE(4567)] = 158173, - [SMALL_STATE(4568)] = 158186, - [SMALL_STATE(4569)] = 158199, - [SMALL_STATE(4570)] = 158212, - [SMALL_STATE(4571)] = 158225, - [SMALL_STATE(4572)] = 158236, - [SMALL_STATE(4573)] = 158249, - [SMALL_STATE(4574)] = 158262, - [SMALL_STATE(4575)] = 158275, - [SMALL_STATE(4576)] = 158288, - [SMALL_STATE(4577)] = 158299, - [SMALL_STATE(4578)] = 158312, - [SMALL_STATE(4579)] = 158325, - [SMALL_STATE(4580)] = 158336, - [SMALL_STATE(4581)] = 158349, - [SMALL_STATE(4582)] = 158362, - [SMALL_STATE(4583)] = 158375, - [SMALL_STATE(4584)] = 158388, - [SMALL_STATE(4585)] = 158399, - [SMALL_STATE(4586)] = 158410, - [SMALL_STATE(4587)] = 158423, - [SMALL_STATE(4588)] = 158436, - [SMALL_STATE(4589)] = 158447, - [SMALL_STATE(4590)] = 158460, - [SMALL_STATE(4591)] = 158473, - [SMALL_STATE(4592)] = 158486, - [SMALL_STATE(4593)] = 158499, - [SMALL_STATE(4594)] = 158510, - [SMALL_STATE(4595)] = 158523, - [SMALL_STATE(4596)] = 158534, - [SMALL_STATE(4597)] = 158547, - [SMALL_STATE(4598)] = 158560, - [SMALL_STATE(4599)] = 158573, - [SMALL_STATE(4600)] = 158586, - [SMALL_STATE(4601)] = 158597, - [SMALL_STATE(4602)] = 158608, - [SMALL_STATE(4603)] = 158621, - [SMALL_STATE(4604)] = 158632, - [SMALL_STATE(4605)] = 158645, - [SMALL_STATE(4606)] = 158656, - [SMALL_STATE(4607)] = 158667, - [SMALL_STATE(4608)] = 158680, - [SMALL_STATE(4609)] = 158691, - [SMALL_STATE(4610)] = 158704, - [SMALL_STATE(4611)] = 158715, - [SMALL_STATE(4612)] = 158726, - [SMALL_STATE(4613)] = 158739, - [SMALL_STATE(4614)] = 158752, - [SMALL_STATE(4615)] = 158763, - [SMALL_STATE(4616)] = 158774, - [SMALL_STATE(4617)] = 158787, - [SMALL_STATE(4618)] = 158798, - [SMALL_STATE(4619)] = 158809, - [SMALL_STATE(4620)] = 158822, - [SMALL_STATE(4621)] = 158833, - [SMALL_STATE(4622)] = 158846, - [SMALL_STATE(4623)] = 158859, - [SMALL_STATE(4624)] = 158872, - [SMALL_STATE(4625)] = 158883, - [SMALL_STATE(4626)] = 158894, - [SMALL_STATE(4627)] = 158907, - [SMALL_STATE(4628)] = 158920, - [SMALL_STATE(4629)] = 158933, - [SMALL_STATE(4630)] = 158946, - [SMALL_STATE(4631)] = 158959, - [SMALL_STATE(4632)] = 158972, - [SMALL_STATE(4633)] = 158985, - [SMALL_STATE(4634)] = 158998, - [SMALL_STATE(4635)] = 159011, - [SMALL_STATE(4636)] = 159024, - [SMALL_STATE(4637)] = 159037, - [SMALL_STATE(4638)] = 159050, - [SMALL_STATE(4639)] = 159063, - [SMALL_STATE(4640)] = 159074, - [SMALL_STATE(4641)] = 159087, - [SMALL_STATE(4642)] = 159100, - [SMALL_STATE(4643)] = 159113, - [SMALL_STATE(4644)] = 159124, - [SMALL_STATE(4645)] = 159135, - [SMALL_STATE(4646)] = 159148, - [SMALL_STATE(4647)] = 159161, - [SMALL_STATE(4648)] = 159172, - [SMALL_STATE(4649)] = 159183, - [SMALL_STATE(4650)] = 159194, - [SMALL_STATE(4651)] = 159207, - [SMALL_STATE(4652)] = 159220, - [SMALL_STATE(4653)] = 159231, - [SMALL_STATE(4654)] = 159244, - [SMALL_STATE(4655)] = 159257, - [SMALL_STATE(4656)] = 159270, - [SMALL_STATE(4657)] = 159281, - [SMALL_STATE(4658)] = 159292, - [SMALL_STATE(4659)] = 159305, - [SMALL_STATE(4660)] = 159318, - [SMALL_STATE(4661)] = 159329, - [SMALL_STATE(4662)] = 159342, - [SMALL_STATE(4663)] = 159353, - [SMALL_STATE(4664)] = 159364, - [SMALL_STATE(4665)] = 159377, - [SMALL_STATE(4666)] = 159388, - [SMALL_STATE(4667)] = 159399, - [SMALL_STATE(4668)] = 159412, - [SMALL_STATE(4669)] = 159421, - [SMALL_STATE(4670)] = 159434, - [SMALL_STATE(4671)] = 159447, - [SMALL_STATE(4672)] = 159460, - [SMALL_STATE(4673)] = 159473, - [SMALL_STATE(4674)] = 159486, - [SMALL_STATE(4675)] = 159497, - [SMALL_STATE(4676)] = 159510, - [SMALL_STATE(4677)] = 159523, - [SMALL_STATE(4678)] = 159534, - [SMALL_STATE(4679)] = 159547, - [SMALL_STATE(4680)] = 159560, - [SMALL_STATE(4681)] = 159571, - [SMALL_STATE(4682)] = 159584, - [SMALL_STATE(4683)] = 159595, - [SMALL_STATE(4684)] = 159606, - [SMALL_STATE(4685)] = 159619, - [SMALL_STATE(4686)] = 159632, - [SMALL_STATE(4687)] = 159643, - [SMALL_STATE(4688)] = 159656, - [SMALL_STATE(4689)] = 159669, - [SMALL_STATE(4690)] = 159680, - [SMALL_STATE(4691)] = 159691, - [SMALL_STATE(4692)] = 159702, - [SMALL_STATE(4693)] = 159713, - [SMALL_STATE(4694)] = 159724, - [SMALL_STATE(4695)] = 159735, - [SMALL_STATE(4696)] = 159746, - [SMALL_STATE(4697)] = 159757, - [SMALL_STATE(4698)] = 159768, - [SMALL_STATE(4699)] = 159779, - [SMALL_STATE(4700)] = 159790, - [SMALL_STATE(4701)] = 159803, - [SMALL_STATE(4702)] = 159816, - [SMALL_STATE(4703)] = 159827, - [SMALL_STATE(4704)] = 159840, - [SMALL_STATE(4705)] = 159851, - [SMALL_STATE(4706)] = 159862, - [SMALL_STATE(4707)] = 159873, - [SMALL_STATE(4708)] = 159886, - [SMALL_STATE(4709)] = 159899, - [SMALL_STATE(4710)] = 159910, - [SMALL_STATE(4711)] = 159923, - [SMALL_STATE(4712)] = 159936, - [SMALL_STATE(4713)] = 159949, - [SMALL_STATE(4714)] = 159962, - [SMALL_STATE(4715)] = 159975, - [SMALL_STATE(4716)] = 159986, - [SMALL_STATE(4717)] = 159997, - [SMALL_STATE(4718)] = 160010, - [SMALL_STATE(4719)] = 160023, - [SMALL_STATE(4720)] = 160034, - [SMALL_STATE(4721)] = 160045, - [SMALL_STATE(4722)] = 160058, - [SMALL_STATE(4723)] = 160071, - [SMALL_STATE(4724)] = 160084, - [SMALL_STATE(4725)] = 160095, - [SMALL_STATE(4726)] = 160106, - [SMALL_STATE(4727)] = 160117, - [SMALL_STATE(4728)] = 160128, - [SMALL_STATE(4729)] = 160139, - [SMALL_STATE(4730)] = 160150, - [SMALL_STATE(4731)] = 160161, - [SMALL_STATE(4732)] = 160172, - [SMALL_STATE(4733)] = 160183, - [SMALL_STATE(4734)] = 160194, - [SMALL_STATE(4735)] = 160207, - [SMALL_STATE(4736)] = 160218, - [SMALL_STATE(4737)] = 160229, - [SMALL_STATE(4738)] = 160240, - [SMALL_STATE(4739)] = 160251, - [SMALL_STATE(4740)] = 160264, - [SMALL_STATE(4741)] = 160275, - [SMALL_STATE(4742)] = 160288, - [SMALL_STATE(4743)] = 160301, - [SMALL_STATE(4744)] = 160312, - [SMALL_STATE(4745)] = 160323, - [SMALL_STATE(4746)] = 160334, - [SMALL_STATE(4747)] = 160345, - [SMALL_STATE(4748)] = 160356, - [SMALL_STATE(4749)] = 160369, - [SMALL_STATE(4750)] = 160382, - [SMALL_STATE(4751)] = 160393, - [SMALL_STATE(4752)] = 160406, - [SMALL_STATE(4753)] = 160419, - [SMALL_STATE(4754)] = 160430, - [SMALL_STATE(4755)] = 160441, - [SMALL_STATE(4756)] = 160454, - [SMALL_STATE(4757)] = 160467, - [SMALL_STATE(4758)] = 160478, - [SMALL_STATE(4759)] = 160491, - [SMALL_STATE(4760)] = 160504, - [SMALL_STATE(4761)] = 160517, - [SMALL_STATE(4762)] = 160528, - [SMALL_STATE(4763)] = 160539, - [SMALL_STATE(4764)] = 160552, - [SMALL_STATE(4765)] = 160565, - [SMALL_STATE(4766)] = 160576, - [SMALL_STATE(4767)] = 160587, - [SMALL_STATE(4768)] = 160600, - [SMALL_STATE(4769)] = 160611, - [SMALL_STATE(4770)] = 160624, - [SMALL_STATE(4771)] = 160637, - [SMALL_STATE(4772)] = 160648, - [SMALL_STATE(4773)] = 160659, - [SMALL_STATE(4774)] = 160670, - [SMALL_STATE(4775)] = 160681, - [SMALL_STATE(4776)] = 160692, - [SMALL_STATE(4777)] = 160703, - [SMALL_STATE(4778)] = 160714, - [SMALL_STATE(4779)] = 160727, - [SMALL_STATE(4780)] = 160740, - [SMALL_STATE(4781)] = 160753, - [SMALL_STATE(4782)] = 160766, - [SMALL_STATE(4783)] = 160777, - [SMALL_STATE(4784)] = 160788, - [SMALL_STATE(4785)] = 160799, - [SMALL_STATE(4786)] = 160810, - [SMALL_STATE(4787)] = 160823, - [SMALL_STATE(4788)] = 160834, - [SMALL_STATE(4789)] = 160847, - [SMALL_STATE(4790)] = 160858, - [SMALL_STATE(4791)] = 160869, - [SMALL_STATE(4792)] = 160880, - [SMALL_STATE(4793)] = 160891, - [SMALL_STATE(4794)] = 160904, - [SMALL_STATE(4795)] = 160917, - [SMALL_STATE(4796)] = 160930, - [SMALL_STATE(4797)] = 160943, - [SMALL_STATE(4798)] = 160954, - [SMALL_STATE(4799)] = 160967, - [SMALL_STATE(4800)] = 160980, - [SMALL_STATE(4801)] = 160993, - [SMALL_STATE(4802)] = 161006, - [SMALL_STATE(4803)] = 161019, - [SMALL_STATE(4804)] = 161032, - [SMALL_STATE(4805)] = 161045, - [SMALL_STATE(4806)] = 161058, - [SMALL_STATE(4807)] = 161069, - [SMALL_STATE(4808)] = 161082, - [SMALL_STATE(4809)] = 161095, - [SMALL_STATE(4810)] = 161108, - [SMALL_STATE(4811)] = 161119, - [SMALL_STATE(4812)] = 161132, - [SMALL_STATE(4813)] = 161145, - [SMALL_STATE(4814)] = 161158, - [SMALL_STATE(4815)] = 161169, - [SMALL_STATE(4816)] = 161180, - [SMALL_STATE(4817)] = 161193, - [SMALL_STATE(4818)] = 161206, - [SMALL_STATE(4819)] = 161219, - [SMALL_STATE(4820)] = 161230, - [SMALL_STATE(4821)] = 161241, - [SMALL_STATE(4822)] = 161254, - [SMALL_STATE(4823)] = 161265, - [SMALL_STATE(4824)] = 161276, - [SMALL_STATE(4825)] = 161287, - [SMALL_STATE(4826)] = 161300, - [SMALL_STATE(4827)] = 161311, - [SMALL_STATE(4828)] = 161324, - [SMALL_STATE(4829)] = 161337, - [SMALL_STATE(4830)] = 161350, - [SMALL_STATE(4831)] = 161361, - [SMALL_STATE(4832)] = 161374, - [SMALL_STATE(4833)] = 161387, - [SMALL_STATE(4834)] = 161398, - [SMALL_STATE(4835)] = 161411, - [SMALL_STATE(4836)] = 161424, - [SMALL_STATE(4837)] = 161437, - [SMALL_STATE(4838)] = 161450, - [SMALL_STATE(4839)] = 161463, - [SMALL_STATE(4840)] = 161476, - [SMALL_STATE(4841)] = 161489, - [SMALL_STATE(4842)] = 161502, - [SMALL_STATE(4843)] = 161515, - [SMALL_STATE(4844)] = 161528, - [SMALL_STATE(4845)] = 161541, - [SMALL_STATE(4846)] = 161554, - [SMALL_STATE(4847)] = 161567, - [SMALL_STATE(4848)] = 161580, - [SMALL_STATE(4849)] = 161593, - [SMALL_STATE(4850)] = 161606, - [SMALL_STATE(4851)] = 161619, - [SMALL_STATE(4852)] = 161632, - [SMALL_STATE(4853)] = 161645, - [SMALL_STATE(4854)] = 161658, - [SMALL_STATE(4855)] = 161671, - [SMALL_STATE(4856)] = 161682, - [SMALL_STATE(4857)] = 161695, - [SMALL_STATE(4858)] = 161708, - [SMALL_STATE(4859)] = 161721, - [SMALL_STATE(4860)] = 161734, - [SMALL_STATE(4861)] = 161747, - [SMALL_STATE(4862)] = 161760, - [SMALL_STATE(4863)] = 161773, - [SMALL_STATE(4864)] = 161786, - [SMALL_STATE(4865)] = 161799, - [SMALL_STATE(4866)] = 161812, - [SMALL_STATE(4867)] = 161825, - [SMALL_STATE(4868)] = 161838, - [SMALL_STATE(4869)] = 161851, - [SMALL_STATE(4870)] = 161864, - [SMALL_STATE(4871)] = 161877, - [SMALL_STATE(4872)] = 161890, - [SMALL_STATE(4873)] = 161903, - [SMALL_STATE(4874)] = 161916, - [SMALL_STATE(4875)] = 161929, - [SMALL_STATE(4876)] = 161942, - [SMALL_STATE(4877)] = 161955, - [SMALL_STATE(4878)] = 161968, - [SMALL_STATE(4879)] = 161981, - [SMALL_STATE(4880)] = 161994, - [SMALL_STATE(4881)] = 162007, - [SMALL_STATE(4882)] = 162020, - [SMALL_STATE(4883)] = 162033, - [SMALL_STATE(4884)] = 162046, - [SMALL_STATE(4885)] = 162059, - [SMALL_STATE(4886)] = 162072, - [SMALL_STATE(4887)] = 162085, - [SMALL_STATE(4888)] = 162098, - [SMALL_STATE(4889)] = 162111, - [SMALL_STATE(4890)] = 162124, - [SMALL_STATE(4891)] = 162137, - [SMALL_STATE(4892)] = 162150, - [SMALL_STATE(4893)] = 162163, - [SMALL_STATE(4894)] = 162176, - [SMALL_STATE(4895)] = 162189, - [SMALL_STATE(4896)] = 162202, - [SMALL_STATE(4897)] = 162215, - [SMALL_STATE(4898)] = 162228, - [SMALL_STATE(4899)] = 162241, - [SMALL_STATE(4900)] = 162254, - [SMALL_STATE(4901)] = 162265, - [SMALL_STATE(4902)] = 162278, - [SMALL_STATE(4903)] = 162291, - [SMALL_STATE(4904)] = 162304, - [SMALL_STATE(4905)] = 162317, - [SMALL_STATE(4906)] = 162330, - [SMALL_STATE(4907)] = 162343, - [SMALL_STATE(4908)] = 162356, - [SMALL_STATE(4909)] = 162369, - [SMALL_STATE(4910)] = 162382, - [SMALL_STATE(4911)] = 162395, - [SMALL_STATE(4912)] = 162408, - [SMALL_STATE(4913)] = 162421, - [SMALL_STATE(4914)] = 162434, - [SMALL_STATE(4915)] = 162447, - [SMALL_STATE(4916)] = 162460, - [SMALL_STATE(4917)] = 162473, - [SMALL_STATE(4918)] = 162486, - [SMALL_STATE(4919)] = 162499, - [SMALL_STATE(4920)] = 162512, - [SMALL_STATE(4921)] = 162525, - [SMALL_STATE(4922)] = 162538, - [SMALL_STATE(4923)] = 162551, - [SMALL_STATE(4924)] = 162564, - [SMALL_STATE(4925)] = 162577, - [SMALL_STATE(4926)] = 162590, - [SMALL_STATE(4927)] = 162603, - [SMALL_STATE(4928)] = 162616, - [SMALL_STATE(4929)] = 162629, - [SMALL_STATE(4930)] = 162642, - [SMALL_STATE(4931)] = 162655, - [SMALL_STATE(4932)] = 162668, - [SMALL_STATE(4933)] = 162681, - [SMALL_STATE(4934)] = 162694, - [SMALL_STATE(4935)] = 162707, - [SMALL_STATE(4936)] = 162720, - [SMALL_STATE(4937)] = 162733, - [SMALL_STATE(4938)] = 162746, - [SMALL_STATE(4939)] = 162759, - [SMALL_STATE(4940)] = 162772, - [SMALL_STATE(4941)] = 162785, - [SMALL_STATE(4942)] = 162798, - [SMALL_STATE(4943)] = 162811, - [SMALL_STATE(4944)] = 162824, - [SMALL_STATE(4945)] = 162837, - [SMALL_STATE(4946)] = 162850, - [SMALL_STATE(4947)] = 162863, - [SMALL_STATE(4948)] = 162876, - [SMALL_STATE(4949)] = 162887, - [SMALL_STATE(4950)] = 162900, - [SMALL_STATE(4951)] = 162913, - [SMALL_STATE(4952)] = 162926, - [SMALL_STATE(4953)] = 162937, - [SMALL_STATE(4954)] = 162950, - [SMALL_STATE(4955)] = 162963, - [SMALL_STATE(4956)] = 162976, - [SMALL_STATE(4957)] = 162989, - [SMALL_STATE(4958)] = 163002, - [SMALL_STATE(4959)] = 163015, - [SMALL_STATE(4960)] = 163028, - [SMALL_STATE(4961)] = 163041, - [SMALL_STATE(4962)] = 163054, - [SMALL_STATE(4963)] = 163067, - [SMALL_STATE(4964)] = 163080, - [SMALL_STATE(4965)] = 163091, - [SMALL_STATE(4966)] = 163104, - [SMALL_STATE(4967)] = 163117, - [SMALL_STATE(4968)] = 163130, - [SMALL_STATE(4969)] = 163143, - [SMALL_STATE(4970)] = 163156, - [SMALL_STATE(4971)] = 163169, - [SMALL_STATE(4972)] = 163182, - [SMALL_STATE(4973)] = 163195, - [SMALL_STATE(4974)] = 163208, - [SMALL_STATE(4975)] = 163221, - [SMALL_STATE(4976)] = 163234, - [SMALL_STATE(4977)] = 163247, - [SMALL_STATE(4978)] = 163260, - [SMALL_STATE(4979)] = 163273, - [SMALL_STATE(4980)] = 163286, - [SMALL_STATE(4981)] = 163299, - [SMALL_STATE(4982)] = 163312, - [SMALL_STATE(4983)] = 163325, - [SMALL_STATE(4984)] = 163338, - [SMALL_STATE(4985)] = 163351, - [SMALL_STATE(4986)] = 163364, - [SMALL_STATE(4987)] = 163377, - [SMALL_STATE(4988)] = 163390, - [SMALL_STATE(4989)] = 163401, - [SMALL_STATE(4990)] = 163414, - [SMALL_STATE(4991)] = 163427, - [SMALL_STATE(4992)] = 163440, - [SMALL_STATE(4993)] = 163453, - [SMALL_STATE(4994)] = 163466, - [SMALL_STATE(4995)] = 163479, - [SMALL_STATE(4996)] = 163492, - [SMALL_STATE(4997)] = 163505, - [SMALL_STATE(4998)] = 163516, - [SMALL_STATE(4999)] = 163529, - [SMALL_STATE(5000)] = 163542, - [SMALL_STATE(5001)] = 163555, - [SMALL_STATE(5002)] = 163568, - [SMALL_STATE(5003)] = 163581, - [SMALL_STATE(5004)] = 163594, - [SMALL_STATE(5005)] = 163605, - [SMALL_STATE(5006)] = 163618, - [SMALL_STATE(5007)] = 163631, - [SMALL_STATE(5008)] = 163644, - [SMALL_STATE(5009)] = 163657, - [SMALL_STATE(5010)] = 163670, - [SMALL_STATE(5011)] = 163683, - [SMALL_STATE(5012)] = 163694, - [SMALL_STATE(5013)] = 163707, - [SMALL_STATE(5014)] = 163720, - [SMALL_STATE(5015)] = 163733, - [SMALL_STATE(5016)] = 163744, - [SMALL_STATE(5017)] = 163757, - [SMALL_STATE(5018)] = 163770, - [SMALL_STATE(5019)] = 163781, - [SMALL_STATE(5020)] = 163792, - [SMALL_STATE(5021)] = 163805, - [SMALL_STATE(5022)] = 163818, - [SMALL_STATE(5023)] = 163831, - [SMALL_STATE(5024)] = 163844, - [SMALL_STATE(5025)] = 163857, - [SMALL_STATE(5026)] = 163870, - [SMALL_STATE(5027)] = 163883, - [SMALL_STATE(5028)] = 163896, - [SMALL_STATE(5029)] = 163909, - [SMALL_STATE(5030)] = 163922, - [SMALL_STATE(5031)] = 163935, - [SMALL_STATE(5032)] = 163948, - [SMALL_STATE(5033)] = 163961, - [SMALL_STATE(5034)] = 163974, - [SMALL_STATE(5035)] = 163983, - [SMALL_STATE(5036)] = 163996, - [SMALL_STATE(5037)] = 164007, - [SMALL_STATE(5038)] = 164020, - [SMALL_STATE(5039)] = 164033, - [SMALL_STATE(5040)] = 164046, - [SMALL_STATE(5041)] = 164059, - [SMALL_STATE(5042)] = 164072, - [SMALL_STATE(5043)] = 164085, - [SMALL_STATE(5044)] = 164098, - [SMALL_STATE(5045)] = 164111, - [SMALL_STATE(5046)] = 164124, - [SMALL_STATE(5047)] = 164137, - [SMALL_STATE(5048)] = 164150, - [SMALL_STATE(5049)] = 164163, - [SMALL_STATE(5050)] = 164174, - [SMALL_STATE(5051)] = 164187, - [SMALL_STATE(5052)] = 164200, - [SMALL_STATE(5053)] = 164213, - [SMALL_STATE(5054)] = 164226, - [SMALL_STATE(5055)] = 164239, - [SMALL_STATE(5056)] = 164252, - [SMALL_STATE(5057)] = 164265, - [SMALL_STATE(5058)] = 164278, - [SMALL_STATE(5059)] = 164291, - [SMALL_STATE(5060)] = 164304, - [SMALL_STATE(5061)] = 164317, - [SMALL_STATE(5062)] = 164330, - [SMALL_STATE(5063)] = 164343, - [SMALL_STATE(5064)] = 164356, - [SMALL_STATE(5065)] = 164367, - [SMALL_STATE(5066)] = 164380, - [SMALL_STATE(5067)] = 164393, - [SMALL_STATE(5068)] = 164406, - [SMALL_STATE(5069)] = 164419, - [SMALL_STATE(5070)] = 164432, - [SMALL_STATE(5071)] = 164445, - [SMALL_STATE(5072)] = 164458, - [SMALL_STATE(5073)] = 164471, - [SMALL_STATE(5074)] = 164482, - [SMALL_STATE(5075)] = 164491, - [SMALL_STATE(5076)] = 164504, - [SMALL_STATE(5077)] = 164517, - [SMALL_STATE(5078)] = 164530, - [SMALL_STATE(5079)] = 164543, - [SMALL_STATE(5080)] = 164554, - [SMALL_STATE(5081)] = 164567, - [SMALL_STATE(5082)] = 164580, - [SMALL_STATE(5083)] = 164593, - [SMALL_STATE(5084)] = 164606, - [SMALL_STATE(5085)] = 164617, - [SMALL_STATE(5086)] = 164630, - [SMALL_STATE(5087)] = 164643, - [SMALL_STATE(5088)] = 164656, - [SMALL_STATE(5089)] = 164665, - [SMALL_STATE(5090)] = 164678, - [SMALL_STATE(5091)] = 164691, - [SMALL_STATE(5092)] = 164704, - [SMALL_STATE(5093)] = 164717, - [SMALL_STATE(5094)] = 164730, - [SMALL_STATE(5095)] = 164743, - [SMALL_STATE(5096)] = 164752, - [SMALL_STATE(5097)] = 164765, - [SMALL_STATE(5098)] = 164778, - [SMALL_STATE(5099)] = 164791, - [SMALL_STATE(5100)] = 164804, - [SMALL_STATE(5101)] = 164817, - [SMALL_STATE(5102)] = 164830, - [SMALL_STATE(5103)] = 164843, - [SMALL_STATE(5104)] = 164856, - [SMALL_STATE(5105)] = 164869, - [SMALL_STATE(5106)] = 164880, - [SMALL_STATE(5107)] = 164893, - [SMALL_STATE(5108)] = 164904, - [SMALL_STATE(5109)] = 164917, - [SMALL_STATE(5110)] = 164930, - [SMALL_STATE(5111)] = 164943, - [SMALL_STATE(5112)] = 164956, - [SMALL_STATE(5113)] = 164969, - [SMALL_STATE(5114)] = 164982, - [SMALL_STATE(5115)] = 164995, - [SMALL_STATE(5116)] = 165008, - [SMALL_STATE(5117)] = 165021, - [SMALL_STATE(5118)] = 165034, - [SMALL_STATE(5119)] = 165047, - [SMALL_STATE(5120)] = 165058, - [SMALL_STATE(5121)] = 165071, - [SMALL_STATE(5122)] = 165084, - [SMALL_STATE(5123)] = 165095, - [SMALL_STATE(5124)] = 165106, - [SMALL_STATE(5125)] = 165119, - [SMALL_STATE(5126)] = 165132, - [SMALL_STATE(5127)] = 165145, - [SMALL_STATE(5128)] = 165158, - [SMALL_STATE(5129)] = 165171, - [SMALL_STATE(5130)] = 165184, - [SMALL_STATE(5131)] = 165197, - [SMALL_STATE(5132)] = 165208, - [SMALL_STATE(5133)] = 165221, - [SMALL_STATE(5134)] = 165234, - [SMALL_STATE(5135)] = 165247, - [SMALL_STATE(5136)] = 165258, - [SMALL_STATE(5137)] = 165271, - [SMALL_STATE(5138)] = 165282, - [SMALL_STATE(5139)] = 165295, - [SMALL_STATE(5140)] = 165308, - [SMALL_STATE(5141)] = 165321, - [SMALL_STATE(5142)] = 165334, - [SMALL_STATE(5143)] = 165345, - [SMALL_STATE(5144)] = 165358, - [SMALL_STATE(5145)] = 165371, - [SMALL_STATE(5146)] = 165384, - [SMALL_STATE(5147)] = 165397, - [SMALL_STATE(5148)] = 165410, - [SMALL_STATE(5149)] = 165423, - [SMALL_STATE(5150)] = 165434, - [SMALL_STATE(5151)] = 165447, - [SMALL_STATE(5152)] = 165460, - [SMALL_STATE(5153)] = 165473, - [SMALL_STATE(5154)] = 165486, - [SMALL_STATE(5155)] = 165499, - [SMALL_STATE(5156)] = 165512, - [SMALL_STATE(5157)] = 165525, - [SMALL_STATE(5158)] = 165538, - [SMALL_STATE(5159)] = 165551, - [SMALL_STATE(5160)] = 165564, - [SMALL_STATE(5161)] = 165577, - [SMALL_STATE(5162)] = 165590, - [SMALL_STATE(5163)] = 165603, - [SMALL_STATE(5164)] = 165616, - [SMALL_STATE(5165)] = 165629, - [SMALL_STATE(5166)] = 165642, - [SMALL_STATE(5167)] = 165655, - [SMALL_STATE(5168)] = 165668, - [SMALL_STATE(5169)] = 165681, - [SMALL_STATE(5170)] = 165694, - [SMALL_STATE(5171)] = 165707, - [SMALL_STATE(5172)] = 165720, - [SMALL_STATE(5173)] = 165731, - [SMALL_STATE(5174)] = 165744, - [SMALL_STATE(5175)] = 165757, - [SMALL_STATE(5176)] = 165770, - [SMALL_STATE(5177)] = 165783, - [SMALL_STATE(5178)] = 165796, - [SMALL_STATE(5179)] = 165809, - [SMALL_STATE(5180)] = 165822, - [SMALL_STATE(5181)] = 165833, - [SMALL_STATE(5182)] = 165846, - [SMALL_STATE(5183)] = 165859, - [SMALL_STATE(5184)] = 165872, - [SMALL_STATE(5185)] = 165885, - [SMALL_STATE(5186)] = 165898, - [SMALL_STATE(5187)] = 165909, - [SMALL_STATE(5188)] = 165922, - [SMALL_STATE(5189)] = 165933, - [SMALL_STATE(5190)] = 165946, - [SMALL_STATE(5191)] = 165959, - [SMALL_STATE(5192)] = 165972, - [SMALL_STATE(5193)] = 165985, - [SMALL_STATE(5194)] = 165996, - [SMALL_STATE(5195)] = 166009, - [SMALL_STATE(5196)] = 166020, - [SMALL_STATE(5197)] = 166033, - [SMALL_STATE(5198)] = 166044, - [SMALL_STATE(5199)] = 166057, - [SMALL_STATE(5200)] = 166068, - [SMALL_STATE(5201)] = 166081, - [SMALL_STATE(5202)] = 166094, - [SMALL_STATE(5203)] = 166107, - [SMALL_STATE(5204)] = 166120, - [SMALL_STATE(5205)] = 166131, - [SMALL_STATE(5206)] = 166144, - [SMALL_STATE(5207)] = 166157, - [SMALL_STATE(5208)] = 166170, - [SMALL_STATE(5209)] = 166183, - [SMALL_STATE(5210)] = 166196, - [SMALL_STATE(5211)] = 166209, - [SMALL_STATE(5212)] = 166222, - [SMALL_STATE(5213)] = 166233, - [SMALL_STATE(5214)] = 166246, - [SMALL_STATE(5215)] = 166259, - [SMALL_STATE(5216)] = 166272, - [SMALL_STATE(5217)] = 166285, - [SMALL_STATE(5218)] = 166298, - [SMALL_STATE(5219)] = 166311, - [SMALL_STATE(5220)] = 166324, - [SMALL_STATE(5221)] = 166337, - [SMALL_STATE(5222)] = 166350, - [SMALL_STATE(5223)] = 166363, - [SMALL_STATE(5224)] = 166374, - [SMALL_STATE(5225)] = 166387, - [SMALL_STATE(5226)] = 166400, - [SMALL_STATE(5227)] = 166413, - [SMALL_STATE(5228)] = 166426, - [SMALL_STATE(5229)] = 166439, - [SMALL_STATE(5230)] = 166452, - [SMALL_STATE(5231)] = 166465, - [SMALL_STATE(5232)] = 166478, - [SMALL_STATE(5233)] = 166491, - [SMALL_STATE(5234)] = 166502, - [SMALL_STATE(5235)] = 166515, - [SMALL_STATE(5236)] = 166526, - [SMALL_STATE(5237)] = 166539, - [SMALL_STATE(5238)] = 166552, - [SMALL_STATE(5239)] = 166565, - [SMALL_STATE(5240)] = 166578, - [SMALL_STATE(5241)] = 166591, - [SMALL_STATE(5242)] = 166604, - [SMALL_STATE(5243)] = 166615, - [SMALL_STATE(5244)] = 166628, - [SMALL_STATE(5245)] = 166641, - [SMALL_STATE(5246)] = 166654, - [SMALL_STATE(5247)] = 166667, - [SMALL_STATE(5248)] = 166680, - [SMALL_STATE(5249)] = 166693, - [SMALL_STATE(5250)] = 166706, - [SMALL_STATE(5251)] = 166719, - [SMALL_STATE(5252)] = 166732, - [SMALL_STATE(5253)] = 166743, - [SMALL_STATE(5254)] = 166756, - [SMALL_STATE(5255)] = 166769, - [SMALL_STATE(5256)] = 166782, - [SMALL_STATE(5257)] = 166795, - [SMALL_STATE(5258)] = 166806, - [SMALL_STATE(5259)] = 166819, - [SMALL_STATE(5260)] = 166830, - [SMALL_STATE(5261)] = 166843, - [SMALL_STATE(5262)] = 166854, - [SMALL_STATE(5263)] = 166867, - [SMALL_STATE(5264)] = 166880, - [SMALL_STATE(5265)] = 166893, - [SMALL_STATE(5266)] = 166904, - [SMALL_STATE(5267)] = 166917, - [SMALL_STATE(5268)] = 166930, - [SMALL_STATE(5269)] = 166943, - [SMALL_STATE(5270)] = 166953, - [SMALL_STATE(5271)] = 166963, - [SMALL_STATE(5272)] = 166973, - [SMALL_STATE(5273)] = 166983, - [SMALL_STATE(5274)] = 166993, - [SMALL_STATE(5275)] = 167003, - [SMALL_STATE(5276)] = 167011, - [SMALL_STATE(5277)] = 167021, - [SMALL_STATE(5278)] = 167031, - [SMALL_STATE(5279)] = 167041, - [SMALL_STATE(5280)] = 167051, - [SMALL_STATE(5281)] = 167061, - [SMALL_STATE(5282)] = 167071, - [SMALL_STATE(5283)] = 167081, - [SMALL_STATE(5284)] = 167091, - [SMALL_STATE(5285)] = 167101, - [SMALL_STATE(5286)] = 167111, - [SMALL_STATE(5287)] = 167121, - [SMALL_STATE(5288)] = 167129, - [SMALL_STATE(5289)] = 167139, - [SMALL_STATE(5290)] = 167149, - [SMALL_STATE(5291)] = 167159, - [SMALL_STATE(5292)] = 167169, - [SMALL_STATE(5293)] = 167179, - [SMALL_STATE(5294)] = 167189, - [SMALL_STATE(5295)] = 167197, - [SMALL_STATE(5296)] = 167207, - [SMALL_STATE(5297)] = 167217, - [SMALL_STATE(5298)] = 167227, - [SMALL_STATE(5299)] = 167237, - [SMALL_STATE(5300)] = 167247, - [SMALL_STATE(5301)] = 167255, - [SMALL_STATE(5302)] = 167265, - [SMALL_STATE(5303)] = 167275, - [SMALL_STATE(5304)] = 167285, - [SMALL_STATE(5305)] = 167295, - [SMALL_STATE(5306)] = 167305, - [SMALL_STATE(5307)] = 167315, - [SMALL_STATE(5308)] = 167325, - [SMALL_STATE(5309)] = 167335, - [SMALL_STATE(5310)] = 167345, - [SMALL_STATE(5311)] = 167355, - [SMALL_STATE(5312)] = 167365, - [SMALL_STATE(5313)] = 167375, - [SMALL_STATE(5314)] = 167385, - [SMALL_STATE(5315)] = 167395, - [SMALL_STATE(5316)] = 167405, - [SMALL_STATE(5317)] = 167415, - [SMALL_STATE(5318)] = 167425, - [SMALL_STATE(5319)] = 167435, - [SMALL_STATE(5320)] = 167445, - [SMALL_STATE(5321)] = 167455, - [SMALL_STATE(5322)] = 167465, - [SMALL_STATE(5323)] = 167475, - [SMALL_STATE(5324)] = 167485, - [SMALL_STATE(5325)] = 167495, - [SMALL_STATE(5326)] = 167505, - [SMALL_STATE(5327)] = 167515, - [SMALL_STATE(5328)] = 167525, - [SMALL_STATE(5329)] = 167535, - [SMALL_STATE(5330)] = 167545, - [SMALL_STATE(5331)] = 167555, - [SMALL_STATE(5332)] = 167563, - [SMALL_STATE(5333)] = 167571, - [SMALL_STATE(5334)] = 167581, - [SMALL_STATE(5335)] = 167591, - [SMALL_STATE(5336)] = 167599, - [SMALL_STATE(5337)] = 167609, - [SMALL_STATE(5338)] = 167619, - [SMALL_STATE(5339)] = 167629, - [SMALL_STATE(5340)] = 167639, - [SMALL_STATE(5341)] = 167649, - [SMALL_STATE(5342)] = 167659, - [SMALL_STATE(5343)] = 167667, - [SMALL_STATE(5344)] = 167677, - [SMALL_STATE(5345)] = 167687, - [SMALL_STATE(5346)] = 167697, - [SMALL_STATE(5347)] = 167707, - [SMALL_STATE(5348)] = 167717, - [SMALL_STATE(5349)] = 167727, - [SMALL_STATE(5350)] = 167737, - [SMALL_STATE(5351)] = 167747, - [SMALL_STATE(5352)] = 167757, - [SMALL_STATE(5353)] = 167767, - [SMALL_STATE(5354)] = 167777, - [SMALL_STATE(5355)] = 167787, - [SMALL_STATE(5356)] = 167797, - [SMALL_STATE(5357)] = 167807, - [SMALL_STATE(5358)] = 167817, - [SMALL_STATE(5359)] = 167827, - [SMALL_STATE(5360)] = 167837, - [SMALL_STATE(5361)] = 167847, - [SMALL_STATE(5362)] = 167857, - [SMALL_STATE(5363)] = 167867, - [SMALL_STATE(5364)] = 167877, - [SMALL_STATE(5365)] = 167887, - [SMALL_STATE(5366)] = 167897, - [SMALL_STATE(5367)] = 167907, - [SMALL_STATE(5368)] = 167917, - [SMALL_STATE(5369)] = 167927, - [SMALL_STATE(5370)] = 167937, - [SMALL_STATE(5371)] = 167947, - [SMALL_STATE(5372)] = 167957, - [SMALL_STATE(5373)] = 167967, - [SMALL_STATE(5374)] = 167977, - [SMALL_STATE(5375)] = 167987, - [SMALL_STATE(5376)] = 167997, - [SMALL_STATE(5377)] = 168007, - [SMALL_STATE(5378)] = 168017, - [SMALL_STATE(5379)] = 168027, - [SMALL_STATE(5380)] = 168037, - [SMALL_STATE(5381)] = 168047, - [SMALL_STATE(5382)] = 168057, - [SMALL_STATE(5383)] = 168067, - [SMALL_STATE(5384)] = 168077, - [SMALL_STATE(5385)] = 168087, - [SMALL_STATE(5386)] = 168097, - [SMALL_STATE(5387)] = 168107, - [SMALL_STATE(5388)] = 168117, - [SMALL_STATE(5389)] = 168127, - [SMALL_STATE(5390)] = 168137, - [SMALL_STATE(5391)] = 168147, - [SMALL_STATE(5392)] = 168157, - [SMALL_STATE(5393)] = 168167, - [SMALL_STATE(5394)] = 168177, - [SMALL_STATE(5395)] = 168187, - [SMALL_STATE(5396)] = 168197, - [SMALL_STATE(5397)] = 168205, - [SMALL_STATE(5398)] = 168215, - [SMALL_STATE(5399)] = 168225, - [SMALL_STATE(5400)] = 168235, - [SMALL_STATE(5401)] = 168245, - [SMALL_STATE(5402)] = 168255, - [SMALL_STATE(5403)] = 168265, - [SMALL_STATE(5404)] = 168275, - [SMALL_STATE(5405)] = 168285, - [SMALL_STATE(5406)] = 168295, - [SMALL_STATE(5407)] = 168305, - [SMALL_STATE(5408)] = 168315, - [SMALL_STATE(5409)] = 168323, - [SMALL_STATE(5410)] = 168333, - [SMALL_STATE(5411)] = 168343, - [SMALL_STATE(5412)] = 168353, - [SMALL_STATE(5413)] = 168363, - [SMALL_STATE(5414)] = 168373, - [SMALL_STATE(5415)] = 168383, - [SMALL_STATE(5416)] = 168393, - [SMALL_STATE(5417)] = 168403, - [SMALL_STATE(5418)] = 168413, - [SMALL_STATE(5419)] = 168423, - [SMALL_STATE(5420)] = 168433, - [SMALL_STATE(5421)] = 168443, - [SMALL_STATE(5422)] = 168453, - [SMALL_STATE(5423)] = 168463, - [SMALL_STATE(5424)] = 168473, - [SMALL_STATE(5425)] = 168483, - [SMALL_STATE(5426)] = 168493, - [SMALL_STATE(5427)] = 168503, - [SMALL_STATE(5428)] = 168513, - [SMALL_STATE(5429)] = 168523, - [SMALL_STATE(5430)] = 168533, - [SMALL_STATE(5431)] = 168543, - [SMALL_STATE(5432)] = 168553, - [SMALL_STATE(5433)] = 168563, - [SMALL_STATE(5434)] = 168573, - [SMALL_STATE(5435)] = 168583, - [SMALL_STATE(5436)] = 168593, - [SMALL_STATE(5437)] = 168603, - [SMALL_STATE(5438)] = 168613, - [SMALL_STATE(5439)] = 168623, - [SMALL_STATE(5440)] = 168633, - [SMALL_STATE(5441)] = 168643, - [SMALL_STATE(5442)] = 168653, - [SMALL_STATE(5443)] = 168663, - [SMALL_STATE(5444)] = 168673, - [SMALL_STATE(5445)] = 168683, - [SMALL_STATE(5446)] = 168693, - [SMALL_STATE(5447)] = 168703, - [SMALL_STATE(5448)] = 168713, - [SMALL_STATE(5449)] = 168723, - [SMALL_STATE(5450)] = 168733, - [SMALL_STATE(5451)] = 168741, - [SMALL_STATE(5452)] = 168749, - [SMALL_STATE(5453)] = 168759, - [SMALL_STATE(5454)] = 168769, - [SMALL_STATE(5455)] = 168779, - [SMALL_STATE(5456)] = 168789, - [SMALL_STATE(5457)] = 168799, - [SMALL_STATE(5458)] = 168807, - [SMALL_STATE(5459)] = 168817, - [SMALL_STATE(5460)] = 168827, - [SMALL_STATE(5461)] = 168837, - [SMALL_STATE(5462)] = 168845, - [SMALL_STATE(5463)] = 168855, - [SMALL_STATE(5464)] = 168865, - [SMALL_STATE(5465)] = 168875, - [SMALL_STATE(5466)] = 168883, - [SMALL_STATE(5467)] = 168893, - [SMALL_STATE(5468)] = 168903, - [SMALL_STATE(5469)] = 168913, - [SMALL_STATE(5470)] = 168923, - [SMALL_STATE(5471)] = 168933, - [SMALL_STATE(5472)] = 168943, - [SMALL_STATE(5473)] = 168953, - [SMALL_STATE(5474)] = 168963, - [SMALL_STATE(5475)] = 168973, - [SMALL_STATE(5476)] = 168983, - [SMALL_STATE(5477)] = 168993, - [SMALL_STATE(5478)] = 169003, - [SMALL_STATE(5479)] = 169013, - [SMALL_STATE(5480)] = 169023, - [SMALL_STATE(5481)] = 169033, - [SMALL_STATE(5482)] = 169043, - [SMALL_STATE(5483)] = 169053, - [SMALL_STATE(5484)] = 169063, - [SMALL_STATE(5485)] = 169073, - [SMALL_STATE(5486)] = 169081, - [SMALL_STATE(5487)] = 169091, - [SMALL_STATE(5488)] = 169101, - [SMALL_STATE(5489)] = 169109, - [SMALL_STATE(5490)] = 169119, - [SMALL_STATE(5491)] = 169129, - [SMALL_STATE(5492)] = 169139, - [SMALL_STATE(5493)] = 169149, - [SMALL_STATE(5494)] = 169159, - [SMALL_STATE(5495)] = 169169, - [SMALL_STATE(5496)] = 169179, - [SMALL_STATE(5497)] = 169189, - [SMALL_STATE(5498)] = 169199, - [SMALL_STATE(5499)] = 169207, - [SMALL_STATE(5500)] = 169217, - [SMALL_STATE(5501)] = 169227, - [SMALL_STATE(5502)] = 169237, - [SMALL_STATE(5503)] = 169245, - [SMALL_STATE(5504)] = 169255, - [SMALL_STATE(5505)] = 169265, - [SMALL_STATE(5506)] = 169273, - [SMALL_STATE(5507)] = 169283, - [SMALL_STATE(5508)] = 169293, - [SMALL_STATE(5509)] = 169303, - [SMALL_STATE(5510)] = 169313, - [SMALL_STATE(5511)] = 169323, - [SMALL_STATE(5512)] = 169333, - [SMALL_STATE(5513)] = 169341, - [SMALL_STATE(5514)] = 169351, - [SMALL_STATE(5515)] = 169361, - [SMALL_STATE(5516)] = 169371, - [SMALL_STATE(5517)] = 169381, - [SMALL_STATE(5518)] = 169391, - [SMALL_STATE(5519)] = 169401, - [SMALL_STATE(5520)] = 169411, - [SMALL_STATE(5521)] = 169419, - [SMALL_STATE(5522)] = 169427, - [SMALL_STATE(5523)] = 169437, - [SMALL_STATE(5524)] = 169447, - [SMALL_STATE(5525)] = 169457, - [SMALL_STATE(5526)] = 169467, - [SMALL_STATE(5527)] = 169475, - [SMALL_STATE(5528)] = 169485, - [SMALL_STATE(5529)] = 169493, - [SMALL_STATE(5530)] = 169501, - [SMALL_STATE(5531)] = 169511, - [SMALL_STATE(5532)] = 169521, - [SMALL_STATE(5533)] = 169529, - [SMALL_STATE(5534)] = 169539, - [SMALL_STATE(5535)] = 169549, - [SMALL_STATE(5536)] = 169557, - [SMALL_STATE(5537)] = 169567, - [SMALL_STATE(5538)] = 169577, - [SMALL_STATE(5539)] = 169587, - [SMALL_STATE(5540)] = 169597, - [SMALL_STATE(5541)] = 169607, - [SMALL_STATE(5542)] = 169617, - [SMALL_STATE(5543)] = 169627, - [SMALL_STATE(5544)] = 169635, - [SMALL_STATE(5545)] = 169645, - [SMALL_STATE(5546)] = 169655, - [SMALL_STATE(5547)] = 169665, - [SMALL_STATE(5548)] = 169675, - [SMALL_STATE(5549)] = 169685, - [SMALL_STATE(5550)] = 169695, - [SMALL_STATE(5551)] = 169705, - [SMALL_STATE(5552)] = 169715, - [SMALL_STATE(5553)] = 169725, - [SMALL_STATE(5554)] = 169735, - [SMALL_STATE(5555)] = 169745, - [SMALL_STATE(5556)] = 169755, - [SMALL_STATE(5557)] = 169765, - [SMALL_STATE(5558)] = 169775, - [SMALL_STATE(5559)] = 169785, - [SMALL_STATE(5560)] = 169795, - [SMALL_STATE(5561)] = 169805, - [SMALL_STATE(5562)] = 169815, - [SMALL_STATE(5563)] = 169825, - [SMALL_STATE(5564)] = 169833, - [SMALL_STATE(5565)] = 169843, - [SMALL_STATE(5566)] = 169853, - [SMALL_STATE(5567)] = 169863, - [SMALL_STATE(5568)] = 169873, - [SMALL_STATE(5569)] = 169883, - [SMALL_STATE(5570)] = 169893, - [SMALL_STATE(5571)] = 169903, - [SMALL_STATE(5572)] = 169913, - [SMALL_STATE(5573)] = 169923, - [SMALL_STATE(5574)] = 169933, - [SMALL_STATE(5575)] = 169943, - [SMALL_STATE(5576)] = 169953, - [SMALL_STATE(5577)] = 169963, - [SMALL_STATE(5578)] = 169971, - [SMALL_STATE(5579)] = 169979, - [SMALL_STATE(5580)] = 169989, - [SMALL_STATE(5581)] = 169999, - [SMALL_STATE(5582)] = 170009, - [SMALL_STATE(5583)] = 170019, - [SMALL_STATE(5584)] = 170029, - [SMALL_STATE(5585)] = 170039, - [SMALL_STATE(5586)] = 170049, - [SMALL_STATE(5587)] = 170059, - [SMALL_STATE(5588)] = 170069, - [SMALL_STATE(5589)] = 170079, - [SMALL_STATE(5590)] = 170089, - [SMALL_STATE(5591)] = 170099, - [SMALL_STATE(5592)] = 170109, - [SMALL_STATE(5593)] = 170119, - [SMALL_STATE(5594)] = 170129, - [SMALL_STATE(5595)] = 170139, - [SMALL_STATE(5596)] = 170149, - [SMALL_STATE(5597)] = 170159, - [SMALL_STATE(5598)] = 170167, - [SMALL_STATE(5599)] = 170177, - [SMALL_STATE(5600)] = 170187, - [SMALL_STATE(5601)] = 170197, - [SMALL_STATE(5602)] = 170207, - [SMALL_STATE(5603)] = 170217, - [SMALL_STATE(5604)] = 170225, - [SMALL_STATE(5605)] = 170235, - [SMALL_STATE(5606)] = 170245, - [SMALL_STATE(5607)] = 170255, - [SMALL_STATE(5608)] = 170265, - [SMALL_STATE(5609)] = 170275, - [SMALL_STATE(5610)] = 170285, - [SMALL_STATE(5611)] = 170295, - [SMALL_STATE(5612)] = 170305, - [SMALL_STATE(5613)] = 170313, - [SMALL_STATE(5614)] = 170323, - [SMALL_STATE(5615)] = 170333, - [SMALL_STATE(5616)] = 170343, - [SMALL_STATE(5617)] = 170353, - [SMALL_STATE(5618)] = 170363, - [SMALL_STATE(5619)] = 170373, - [SMALL_STATE(5620)] = 170383, - [SMALL_STATE(5621)] = 170393, - [SMALL_STATE(5622)] = 170401, - [SMALL_STATE(5623)] = 170411, - [SMALL_STATE(5624)] = 170421, - [SMALL_STATE(5625)] = 170429, - [SMALL_STATE(5626)] = 170439, - [SMALL_STATE(5627)] = 170449, - [SMALL_STATE(5628)] = 170459, - [SMALL_STATE(5629)] = 170469, - [SMALL_STATE(5630)] = 170479, - [SMALL_STATE(5631)] = 170489, - [SMALL_STATE(5632)] = 170499, - [SMALL_STATE(5633)] = 170509, - [SMALL_STATE(5634)] = 170519, - [SMALL_STATE(5635)] = 170529, - [SMALL_STATE(5636)] = 170539, - [SMALL_STATE(5637)] = 170549, - [SMALL_STATE(5638)] = 170559, - [SMALL_STATE(5639)] = 170567, - [SMALL_STATE(5640)] = 170577, - [SMALL_STATE(5641)] = 170587, - [SMALL_STATE(5642)] = 170597, - [SMALL_STATE(5643)] = 170607, - [SMALL_STATE(5644)] = 170617, - [SMALL_STATE(5645)] = 170627, - [SMALL_STATE(5646)] = 170637, - [SMALL_STATE(5647)] = 170647, - [SMALL_STATE(5648)] = 170657, - [SMALL_STATE(5649)] = 170665, - [SMALL_STATE(5650)] = 170675, - [SMALL_STATE(5651)] = 170685, - [SMALL_STATE(5652)] = 170695, - [SMALL_STATE(5653)] = 170705, - [SMALL_STATE(5654)] = 170713, - [SMALL_STATE(5655)] = 170723, - [SMALL_STATE(5656)] = 170733, - [SMALL_STATE(5657)] = 170743, - [SMALL_STATE(5658)] = 170753, - [SMALL_STATE(5659)] = 170763, - [SMALL_STATE(5660)] = 170773, - [SMALL_STATE(5661)] = 170783, - [SMALL_STATE(5662)] = 170793, - [SMALL_STATE(5663)] = 170803, - [SMALL_STATE(5664)] = 170813, - [SMALL_STATE(5665)] = 170823, - [SMALL_STATE(5666)] = 170833, - [SMALL_STATE(5667)] = 170843, - [SMALL_STATE(5668)] = 170853, - [SMALL_STATE(5669)] = 170863, - [SMALL_STATE(5670)] = 170873, - [SMALL_STATE(5671)] = 170881, - [SMALL_STATE(5672)] = 170891, - [SMALL_STATE(5673)] = 170901, - [SMALL_STATE(5674)] = 170911, - [SMALL_STATE(5675)] = 170919, - [SMALL_STATE(5676)] = 170929, - [SMALL_STATE(5677)] = 170937, - [SMALL_STATE(5678)] = 170947, - [SMALL_STATE(5679)] = 170957, - [SMALL_STATE(5680)] = 170967, - [SMALL_STATE(5681)] = 170975, - [SMALL_STATE(5682)] = 170983, - [SMALL_STATE(5683)] = 170993, - [SMALL_STATE(5684)] = 171003, - [SMALL_STATE(5685)] = 171013, - [SMALL_STATE(5686)] = 171023, - [SMALL_STATE(5687)] = 171033, - [SMALL_STATE(5688)] = 171043, - [SMALL_STATE(5689)] = 171053, - [SMALL_STATE(5690)] = 171063, - [SMALL_STATE(5691)] = 171073, - [SMALL_STATE(5692)] = 171083, - [SMALL_STATE(5693)] = 171093, - [SMALL_STATE(5694)] = 171103, - [SMALL_STATE(5695)] = 171113, - [SMALL_STATE(5696)] = 171123, - [SMALL_STATE(5697)] = 171131, - [SMALL_STATE(5698)] = 171139, - [SMALL_STATE(5699)] = 171147, - [SMALL_STATE(5700)] = 171157, - [SMALL_STATE(5701)] = 171167, - [SMALL_STATE(5702)] = 171177, - [SMALL_STATE(5703)] = 171187, - [SMALL_STATE(5704)] = 171197, - [SMALL_STATE(5705)] = 171207, - [SMALL_STATE(5706)] = 171217, - [SMALL_STATE(5707)] = 171227, - [SMALL_STATE(5708)] = 171237, - [SMALL_STATE(5709)] = 171247, - [SMALL_STATE(5710)] = 171257, - [SMALL_STATE(5711)] = 171267, - [SMALL_STATE(5712)] = 171277, - [SMALL_STATE(5713)] = 171287, - [SMALL_STATE(5714)] = 171297, - [SMALL_STATE(5715)] = 171307, - [SMALL_STATE(5716)] = 171315, - [SMALL_STATE(5717)] = 171325, - [SMALL_STATE(5718)] = 171335, - [SMALL_STATE(5719)] = 171345, - [SMALL_STATE(5720)] = 171353, - [SMALL_STATE(5721)] = 171363, - [SMALL_STATE(5722)] = 171373, - [SMALL_STATE(5723)] = 171383, - [SMALL_STATE(5724)] = 171393, - [SMALL_STATE(5725)] = 171403, - [SMALL_STATE(5726)] = 171413, - [SMALL_STATE(5727)] = 171423, - [SMALL_STATE(5728)] = 171433, - [SMALL_STATE(5729)] = 171443, - [SMALL_STATE(5730)] = 171453, - [SMALL_STATE(5731)] = 171463, - [SMALL_STATE(5732)] = 171473, - [SMALL_STATE(5733)] = 171483, - [SMALL_STATE(5734)] = 171493, - [SMALL_STATE(5735)] = 171503, - [SMALL_STATE(5736)] = 171513, - [SMALL_STATE(5737)] = 171523, - [SMALL_STATE(5738)] = 171533, - [SMALL_STATE(5739)] = 171543, - [SMALL_STATE(5740)] = 171553, - [SMALL_STATE(5741)] = 171563, - [SMALL_STATE(5742)] = 171573, - [SMALL_STATE(5743)] = 171583, - [SMALL_STATE(5744)] = 171593, - [SMALL_STATE(5745)] = 171603, - [SMALL_STATE(5746)] = 171611, - [SMALL_STATE(5747)] = 171619, - [SMALL_STATE(5748)] = 171629, - [SMALL_STATE(5749)] = 171637, - [SMALL_STATE(5750)] = 171647, - [SMALL_STATE(5751)] = 171657, - [SMALL_STATE(5752)] = 171667, - [SMALL_STATE(5753)] = 171677, - [SMALL_STATE(5754)] = 171687, - [SMALL_STATE(5755)] = 171697, - [SMALL_STATE(5756)] = 171707, - [SMALL_STATE(5757)] = 171717, - [SMALL_STATE(5758)] = 171727, - [SMALL_STATE(5759)] = 171737, - [SMALL_STATE(5760)] = 171747, - [SMALL_STATE(5761)] = 171757, - [SMALL_STATE(5762)] = 171767, - [SMALL_STATE(5763)] = 171774, - [SMALL_STATE(5764)] = 171781, - [SMALL_STATE(5765)] = 171788, - [SMALL_STATE(5766)] = 171795, - [SMALL_STATE(5767)] = 171802, - [SMALL_STATE(5768)] = 171809, - [SMALL_STATE(5769)] = 171816, - [SMALL_STATE(5770)] = 171823, - [SMALL_STATE(5771)] = 171830, - [SMALL_STATE(5772)] = 171837, - [SMALL_STATE(5773)] = 171844, - [SMALL_STATE(5774)] = 171851, - [SMALL_STATE(5775)] = 171858, - [SMALL_STATE(5776)] = 171865, - [SMALL_STATE(5777)] = 171872, - [SMALL_STATE(5778)] = 171879, - [SMALL_STATE(5779)] = 171886, - [SMALL_STATE(5780)] = 171893, - [SMALL_STATE(5781)] = 171900, - [SMALL_STATE(5782)] = 171907, - [SMALL_STATE(5783)] = 171914, - [SMALL_STATE(5784)] = 171921, - [SMALL_STATE(5785)] = 171928, - [SMALL_STATE(5786)] = 171935, - [SMALL_STATE(5787)] = 171942, - [SMALL_STATE(5788)] = 171949, - [SMALL_STATE(5789)] = 171956, - [SMALL_STATE(5790)] = 171963, - [SMALL_STATE(5791)] = 171970, - [SMALL_STATE(5792)] = 171977, - [SMALL_STATE(5793)] = 171984, - [SMALL_STATE(5794)] = 171991, - [SMALL_STATE(5795)] = 171998, - [SMALL_STATE(5796)] = 172005, - [SMALL_STATE(5797)] = 172012, - [SMALL_STATE(5798)] = 172019, - [SMALL_STATE(5799)] = 172026, - [SMALL_STATE(5800)] = 172033, - [SMALL_STATE(5801)] = 172040, - [SMALL_STATE(5802)] = 172047, - [SMALL_STATE(5803)] = 172054, - [SMALL_STATE(5804)] = 172061, - [SMALL_STATE(5805)] = 172068, - [SMALL_STATE(5806)] = 172075, - [SMALL_STATE(5807)] = 172082, - [SMALL_STATE(5808)] = 172089, - [SMALL_STATE(5809)] = 172096, - [SMALL_STATE(5810)] = 172103, - [SMALL_STATE(5811)] = 172110, - [SMALL_STATE(5812)] = 172117, - [SMALL_STATE(5813)] = 172124, - [SMALL_STATE(5814)] = 172131, - [SMALL_STATE(5815)] = 172138, - [SMALL_STATE(5816)] = 172145, - [SMALL_STATE(5817)] = 172152, - [SMALL_STATE(5818)] = 172159, - [SMALL_STATE(5819)] = 172166, - [SMALL_STATE(5820)] = 172173, - [SMALL_STATE(5821)] = 172180, - [SMALL_STATE(5822)] = 172187, - [SMALL_STATE(5823)] = 172194, - [SMALL_STATE(5824)] = 172201, - [SMALL_STATE(5825)] = 172208, - [SMALL_STATE(5826)] = 172215, - [SMALL_STATE(5827)] = 172222, - [SMALL_STATE(5828)] = 172229, - [SMALL_STATE(5829)] = 172236, - [SMALL_STATE(5830)] = 172243, - [SMALL_STATE(5831)] = 172250, - [SMALL_STATE(5832)] = 172257, - [SMALL_STATE(5833)] = 172264, - [SMALL_STATE(5834)] = 172271, - [SMALL_STATE(5835)] = 172278, - [SMALL_STATE(5836)] = 172285, - [SMALL_STATE(5837)] = 172292, - [SMALL_STATE(5838)] = 172299, - [SMALL_STATE(5839)] = 172306, - [SMALL_STATE(5840)] = 172313, - [SMALL_STATE(5841)] = 172320, - [SMALL_STATE(5842)] = 172327, - [SMALL_STATE(5843)] = 172334, - [SMALL_STATE(5844)] = 172341, - [SMALL_STATE(5845)] = 172348, - [SMALL_STATE(5846)] = 172355, - [SMALL_STATE(5847)] = 172362, - [SMALL_STATE(5848)] = 172369, - [SMALL_STATE(5849)] = 172376, - [SMALL_STATE(5850)] = 172383, - [SMALL_STATE(5851)] = 172390, - [SMALL_STATE(5852)] = 172397, - [SMALL_STATE(5853)] = 172404, - [SMALL_STATE(5854)] = 172411, - [SMALL_STATE(5855)] = 172418, - [SMALL_STATE(5856)] = 172425, - [SMALL_STATE(5857)] = 172432, - [SMALL_STATE(5858)] = 172439, - [SMALL_STATE(5859)] = 172446, - [SMALL_STATE(5860)] = 172453, - [SMALL_STATE(5861)] = 172460, - [SMALL_STATE(5862)] = 172467, - [SMALL_STATE(5863)] = 172474, - [SMALL_STATE(5864)] = 172481, - [SMALL_STATE(5865)] = 172488, - [SMALL_STATE(5866)] = 172495, - [SMALL_STATE(5867)] = 172502, - [SMALL_STATE(5868)] = 172509, - [SMALL_STATE(5869)] = 172516, - [SMALL_STATE(5870)] = 172523, - [SMALL_STATE(5871)] = 172530, - [SMALL_STATE(5872)] = 172537, - [SMALL_STATE(5873)] = 172544, - [SMALL_STATE(5874)] = 172551, - [SMALL_STATE(5875)] = 172558, - [SMALL_STATE(5876)] = 172565, - [SMALL_STATE(5877)] = 172572, - [SMALL_STATE(5878)] = 172579, - [SMALL_STATE(5879)] = 172586, - [SMALL_STATE(5880)] = 172593, - [SMALL_STATE(5881)] = 172600, - [SMALL_STATE(5882)] = 172607, - [SMALL_STATE(5883)] = 172614, - [SMALL_STATE(5884)] = 172621, - [SMALL_STATE(5885)] = 172628, - [SMALL_STATE(5886)] = 172635, - [SMALL_STATE(5887)] = 172642, - [SMALL_STATE(5888)] = 172649, - [SMALL_STATE(5889)] = 172656, - [SMALL_STATE(5890)] = 172663, - [SMALL_STATE(5891)] = 172670, - [SMALL_STATE(5892)] = 172677, - [SMALL_STATE(5893)] = 172684, - [SMALL_STATE(5894)] = 172691, - [SMALL_STATE(5895)] = 172698, - [SMALL_STATE(5896)] = 172705, - [SMALL_STATE(5897)] = 172712, - [SMALL_STATE(5898)] = 172719, - [SMALL_STATE(5899)] = 172726, - [SMALL_STATE(5900)] = 172733, - [SMALL_STATE(5901)] = 172740, - [SMALL_STATE(5902)] = 172747, - [SMALL_STATE(5903)] = 172754, - [SMALL_STATE(5904)] = 172761, - [SMALL_STATE(5905)] = 172768, - [SMALL_STATE(5906)] = 172775, - [SMALL_STATE(5907)] = 172782, - [SMALL_STATE(5908)] = 172789, - [SMALL_STATE(5909)] = 172796, - [SMALL_STATE(5910)] = 172803, - [SMALL_STATE(5911)] = 172810, - [SMALL_STATE(5912)] = 172817, - [SMALL_STATE(5913)] = 172824, - [SMALL_STATE(5914)] = 172831, - [SMALL_STATE(5915)] = 172838, - [SMALL_STATE(5916)] = 172845, - [SMALL_STATE(5917)] = 172852, - [SMALL_STATE(5918)] = 172859, - [SMALL_STATE(5919)] = 172866, - [SMALL_STATE(5920)] = 172873, - [SMALL_STATE(5921)] = 172880, - [SMALL_STATE(5922)] = 172887, - [SMALL_STATE(5923)] = 172894, - [SMALL_STATE(5924)] = 172901, - [SMALL_STATE(5925)] = 172908, - [SMALL_STATE(5926)] = 172915, - [SMALL_STATE(5927)] = 172922, - [SMALL_STATE(5928)] = 172929, - [SMALL_STATE(5929)] = 172936, - [SMALL_STATE(5930)] = 172943, - [SMALL_STATE(5931)] = 172950, - [SMALL_STATE(5932)] = 172957, - [SMALL_STATE(5933)] = 172964, - [SMALL_STATE(5934)] = 172971, - [SMALL_STATE(5935)] = 172978, - [SMALL_STATE(5936)] = 172985, - [SMALL_STATE(5937)] = 172992, - [SMALL_STATE(5938)] = 172999, - [SMALL_STATE(5939)] = 173006, - [SMALL_STATE(5940)] = 173013, - [SMALL_STATE(5941)] = 173020, - [SMALL_STATE(5942)] = 173027, - [SMALL_STATE(5943)] = 173034, - [SMALL_STATE(5944)] = 173041, - [SMALL_STATE(5945)] = 173048, - [SMALL_STATE(5946)] = 173055, - [SMALL_STATE(5947)] = 173062, - [SMALL_STATE(5948)] = 173069, - [SMALL_STATE(5949)] = 173076, - [SMALL_STATE(5950)] = 173083, - [SMALL_STATE(5951)] = 173090, - [SMALL_STATE(5952)] = 173097, - [SMALL_STATE(5953)] = 173104, - [SMALL_STATE(5954)] = 173111, - [SMALL_STATE(5955)] = 173118, - [SMALL_STATE(5956)] = 173125, - [SMALL_STATE(5957)] = 173132, - [SMALL_STATE(5958)] = 173139, - [SMALL_STATE(5959)] = 173146, - [SMALL_STATE(5960)] = 173153, - [SMALL_STATE(5961)] = 173160, - [SMALL_STATE(5962)] = 173167, - [SMALL_STATE(5963)] = 173174, - [SMALL_STATE(5964)] = 173181, - [SMALL_STATE(5965)] = 173188, - [SMALL_STATE(5966)] = 173195, - [SMALL_STATE(5967)] = 173202, - [SMALL_STATE(5968)] = 173209, - [SMALL_STATE(5969)] = 173216, - [SMALL_STATE(5970)] = 173223, - [SMALL_STATE(5971)] = 173230, - [SMALL_STATE(5972)] = 173237, - [SMALL_STATE(5973)] = 173244, - [SMALL_STATE(5974)] = 173251, - [SMALL_STATE(5975)] = 173258, - [SMALL_STATE(5976)] = 173265, - [SMALL_STATE(5977)] = 173272, - [SMALL_STATE(5978)] = 173279, - [SMALL_STATE(5979)] = 173286, - [SMALL_STATE(5980)] = 173293, - [SMALL_STATE(5981)] = 173300, - [SMALL_STATE(5982)] = 173307, - [SMALL_STATE(5983)] = 173314, - [SMALL_STATE(5984)] = 173321, - [SMALL_STATE(5985)] = 173328, - [SMALL_STATE(5986)] = 173335, - [SMALL_STATE(5987)] = 173342, - [SMALL_STATE(5988)] = 173349, - [SMALL_STATE(5989)] = 173356, - [SMALL_STATE(5990)] = 173363, - [SMALL_STATE(5991)] = 173370, - [SMALL_STATE(5992)] = 173377, - [SMALL_STATE(5993)] = 173384, - [SMALL_STATE(5994)] = 173391, - [SMALL_STATE(5995)] = 173398, - [SMALL_STATE(5996)] = 173405, - [SMALL_STATE(5997)] = 173412, - [SMALL_STATE(5998)] = 173419, - [SMALL_STATE(5999)] = 173426, - [SMALL_STATE(6000)] = 173433, - [SMALL_STATE(6001)] = 173440, - [SMALL_STATE(6002)] = 173447, - [SMALL_STATE(6003)] = 173454, - [SMALL_STATE(6004)] = 173461, - [SMALL_STATE(6005)] = 173468, - [SMALL_STATE(6006)] = 173475, - [SMALL_STATE(6007)] = 173482, - [SMALL_STATE(6008)] = 173489, - [SMALL_STATE(6009)] = 173496, - [SMALL_STATE(6010)] = 173503, - [SMALL_STATE(6011)] = 173510, - [SMALL_STATE(6012)] = 173517, - [SMALL_STATE(6013)] = 173524, - [SMALL_STATE(6014)] = 173531, - [SMALL_STATE(6015)] = 173538, - [SMALL_STATE(6016)] = 173545, - [SMALL_STATE(6017)] = 173552, - [SMALL_STATE(6018)] = 173559, - [SMALL_STATE(6019)] = 173566, - [SMALL_STATE(6020)] = 173573, - [SMALL_STATE(6021)] = 173580, - [SMALL_STATE(6022)] = 173587, - [SMALL_STATE(6023)] = 173594, - [SMALL_STATE(6024)] = 173601, - [SMALL_STATE(6025)] = 173608, - [SMALL_STATE(6026)] = 173615, - [SMALL_STATE(6027)] = 173622, - [SMALL_STATE(6028)] = 173629, - [SMALL_STATE(6029)] = 173636, - [SMALL_STATE(6030)] = 173643, - [SMALL_STATE(6031)] = 173650, - [SMALL_STATE(6032)] = 173657, - [SMALL_STATE(6033)] = 173664, - [SMALL_STATE(6034)] = 173671, - [SMALL_STATE(6035)] = 173678, - [SMALL_STATE(6036)] = 173685, - [SMALL_STATE(6037)] = 173692, - [SMALL_STATE(6038)] = 173699, - [SMALL_STATE(6039)] = 173706, - [SMALL_STATE(6040)] = 173713, - [SMALL_STATE(6041)] = 173720, - [SMALL_STATE(6042)] = 173727, - [SMALL_STATE(6043)] = 173734, - [SMALL_STATE(6044)] = 173741, - [SMALL_STATE(6045)] = 173748, - [SMALL_STATE(6046)] = 173755, - [SMALL_STATE(6047)] = 173762, - [SMALL_STATE(6048)] = 173769, - [SMALL_STATE(6049)] = 173776, - [SMALL_STATE(6050)] = 173783, - [SMALL_STATE(6051)] = 173790, - [SMALL_STATE(6052)] = 173797, - [SMALL_STATE(6053)] = 173804, - [SMALL_STATE(6054)] = 173811, - [SMALL_STATE(6055)] = 173818, - [SMALL_STATE(6056)] = 173825, - [SMALL_STATE(6057)] = 173832, - [SMALL_STATE(6058)] = 173839, - [SMALL_STATE(6059)] = 173846, - [SMALL_STATE(6060)] = 173853, - [SMALL_STATE(6061)] = 173860, - [SMALL_STATE(6062)] = 173867, - [SMALL_STATE(6063)] = 173874, - [SMALL_STATE(6064)] = 173881, - [SMALL_STATE(6065)] = 173888, - [SMALL_STATE(6066)] = 173895, - [SMALL_STATE(6067)] = 173902, - [SMALL_STATE(6068)] = 173909, - [SMALL_STATE(6069)] = 173916, - [SMALL_STATE(6070)] = 173923, - [SMALL_STATE(6071)] = 173930, - [SMALL_STATE(6072)] = 173937, - [SMALL_STATE(6073)] = 173944, - [SMALL_STATE(6074)] = 173951, - [SMALL_STATE(6075)] = 173958, - [SMALL_STATE(6076)] = 173965, - [SMALL_STATE(6077)] = 173972, - [SMALL_STATE(6078)] = 173979, - [SMALL_STATE(6079)] = 173986, - [SMALL_STATE(6080)] = 173993, - [SMALL_STATE(6081)] = 174000, - [SMALL_STATE(6082)] = 174007, - [SMALL_STATE(6083)] = 174014, - [SMALL_STATE(6084)] = 174021, - [SMALL_STATE(6085)] = 174028, - [SMALL_STATE(6086)] = 174035, - [SMALL_STATE(6087)] = 174042, - [SMALL_STATE(6088)] = 174049, - [SMALL_STATE(6089)] = 174056, - [SMALL_STATE(6090)] = 174063, - [SMALL_STATE(6091)] = 174070, - [SMALL_STATE(6092)] = 174077, - [SMALL_STATE(6093)] = 174084, - [SMALL_STATE(6094)] = 174091, - [SMALL_STATE(6095)] = 174098, - [SMALL_STATE(6096)] = 174105, - [SMALL_STATE(6097)] = 174112, - [SMALL_STATE(6098)] = 174119, - [SMALL_STATE(6099)] = 174126, - [SMALL_STATE(6100)] = 174133, - [SMALL_STATE(6101)] = 174140, - [SMALL_STATE(6102)] = 174147, - [SMALL_STATE(6103)] = 174154, - [SMALL_STATE(6104)] = 174161, - [SMALL_STATE(6105)] = 174168, - [SMALL_STATE(6106)] = 174175, - [SMALL_STATE(6107)] = 174182, - [SMALL_STATE(6108)] = 174189, - [SMALL_STATE(6109)] = 174196, - [SMALL_STATE(6110)] = 174203, - [SMALL_STATE(6111)] = 174210, - [SMALL_STATE(6112)] = 174217, - [SMALL_STATE(6113)] = 174224, - [SMALL_STATE(6114)] = 174231, - [SMALL_STATE(6115)] = 174238, - [SMALL_STATE(6116)] = 174245, - [SMALL_STATE(6117)] = 174252, - [SMALL_STATE(6118)] = 174259, - [SMALL_STATE(6119)] = 174266, - [SMALL_STATE(6120)] = 174273, - [SMALL_STATE(6121)] = 174280, - [SMALL_STATE(6122)] = 174287, - [SMALL_STATE(6123)] = 174294, - [SMALL_STATE(6124)] = 174301, - [SMALL_STATE(6125)] = 174308, - [SMALL_STATE(6126)] = 174315, - [SMALL_STATE(6127)] = 174322, - [SMALL_STATE(6128)] = 174329, - [SMALL_STATE(6129)] = 174336, - [SMALL_STATE(6130)] = 174343, - [SMALL_STATE(6131)] = 174350, - [SMALL_STATE(6132)] = 174357, - [SMALL_STATE(6133)] = 174364, - [SMALL_STATE(6134)] = 174371, - [SMALL_STATE(6135)] = 174378, - [SMALL_STATE(6136)] = 174385, - [SMALL_STATE(6137)] = 174392, - [SMALL_STATE(6138)] = 174399, - [SMALL_STATE(6139)] = 174406, - [SMALL_STATE(6140)] = 174413, - [SMALL_STATE(6141)] = 174420, - [SMALL_STATE(6142)] = 174427, - [SMALL_STATE(6143)] = 174434, - [SMALL_STATE(6144)] = 174441, - [SMALL_STATE(6145)] = 174448, - [SMALL_STATE(6146)] = 174455, - [SMALL_STATE(6147)] = 174462, - [SMALL_STATE(6148)] = 174469, - [SMALL_STATE(6149)] = 174476, - [SMALL_STATE(6150)] = 174483, - [SMALL_STATE(6151)] = 174490, - [SMALL_STATE(6152)] = 174497, - [SMALL_STATE(6153)] = 174504, - [SMALL_STATE(6154)] = 174511, - [SMALL_STATE(6155)] = 174518, - [SMALL_STATE(6156)] = 174525, - [SMALL_STATE(6157)] = 174532, - [SMALL_STATE(6158)] = 174539, - [SMALL_STATE(6159)] = 174546, - [SMALL_STATE(6160)] = 174553, - [SMALL_STATE(6161)] = 174560, - [SMALL_STATE(6162)] = 174567, - [SMALL_STATE(6163)] = 174574, - [SMALL_STATE(6164)] = 174581, - [SMALL_STATE(6165)] = 174588, - [SMALL_STATE(6166)] = 174595, - [SMALL_STATE(6167)] = 174602, - [SMALL_STATE(6168)] = 174609, - [SMALL_STATE(6169)] = 174616, - [SMALL_STATE(6170)] = 174623, - [SMALL_STATE(6171)] = 174630, - [SMALL_STATE(6172)] = 174637, - [SMALL_STATE(6173)] = 174644, - [SMALL_STATE(6174)] = 174651, - [SMALL_STATE(6175)] = 174658, - [SMALL_STATE(6176)] = 174665, - [SMALL_STATE(6177)] = 174672, - [SMALL_STATE(6178)] = 174679, - [SMALL_STATE(6179)] = 174686, - [SMALL_STATE(6180)] = 174693, - [SMALL_STATE(6181)] = 174700, - [SMALL_STATE(6182)] = 174707, - [SMALL_STATE(6183)] = 174714, - [SMALL_STATE(6184)] = 174721, - [SMALL_STATE(6185)] = 174728, - [SMALL_STATE(6186)] = 174735, - [SMALL_STATE(6187)] = 174742, - [SMALL_STATE(6188)] = 174749, - [SMALL_STATE(6189)] = 174756, - [SMALL_STATE(6190)] = 174763, - [SMALL_STATE(6191)] = 174770, - [SMALL_STATE(6192)] = 174777, - [SMALL_STATE(6193)] = 174784, - [SMALL_STATE(6194)] = 174791, - [SMALL_STATE(6195)] = 174798, - [SMALL_STATE(6196)] = 174805, - [SMALL_STATE(6197)] = 174812, - [SMALL_STATE(6198)] = 174819, - [SMALL_STATE(6199)] = 174826, - [SMALL_STATE(6200)] = 174833, - [SMALL_STATE(6201)] = 174840, - [SMALL_STATE(6202)] = 174847, - [SMALL_STATE(6203)] = 174854, - [SMALL_STATE(6204)] = 174861, - [SMALL_STATE(6205)] = 174868, - [SMALL_STATE(6206)] = 174875, - [SMALL_STATE(6207)] = 174882, - [SMALL_STATE(6208)] = 174889, - [SMALL_STATE(6209)] = 174896, - [SMALL_STATE(6210)] = 174903, - [SMALL_STATE(6211)] = 174910, - [SMALL_STATE(6212)] = 174917, - [SMALL_STATE(6213)] = 174924, - [SMALL_STATE(6214)] = 174931, - [SMALL_STATE(6215)] = 174938, - [SMALL_STATE(6216)] = 174945, - [SMALL_STATE(6217)] = 174952, - [SMALL_STATE(6218)] = 174959, - [SMALL_STATE(6219)] = 174966, - [SMALL_STATE(6220)] = 174973, - [SMALL_STATE(6221)] = 174980, - [SMALL_STATE(6222)] = 174987, - [SMALL_STATE(6223)] = 174994, - [SMALL_STATE(6224)] = 175001, - [SMALL_STATE(6225)] = 175008, - [SMALL_STATE(6226)] = 175015, - [SMALL_STATE(6227)] = 175022, - [SMALL_STATE(6228)] = 175029, - [SMALL_STATE(6229)] = 175036, - [SMALL_STATE(6230)] = 175043, - [SMALL_STATE(6231)] = 175050, - [SMALL_STATE(6232)] = 175057, - [SMALL_STATE(6233)] = 175064, - [SMALL_STATE(6234)] = 175071, - [SMALL_STATE(6235)] = 175078, - [SMALL_STATE(6236)] = 175085, - [SMALL_STATE(6237)] = 175092, - [SMALL_STATE(6238)] = 175099, - [SMALL_STATE(6239)] = 175106, - [SMALL_STATE(6240)] = 175113, - [SMALL_STATE(6241)] = 175120, - [SMALL_STATE(6242)] = 175127, - [SMALL_STATE(6243)] = 175134, - [SMALL_STATE(6244)] = 175141, - [SMALL_STATE(6245)] = 175148, - [SMALL_STATE(6246)] = 175155, - [SMALL_STATE(6247)] = 175162, - [SMALL_STATE(6248)] = 175169, - [SMALL_STATE(6249)] = 175176, - [SMALL_STATE(6250)] = 175183, - [SMALL_STATE(6251)] = 175190, - [SMALL_STATE(6252)] = 175197, - [SMALL_STATE(6253)] = 175204, - [SMALL_STATE(6254)] = 175211, - [SMALL_STATE(6255)] = 175218, - [SMALL_STATE(6256)] = 175225, - [SMALL_STATE(6257)] = 175232, - [SMALL_STATE(6258)] = 175239, - [SMALL_STATE(6259)] = 175246, - [SMALL_STATE(6260)] = 175253, - [SMALL_STATE(6261)] = 175260, - [SMALL_STATE(6262)] = 175267, - [SMALL_STATE(6263)] = 175274, - [SMALL_STATE(6264)] = 175281, - [SMALL_STATE(6265)] = 175288, - [SMALL_STATE(6266)] = 175295, - [SMALL_STATE(6267)] = 175302, - [SMALL_STATE(6268)] = 175309, - [SMALL_STATE(6269)] = 175316, - [SMALL_STATE(6270)] = 175323, - [SMALL_STATE(6271)] = 175330, - [SMALL_STATE(6272)] = 175337, - [SMALL_STATE(6273)] = 175344, - [SMALL_STATE(6274)] = 175351, - [SMALL_STATE(6275)] = 175358, - [SMALL_STATE(6276)] = 175365, - [SMALL_STATE(6277)] = 175372, - [SMALL_STATE(6278)] = 175379, - [SMALL_STATE(6279)] = 175386, - [SMALL_STATE(6280)] = 175393, - [SMALL_STATE(6281)] = 175400, - [SMALL_STATE(6282)] = 175407, - [SMALL_STATE(6283)] = 175414, - [SMALL_STATE(6284)] = 175421, - [SMALL_STATE(6285)] = 175428, - [SMALL_STATE(6286)] = 175435, - [SMALL_STATE(6287)] = 175442, - [SMALL_STATE(6288)] = 175449, - [SMALL_STATE(6289)] = 175456, - [SMALL_STATE(6290)] = 175463, - [SMALL_STATE(6291)] = 175470, - [SMALL_STATE(6292)] = 175477, - [SMALL_STATE(6293)] = 175484, - [SMALL_STATE(6294)] = 175491, - [SMALL_STATE(6295)] = 175498, - [SMALL_STATE(6296)] = 175505, - [SMALL_STATE(6297)] = 175512, - [SMALL_STATE(6298)] = 175519, - [SMALL_STATE(6299)] = 175526, - [SMALL_STATE(6300)] = 175533, - [SMALL_STATE(6301)] = 175540, - [SMALL_STATE(6302)] = 175547, - [SMALL_STATE(6303)] = 175554, - [SMALL_STATE(6304)] = 175561, - [SMALL_STATE(6305)] = 175568, - [SMALL_STATE(6306)] = 175575, - [SMALL_STATE(6307)] = 175582, - [SMALL_STATE(6308)] = 175589, - [SMALL_STATE(6309)] = 175596, - [SMALL_STATE(6310)] = 175603, - [SMALL_STATE(6311)] = 175610, - [SMALL_STATE(6312)] = 175617, - [SMALL_STATE(6313)] = 175624, - [SMALL_STATE(6314)] = 175631, - [SMALL_STATE(6315)] = 175638, - [SMALL_STATE(6316)] = 175645, - [SMALL_STATE(6317)] = 175652, - [SMALL_STATE(6318)] = 175659, - [SMALL_STATE(6319)] = 175666, - [SMALL_STATE(6320)] = 175673, - [SMALL_STATE(6321)] = 175680, - [SMALL_STATE(6322)] = 175687, - [SMALL_STATE(6323)] = 175694, - [SMALL_STATE(6324)] = 175701, - [SMALL_STATE(6325)] = 175708, - [SMALL_STATE(6326)] = 175715, - [SMALL_STATE(6327)] = 175722, - [SMALL_STATE(6328)] = 175729, - [SMALL_STATE(6329)] = 175736, - [SMALL_STATE(6330)] = 175743, - [SMALL_STATE(6331)] = 175750, - [SMALL_STATE(6332)] = 175757, - [SMALL_STATE(6333)] = 175764, - [SMALL_STATE(6334)] = 175771, - [SMALL_STATE(6335)] = 175778, - [SMALL_STATE(6336)] = 175785, - [SMALL_STATE(6337)] = 175792, - [SMALL_STATE(6338)] = 175799, - [SMALL_STATE(6339)] = 175806, - [SMALL_STATE(6340)] = 175813, - [SMALL_STATE(6341)] = 175820, - [SMALL_STATE(6342)] = 175827, - [SMALL_STATE(6343)] = 175834, - [SMALL_STATE(6344)] = 175841, - [SMALL_STATE(6345)] = 175848, - [SMALL_STATE(6346)] = 175855, - [SMALL_STATE(6347)] = 175862, - [SMALL_STATE(6348)] = 175869, - [SMALL_STATE(6349)] = 175876, - [SMALL_STATE(6350)] = 175883, - [SMALL_STATE(6351)] = 175890, - [SMALL_STATE(6352)] = 175897, - [SMALL_STATE(6353)] = 175904, - [SMALL_STATE(6354)] = 175911, - [SMALL_STATE(6355)] = 175918, - [SMALL_STATE(6356)] = 175925, - [SMALL_STATE(6357)] = 175932, - [SMALL_STATE(6358)] = 175939, - [SMALL_STATE(6359)] = 175946, - [SMALL_STATE(6360)] = 175953, - [SMALL_STATE(6361)] = 175960, - [SMALL_STATE(6362)] = 175967, - [SMALL_STATE(6363)] = 175974, - [SMALL_STATE(6364)] = 175981, - [SMALL_STATE(6365)] = 175988, - [SMALL_STATE(6366)] = 175995, - [SMALL_STATE(6367)] = 176002, - [SMALL_STATE(6368)] = 176009, - [SMALL_STATE(6369)] = 176016, - [SMALL_STATE(6370)] = 176023, - [SMALL_STATE(6371)] = 176030, - [SMALL_STATE(6372)] = 176037, - [SMALL_STATE(6373)] = 176044, - [SMALL_STATE(6374)] = 176051, - [SMALL_STATE(6375)] = 176058, - [SMALL_STATE(6376)] = 176065, - [SMALL_STATE(6377)] = 176072, - [SMALL_STATE(6378)] = 176079, - [SMALL_STATE(6379)] = 176086, - [SMALL_STATE(6380)] = 176093, - [SMALL_STATE(6381)] = 176100, - [SMALL_STATE(6382)] = 176107, - [SMALL_STATE(6383)] = 176114, - [SMALL_STATE(6384)] = 176121, - [SMALL_STATE(6385)] = 176128, - [SMALL_STATE(6386)] = 176135, - [SMALL_STATE(6387)] = 176142, - [SMALL_STATE(6388)] = 176149, - [SMALL_STATE(6389)] = 176156, - [SMALL_STATE(6390)] = 176163, - [SMALL_STATE(6391)] = 176170, - [SMALL_STATE(6392)] = 176177, - [SMALL_STATE(6393)] = 176184, - [SMALL_STATE(6394)] = 176191, - [SMALL_STATE(6395)] = 176198, - [SMALL_STATE(6396)] = 176205, - [SMALL_STATE(6397)] = 176212, - [SMALL_STATE(6398)] = 176219, - [SMALL_STATE(6399)] = 176226, - [SMALL_STATE(6400)] = 176233, - [SMALL_STATE(6401)] = 176240, - [SMALL_STATE(6402)] = 176247, - [SMALL_STATE(6403)] = 176254, - [SMALL_STATE(6404)] = 176261, - [SMALL_STATE(6405)] = 176268, - [SMALL_STATE(6406)] = 176275, - [SMALL_STATE(6407)] = 176282, - [SMALL_STATE(6408)] = 176289, - [SMALL_STATE(6409)] = 176296, - [SMALL_STATE(6410)] = 176303, - [SMALL_STATE(6411)] = 176310, - [SMALL_STATE(6412)] = 176317, - [SMALL_STATE(6413)] = 176324, - [SMALL_STATE(6414)] = 176331, - [SMALL_STATE(6415)] = 176338, - [SMALL_STATE(6416)] = 176345, - [SMALL_STATE(6417)] = 176352, - [SMALL_STATE(6418)] = 176359, - [SMALL_STATE(6419)] = 176366, - [SMALL_STATE(6420)] = 176373, - [SMALL_STATE(6421)] = 176380, - [SMALL_STATE(6422)] = 176387, - [SMALL_STATE(6423)] = 176394, - [SMALL_STATE(6424)] = 176401, - [SMALL_STATE(6425)] = 176408, - [SMALL_STATE(6426)] = 176415, - [SMALL_STATE(6427)] = 176422, - [SMALL_STATE(6428)] = 176429, - [SMALL_STATE(6429)] = 176436, - [SMALL_STATE(6430)] = 176443, - [SMALL_STATE(6431)] = 176450, - [SMALL_STATE(6432)] = 176457, - [SMALL_STATE(6433)] = 176464, - [SMALL_STATE(6434)] = 176471, - [SMALL_STATE(6435)] = 176478, - [SMALL_STATE(6436)] = 176485, - [SMALL_STATE(6437)] = 176492, - [SMALL_STATE(6438)] = 176499, - [SMALL_STATE(6439)] = 176506, - [SMALL_STATE(6440)] = 176513, - [SMALL_STATE(6441)] = 176520, - [SMALL_STATE(6442)] = 176527, - [SMALL_STATE(6443)] = 176534, - [SMALL_STATE(6444)] = 176541, - [SMALL_STATE(6445)] = 176548, - [SMALL_STATE(6446)] = 176555, - [SMALL_STATE(6447)] = 176562, - [SMALL_STATE(6448)] = 176569, - [SMALL_STATE(6449)] = 176576, - [SMALL_STATE(6450)] = 176583, - [SMALL_STATE(6451)] = 176590, - [SMALL_STATE(6452)] = 176597, - [SMALL_STATE(6453)] = 176604, - [SMALL_STATE(6454)] = 176611, - [SMALL_STATE(6455)] = 176618, - [SMALL_STATE(6456)] = 176625, - [SMALL_STATE(6457)] = 176632, - [SMALL_STATE(6458)] = 176639, - [SMALL_STATE(6459)] = 176646, - [SMALL_STATE(6460)] = 176653, - [SMALL_STATE(6461)] = 176660, - [SMALL_STATE(6462)] = 176667, - [SMALL_STATE(6463)] = 176674, + [SMALL_STATE(2872)] = 87148, + [SMALL_STATE(2873)] = 87256, + [SMALL_STATE(2874)] = 87314, + [SMALL_STATE(2875)] = 87372, + [SMALL_STATE(2876)] = 87430, + [SMALL_STATE(2877)] = 87488, + [SMALL_STATE(2878)] = 87546, + [SMALL_STATE(2879)] = 87604, + [SMALL_STATE(2880)] = 87662, + [SMALL_STATE(2881)] = 87726, + [SMALL_STATE(2882)] = 87784, + [SMALL_STATE(2883)] = 87842, + [SMALL_STATE(2884)] = 87906, + [SMALL_STATE(2885)] = 87964, + [SMALL_STATE(2886)] = 88022, + [SMALL_STATE(2887)] = 88080, + [SMALL_STATE(2888)] = 88138, + [SMALL_STATE(2889)] = 88196, + [SMALL_STATE(2890)] = 88254, + [SMALL_STATE(2891)] = 88312, + [SMALL_STATE(2892)] = 88370, + [SMALL_STATE(2893)] = 88428, + [SMALL_STATE(2894)] = 88489, + [SMALL_STATE(2895)] = 88550, + [SMALL_STATE(2896)] = 88609, + [SMALL_STATE(2897)] = 88675, + [SMALL_STATE(2898)] = 88766, + [SMALL_STATE(2899)] = 88857, + [SMALL_STATE(2900)] = 88948, + [SMALL_STATE(2901)] = 89039, + [SMALL_STATE(2902)] = 89130, + [SMALL_STATE(2903)] = 89221, + [SMALL_STATE(2904)] = 89312, + [SMALL_STATE(2905)] = 89403, + [SMALL_STATE(2906)] = 89494, + [SMALL_STATE(2907)] = 89587, + [SMALL_STATE(2908)] = 89678, + [SMALL_STATE(2909)] = 89769, + [SMALL_STATE(2910)] = 89860, + [SMALL_STATE(2911)] = 89951, + [SMALL_STATE(2912)] = 90042, + [SMALL_STATE(2913)] = 90133, + [SMALL_STATE(2914)] = 90224, + [SMALL_STATE(2915)] = 90315, + [SMALL_STATE(2916)] = 90406, + [SMALL_STATE(2917)] = 90497, + [SMALL_STATE(2918)] = 90588, + [SMALL_STATE(2919)] = 90679, + [SMALL_STATE(2920)] = 90770, + [SMALL_STATE(2921)] = 90863, + [SMALL_STATE(2922)] = 90954, + [SMALL_STATE(2923)] = 91045, + [SMALL_STATE(2924)] = 91136, + [SMALL_STATE(2925)] = 91227, + [SMALL_STATE(2926)] = 91318, + [SMALL_STATE(2927)] = 91409, + [SMALL_STATE(2928)] = 91500, + [SMALL_STATE(2929)] = 91591, + [SMALL_STATE(2930)] = 91682, + [SMALL_STATE(2931)] = 91773, + [SMALL_STATE(2932)] = 91864, + [SMALL_STATE(2933)] = 91955, + [SMALL_STATE(2934)] = 92046, + [SMALL_STATE(2935)] = 92137, + [SMALL_STATE(2936)] = 92228, + [SMALL_STATE(2937)] = 92319, + [SMALL_STATE(2938)] = 92410, + [SMALL_STATE(2939)] = 92501, + [SMALL_STATE(2940)] = 92592, + [SMALL_STATE(2941)] = 92683, + [SMALL_STATE(2942)] = 92774, + [SMALL_STATE(2943)] = 92865, + [SMALL_STATE(2944)] = 92956, + [SMALL_STATE(2945)] = 93047, + [SMALL_STATE(2946)] = 93138, + [SMALL_STATE(2947)] = 93229, + [SMALL_STATE(2948)] = 93320, + [SMALL_STATE(2949)] = 93411, + [SMALL_STATE(2950)] = 93502, + [SMALL_STATE(2951)] = 93593, + [SMALL_STATE(2952)] = 93684, + [SMALL_STATE(2953)] = 93775, + [SMALL_STATE(2954)] = 93866, + [SMALL_STATE(2955)] = 93957, + [SMALL_STATE(2956)] = 94048, + [SMALL_STATE(2957)] = 94139, + [SMALL_STATE(2958)] = 94230, + [SMALL_STATE(2959)] = 94318, + [SMALL_STATE(2960)] = 94406, + [SMALL_STATE(2961)] = 94494, + [SMALL_STATE(2962)] = 94582, + [SMALL_STATE(2963)] = 94670, + [SMALL_STATE(2964)] = 94758, + [SMALL_STATE(2965)] = 94846, + [SMALL_STATE(2966)] = 94934, + [SMALL_STATE(2967)] = 95022, + [SMALL_STATE(2968)] = 95110, + [SMALL_STATE(2969)] = 95198, + [SMALL_STATE(2970)] = 95286, + [SMALL_STATE(2971)] = 95374, + [SMALL_STATE(2972)] = 95462, + [SMALL_STATE(2973)] = 95550, + [SMALL_STATE(2974)] = 95638, + [SMALL_STATE(2975)] = 95726, + [SMALL_STATE(2976)] = 95816, + [SMALL_STATE(2977)] = 95904, + [SMALL_STATE(2978)] = 95992, + [SMALL_STATE(2979)] = 96080, + [SMALL_STATE(2980)] = 96168, + [SMALL_STATE(2981)] = 96256, + [SMALL_STATE(2982)] = 96344, + [SMALL_STATE(2983)] = 96432, + [SMALL_STATE(2984)] = 96520, + [SMALL_STATE(2985)] = 96608, + [SMALL_STATE(2986)] = 96696, + [SMALL_STATE(2987)] = 96784, + [SMALL_STATE(2988)] = 96872, + [SMALL_STATE(2989)] = 96960, + [SMALL_STATE(2990)] = 97048, + [SMALL_STATE(2991)] = 97136, + [SMALL_STATE(2992)] = 97224, + [SMALL_STATE(2993)] = 97312, + [SMALL_STATE(2994)] = 97400, + [SMALL_STATE(2995)] = 97488, + [SMALL_STATE(2996)] = 97576, + [SMALL_STATE(2997)] = 97664, + [SMALL_STATE(2998)] = 97752, + [SMALL_STATE(2999)] = 97840, + [SMALL_STATE(3000)] = 97928, + [SMALL_STATE(3001)] = 98016, + [SMALL_STATE(3002)] = 98104, + [SMALL_STATE(3003)] = 98192, + [SMALL_STATE(3004)] = 98280, + [SMALL_STATE(3005)] = 98368, + [SMALL_STATE(3006)] = 98456, + [SMALL_STATE(3007)] = 98544, + [SMALL_STATE(3008)] = 98632, + [SMALL_STATE(3009)] = 98720, + [SMALL_STATE(3010)] = 98810, + [SMALL_STATE(3011)] = 98898, + [SMALL_STATE(3012)] = 98986, + [SMALL_STATE(3013)] = 99074, + [SMALL_STATE(3014)] = 99162, + [SMALL_STATE(3015)] = 99250, + [SMALL_STATE(3016)] = 99340, + [SMALL_STATE(3017)] = 99428, + [SMALL_STATE(3018)] = 99516, + [SMALL_STATE(3019)] = 99604, + [SMALL_STATE(3020)] = 99692, + [SMALL_STATE(3021)] = 99779, + [SMALL_STATE(3022)] = 99866, + [SMALL_STATE(3023)] = 99953, + [SMALL_STATE(3024)] = 100040, + [SMALL_STATE(3025)] = 100127, + [SMALL_STATE(3026)] = 100214, + [SMALL_STATE(3027)] = 100301, + [SMALL_STATE(3028)] = 100388, + [SMALL_STATE(3029)] = 100475, + [SMALL_STATE(3030)] = 100562, + [SMALL_STATE(3031)] = 100649, + [SMALL_STATE(3032)] = 100736, + [SMALL_STATE(3033)] = 100823, + [SMALL_STATE(3034)] = 100910, + [SMALL_STATE(3035)] = 100997, + [SMALL_STATE(3036)] = 101084, + [SMALL_STATE(3037)] = 101171, + [SMALL_STATE(3038)] = 101258, + [SMALL_STATE(3039)] = 101345, + [SMALL_STATE(3040)] = 101432, + [SMALL_STATE(3041)] = 101519, + [SMALL_STATE(3042)] = 101606, + [SMALL_STATE(3043)] = 101693, + [SMALL_STATE(3044)] = 101780, + [SMALL_STATE(3045)] = 101867, + [SMALL_STATE(3046)] = 101954, + [SMALL_STATE(3047)] = 102041, + [SMALL_STATE(3048)] = 102128, + [SMALL_STATE(3049)] = 102215, + [SMALL_STATE(3050)] = 102302, + [SMALL_STATE(3051)] = 102389, + [SMALL_STATE(3052)] = 102476, + [SMALL_STATE(3053)] = 102563, + [SMALL_STATE(3054)] = 102650, + [SMALL_STATE(3055)] = 102737, + [SMALL_STATE(3056)] = 102824, + [SMALL_STATE(3057)] = 102911, + [SMALL_STATE(3058)] = 102998, + [SMALL_STATE(3059)] = 103085, + [SMALL_STATE(3060)] = 103172, + [SMALL_STATE(3061)] = 103259, + [SMALL_STATE(3062)] = 103346, + [SMALL_STATE(3063)] = 103433, + [SMALL_STATE(3064)] = 103520, + [SMALL_STATE(3065)] = 103607, + [SMALL_STATE(3066)] = 103694, + [SMALL_STATE(3067)] = 103781, + [SMALL_STATE(3068)] = 103868, + [SMALL_STATE(3069)] = 103955, + [SMALL_STATE(3070)] = 104042, + [SMALL_STATE(3071)] = 104129, + [SMALL_STATE(3072)] = 104216, + [SMALL_STATE(3073)] = 104303, + [SMALL_STATE(3074)] = 104390, + [SMALL_STATE(3075)] = 104477, + [SMALL_STATE(3076)] = 104564, + [SMALL_STATE(3077)] = 104651, + [SMALL_STATE(3078)] = 104738, + [SMALL_STATE(3079)] = 104825, + [SMALL_STATE(3080)] = 104912, + [SMALL_STATE(3081)] = 104999, + [SMALL_STATE(3082)] = 105086, + [SMALL_STATE(3083)] = 105173, + [SMALL_STATE(3084)] = 105260, + [SMALL_STATE(3085)] = 105347, + [SMALL_STATE(3086)] = 105434, + [SMALL_STATE(3087)] = 105521, + [SMALL_STATE(3088)] = 105608, + [SMALL_STATE(3089)] = 105695, + [SMALL_STATE(3090)] = 105782, + [SMALL_STATE(3091)] = 105866, + [SMALL_STATE(3092)] = 105950, + [SMALL_STATE(3093)] = 106034, + [SMALL_STATE(3094)] = 106092, + [SMALL_STATE(3095)] = 106176, + [SMALL_STATE(3096)] = 106260, + [SMALL_STATE(3097)] = 106344, + [SMALL_STATE(3098)] = 106428, + [SMALL_STATE(3099)] = 106512, + [SMALL_STATE(3100)] = 106596, + [SMALL_STATE(3101)] = 106680, + [SMALL_STATE(3102)] = 106764, + [SMALL_STATE(3103)] = 106848, + [SMALL_STATE(3104)] = 106932, + [SMALL_STATE(3105)] = 107016, + [SMALL_STATE(3106)] = 107100, + [SMALL_STATE(3107)] = 107184, + [SMALL_STATE(3108)] = 107268, + [SMALL_STATE(3109)] = 107352, + [SMALL_STATE(3110)] = 107436, + [SMALL_STATE(3111)] = 107520, + [SMALL_STATE(3112)] = 107604, + [SMALL_STATE(3113)] = 107688, + [SMALL_STATE(3114)] = 107772, + [SMALL_STATE(3115)] = 107856, + [SMALL_STATE(3116)] = 107940, + [SMALL_STATE(3117)] = 108024, + [SMALL_STATE(3118)] = 108108, + [SMALL_STATE(3119)] = 108192, + [SMALL_STATE(3120)] = 108276, + [SMALL_STATE(3121)] = 108360, + [SMALL_STATE(3122)] = 108444, + [SMALL_STATE(3123)] = 108528, + [SMALL_STATE(3124)] = 108612, + [SMALL_STATE(3125)] = 108696, + [SMALL_STATE(3126)] = 108780, + [SMALL_STATE(3127)] = 108864, + [SMALL_STATE(3128)] = 108948, + [SMALL_STATE(3129)] = 109032, + [SMALL_STATE(3130)] = 109116, + [SMALL_STATE(3131)] = 109200, + [SMALL_STATE(3132)] = 109284, + [SMALL_STATE(3133)] = 109368, + [SMALL_STATE(3134)] = 109452, + [SMALL_STATE(3135)] = 109536, + [SMALL_STATE(3136)] = 109620, + [SMALL_STATE(3137)] = 109704, + [SMALL_STATE(3138)] = 109788, + [SMALL_STATE(3139)] = 109872, + [SMALL_STATE(3140)] = 109956, + [SMALL_STATE(3141)] = 110040, + [SMALL_STATE(3142)] = 110124, + [SMALL_STATE(3143)] = 110208, + [SMALL_STATE(3144)] = 110292, + [SMALL_STATE(3145)] = 110376, + [SMALL_STATE(3146)] = 110460, + [SMALL_STATE(3147)] = 110518, + [SMALL_STATE(3148)] = 110602, + [SMALL_STATE(3149)] = 110686, + [SMALL_STATE(3150)] = 110770, + [SMALL_STATE(3151)] = 110854, + [SMALL_STATE(3152)] = 110938, + [SMALL_STATE(3153)] = 111019, + [SMALL_STATE(3154)] = 111100, + [SMALL_STATE(3155)] = 111181, + [SMALL_STATE(3156)] = 111232, + [SMALL_STATE(3157)] = 111313, + [SMALL_STATE(3158)] = 111394, + [SMALL_STATE(3159)] = 111475, + [SMALL_STATE(3160)] = 111556, + [SMALL_STATE(3161)] = 111637, + [SMALL_STATE(3162)] = 111718, + [SMALL_STATE(3163)] = 111799, + [SMALL_STATE(3164)] = 111880, + [SMALL_STATE(3165)] = 111961, + [SMALL_STATE(3166)] = 112042, + [SMALL_STATE(3167)] = 112123, + [SMALL_STATE(3168)] = 112204, + [SMALL_STATE(3169)] = 112285, + [SMALL_STATE(3170)] = 112366, + [SMALL_STATE(3171)] = 112447, + [SMALL_STATE(3172)] = 112528, + [SMALL_STATE(3173)] = 112609, + [SMALL_STATE(3174)] = 112690, + [SMALL_STATE(3175)] = 112771, + [SMALL_STATE(3176)] = 112852, + [SMALL_STATE(3177)] = 112933, + [SMALL_STATE(3178)] = 113014, + [SMALL_STATE(3179)] = 113095, + [SMALL_STATE(3180)] = 113176, + [SMALL_STATE(3181)] = 113257, + [SMALL_STATE(3182)] = 113338, + [SMALL_STATE(3183)] = 113419, + [SMALL_STATE(3184)] = 113472, + [SMALL_STATE(3185)] = 113553, + [SMALL_STATE(3186)] = 113634, + [SMALL_STATE(3187)] = 113715, + [SMALL_STATE(3188)] = 113796, + [SMALL_STATE(3189)] = 113847, + [SMALL_STATE(3190)] = 113898, + [SMALL_STATE(3191)] = 113949, + [SMALL_STATE(3192)] = 114030, + [SMALL_STATE(3193)] = 114111, + [SMALL_STATE(3194)] = 114192, + [SMALL_STATE(3195)] = 114243, + [SMALL_STATE(3196)] = 114324, + [SMALL_STATE(3197)] = 114405, + [SMALL_STATE(3198)] = 114486, + [SMALL_STATE(3199)] = 114567, + [SMALL_STATE(3200)] = 114648, + [SMALL_STATE(3201)] = 114729, + [SMALL_STATE(3202)] = 114810, + [SMALL_STATE(3203)] = 114891, + [SMALL_STATE(3204)] = 114972, + [SMALL_STATE(3205)] = 115053, + [SMALL_STATE(3206)] = 115134, + [SMALL_STATE(3207)] = 115215, + [SMALL_STATE(3208)] = 115296, + [SMALL_STATE(3209)] = 115377, + [SMALL_STATE(3210)] = 115458, + [SMALL_STATE(3211)] = 115509, + [SMALL_STATE(3212)] = 115590, + [SMALL_STATE(3213)] = 115671, + [SMALL_STATE(3214)] = 115752, + [SMALL_STATE(3215)] = 115833, + [SMALL_STATE(3216)] = 115914, + [SMALL_STATE(3217)] = 115995, + [SMALL_STATE(3218)] = 116076, + [SMALL_STATE(3219)] = 116157, + [SMALL_STATE(3220)] = 116238, + [SMALL_STATE(3221)] = 116319, + [SMALL_STATE(3222)] = 116400, + [SMALL_STATE(3223)] = 116481, + [SMALL_STATE(3224)] = 116562, + [SMALL_STATE(3225)] = 116643, + [SMALL_STATE(3226)] = 116724, + [SMALL_STATE(3227)] = 116805, + [SMALL_STATE(3228)] = 116886, + [SMALL_STATE(3229)] = 116967, + [SMALL_STATE(3230)] = 117048, + [SMALL_STATE(3231)] = 117129, + [SMALL_STATE(3232)] = 117210, + [SMALL_STATE(3233)] = 117291, + [SMALL_STATE(3234)] = 117372, + [SMALL_STATE(3235)] = 117453, + [SMALL_STATE(3236)] = 117534, + [SMALL_STATE(3237)] = 117615, + [SMALL_STATE(3238)] = 117696, + [SMALL_STATE(3239)] = 117777, + [SMALL_STATE(3240)] = 117858, + [SMALL_STATE(3241)] = 117939, + [SMALL_STATE(3242)] = 117994, + [SMALL_STATE(3243)] = 118075, + [SMALL_STATE(3244)] = 118156, + [SMALL_STATE(3245)] = 118237, + [SMALL_STATE(3246)] = 118318, + [SMALL_STATE(3247)] = 118399, + [SMALL_STATE(3248)] = 118480, + [SMALL_STATE(3249)] = 118561, + [SMALL_STATE(3250)] = 118642, + [SMALL_STATE(3251)] = 118723, + [SMALL_STATE(3252)] = 118804, + [SMALL_STATE(3253)] = 118885, + [SMALL_STATE(3254)] = 118966, + [SMALL_STATE(3255)] = 119047, + [SMALL_STATE(3256)] = 119128, + [SMALL_STATE(3257)] = 119209, + [SMALL_STATE(3258)] = 119290, + [SMALL_STATE(3259)] = 119371, + [SMALL_STATE(3260)] = 119452, + [SMALL_STATE(3261)] = 119507, + [SMALL_STATE(3262)] = 119588, + [SMALL_STATE(3263)] = 119669, + [SMALL_STATE(3264)] = 119750, + [SMALL_STATE(3265)] = 119831, + [SMALL_STATE(3266)] = 119912, + [SMALL_STATE(3267)] = 119993, + [SMALL_STATE(3268)] = 120074, + [SMALL_STATE(3269)] = 120155, + [SMALL_STATE(3270)] = 120236, + [SMALL_STATE(3271)] = 120317, + [SMALL_STATE(3272)] = 120398, + [SMALL_STATE(3273)] = 120479, + [SMALL_STATE(3274)] = 120560, + [SMALL_STATE(3275)] = 120641, + [SMALL_STATE(3276)] = 120722, + [SMALL_STATE(3277)] = 120803, + [SMALL_STATE(3278)] = 120884, + [SMALL_STATE(3279)] = 120965, + [SMALL_STATE(3280)] = 121046, + [SMALL_STATE(3281)] = 121127, + [SMALL_STATE(3282)] = 121208, + [SMALL_STATE(3283)] = 121289, + [SMALL_STATE(3284)] = 121370, + [SMALL_STATE(3285)] = 121451, + [SMALL_STATE(3286)] = 121532, + [SMALL_STATE(3287)] = 121613, + [SMALL_STATE(3288)] = 121694, + [SMALL_STATE(3289)] = 121775, + [SMALL_STATE(3290)] = 121856, + [SMALL_STATE(3291)] = 121937, + [SMALL_STATE(3292)] = 122018, + [SMALL_STATE(3293)] = 122099, + [SMALL_STATE(3294)] = 122180, + [SMALL_STATE(3295)] = 122261, + [SMALL_STATE(3296)] = 122342, + [SMALL_STATE(3297)] = 122423, + [SMALL_STATE(3298)] = 122504, + [SMALL_STATE(3299)] = 122585, + [SMALL_STATE(3300)] = 122666, + [SMALL_STATE(3301)] = 122747, + [SMALL_STATE(3302)] = 122828, + [SMALL_STATE(3303)] = 122909, + [SMALL_STATE(3304)] = 122990, + [SMALL_STATE(3305)] = 123071, + [SMALL_STATE(3306)] = 123152, + [SMALL_STATE(3307)] = 123233, + [SMALL_STATE(3308)] = 123314, + [SMALL_STATE(3309)] = 123365, + [SMALL_STATE(3310)] = 123446, + [SMALL_STATE(3311)] = 123527, + [SMALL_STATE(3312)] = 123608, + [SMALL_STATE(3313)] = 123689, + [SMALL_STATE(3314)] = 123770, + [SMALL_STATE(3315)] = 123851, + [SMALL_STATE(3316)] = 123932, + [SMALL_STATE(3317)] = 124013, + [SMALL_STATE(3318)] = 124094, + [SMALL_STATE(3319)] = 124175, + [SMALL_STATE(3320)] = 124256, + [SMALL_STATE(3321)] = 124337, + [SMALL_STATE(3322)] = 124418, + [SMALL_STATE(3323)] = 124499, + [SMALL_STATE(3324)] = 124580, + [SMALL_STATE(3325)] = 124661, + [SMALL_STATE(3326)] = 124742, + [SMALL_STATE(3327)] = 124823, + [SMALL_STATE(3328)] = 124904, + [SMALL_STATE(3329)] = 124985, + [SMALL_STATE(3330)] = 125066, + [SMALL_STATE(3331)] = 125117, + [SMALL_STATE(3332)] = 125198, + [SMALL_STATE(3333)] = 125279, + [SMALL_STATE(3334)] = 125360, + [SMALL_STATE(3335)] = 125441, + [SMALL_STATE(3336)] = 125522, + [SMALL_STATE(3337)] = 125603, + [SMALL_STATE(3338)] = 125684, + [SMALL_STATE(3339)] = 125765, + [SMALL_STATE(3340)] = 125846, + [SMALL_STATE(3341)] = 125927, + [SMALL_STATE(3342)] = 126008, + [SMALL_STATE(3343)] = 126089, + [SMALL_STATE(3344)] = 126170, + [SMALL_STATE(3345)] = 126221, + [SMALL_STATE(3346)] = 126302, + [SMALL_STATE(3347)] = 126383, + [SMALL_STATE(3348)] = 126464, + [SMALL_STATE(3349)] = 126515, + [SMALL_STATE(3350)] = 126596, + [SMALL_STATE(3351)] = 126677, + [SMALL_STATE(3352)] = 126758, + [SMALL_STATE(3353)] = 126839, + [SMALL_STATE(3354)] = 126920, + [SMALL_STATE(3355)] = 127001, + [SMALL_STATE(3356)] = 127082, + [SMALL_STATE(3357)] = 127163, + [SMALL_STATE(3358)] = 127244, + [SMALL_STATE(3359)] = 127325, + [SMALL_STATE(3360)] = 127406, + [SMALL_STATE(3361)] = 127487, + [SMALL_STATE(3362)] = 127568, + [SMALL_STATE(3363)] = 127649, + [SMALL_STATE(3364)] = 127730, + [SMALL_STATE(3365)] = 127811, + [SMALL_STATE(3366)] = 127862, + [SMALL_STATE(3367)] = 127943, + [SMALL_STATE(3368)] = 128024, + [SMALL_STATE(3369)] = 128105, + [SMALL_STATE(3370)] = 128186, + [SMALL_STATE(3371)] = 128267, + [SMALL_STATE(3372)] = 128348, + [SMALL_STATE(3373)] = 128429, + [SMALL_STATE(3374)] = 128510, + [SMALL_STATE(3375)] = 128591, + [SMALL_STATE(3376)] = 128672, + [SMALL_STATE(3377)] = 128753, + [SMALL_STATE(3378)] = 128834, + [SMALL_STATE(3379)] = 128915, + [SMALL_STATE(3380)] = 128996, + [SMALL_STATE(3381)] = 129077, + [SMALL_STATE(3382)] = 129158, + [SMALL_STATE(3383)] = 129239, + [SMALL_STATE(3384)] = 129320, + [SMALL_STATE(3385)] = 129401, + [SMALL_STATE(3386)] = 129482, + [SMALL_STATE(3387)] = 129563, + [SMALL_STATE(3388)] = 129644, + [SMALL_STATE(3389)] = 129725, + [SMALL_STATE(3390)] = 129806, + [SMALL_STATE(3391)] = 129887, + [SMALL_STATE(3392)] = 129968, + [SMALL_STATE(3393)] = 130049, + [SMALL_STATE(3394)] = 130130, + [SMALL_STATE(3395)] = 130211, + [SMALL_STATE(3396)] = 130292, + [SMALL_STATE(3397)] = 130373, + [SMALL_STATE(3398)] = 130454, + [SMALL_STATE(3399)] = 130535, + [SMALL_STATE(3400)] = 130616, + [SMALL_STATE(3401)] = 130697, + [SMALL_STATE(3402)] = 130778, + [SMALL_STATE(3403)] = 130859, + [SMALL_STATE(3404)] = 130940, + [SMALL_STATE(3405)] = 131021, + [SMALL_STATE(3406)] = 131102, + [SMALL_STATE(3407)] = 131183, + [SMALL_STATE(3408)] = 131264, + [SMALL_STATE(3409)] = 131345, + [SMALL_STATE(3410)] = 131426, + [SMALL_STATE(3411)] = 131507, + [SMALL_STATE(3412)] = 131588, + [SMALL_STATE(3413)] = 131669, + [SMALL_STATE(3414)] = 131750, + [SMALL_STATE(3415)] = 131831, + [SMALL_STATE(3416)] = 131912, + [SMALL_STATE(3417)] = 131993, + [SMALL_STATE(3418)] = 132074, + [SMALL_STATE(3419)] = 132155, + [SMALL_STATE(3420)] = 132236, + [SMALL_STATE(3421)] = 132317, + [SMALL_STATE(3422)] = 132398, + [SMALL_STATE(3423)] = 132479, + [SMALL_STATE(3424)] = 132560, + [SMALL_STATE(3425)] = 132641, + [SMALL_STATE(3426)] = 132722, + [SMALL_STATE(3427)] = 132803, + [SMALL_STATE(3428)] = 132884, + [SMALL_STATE(3429)] = 132942, + [SMALL_STATE(3430)] = 132996, + [SMALL_STATE(3431)] = 133044, + [SMALL_STATE(3432)] = 133092, + [SMALL_STATE(3433)] = 133140, + [SMALL_STATE(3434)] = 133188, + [SMALL_STATE(3435)] = 133242, + [SMALL_STATE(3436)] = 133289, + [SMALL_STATE(3437)] = 133336, + [SMALL_STATE(3438)] = 133383, + [SMALL_STATE(3439)] = 133430, + [SMALL_STATE(3440)] = 133482, + [SMALL_STATE(3441)] = 133556, + [SMALL_STATE(3442)] = 133630, + [SMALL_STATE(3443)] = 133680, + [SMALL_STATE(3444)] = 133754, + [SMALL_STATE(3445)] = 133828, + [SMALL_STATE(3446)] = 133902, + [SMALL_STATE(3447)] = 133952, + [SMALL_STATE(3448)] = 134004, + [SMALL_STATE(3449)] = 134078, + [SMALL_STATE(3450)] = 134128, + [SMALL_STATE(3451)] = 134178, + [SMALL_STATE(3452)] = 134228, + [SMALL_STATE(3453)] = 134302, + [SMALL_STATE(3454)] = 134376, + [SMALL_STATE(3455)] = 134450, + [SMALL_STATE(3456)] = 134524, + [SMALL_STATE(3457)] = 134575, + [SMALL_STATE(3458)] = 134626, + [SMALL_STATE(3459)] = 134675, + [SMALL_STATE(3460)] = 134726, + [SMALL_STATE(3461)] = 134777, + [SMALL_STATE(3462)] = 134828, + [SMALL_STATE(3463)] = 134879, + [SMALL_STATE(3464)] = 134930, + [SMALL_STATE(3465)] = 134981, + [SMALL_STATE(3466)] = 135032, + [SMALL_STATE(3467)] = 135077, + [SMALL_STATE(3468)] = 135126, + [SMALL_STATE(3469)] = 135177, + [SMALL_STATE(3470)] = 135228, + [SMALL_STATE(3471)] = 135272, + [SMALL_STATE(3472)] = 135318, + [SMALL_STATE(3473)] = 135364, + [SMALL_STATE(3474)] = 135408, + [SMALL_STATE(3475)] = 135451, + [SMALL_STATE(3476)] = 135494, + [SMALL_STATE(3477)] = 135537, + [SMALL_STATE(3478)] = 135580, + [SMALL_STATE(3479)] = 135623, + [SMALL_STATE(3480)] = 135666, + [SMALL_STATE(3481)] = 135709, + [SMALL_STATE(3482)] = 135754, + [SMALL_STATE(3483)] = 135797, + [SMALL_STATE(3484)] = 135840, + [SMALL_STATE(3485)] = 135883, + [SMALL_STATE(3486)] = 135926, + [SMALL_STATE(3487)] = 135969, + [SMALL_STATE(3488)] = 136012, + [SMALL_STATE(3489)] = 136055, + [SMALL_STATE(3490)] = 136098, + [SMALL_STATE(3491)] = 136141, + [SMALL_STATE(3492)] = 136184, + [SMALL_STATE(3493)] = 136227, + [SMALL_STATE(3494)] = 136270, + [SMALL_STATE(3495)] = 136313, + [SMALL_STATE(3496)] = 136356, + [SMALL_STATE(3497)] = 136399, + [SMALL_STATE(3498)] = 136442, + [SMALL_STATE(3499)] = 136485, + [SMALL_STATE(3500)] = 136528, + [SMALL_STATE(3501)] = 136571, + [SMALL_STATE(3502)] = 136614, + [SMALL_STATE(3503)] = 136657, + [SMALL_STATE(3504)] = 136700, + [SMALL_STATE(3505)] = 136743, + [SMALL_STATE(3506)] = 136786, + [SMALL_STATE(3507)] = 136828, + [SMALL_STATE(3508)] = 136874, + [SMALL_STATE(3509)] = 136916, + [SMALL_STATE(3510)] = 136962, + [SMALL_STATE(3511)] = 137004, + [SMALL_STATE(3512)] = 137054, + [SMALL_STATE(3513)] = 137100, + [SMALL_STATE(3514)] = 137142, + [SMALL_STATE(3515)] = 137183, + [SMALL_STATE(3516)] = 137224, + [SMALL_STATE(3517)] = 137265, + [SMALL_STATE(3518)] = 137305, + [SMALL_STATE(3519)] = 137345, + [SMALL_STATE(3520)] = 137385, + [SMALL_STATE(3521)] = 137425, + [SMALL_STATE(3522)] = 137465, + [SMALL_STATE(3523)] = 137505, + [SMALL_STATE(3524)] = 137545, + [SMALL_STATE(3525)] = 137604, + [SMALL_STATE(3526)] = 137663, + [SMALL_STATE(3527)] = 137722, + [SMALL_STATE(3528)] = 137781, + [SMALL_STATE(3529)] = 137840, + [SMALL_STATE(3530)] = 137899, + [SMALL_STATE(3531)] = 137958, + [SMALL_STATE(3532)] = 138003, + [SMALL_STATE(3533)] = 138028, + [SMALL_STATE(3534)] = 138073, + [SMALL_STATE(3535)] = 138098, + [SMALL_STATE(3536)] = 138143, + [SMALL_STATE(3537)] = 138168, + [SMALL_STATE(3538)] = 138213, + [SMALL_STATE(3539)] = 138238, + [SMALL_STATE(3540)] = 138283, + [SMALL_STATE(3541)] = 138328, + [SMALL_STATE(3542)] = 138373, + [SMALL_STATE(3543)] = 138415, + [SMALL_STATE(3544)] = 138457, + [SMALL_STATE(3545)] = 138485, + [SMALL_STATE(3546)] = 138513, + [SMALL_STATE(3547)] = 138538, + [SMALL_STATE(3548)] = 138563, + [SMALL_STATE(3549)] = 138599, + [SMALL_STATE(3550)] = 138635, + [SMALL_STATE(3551)] = 138671, + [SMALL_STATE(3552)] = 138707, + [SMALL_STATE(3553)] = 138743, + [SMALL_STATE(3554)] = 138779, + [SMALL_STATE(3555)] = 138815, + [SMALL_STATE(3556)] = 138851, + [SMALL_STATE(3557)] = 138887, + [SMALL_STATE(3558)] = 138923, + [SMALL_STATE(3559)] = 138959, + [SMALL_STATE(3560)] = 138995, + [SMALL_STATE(3561)] = 139031, + [SMALL_STATE(3562)] = 139067, + [SMALL_STATE(3563)] = 139103, + [SMALL_STATE(3564)] = 139139, + [SMALL_STATE(3565)] = 139175, + [SMALL_STATE(3566)] = 139211, + [SMALL_STATE(3567)] = 139247, + [SMALL_STATE(3568)] = 139283, + [SMALL_STATE(3569)] = 139319, + [SMALL_STATE(3570)] = 139355, + [SMALL_STATE(3571)] = 139391, + [SMALL_STATE(3572)] = 139427, + [SMALL_STATE(3573)] = 139463, + [SMALL_STATE(3574)] = 139499, + [SMALL_STATE(3575)] = 139535, + [SMALL_STATE(3576)] = 139571, + [SMALL_STATE(3577)] = 139607, + [SMALL_STATE(3578)] = 139643, + [SMALL_STATE(3579)] = 139679, + [SMALL_STATE(3580)] = 139715, + [SMALL_STATE(3581)] = 139751, + [SMALL_STATE(3582)] = 139787, + [SMALL_STATE(3583)] = 139823, + [SMALL_STATE(3584)] = 139856, + [SMALL_STATE(3585)] = 139889, + [SMALL_STATE(3586)] = 139922, + [SMALL_STATE(3587)] = 139955, + [SMALL_STATE(3588)] = 139988, + [SMALL_STATE(3589)] = 140021, + [SMALL_STATE(3590)] = 140054, + [SMALL_STATE(3591)] = 140087, + [SMALL_STATE(3592)] = 140120, + [SMALL_STATE(3593)] = 140153, + [SMALL_STATE(3594)] = 140186, + [SMALL_STATE(3595)] = 140219, + [SMALL_STATE(3596)] = 140252, + [SMALL_STATE(3597)] = 140285, + [SMALL_STATE(3598)] = 140318, + [SMALL_STATE(3599)] = 140351, + [SMALL_STATE(3600)] = 140384, + [SMALL_STATE(3601)] = 140417, + [SMALL_STATE(3602)] = 140450, + [SMALL_STATE(3603)] = 140483, + [SMALL_STATE(3604)] = 140516, + [SMALL_STATE(3605)] = 140549, + [SMALL_STATE(3606)] = 140582, + [SMALL_STATE(3607)] = 140615, + [SMALL_STATE(3608)] = 140648, + [SMALL_STATE(3609)] = 140681, + [SMALL_STATE(3610)] = 140714, + [SMALL_STATE(3611)] = 140747, + [SMALL_STATE(3612)] = 140781, + [SMALL_STATE(3613)] = 140815, + [SMALL_STATE(3614)] = 140849, + [SMALL_STATE(3615)] = 140883, + [SMALL_STATE(3616)] = 140903, + [SMALL_STATE(3617)] = 140923, + [SMALL_STATE(3618)] = 140957, + [SMALL_STATE(3619)] = 140991, + [SMALL_STATE(3620)] = 141025, + [SMALL_STATE(3621)] = 141059, + [SMALL_STATE(3622)] = 141089, + [SMALL_STATE(3623)] = 141105, + [SMALL_STATE(3624)] = 141139, + [SMALL_STATE(3625)] = 141173, + [SMALL_STATE(3626)] = 141207, + [SMALL_STATE(3627)] = 141241, + [SMALL_STATE(3628)] = 141275, + [SMALL_STATE(3629)] = 141295, + [SMALL_STATE(3630)] = 141329, + [SMALL_STATE(3631)] = 141359, + [SMALL_STATE(3632)] = 141393, + [SMALL_STATE(3633)] = 141427, + [SMALL_STATE(3634)] = 141461, + [SMALL_STATE(3635)] = 141495, + [SMALL_STATE(3636)] = 141529, + [SMALL_STATE(3637)] = 141563, + [SMALL_STATE(3638)] = 141597, + [SMALL_STATE(3639)] = 141631, + [SMALL_STATE(3640)] = 141665, + [SMALL_STATE(3641)] = 141699, + [SMALL_STATE(3642)] = 141733, + [SMALL_STATE(3643)] = 141767, + [SMALL_STATE(3644)] = 141801, + [SMALL_STATE(3645)] = 141835, + [SMALL_STATE(3646)] = 141869, + [SMALL_STATE(3647)] = 141903, + [SMALL_STATE(3648)] = 141919, + [SMALL_STATE(3649)] = 141935, + [SMALL_STATE(3650)] = 141969, + [SMALL_STATE(3651)] = 142003, + [SMALL_STATE(3652)] = 142037, + [SMALL_STATE(3653)] = 142071, + [SMALL_STATE(3654)] = 142091, + [SMALL_STATE(3655)] = 142125, + [SMALL_STATE(3656)] = 142152, + [SMALL_STATE(3657)] = 142181, + [SMALL_STATE(3658)] = 142202, + [SMALL_STATE(3659)] = 142231, + [SMALL_STATE(3660)] = 142260, + [SMALL_STATE(3661)] = 142289, + [SMALL_STATE(3662)] = 142304, + [SMALL_STATE(3663)] = 142331, + [SMALL_STATE(3664)] = 142360, + [SMALL_STATE(3665)] = 142387, + [SMALL_STATE(3666)] = 142412, + [SMALL_STATE(3667)] = 142433, + [SMALL_STATE(3668)] = 142460, + [SMALL_STATE(3669)] = 142488, + [SMALL_STATE(3670)] = 142512, + [SMALL_STATE(3671)] = 142540, + [SMALL_STATE(3672)] = 142560, + [SMALL_STATE(3673)] = 142588, + [SMALL_STATE(3674)] = 142616, + [SMALL_STATE(3675)] = 142644, + [SMALL_STATE(3676)] = 142672, + [SMALL_STATE(3677)] = 142700, + [SMALL_STATE(3678)] = 142728, + [SMALL_STATE(3679)] = 142756, + [SMALL_STATE(3680)] = 142784, + [SMALL_STATE(3681)] = 142812, + [SMALL_STATE(3682)] = 142840, + [SMALL_STATE(3683)] = 142868, + [SMALL_STATE(3684)] = 142896, + [SMALL_STATE(3685)] = 142918, + [SMALL_STATE(3686)] = 142946, + [SMALL_STATE(3687)] = 142974, + [SMALL_STATE(3688)] = 143002, + [SMALL_STATE(3689)] = 143018, + [SMALL_STATE(3690)] = 143042, + [SMALL_STATE(3691)] = 143070, + [SMALL_STATE(3692)] = 143098, + [SMALL_STATE(3693)] = 143126, + [SMALL_STATE(3694)] = 143154, + [SMALL_STATE(3695)] = 143178, + [SMALL_STATE(3696)] = 143206, + [SMALL_STATE(3697)] = 143234, + [SMALL_STATE(3698)] = 143252, + [SMALL_STATE(3699)] = 143270, + [SMALL_STATE(3700)] = 143298, + [SMALL_STATE(3701)] = 143326, + [SMALL_STATE(3702)] = 143354, + [SMALL_STATE(3703)] = 143382, + [SMALL_STATE(3704)] = 143410, + [SMALL_STATE(3705)] = 143438, + [SMALL_STATE(3706)] = 143466, + [SMALL_STATE(3707)] = 143494, + [SMALL_STATE(3708)] = 143518, + [SMALL_STATE(3709)] = 143546, + [SMALL_STATE(3710)] = 143574, + [SMALL_STATE(3711)] = 143602, + [SMALL_STATE(3712)] = 143630, + [SMALL_STATE(3713)] = 143658, + [SMALL_STATE(3714)] = 143686, + [SMALL_STATE(3715)] = 143710, + [SMALL_STATE(3716)] = 143738, + [SMALL_STATE(3717)] = 143766, + [SMALL_STATE(3718)] = 143794, + [SMALL_STATE(3719)] = 143822, + [SMALL_STATE(3720)] = 143850, + [SMALL_STATE(3721)] = 143878, + [SMALL_STATE(3722)] = 143902, + [SMALL_STATE(3723)] = 143926, + [SMALL_STATE(3724)] = 143954, + [SMALL_STATE(3725)] = 143982, + [SMALL_STATE(3726)] = 144010, + [SMALL_STATE(3727)] = 144028, + [SMALL_STATE(3728)] = 144056, + [SMALL_STATE(3729)] = 144084, + [SMALL_STATE(3730)] = 144112, + [SMALL_STATE(3731)] = 144140, + [SMALL_STATE(3732)] = 144168, + [SMALL_STATE(3733)] = 144196, + [SMALL_STATE(3734)] = 144220, + [SMALL_STATE(3735)] = 144248, + [SMALL_STATE(3736)] = 144276, + [SMALL_STATE(3737)] = 144304, + [SMALL_STATE(3738)] = 144332, + [SMALL_STATE(3739)] = 144350, + [SMALL_STATE(3740)] = 144378, + [SMALL_STATE(3741)] = 144406, + [SMALL_STATE(3742)] = 144434, + [SMALL_STATE(3743)] = 144462, + [SMALL_STATE(3744)] = 144490, + [SMALL_STATE(3745)] = 144518, + [SMALL_STATE(3746)] = 144546, + [SMALL_STATE(3747)] = 144562, + [SMALL_STATE(3748)] = 144590, + [SMALL_STATE(3749)] = 144606, + [SMALL_STATE(3750)] = 144634, + [SMALL_STATE(3751)] = 144662, + [SMALL_STATE(3752)] = 144683, + [SMALL_STATE(3753)] = 144708, + [SMALL_STATE(3754)] = 144733, + [SMALL_STATE(3755)] = 144754, + [SMALL_STATE(3756)] = 144771, + [SMALL_STATE(3757)] = 144786, + [SMALL_STATE(3758)] = 144811, + [SMALL_STATE(3759)] = 144828, + [SMALL_STATE(3760)] = 144853, + [SMALL_STATE(3761)] = 144868, + [SMALL_STATE(3762)] = 144889, + [SMALL_STATE(3763)] = 144902, + [SMALL_STATE(3764)] = 144923, + [SMALL_STATE(3765)] = 144944, + [SMALL_STATE(3766)] = 144957, + [SMALL_STATE(3767)] = 144978, + [SMALL_STATE(3768)] = 144999, + [SMALL_STATE(3769)] = 145024, + [SMALL_STATE(3770)] = 145037, + [SMALL_STATE(3771)] = 145060, + [SMALL_STATE(3772)] = 145075, + [SMALL_STATE(3773)] = 145094, + [SMALL_STATE(3774)] = 145107, + [SMALL_STATE(3775)] = 145130, + [SMALL_STATE(3776)] = 145143, + [SMALL_STATE(3777)] = 145160, + [SMALL_STATE(3778)] = 145177, + [SMALL_STATE(3779)] = 145190, + [SMALL_STATE(3780)] = 145203, + [SMALL_STATE(3781)] = 145220, + [SMALL_STATE(3782)] = 145233, + [SMALL_STATE(3783)] = 145246, + [SMALL_STATE(3784)] = 145265, + [SMALL_STATE(3785)] = 145288, + [SMALL_STATE(3786)] = 145311, + [SMALL_STATE(3787)] = 145336, + [SMALL_STATE(3788)] = 145359, + [SMALL_STATE(3789)] = 145376, + [SMALL_STATE(3790)] = 145397, + [SMALL_STATE(3791)] = 145422, + [SMALL_STATE(3792)] = 145445, + [SMALL_STATE(3793)] = 145462, + [SMALL_STATE(3794)] = 145479, + [SMALL_STATE(3795)] = 145504, + [SMALL_STATE(3796)] = 145517, + [SMALL_STATE(3797)] = 145542, + [SMALL_STATE(3798)] = 145559, + [SMALL_STATE(3799)] = 145582, + [SMALL_STATE(3800)] = 145607, + [SMALL_STATE(3801)] = 145626, + [SMALL_STATE(3802)] = 145644, + [SMALL_STATE(3803)] = 145666, + [SMALL_STATE(3804)] = 145688, + [SMALL_STATE(3805)] = 145710, + [SMALL_STATE(3806)] = 145732, + [SMALL_STATE(3807)] = 145750, + [SMALL_STATE(3808)] = 145762, + [SMALL_STATE(3809)] = 145784, + [SMALL_STATE(3810)] = 145806, + [SMALL_STATE(3811)] = 145818, + [SMALL_STATE(3812)] = 145840, + [SMALL_STATE(3813)] = 145862, + [SMALL_STATE(3814)] = 145874, + [SMALL_STATE(3815)] = 145896, + [SMALL_STATE(3816)] = 145914, + [SMALL_STATE(3817)] = 145936, + [SMALL_STATE(3818)] = 145954, + [SMALL_STATE(3819)] = 145976, + [SMALL_STATE(3820)] = 145994, + [SMALL_STATE(3821)] = 146016, + [SMALL_STATE(3822)] = 146034, + [SMALL_STATE(3823)] = 146056, + [SMALL_STATE(3824)] = 146068, + [SMALL_STATE(3825)] = 146080, + [SMALL_STATE(3826)] = 146092, + [SMALL_STATE(3827)] = 146114, + [SMALL_STATE(3828)] = 146136, + [SMALL_STATE(3829)] = 146158, + [SMALL_STATE(3830)] = 146180, + [SMALL_STATE(3831)] = 146202, + [SMALL_STATE(3832)] = 146224, + [SMALL_STATE(3833)] = 146246, + [SMALL_STATE(3834)] = 146264, + [SMALL_STATE(3835)] = 146286, + [SMALL_STATE(3836)] = 146308, + [SMALL_STATE(3837)] = 146320, + [SMALL_STATE(3838)] = 146342, + [SMALL_STATE(3839)] = 146364, + [SMALL_STATE(3840)] = 146382, + [SMALL_STATE(3841)] = 146404, + [SMALL_STATE(3842)] = 146422, + [SMALL_STATE(3843)] = 146444, + [SMALL_STATE(3844)] = 146466, + [SMALL_STATE(3845)] = 146484, + [SMALL_STATE(3846)] = 146506, + [SMALL_STATE(3847)] = 146522, + [SMALL_STATE(3848)] = 146544, + [SMALL_STATE(3849)] = 146566, + [SMALL_STATE(3850)] = 146588, + [SMALL_STATE(3851)] = 146610, + [SMALL_STATE(3852)] = 146628, + [SMALL_STATE(3853)] = 146650, + [SMALL_STATE(3854)] = 146672, + [SMALL_STATE(3855)] = 146694, + [SMALL_STATE(3856)] = 146716, + [SMALL_STATE(3857)] = 146738, + [SMALL_STATE(3858)] = 146760, + [SMALL_STATE(3859)] = 146782, + [SMALL_STATE(3860)] = 146798, + [SMALL_STATE(3861)] = 146820, + [SMALL_STATE(3862)] = 146842, + [SMALL_STATE(3863)] = 146864, + [SMALL_STATE(3864)] = 146886, + [SMALL_STATE(3865)] = 146900, + [SMALL_STATE(3866)] = 146922, + [SMALL_STATE(3867)] = 146944, + [SMALL_STATE(3868)] = 146966, + [SMALL_STATE(3869)] = 146988, + [SMALL_STATE(3870)] = 147006, + [SMALL_STATE(3871)] = 147028, + [SMALL_STATE(3872)] = 147050, + [SMALL_STATE(3873)] = 147072, + [SMALL_STATE(3874)] = 147094, + [SMALL_STATE(3875)] = 147116, + [SMALL_STATE(3876)] = 147138, + [SMALL_STATE(3877)] = 147150, + [SMALL_STATE(3878)] = 147172, + [SMALL_STATE(3879)] = 147194, + [SMALL_STATE(3880)] = 147206, + [SMALL_STATE(3881)] = 147218, + [SMALL_STATE(3882)] = 147240, + [SMALL_STATE(3883)] = 147262, + [SMALL_STATE(3884)] = 147284, + [SMALL_STATE(3885)] = 147306, + [SMALL_STATE(3886)] = 147328, + [SMALL_STATE(3887)] = 147340, + [SMALL_STATE(3888)] = 147362, + [SMALL_STATE(3889)] = 147384, + [SMALL_STATE(3890)] = 147406, + [SMALL_STATE(3891)] = 147428, + [SMALL_STATE(3892)] = 147450, + [SMALL_STATE(3893)] = 147462, + [SMALL_STATE(3894)] = 147484, + [SMALL_STATE(3895)] = 147496, + [SMALL_STATE(3896)] = 147518, + [SMALL_STATE(3897)] = 147530, + [SMALL_STATE(3898)] = 147552, + [SMALL_STATE(3899)] = 147574, + [SMALL_STATE(3900)] = 147596, + [SMALL_STATE(3901)] = 147618, + [SMALL_STATE(3902)] = 147630, + [SMALL_STATE(3903)] = 147652, + [SMALL_STATE(3904)] = 147674, + [SMALL_STATE(3905)] = 147696, + [SMALL_STATE(3906)] = 147718, + [SMALL_STATE(3907)] = 147736, + [SMALL_STATE(3908)] = 147754, + [SMALL_STATE(3909)] = 147776, + [SMALL_STATE(3910)] = 147792, + [SMALL_STATE(3911)] = 147814, + [SMALL_STATE(3912)] = 147836, + [SMALL_STATE(3913)] = 147858, + [SMALL_STATE(3914)] = 147880, + [SMALL_STATE(3915)] = 147902, + [SMALL_STATE(3916)] = 147920, + [SMALL_STATE(3917)] = 147942, + [SMALL_STATE(3918)] = 147964, + [SMALL_STATE(3919)] = 147986, + [SMALL_STATE(3920)] = 148008, + [SMALL_STATE(3921)] = 148026, + [SMALL_STATE(3922)] = 148048, + [SMALL_STATE(3923)] = 148070, + [SMALL_STATE(3924)] = 148092, + [SMALL_STATE(3925)] = 148114, + [SMALL_STATE(3926)] = 148136, + [SMALL_STATE(3927)] = 148148, + [SMALL_STATE(3928)] = 148170, + [SMALL_STATE(3929)] = 148192, + [SMALL_STATE(3930)] = 148214, + [SMALL_STATE(3931)] = 148232, + [SMALL_STATE(3932)] = 148254, + [SMALL_STATE(3933)] = 148276, + [SMALL_STATE(3934)] = 148288, + [SMALL_STATE(3935)] = 148310, + [SMALL_STATE(3936)] = 148322, + [SMALL_STATE(3937)] = 148334, + [SMALL_STATE(3938)] = 148356, + [SMALL_STATE(3939)] = 148372, + [SMALL_STATE(3940)] = 148384, + [SMALL_STATE(3941)] = 148406, + [SMALL_STATE(3942)] = 148428, + [SMALL_STATE(3943)] = 148450, + [SMALL_STATE(3944)] = 148472, + [SMALL_STATE(3945)] = 148494, + [SMALL_STATE(3946)] = 148516, + [SMALL_STATE(3947)] = 148538, + [SMALL_STATE(3948)] = 148556, + [SMALL_STATE(3949)] = 148578, + [SMALL_STATE(3950)] = 148596, + [SMALL_STATE(3951)] = 148618, + [SMALL_STATE(3952)] = 148630, + [SMALL_STATE(3953)] = 148652, + [SMALL_STATE(3954)] = 148674, + [SMALL_STATE(3955)] = 148696, + [SMALL_STATE(3956)] = 148718, + [SMALL_STATE(3957)] = 148736, + [SMALL_STATE(3958)] = 148754, + [SMALL_STATE(3959)] = 148776, + [SMALL_STATE(3960)] = 148798, + [SMALL_STATE(3961)] = 148820, + [SMALL_STATE(3962)] = 148842, + [SMALL_STATE(3963)] = 148854, + [SMALL_STATE(3964)] = 148876, + [SMALL_STATE(3965)] = 148894, + [SMALL_STATE(3966)] = 148916, + [SMALL_STATE(3967)] = 148928, + [SMALL_STATE(3968)] = 148940, + [SMALL_STATE(3969)] = 148962, + [SMALL_STATE(3970)] = 148984, + [SMALL_STATE(3971)] = 149006, + [SMALL_STATE(3972)] = 149028, + [SMALL_STATE(3973)] = 149040, + [SMALL_STATE(3974)] = 149052, + [SMALL_STATE(3975)] = 149074, + [SMALL_STATE(3976)] = 149096, + [SMALL_STATE(3977)] = 149108, + [SMALL_STATE(3978)] = 149130, + [SMALL_STATE(3979)] = 149152, + [SMALL_STATE(3980)] = 149174, + [SMALL_STATE(3981)] = 149186, + [SMALL_STATE(3982)] = 149204, + [SMALL_STATE(3983)] = 149216, + [SMALL_STATE(3984)] = 149238, + [SMALL_STATE(3985)] = 149260, + [SMALL_STATE(3986)] = 149278, + [SMALL_STATE(3987)] = 149296, + [SMALL_STATE(3988)] = 149318, + [SMALL_STATE(3989)] = 149340, + [SMALL_STATE(3990)] = 149362, + [SMALL_STATE(3991)] = 149384, + [SMALL_STATE(3992)] = 149406, + [SMALL_STATE(3993)] = 149428, + [SMALL_STATE(3994)] = 149450, + [SMALL_STATE(3995)] = 149462, + [SMALL_STATE(3996)] = 149480, + [SMALL_STATE(3997)] = 149492, + [SMALL_STATE(3998)] = 149514, + [SMALL_STATE(3999)] = 149536, + [SMALL_STATE(4000)] = 149558, + [SMALL_STATE(4001)] = 149580, + [SMALL_STATE(4002)] = 149602, + [SMALL_STATE(4003)] = 149624, + [SMALL_STATE(4004)] = 149646, + [SMALL_STATE(4005)] = 149668, + [SMALL_STATE(4006)] = 149690, + [SMALL_STATE(4007)] = 149712, + [SMALL_STATE(4008)] = 149734, + [SMALL_STATE(4009)] = 149756, + [SMALL_STATE(4010)] = 149778, + [SMALL_STATE(4011)] = 149800, + [SMALL_STATE(4012)] = 149818, + [SMALL_STATE(4013)] = 149840, + [SMALL_STATE(4014)] = 149852, + [SMALL_STATE(4015)] = 149871, + [SMALL_STATE(4016)] = 149890, + [SMALL_STATE(4017)] = 149909, + [SMALL_STATE(4018)] = 149928, + [SMALL_STATE(4019)] = 149947, + [SMALL_STATE(4020)] = 149966, + [SMALL_STATE(4021)] = 149985, + [SMALL_STATE(4022)] = 150004, + [SMALL_STATE(4023)] = 150023, + [SMALL_STATE(4024)] = 150042, + [SMALL_STATE(4025)] = 150059, + [SMALL_STATE(4026)] = 150078, + [SMALL_STATE(4027)] = 150097, + [SMALL_STATE(4028)] = 150116, + [SMALL_STATE(4029)] = 150135, + [SMALL_STATE(4030)] = 150154, + [SMALL_STATE(4031)] = 150173, + [SMALL_STATE(4032)] = 150192, + [SMALL_STATE(4033)] = 150211, + [SMALL_STATE(4034)] = 150230, + [SMALL_STATE(4035)] = 150249, + [SMALL_STATE(4036)] = 150268, + [SMALL_STATE(4037)] = 150281, + [SMALL_STATE(4038)] = 150294, + [SMALL_STATE(4039)] = 150313, + [SMALL_STATE(4040)] = 150332, + [SMALL_STATE(4041)] = 150351, + [SMALL_STATE(4042)] = 150368, + [SMALL_STATE(4043)] = 150387, + [SMALL_STATE(4044)] = 150406, + [SMALL_STATE(4045)] = 150419, + [SMALL_STATE(4046)] = 150432, + [SMALL_STATE(4047)] = 150451, + [SMALL_STATE(4048)] = 150470, + [SMALL_STATE(4049)] = 150483, + [SMALL_STATE(4050)] = 150502, + [SMALL_STATE(4051)] = 150521, + [SMALL_STATE(4052)] = 150540, + [SMALL_STATE(4053)] = 150559, + [SMALL_STATE(4054)] = 150574, + [SMALL_STATE(4055)] = 150593, + [SMALL_STATE(4056)] = 150612, + [SMALL_STATE(4057)] = 150627, + [SMALL_STATE(4058)] = 150644, + [SMALL_STATE(4059)] = 150663, + [SMALL_STATE(4060)] = 150682, + [SMALL_STATE(4061)] = 150701, + [SMALL_STATE(4062)] = 150720, + [SMALL_STATE(4063)] = 150739, + [SMALL_STATE(4064)] = 150758, + [SMALL_STATE(4065)] = 150777, + [SMALL_STATE(4066)] = 150796, + [SMALL_STATE(4067)] = 150815, + [SMALL_STATE(4068)] = 150834, + [SMALL_STATE(4069)] = 150853, + [SMALL_STATE(4070)] = 150872, + [SMALL_STATE(4071)] = 150891, + [SMALL_STATE(4072)] = 150902, + [SMALL_STATE(4073)] = 150921, + [SMALL_STATE(4074)] = 150936, + [SMALL_STATE(4075)] = 150955, + [SMALL_STATE(4076)] = 150968, + [SMALL_STATE(4077)] = 150987, + [SMALL_STATE(4078)] = 151002, + [SMALL_STATE(4079)] = 151021, + [SMALL_STATE(4080)] = 151040, + [SMALL_STATE(4081)] = 151059, + [SMALL_STATE(4082)] = 151078, + [SMALL_STATE(4083)] = 151097, + [SMALL_STATE(4084)] = 151110, + [SMALL_STATE(4085)] = 151129, + [SMALL_STATE(4086)] = 151148, + [SMALL_STATE(4087)] = 151167, + [SMALL_STATE(4088)] = 151186, + [SMALL_STATE(4089)] = 151201, + [SMALL_STATE(4090)] = 151220, + [SMALL_STATE(4091)] = 151239, + [SMALL_STATE(4092)] = 151250, + [SMALL_STATE(4093)] = 151263, + [SMALL_STATE(4094)] = 151282, + [SMALL_STATE(4095)] = 151301, + [SMALL_STATE(4096)] = 151314, + [SMALL_STATE(4097)] = 151333, + [SMALL_STATE(4098)] = 151352, + [SMALL_STATE(4099)] = 151367, + [SMALL_STATE(4100)] = 151386, + [SMALL_STATE(4101)] = 151405, + [SMALL_STATE(4102)] = 151424, + [SMALL_STATE(4103)] = 151443, + [SMALL_STATE(4104)] = 151462, + [SMALL_STATE(4105)] = 151481, + [SMALL_STATE(4106)] = 151500, + [SMALL_STATE(4107)] = 151519, + [SMALL_STATE(4108)] = 151538, + [SMALL_STATE(4109)] = 151553, + [SMALL_STATE(4110)] = 151568, + [SMALL_STATE(4111)] = 151587, + [SMALL_STATE(4112)] = 151602, + [SMALL_STATE(4113)] = 151615, + [SMALL_STATE(4114)] = 151630, + [SMALL_STATE(4115)] = 151649, + [SMALL_STATE(4116)] = 151664, + [SMALL_STATE(4117)] = 151677, + [SMALL_STATE(4118)] = 151696, + [SMALL_STATE(4119)] = 151715, + [SMALL_STATE(4120)] = 151728, + [SMALL_STATE(4121)] = 151747, + [SMALL_STATE(4122)] = 151766, + [SMALL_STATE(4123)] = 151779, + [SMALL_STATE(4124)] = 151798, + [SMALL_STATE(4125)] = 151815, + [SMALL_STATE(4126)] = 151828, + [SMALL_STATE(4127)] = 151841, + [SMALL_STATE(4128)] = 151860, + [SMALL_STATE(4129)] = 151879, + [SMALL_STATE(4130)] = 151892, + [SMALL_STATE(4131)] = 151905, + [SMALL_STATE(4132)] = 151918, + [SMALL_STATE(4133)] = 151937, + [SMALL_STATE(4134)] = 151950, + [SMALL_STATE(4135)] = 151963, + [SMALL_STATE(4136)] = 151982, + [SMALL_STATE(4137)] = 152001, + [SMALL_STATE(4138)] = 152020, + [SMALL_STATE(4139)] = 152033, + [SMALL_STATE(4140)] = 152052, + [SMALL_STATE(4141)] = 152069, + [SMALL_STATE(4142)] = 152088, + [SMALL_STATE(4143)] = 152107, + [SMALL_STATE(4144)] = 152126, + [SMALL_STATE(4145)] = 152141, + [SMALL_STATE(4146)] = 152156, + [SMALL_STATE(4147)] = 152171, + [SMALL_STATE(4148)] = 152190, + [SMALL_STATE(4149)] = 152203, + [SMALL_STATE(4150)] = 152216, + [SMALL_STATE(4151)] = 152231, + [SMALL_STATE(4152)] = 152246, + [SMALL_STATE(4153)] = 152265, + [SMALL_STATE(4154)] = 152280, + [SMALL_STATE(4155)] = 152299, + [SMALL_STATE(4156)] = 152314, + [SMALL_STATE(4157)] = 152333, + [SMALL_STATE(4158)] = 152348, + [SMALL_STATE(4159)] = 152367, + [SMALL_STATE(4160)] = 152382, + [SMALL_STATE(4161)] = 152401, + [SMALL_STATE(4162)] = 152418, + [SMALL_STATE(4163)] = 152437, + [SMALL_STATE(4164)] = 152452, + [SMALL_STATE(4165)] = 152467, + [SMALL_STATE(4166)] = 152480, + [SMALL_STATE(4167)] = 152496, + [SMALL_STATE(4168)] = 152512, + [SMALL_STATE(4169)] = 152526, + [SMALL_STATE(4170)] = 152540, + [SMALL_STATE(4171)] = 152556, + [SMALL_STATE(4172)] = 152570, + [SMALL_STATE(4173)] = 152586, + [SMALL_STATE(4174)] = 152600, + [SMALL_STATE(4175)] = 152616, + [SMALL_STATE(4176)] = 152630, + [SMALL_STATE(4177)] = 152646, + [SMALL_STATE(4178)] = 152660, + [SMALL_STATE(4179)] = 152674, + [SMALL_STATE(4180)] = 152688, + [SMALL_STATE(4181)] = 152702, + [SMALL_STATE(4182)] = 152716, + [SMALL_STATE(4183)] = 152730, + [SMALL_STATE(4184)] = 152740, + [SMALL_STATE(4185)] = 152754, + [SMALL_STATE(4186)] = 152768, + [SMALL_STATE(4187)] = 152784, + [SMALL_STATE(4188)] = 152800, + [SMALL_STATE(4189)] = 152814, + [SMALL_STATE(4190)] = 152828, + [SMALL_STATE(4191)] = 152844, + [SMALL_STATE(4192)] = 152860, + [SMALL_STATE(4193)] = 152870, + [SMALL_STATE(4194)] = 152886, + [SMALL_STATE(4195)] = 152902, + [SMALL_STATE(4196)] = 152918, + [SMALL_STATE(4197)] = 152934, + [SMALL_STATE(4198)] = 152950, + [SMALL_STATE(4199)] = 152966, + [SMALL_STATE(4200)] = 152982, + [SMALL_STATE(4201)] = 152998, + [SMALL_STATE(4202)] = 153014, + [SMALL_STATE(4203)] = 153028, + [SMALL_STATE(4204)] = 153044, + [SMALL_STATE(4205)] = 153060, + [SMALL_STATE(4206)] = 153076, + [SMALL_STATE(4207)] = 153092, + [SMALL_STATE(4208)] = 153108, + [SMALL_STATE(4209)] = 153124, + [SMALL_STATE(4210)] = 153140, + [SMALL_STATE(4211)] = 153156, + [SMALL_STATE(4212)] = 153170, + [SMALL_STATE(4213)] = 153186, + [SMALL_STATE(4214)] = 153202, + [SMALL_STATE(4215)] = 153216, + [SMALL_STATE(4216)] = 153232, + [SMALL_STATE(4217)] = 153248, + [SMALL_STATE(4218)] = 153264, + [SMALL_STATE(4219)] = 153278, + [SMALL_STATE(4220)] = 153292, + [SMALL_STATE(4221)] = 153306, + [SMALL_STATE(4222)] = 153322, + [SMALL_STATE(4223)] = 153338, + [SMALL_STATE(4224)] = 153354, + [SMALL_STATE(4225)] = 153368, + [SMALL_STATE(4226)] = 153384, + [SMALL_STATE(4227)] = 153398, + [SMALL_STATE(4228)] = 153414, + [SMALL_STATE(4229)] = 153430, + [SMALL_STATE(4230)] = 153444, + [SMALL_STATE(4231)] = 153458, + [SMALL_STATE(4232)] = 153474, + [SMALL_STATE(4233)] = 153488, + [SMALL_STATE(4234)] = 153500, + [SMALL_STATE(4235)] = 153516, + [SMALL_STATE(4236)] = 153532, + [SMALL_STATE(4237)] = 153546, + [SMALL_STATE(4238)] = 153560, + [SMALL_STATE(4239)] = 153576, + [SMALL_STATE(4240)] = 153592, + [SMALL_STATE(4241)] = 153608, + [SMALL_STATE(4242)] = 153622, + [SMALL_STATE(4243)] = 153638, + [SMALL_STATE(4244)] = 153652, + [SMALL_STATE(4245)] = 153668, + [SMALL_STATE(4246)] = 153684, + [SMALL_STATE(4247)] = 153698, + [SMALL_STATE(4248)] = 153714, + [SMALL_STATE(4249)] = 153730, + [SMALL_STATE(4250)] = 153746, + [SMALL_STATE(4251)] = 153762, + [SMALL_STATE(4252)] = 153776, + [SMALL_STATE(4253)] = 153792, + [SMALL_STATE(4254)] = 153808, + [SMALL_STATE(4255)] = 153822, + [SMALL_STATE(4256)] = 153838, + [SMALL_STATE(4257)] = 153854, + [SMALL_STATE(4258)] = 153868, + [SMALL_STATE(4259)] = 153884, + [SMALL_STATE(4260)] = 153900, + [SMALL_STATE(4261)] = 153916, + [SMALL_STATE(4262)] = 153932, + [SMALL_STATE(4263)] = 153948, + [SMALL_STATE(4264)] = 153964, + [SMALL_STATE(4265)] = 153980, + [SMALL_STATE(4266)] = 153996, + [SMALL_STATE(4267)] = 154010, + [SMALL_STATE(4268)] = 154026, + [SMALL_STATE(4269)] = 154042, + [SMALL_STATE(4270)] = 154058, + [SMALL_STATE(4271)] = 154072, + [SMALL_STATE(4272)] = 154088, + [SMALL_STATE(4273)] = 154102, + [SMALL_STATE(4274)] = 154118, + [SMALL_STATE(4275)] = 154134, + [SMALL_STATE(4276)] = 154148, + [SMALL_STATE(4277)] = 154164, + [SMALL_STATE(4278)] = 154174, + [SMALL_STATE(4279)] = 154190, + [SMALL_STATE(4280)] = 154206, + [SMALL_STATE(4281)] = 154222, + [SMALL_STATE(4282)] = 154236, + [SMALL_STATE(4283)] = 154252, + [SMALL_STATE(4284)] = 154268, + [SMALL_STATE(4285)] = 154284, + [SMALL_STATE(4286)] = 154300, + [SMALL_STATE(4287)] = 154316, + [SMALL_STATE(4288)] = 154332, + [SMALL_STATE(4289)] = 154348, + [SMALL_STATE(4290)] = 154364, + [SMALL_STATE(4291)] = 154378, + [SMALL_STATE(4292)] = 154394, + [SMALL_STATE(4293)] = 154410, + [SMALL_STATE(4294)] = 154426, + [SMALL_STATE(4295)] = 154442, + [SMALL_STATE(4296)] = 154458, + [SMALL_STATE(4297)] = 154474, + [SMALL_STATE(4298)] = 154488, + [SMALL_STATE(4299)] = 154504, + [SMALL_STATE(4300)] = 154520, + [SMALL_STATE(4301)] = 154534, + [SMALL_STATE(4302)] = 154548, + [SMALL_STATE(4303)] = 154562, + [SMALL_STATE(4304)] = 154576, + [SMALL_STATE(4305)] = 154592, + [SMALL_STATE(4306)] = 154608, + [SMALL_STATE(4307)] = 154622, + [SMALL_STATE(4308)] = 154638, + [SMALL_STATE(4309)] = 154650, + [SMALL_STATE(4310)] = 154664, + [SMALL_STATE(4311)] = 154678, + [SMALL_STATE(4312)] = 154692, + [SMALL_STATE(4313)] = 154708, + [SMALL_STATE(4314)] = 154722, + [SMALL_STATE(4315)] = 154736, + [SMALL_STATE(4316)] = 154752, + [SMALL_STATE(4317)] = 154768, + [SMALL_STATE(4318)] = 154784, + [SMALL_STATE(4319)] = 154798, + [SMALL_STATE(4320)] = 154814, + [SMALL_STATE(4321)] = 154830, + [SMALL_STATE(4322)] = 154844, + [SMALL_STATE(4323)] = 154860, + [SMALL_STATE(4324)] = 154876, + [SMALL_STATE(4325)] = 154892, + [SMALL_STATE(4326)] = 154908, + [SMALL_STATE(4327)] = 154922, + [SMALL_STATE(4328)] = 154936, + [SMALL_STATE(4329)] = 154952, + [SMALL_STATE(4330)] = 154966, + [SMALL_STATE(4331)] = 154982, + [SMALL_STATE(4332)] = 154998, + [SMALL_STATE(4333)] = 155014, + [SMALL_STATE(4334)] = 155030, + [SMALL_STATE(4335)] = 155044, + [SMALL_STATE(4336)] = 155060, + [SMALL_STATE(4337)] = 155076, + [SMALL_STATE(4338)] = 155092, + [SMALL_STATE(4339)] = 155108, + [SMALL_STATE(4340)] = 155122, + [SMALL_STATE(4341)] = 155136, + [SMALL_STATE(4342)] = 155152, + [SMALL_STATE(4343)] = 155166, + [SMALL_STATE(4344)] = 155182, + [SMALL_STATE(4345)] = 155196, + [SMALL_STATE(4346)] = 155212, + [SMALL_STATE(4347)] = 155226, + [SMALL_STATE(4348)] = 155240, + [SMALL_STATE(4349)] = 155256, + [SMALL_STATE(4350)] = 155272, + [SMALL_STATE(4351)] = 155288, + [SMALL_STATE(4352)] = 155304, + [SMALL_STATE(4353)] = 155318, + [SMALL_STATE(4354)] = 155334, + [SMALL_STATE(4355)] = 155350, + [SMALL_STATE(4356)] = 155366, + [SMALL_STATE(4357)] = 155382, + [SMALL_STATE(4358)] = 155396, + [SMALL_STATE(4359)] = 155412, + [SMALL_STATE(4360)] = 155428, + [SMALL_STATE(4361)] = 155442, + [SMALL_STATE(4362)] = 155458, + [SMALL_STATE(4363)] = 155474, + [SMALL_STATE(4364)] = 155490, + [SMALL_STATE(4365)] = 155506, + [SMALL_STATE(4366)] = 155522, + [SMALL_STATE(4367)] = 155538, + [SMALL_STATE(4368)] = 155554, + [SMALL_STATE(4369)] = 155570, + [SMALL_STATE(4370)] = 155586, + [SMALL_STATE(4371)] = 155602, + [SMALL_STATE(4372)] = 155618, + [SMALL_STATE(4373)] = 155634, + [SMALL_STATE(4374)] = 155650, + [SMALL_STATE(4375)] = 155666, + [SMALL_STATE(4376)] = 155682, + [SMALL_STATE(4377)] = 155698, + [SMALL_STATE(4378)] = 155714, + [SMALL_STATE(4379)] = 155730, + [SMALL_STATE(4380)] = 155746, + [SMALL_STATE(4381)] = 155762, + [SMALL_STATE(4382)] = 155776, + [SMALL_STATE(4383)] = 155792, + [SMALL_STATE(4384)] = 155808, + [SMALL_STATE(4385)] = 155824, + [SMALL_STATE(4386)] = 155838, + [SMALL_STATE(4387)] = 155854, + [SMALL_STATE(4388)] = 155870, + [SMALL_STATE(4389)] = 155886, + [SMALL_STATE(4390)] = 155902, + [SMALL_STATE(4391)] = 155918, + [SMALL_STATE(4392)] = 155932, + [SMALL_STATE(4393)] = 155948, + [SMALL_STATE(4394)] = 155964, + [SMALL_STATE(4395)] = 155980, + [SMALL_STATE(4396)] = 155994, + [SMALL_STATE(4397)] = 156010, + [SMALL_STATE(4398)] = 156024, + [SMALL_STATE(4399)] = 156040, + [SMALL_STATE(4400)] = 156054, + [SMALL_STATE(4401)] = 156070, + [SMALL_STATE(4402)] = 156086, + [SMALL_STATE(4403)] = 156100, + [SMALL_STATE(4404)] = 156114, + [SMALL_STATE(4405)] = 156130, + [SMALL_STATE(4406)] = 156146, + [SMALL_STATE(4407)] = 156162, + [SMALL_STATE(4408)] = 156176, + [SMALL_STATE(4409)] = 156190, + [SMALL_STATE(4410)] = 156206, + [SMALL_STATE(4411)] = 156222, + [SMALL_STATE(4412)] = 156238, + [SMALL_STATE(4413)] = 156254, + [SMALL_STATE(4414)] = 156268, + [SMALL_STATE(4415)] = 156284, + [SMALL_STATE(4416)] = 156298, + [SMALL_STATE(4417)] = 156314, + [SMALL_STATE(4418)] = 156330, + [SMALL_STATE(4419)] = 156346, + [SMALL_STATE(4420)] = 156362, + [SMALL_STATE(4421)] = 156378, + [SMALL_STATE(4422)] = 156394, + [SMALL_STATE(4423)] = 156410, + [SMALL_STATE(4424)] = 156426, + [SMALL_STATE(4425)] = 156440, + [SMALL_STATE(4426)] = 156454, + [SMALL_STATE(4427)] = 156470, + [SMALL_STATE(4428)] = 156482, + [SMALL_STATE(4429)] = 156498, + [SMALL_STATE(4430)] = 156514, + [SMALL_STATE(4431)] = 156528, + [SMALL_STATE(4432)] = 156544, + [SMALL_STATE(4433)] = 156560, + [SMALL_STATE(4434)] = 156576, + [SMALL_STATE(4435)] = 156592, + [SMALL_STATE(4436)] = 156608, + [SMALL_STATE(4437)] = 156624, + [SMALL_STATE(4438)] = 156640, + [SMALL_STATE(4439)] = 156654, + [SMALL_STATE(4440)] = 156670, + [SMALL_STATE(4441)] = 156686, + [SMALL_STATE(4442)] = 156700, + [SMALL_STATE(4443)] = 156716, + [SMALL_STATE(4444)] = 156732, + [SMALL_STATE(4445)] = 156748, + [SMALL_STATE(4446)] = 156764, + [SMALL_STATE(4447)] = 156780, + [SMALL_STATE(4448)] = 156796, + [SMALL_STATE(4449)] = 156810, + [SMALL_STATE(4450)] = 156826, + [SMALL_STATE(4451)] = 156840, + [SMALL_STATE(4452)] = 156856, + [SMALL_STATE(4453)] = 156872, + [SMALL_STATE(4454)] = 156888, + [SMALL_STATE(4455)] = 156898, + [SMALL_STATE(4456)] = 156912, + [SMALL_STATE(4457)] = 156928, + [SMALL_STATE(4458)] = 156944, + [SMALL_STATE(4459)] = 156954, + [SMALL_STATE(4460)] = 156970, + [SMALL_STATE(4461)] = 156984, + [SMALL_STATE(4462)] = 157000, + [SMALL_STATE(4463)] = 157014, + [SMALL_STATE(4464)] = 157028, + [SMALL_STATE(4465)] = 157042, + [SMALL_STATE(4466)] = 157058, + [SMALL_STATE(4467)] = 157074, + [SMALL_STATE(4468)] = 157088, + [SMALL_STATE(4469)] = 157104, + [SMALL_STATE(4470)] = 157118, + [SMALL_STATE(4471)] = 157132, + [SMALL_STATE(4472)] = 157148, + [SMALL_STATE(4473)] = 157162, + [SMALL_STATE(4474)] = 157178, + [SMALL_STATE(4475)] = 157192, + [SMALL_STATE(4476)] = 157206, + [SMALL_STATE(4477)] = 157219, + [SMALL_STATE(4478)] = 157232, + [SMALL_STATE(4479)] = 157243, + [SMALL_STATE(4480)] = 157256, + [SMALL_STATE(4481)] = 157267, + [SMALL_STATE(4482)] = 157278, + [SMALL_STATE(4483)] = 157289, + [SMALL_STATE(4484)] = 157302, + [SMALL_STATE(4485)] = 157313, + [SMALL_STATE(4486)] = 157326, + [SMALL_STATE(4487)] = 157337, + [SMALL_STATE(4488)] = 157348, + [SMALL_STATE(4489)] = 157359, + [SMALL_STATE(4490)] = 157372, + [SMALL_STATE(4491)] = 157383, + [SMALL_STATE(4492)] = 157394, + [SMALL_STATE(4493)] = 157405, + [SMALL_STATE(4494)] = 157416, + [SMALL_STATE(4495)] = 157427, + [SMALL_STATE(4496)] = 157438, + [SMALL_STATE(4497)] = 157449, + [SMALL_STATE(4498)] = 157460, + [SMALL_STATE(4499)] = 157471, + [SMALL_STATE(4500)] = 157482, + [SMALL_STATE(4501)] = 157493, + [SMALL_STATE(4502)] = 157504, + [SMALL_STATE(4503)] = 157515, + [SMALL_STATE(4504)] = 157526, + [SMALL_STATE(4505)] = 157539, + [SMALL_STATE(4506)] = 157552, + [SMALL_STATE(4507)] = 157565, + [SMALL_STATE(4508)] = 157578, + [SMALL_STATE(4509)] = 157589, + [SMALL_STATE(4510)] = 157600, + [SMALL_STATE(4511)] = 157611, + [SMALL_STATE(4512)] = 157622, + [SMALL_STATE(4513)] = 157633, + [SMALL_STATE(4514)] = 157646, + [SMALL_STATE(4515)] = 157659, + [SMALL_STATE(4516)] = 157670, + [SMALL_STATE(4517)] = 157681, + [SMALL_STATE(4518)] = 157692, + [SMALL_STATE(4519)] = 157705, + [SMALL_STATE(4520)] = 157714, + [SMALL_STATE(4521)] = 157725, + [SMALL_STATE(4522)] = 157736, + [SMALL_STATE(4523)] = 157747, + [SMALL_STATE(4524)] = 157760, + [SMALL_STATE(4525)] = 157771, + [SMALL_STATE(4526)] = 157782, + [SMALL_STATE(4527)] = 157795, + [SMALL_STATE(4528)] = 157808, + [SMALL_STATE(4529)] = 157819, + [SMALL_STATE(4530)] = 157832, + [SMALL_STATE(4531)] = 157845, + [SMALL_STATE(4532)] = 157856, + [SMALL_STATE(4533)] = 157867, + [SMALL_STATE(4534)] = 157880, + [SMALL_STATE(4535)] = 157893, + [SMALL_STATE(4536)] = 157906, + [SMALL_STATE(4537)] = 157917, + [SMALL_STATE(4538)] = 157930, + [SMALL_STATE(4539)] = 157943, + [SMALL_STATE(4540)] = 157956, + [SMALL_STATE(4541)] = 157967, + [SMALL_STATE(4542)] = 157980, + [SMALL_STATE(4543)] = 157993, + [SMALL_STATE(4544)] = 158004, + [SMALL_STATE(4545)] = 158017, + [SMALL_STATE(4546)] = 158028, + [SMALL_STATE(4547)] = 158039, + [SMALL_STATE(4548)] = 158050, + [SMALL_STATE(4549)] = 158063, + [SMALL_STATE(4550)] = 158074, + [SMALL_STATE(4551)] = 158085, + [SMALL_STATE(4552)] = 158098, + [SMALL_STATE(4553)] = 158111, + [SMALL_STATE(4554)] = 158124, + [SMALL_STATE(4555)] = 158135, + [SMALL_STATE(4556)] = 158146, + [SMALL_STATE(4557)] = 158157, + [SMALL_STATE(4558)] = 158168, + [SMALL_STATE(4559)] = 158181, + [SMALL_STATE(4560)] = 158194, + [SMALL_STATE(4561)] = 158205, + [SMALL_STATE(4562)] = 158218, + [SMALL_STATE(4563)] = 158231, + [SMALL_STATE(4564)] = 158244, + [SMALL_STATE(4565)] = 158257, + [SMALL_STATE(4566)] = 158270, + [SMALL_STATE(4567)] = 158281, + [SMALL_STATE(4568)] = 158294, + [SMALL_STATE(4569)] = 158307, + [SMALL_STATE(4570)] = 158320, + [SMALL_STATE(4571)] = 158333, + [SMALL_STATE(4572)] = 158344, + [SMALL_STATE(4573)] = 158357, + [SMALL_STATE(4574)] = 158370, + [SMALL_STATE(4575)] = 158383, + [SMALL_STATE(4576)] = 158394, + [SMALL_STATE(4577)] = 158405, + [SMALL_STATE(4578)] = 158418, + [SMALL_STATE(4579)] = 158431, + [SMALL_STATE(4580)] = 158442, + [SMALL_STATE(4581)] = 158453, + [SMALL_STATE(4582)] = 158466, + [SMALL_STATE(4583)] = 158477, + [SMALL_STATE(4584)] = 158488, + [SMALL_STATE(4585)] = 158499, + [SMALL_STATE(4586)] = 158512, + [SMALL_STATE(4587)] = 158525, + [SMALL_STATE(4588)] = 158536, + [SMALL_STATE(4589)] = 158547, + [SMALL_STATE(4590)] = 158558, + [SMALL_STATE(4591)] = 158569, + [SMALL_STATE(4592)] = 158582, + [SMALL_STATE(4593)] = 158595, + [SMALL_STATE(4594)] = 158608, + [SMALL_STATE(4595)] = 158621, + [SMALL_STATE(4596)] = 158634, + [SMALL_STATE(4597)] = 158647, + [SMALL_STATE(4598)] = 158660, + [SMALL_STATE(4599)] = 158673, + [SMALL_STATE(4600)] = 158686, + [SMALL_STATE(4601)] = 158697, + [SMALL_STATE(4602)] = 158708, + [SMALL_STATE(4603)] = 158719, + [SMALL_STATE(4604)] = 158732, + [SMALL_STATE(4605)] = 158745, + [SMALL_STATE(4606)] = 158756, + [SMALL_STATE(4607)] = 158769, + [SMALL_STATE(4608)] = 158782, + [SMALL_STATE(4609)] = 158793, + [SMALL_STATE(4610)] = 158806, + [SMALL_STATE(4611)] = 158817, + [SMALL_STATE(4612)] = 158830, + [SMALL_STATE(4613)] = 158843, + [SMALL_STATE(4614)] = 158856, + [SMALL_STATE(4615)] = 158867, + [SMALL_STATE(4616)] = 158880, + [SMALL_STATE(4617)] = 158893, + [SMALL_STATE(4618)] = 158904, + [SMALL_STATE(4619)] = 158915, + [SMALL_STATE(4620)] = 158926, + [SMALL_STATE(4621)] = 158937, + [SMALL_STATE(4622)] = 158950, + [SMALL_STATE(4623)] = 158961, + [SMALL_STATE(4624)] = 158972, + [SMALL_STATE(4625)] = 158983, + [SMALL_STATE(4626)] = 158994, + [SMALL_STATE(4627)] = 159007, + [SMALL_STATE(4628)] = 159020, + [SMALL_STATE(4629)] = 159031, + [SMALL_STATE(4630)] = 159044, + [SMALL_STATE(4631)] = 159057, + [SMALL_STATE(4632)] = 159066, + [SMALL_STATE(4633)] = 159079, + [SMALL_STATE(4634)] = 159092, + [SMALL_STATE(4635)] = 159105, + [SMALL_STATE(4636)] = 159118, + [SMALL_STATE(4637)] = 159131, + [SMALL_STATE(4638)] = 159144, + [SMALL_STATE(4639)] = 159157, + [SMALL_STATE(4640)] = 159170, + [SMALL_STATE(4641)] = 159181, + [SMALL_STATE(4642)] = 159194, + [SMALL_STATE(4643)] = 159207, + [SMALL_STATE(4644)] = 159218, + [SMALL_STATE(4645)] = 159231, + [SMALL_STATE(4646)] = 159244, + [SMALL_STATE(4647)] = 159255, + [SMALL_STATE(4648)] = 159268, + [SMALL_STATE(4649)] = 159279, + [SMALL_STATE(4650)] = 159292, + [SMALL_STATE(4651)] = 159305, + [SMALL_STATE(4652)] = 159318, + [SMALL_STATE(4653)] = 159329, + [SMALL_STATE(4654)] = 159342, + [SMALL_STATE(4655)] = 159355, + [SMALL_STATE(4656)] = 159368, + [SMALL_STATE(4657)] = 159379, + [SMALL_STATE(4658)] = 159392, + [SMALL_STATE(4659)] = 159405, + [SMALL_STATE(4660)] = 159418, + [SMALL_STATE(4661)] = 159431, + [SMALL_STATE(4662)] = 159442, + [SMALL_STATE(4663)] = 159455, + [SMALL_STATE(4664)] = 159468, + [SMALL_STATE(4665)] = 159479, + [SMALL_STATE(4666)] = 159490, + [SMALL_STATE(4667)] = 159503, + [SMALL_STATE(4668)] = 159516, + [SMALL_STATE(4669)] = 159527, + [SMALL_STATE(4670)] = 159538, + [SMALL_STATE(4671)] = 159549, + [SMALL_STATE(4672)] = 159562, + [SMALL_STATE(4673)] = 159575, + [SMALL_STATE(4674)] = 159588, + [SMALL_STATE(4675)] = 159599, + [SMALL_STATE(4676)] = 159610, + [SMALL_STATE(4677)] = 159621, + [SMALL_STATE(4678)] = 159632, + [SMALL_STATE(4679)] = 159643, + [SMALL_STATE(4680)] = 159656, + [SMALL_STATE(4681)] = 159667, + [SMALL_STATE(4682)] = 159680, + [SMALL_STATE(4683)] = 159693, + [SMALL_STATE(4684)] = 159706, + [SMALL_STATE(4685)] = 159717, + [SMALL_STATE(4686)] = 159728, + [SMALL_STATE(4687)] = 159741, + [SMALL_STATE(4688)] = 159754, + [SMALL_STATE(4689)] = 159765, + [SMALL_STATE(4690)] = 159776, + [SMALL_STATE(4691)] = 159789, + [SMALL_STATE(4692)] = 159800, + [SMALL_STATE(4693)] = 159813, + [SMALL_STATE(4694)] = 159826, + [SMALL_STATE(4695)] = 159837, + [SMALL_STATE(4696)] = 159848, + [SMALL_STATE(4697)] = 159861, + [SMALL_STATE(4698)] = 159874, + [SMALL_STATE(4699)] = 159885, + [SMALL_STATE(4700)] = 159898, + [SMALL_STATE(4701)] = 159911, + [SMALL_STATE(4702)] = 159924, + [SMALL_STATE(4703)] = 159935, + [SMALL_STATE(4704)] = 159946, + [SMALL_STATE(4705)] = 159957, + [SMALL_STATE(4706)] = 159970, + [SMALL_STATE(4707)] = 159981, + [SMALL_STATE(4708)] = 159994, + [SMALL_STATE(4709)] = 160007, + [SMALL_STATE(4710)] = 160018, + [SMALL_STATE(4711)] = 160031, + [SMALL_STATE(4712)] = 160042, + [SMALL_STATE(4713)] = 160055, + [SMALL_STATE(4714)] = 160066, + [SMALL_STATE(4715)] = 160079, + [SMALL_STATE(4716)] = 160090, + [SMALL_STATE(4717)] = 160101, + [SMALL_STATE(4718)] = 160112, + [SMALL_STATE(4719)] = 160123, + [SMALL_STATE(4720)] = 160136, + [SMALL_STATE(4721)] = 160147, + [SMALL_STATE(4722)] = 160158, + [SMALL_STATE(4723)] = 160169, + [SMALL_STATE(4724)] = 160180, + [SMALL_STATE(4725)] = 160191, + [SMALL_STATE(4726)] = 160204, + [SMALL_STATE(4727)] = 160215, + [SMALL_STATE(4728)] = 160228, + [SMALL_STATE(4729)] = 160241, + [SMALL_STATE(4730)] = 160252, + [SMALL_STATE(4731)] = 160265, + [SMALL_STATE(4732)] = 160278, + [SMALL_STATE(4733)] = 160289, + [SMALL_STATE(4734)] = 160302, + [SMALL_STATE(4735)] = 160315, + [SMALL_STATE(4736)] = 160328, + [SMALL_STATE(4737)] = 160341, + [SMALL_STATE(4738)] = 160354, + [SMALL_STATE(4739)] = 160367, + [SMALL_STATE(4740)] = 160380, + [SMALL_STATE(4741)] = 160393, + [SMALL_STATE(4742)] = 160406, + [SMALL_STATE(4743)] = 160419, + [SMALL_STATE(4744)] = 160430, + [SMALL_STATE(4745)] = 160443, + [SMALL_STATE(4746)] = 160456, + [SMALL_STATE(4747)] = 160467, + [SMALL_STATE(4748)] = 160480, + [SMALL_STATE(4749)] = 160493, + [SMALL_STATE(4750)] = 160506, + [SMALL_STATE(4751)] = 160519, + [SMALL_STATE(4752)] = 160530, + [SMALL_STATE(4753)] = 160543, + [SMALL_STATE(4754)] = 160556, + [SMALL_STATE(4755)] = 160569, + [SMALL_STATE(4756)] = 160580, + [SMALL_STATE(4757)] = 160591, + [SMALL_STATE(4758)] = 160602, + [SMALL_STATE(4759)] = 160615, + [SMALL_STATE(4760)] = 160626, + [SMALL_STATE(4761)] = 160637, + [SMALL_STATE(4762)] = 160648, + [SMALL_STATE(4763)] = 160661, + [SMALL_STATE(4764)] = 160672, + [SMALL_STATE(4765)] = 160685, + [SMALL_STATE(4766)] = 160696, + [SMALL_STATE(4767)] = 160707, + [SMALL_STATE(4768)] = 160720, + [SMALL_STATE(4769)] = 160731, + [SMALL_STATE(4770)] = 160744, + [SMALL_STATE(4771)] = 160757, + [SMALL_STATE(4772)] = 160768, + [SMALL_STATE(4773)] = 160781, + [SMALL_STATE(4774)] = 160792, + [SMALL_STATE(4775)] = 160803, + [SMALL_STATE(4776)] = 160814, + [SMALL_STATE(4777)] = 160825, + [SMALL_STATE(4778)] = 160838, + [SMALL_STATE(4779)] = 160849, + [SMALL_STATE(4780)] = 160860, + [SMALL_STATE(4781)] = 160871, + [SMALL_STATE(4782)] = 160882, + [SMALL_STATE(4783)] = 160895, + [SMALL_STATE(4784)] = 160906, + [SMALL_STATE(4785)] = 160919, + [SMALL_STATE(4786)] = 160932, + [SMALL_STATE(4787)] = 160945, + [SMALL_STATE(4788)] = 160958, + [SMALL_STATE(4789)] = 160971, + [SMALL_STATE(4790)] = 160984, + [SMALL_STATE(4791)] = 160997, + [SMALL_STATE(4792)] = 161010, + [SMALL_STATE(4793)] = 161023, + [SMALL_STATE(4794)] = 161034, + [SMALL_STATE(4795)] = 161047, + [SMALL_STATE(4796)] = 161060, + [SMALL_STATE(4797)] = 161073, + [SMALL_STATE(4798)] = 161086, + [SMALL_STATE(4799)] = 161099, + [SMALL_STATE(4800)] = 161110, + [SMALL_STATE(4801)] = 161123, + [SMALL_STATE(4802)] = 161136, + [SMALL_STATE(4803)] = 161147, + [SMALL_STATE(4804)] = 161160, + [SMALL_STATE(4805)] = 161173, + [SMALL_STATE(4806)] = 161186, + [SMALL_STATE(4807)] = 161197, + [SMALL_STATE(4808)] = 161210, + [SMALL_STATE(4809)] = 161223, + [SMALL_STATE(4810)] = 161236, + [SMALL_STATE(4811)] = 161249, + [SMALL_STATE(4812)] = 161262, + [SMALL_STATE(4813)] = 161275, + [SMALL_STATE(4814)] = 161288, + [SMALL_STATE(4815)] = 161301, + [SMALL_STATE(4816)] = 161312, + [SMALL_STATE(4817)] = 161325, + [SMALL_STATE(4818)] = 161338, + [SMALL_STATE(4819)] = 161351, + [SMALL_STATE(4820)] = 161362, + [SMALL_STATE(4821)] = 161373, + [SMALL_STATE(4822)] = 161386, + [SMALL_STATE(4823)] = 161399, + [SMALL_STATE(4824)] = 161410, + [SMALL_STATE(4825)] = 161421, + [SMALL_STATE(4826)] = 161434, + [SMALL_STATE(4827)] = 161445, + [SMALL_STATE(4828)] = 161456, + [SMALL_STATE(4829)] = 161467, + [SMALL_STATE(4830)] = 161480, + [SMALL_STATE(4831)] = 161491, + [SMALL_STATE(4832)] = 161504, + [SMALL_STATE(4833)] = 161515, + [SMALL_STATE(4834)] = 161526, + [SMALL_STATE(4835)] = 161537, + [SMALL_STATE(4836)] = 161550, + [SMALL_STATE(4837)] = 161563, + [SMALL_STATE(4838)] = 161574, + [SMALL_STATE(4839)] = 161587, + [SMALL_STATE(4840)] = 161598, + [SMALL_STATE(4841)] = 161611, + [SMALL_STATE(4842)] = 161624, + [SMALL_STATE(4843)] = 161637, + [SMALL_STATE(4844)] = 161650, + [SMALL_STATE(4845)] = 161663, + [SMALL_STATE(4846)] = 161676, + [SMALL_STATE(4847)] = 161689, + [SMALL_STATE(4848)] = 161702, + [SMALL_STATE(4849)] = 161715, + [SMALL_STATE(4850)] = 161728, + [SMALL_STATE(4851)] = 161739, + [SMALL_STATE(4852)] = 161752, + [SMALL_STATE(4853)] = 161763, + [SMALL_STATE(4854)] = 161774, + [SMALL_STATE(4855)] = 161787, + [SMALL_STATE(4856)] = 161800, + [SMALL_STATE(4857)] = 161811, + [SMALL_STATE(4858)] = 161824, + [SMALL_STATE(4859)] = 161837, + [SMALL_STATE(4860)] = 161848, + [SMALL_STATE(4861)] = 161859, + [SMALL_STATE(4862)] = 161872, + [SMALL_STATE(4863)] = 161885, + [SMALL_STATE(4864)] = 161898, + [SMALL_STATE(4865)] = 161911, + [SMALL_STATE(4866)] = 161924, + [SMALL_STATE(4867)] = 161937, + [SMALL_STATE(4868)] = 161948, + [SMALL_STATE(4869)] = 161961, + [SMALL_STATE(4870)] = 161974, + [SMALL_STATE(4871)] = 161987, + [SMALL_STATE(4872)] = 162000, + [SMALL_STATE(4873)] = 162013, + [SMALL_STATE(4874)] = 162026, + [SMALL_STATE(4875)] = 162039, + [SMALL_STATE(4876)] = 162052, + [SMALL_STATE(4877)] = 162065, + [SMALL_STATE(4878)] = 162078, + [SMALL_STATE(4879)] = 162091, + [SMALL_STATE(4880)] = 162104, + [SMALL_STATE(4881)] = 162117, + [SMALL_STATE(4882)] = 162130, + [SMALL_STATE(4883)] = 162143, + [SMALL_STATE(4884)] = 162156, + [SMALL_STATE(4885)] = 162169, + [SMALL_STATE(4886)] = 162182, + [SMALL_STATE(4887)] = 162195, + [SMALL_STATE(4888)] = 162208, + [SMALL_STATE(4889)] = 162221, + [SMALL_STATE(4890)] = 162234, + [SMALL_STATE(4891)] = 162247, + [SMALL_STATE(4892)] = 162260, + [SMALL_STATE(4893)] = 162273, + [SMALL_STATE(4894)] = 162286, + [SMALL_STATE(4895)] = 162299, + [SMALL_STATE(4896)] = 162312, + [SMALL_STATE(4897)] = 162325, + [SMALL_STATE(4898)] = 162338, + [SMALL_STATE(4899)] = 162351, + [SMALL_STATE(4900)] = 162364, + [SMALL_STATE(4901)] = 162377, + [SMALL_STATE(4902)] = 162390, + [SMALL_STATE(4903)] = 162403, + [SMALL_STATE(4904)] = 162416, + [SMALL_STATE(4905)] = 162429, + [SMALL_STATE(4906)] = 162442, + [SMALL_STATE(4907)] = 162455, + [SMALL_STATE(4908)] = 162468, + [SMALL_STATE(4909)] = 162481, + [SMALL_STATE(4910)] = 162494, + [SMALL_STATE(4911)] = 162507, + [SMALL_STATE(4912)] = 162520, + [SMALL_STATE(4913)] = 162533, + [SMALL_STATE(4914)] = 162546, + [SMALL_STATE(4915)] = 162559, + [SMALL_STATE(4916)] = 162572, + [SMALL_STATE(4917)] = 162585, + [SMALL_STATE(4918)] = 162598, + [SMALL_STATE(4919)] = 162611, + [SMALL_STATE(4920)] = 162624, + [SMALL_STATE(4921)] = 162637, + [SMALL_STATE(4922)] = 162650, + [SMALL_STATE(4923)] = 162663, + [SMALL_STATE(4924)] = 162676, + [SMALL_STATE(4925)] = 162687, + [SMALL_STATE(4926)] = 162700, + [SMALL_STATE(4927)] = 162713, + [SMALL_STATE(4928)] = 162726, + [SMALL_STATE(4929)] = 162739, + [SMALL_STATE(4930)] = 162752, + [SMALL_STATE(4931)] = 162765, + [SMALL_STATE(4932)] = 162776, + [SMALL_STATE(4933)] = 162789, + [SMALL_STATE(4934)] = 162802, + [SMALL_STATE(4935)] = 162815, + [SMALL_STATE(4936)] = 162828, + [SMALL_STATE(4937)] = 162841, + [SMALL_STATE(4938)] = 162854, + [SMALL_STATE(4939)] = 162867, + [SMALL_STATE(4940)] = 162880, + [SMALL_STATE(4941)] = 162893, + [SMALL_STATE(4942)] = 162906, + [SMALL_STATE(4943)] = 162919, + [SMALL_STATE(4944)] = 162932, + [SMALL_STATE(4945)] = 162945, + [SMALL_STATE(4946)] = 162958, + [SMALL_STATE(4947)] = 162971, + [SMALL_STATE(4948)] = 162984, + [SMALL_STATE(4949)] = 162997, + [SMALL_STATE(4950)] = 163010, + [SMALL_STATE(4951)] = 163021, + [SMALL_STATE(4952)] = 163034, + [SMALL_STATE(4953)] = 163047, + [SMALL_STATE(4954)] = 163060, + [SMALL_STATE(4955)] = 163073, + [SMALL_STATE(4956)] = 163086, + [SMALL_STATE(4957)] = 163099, + [SMALL_STATE(4958)] = 163112, + [SMALL_STATE(4959)] = 163125, + [SMALL_STATE(4960)] = 163138, + [SMALL_STATE(4961)] = 163151, + [SMALL_STATE(4962)] = 163164, + [SMALL_STATE(4963)] = 163177, + [SMALL_STATE(4964)] = 163190, + [SMALL_STATE(4965)] = 163203, + [SMALL_STATE(4966)] = 163216, + [SMALL_STATE(4967)] = 163229, + [SMALL_STATE(4968)] = 163240, + [SMALL_STATE(4969)] = 163253, + [SMALL_STATE(4970)] = 163266, + [SMALL_STATE(4971)] = 163279, + [SMALL_STATE(4972)] = 163292, + [SMALL_STATE(4973)] = 163305, + [SMALL_STATE(4974)] = 163318, + [SMALL_STATE(4975)] = 163331, + [SMALL_STATE(4976)] = 163344, + [SMALL_STATE(4977)] = 163357, + [SMALL_STATE(4978)] = 163370, + [SMALL_STATE(4979)] = 163383, + [SMALL_STATE(4980)] = 163396, + [SMALL_STATE(4981)] = 163409, + [SMALL_STATE(4982)] = 163422, + [SMALL_STATE(4983)] = 163435, + [SMALL_STATE(4984)] = 163448, + [SMALL_STATE(4985)] = 163461, + [SMALL_STATE(4986)] = 163472, + [SMALL_STATE(4987)] = 163485, + [SMALL_STATE(4988)] = 163498, + [SMALL_STATE(4989)] = 163511, + [SMALL_STATE(4990)] = 163524, + [SMALL_STATE(4991)] = 163537, + [SMALL_STATE(4992)] = 163550, + [SMALL_STATE(4993)] = 163563, + [SMALL_STATE(4994)] = 163576, + [SMALL_STATE(4995)] = 163587, + [SMALL_STATE(4996)] = 163600, + [SMALL_STATE(4997)] = 163613, + [SMALL_STATE(4998)] = 163626, + [SMALL_STATE(4999)] = 163639, + [SMALL_STATE(5000)] = 163652, + [SMALL_STATE(5001)] = 163665, + [SMALL_STATE(5002)] = 163676, + [SMALL_STATE(5003)] = 163689, + [SMALL_STATE(5004)] = 163702, + [SMALL_STATE(5005)] = 163715, + [SMALL_STATE(5006)] = 163728, + [SMALL_STATE(5007)] = 163741, + [SMALL_STATE(5008)] = 163754, + [SMALL_STATE(5009)] = 163767, + [SMALL_STATE(5010)] = 163778, + [SMALL_STATE(5011)] = 163791, + [SMALL_STATE(5012)] = 163804, + [SMALL_STATE(5013)] = 163817, + [SMALL_STATE(5014)] = 163830, + [SMALL_STATE(5015)] = 163841, + [SMALL_STATE(5016)] = 163854, + [SMALL_STATE(5017)] = 163867, + [SMALL_STATE(5018)] = 163878, + [SMALL_STATE(5019)] = 163891, + [SMALL_STATE(5020)] = 163904, + [SMALL_STATE(5021)] = 163917, + [SMALL_STATE(5022)] = 163930, + [SMALL_STATE(5023)] = 163939, + [SMALL_STATE(5024)] = 163952, + [SMALL_STATE(5025)] = 163965, + [SMALL_STATE(5026)] = 163978, + [SMALL_STATE(5027)] = 163991, + [SMALL_STATE(5028)] = 164004, + [SMALL_STATE(5029)] = 164015, + [SMALL_STATE(5030)] = 164028, + [SMALL_STATE(5031)] = 164041, + [SMALL_STATE(5032)] = 164054, + [SMALL_STATE(5033)] = 164067, + [SMALL_STATE(5034)] = 164080, + [SMALL_STATE(5035)] = 164093, + [SMALL_STATE(5036)] = 164106, + [SMALL_STATE(5037)] = 164119, + [SMALL_STATE(5038)] = 164130, + [SMALL_STATE(5039)] = 164143, + [SMALL_STATE(5040)] = 164156, + [SMALL_STATE(5041)] = 164169, + [SMALL_STATE(5042)] = 164182, + [SMALL_STATE(5043)] = 164193, + [SMALL_STATE(5044)] = 164206, + [SMALL_STATE(5045)] = 164219, + [SMALL_STATE(5046)] = 164232, + [SMALL_STATE(5047)] = 164245, + [SMALL_STATE(5048)] = 164258, + [SMALL_STATE(5049)] = 164271, + [SMALL_STATE(5050)] = 164284, + [SMALL_STATE(5051)] = 164297, + [SMALL_STATE(5052)] = 164310, + [SMALL_STATE(5053)] = 164323, + [SMALL_STATE(5054)] = 164336, + [SMALL_STATE(5055)] = 164349, + [SMALL_STATE(5056)] = 164362, + [SMALL_STATE(5057)] = 164375, + [SMALL_STATE(5058)] = 164386, + [SMALL_STATE(5059)] = 164399, + [SMALL_STATE(5060)] = 164412, + [SMALL_STATE(5061)] = 164425, + [SMALL_STATE(5062)] = 164438, + [SMALL_STATE(5063)] = 164451, + [SMALL_STATE(5064)] = 164464, + [SMALL_STATE(5065)] = 164477, + [SMALL_STATE(5066)] = 164490, + [SMALL_STATE(5067)] = 164503, + [SMALL_STATE(5068)] = 164514, + [SMALL_STATE(5069)] = 164527, + [SMALL_STATE(5070)] = 164540, + [SMALL_STATE(5071)] = 164549, + [SMALL_STATE(5072)] = 164562, + [SMALL_STATE(5073)] = 164575, + [SMALL_STATE(5074)] = 164586, + [SMALL_STATE(5075)] = 164597, + [SMALL_STATE(5076)] = 164610, + [SMALL_STATE(5077)] = 164623, + [SMALL_STATE(5078)] = 164636, + [SMALL_STATE(5079)] = 164649, + [SMALL_STATE(5080)] = 164662, + [SMALL_STATE(5081)] = 164675, + [SMALL_STATE(5082)] = 164684, + [SMALL_STATE(5083)] = 164697, + [SMALL_STATE(5084)] = 164710, + [SMALL_STATE(5085)] = 164723, + [SMALL_STATE(5086)] = 164736, + [SMALL_STATE(5087)] = 164749, + [SMALL_STATE(5088)] = 164762, + [SMALL_STATE(5089)] = 164771, + [SMALL_STATE(5090)] = 164784, + [SMALL_STATE(5091)] = 164797, + [SMALL_STATE(5092)] = 164810, + [SMALL_STATE(5093)] = 164823, + [SMALL_STATE(5094)] = 164834, + [SMALL_STATE(5095)] = 164847, + [SMALL_STATE(5096)] = 164860, + [SMALL_STATE(5097)] = 164873, + [SMALL_STATE(5098)] = 164886, + [SMALL_STATE(5099)] = 164899, + [SMALL_STATE(5100)] = 164912, + [SMALL_STATE(5101)] = 164925, + [SMALL_STATE(5102)] = 164938, + [SMALL_STATE(5103)] = 164951, + [SMALL_STATE(5104)] = 164962, + [SMALL_STATE(5105)] = 164975, + [SMALL_STATE(5106)] = 164986, + [SMALL_STATE(5107)] = 164999, + [SMALL_STATE(5108)] = 165012, + [SMALL_STATE(5109)] = 165025, + [SMALL_STATE(5110)] = 165038, + [SMALL_STATE(5111)] = 165051, + [SMALL_STATE(5112)] = 165064, + [SMALL_STATE(5113)] = 165077, + [SMALL_STATE(5114)] = 165088, + [SMALL_STATE(5115)] = 165101, + [SMALL_STATE(5116)] = 165114, + [SMALL_STATE(5117)] = 165127, + [SMALL_STATE(5118)] = 165138, + [SMALL_STATE(5119)] = 165149, + [SMALL_STATE(5120)] = 165162, + [SMALL_STATE(5121)] = 165173, + [SMALL_STATE(5122)] = 165186, + [SMALL_STATE(5123)] = 165199, + [SMALL_STATE(5124)] = 165210, + [SMALL_STATE(5125)] = 165223, + [SMALL_STATE(5126)] = 165234, + [SMALL_STATE(5127)] = 165247, + [SMALL_STATE(5128)] = 165258, + [SMALL_STATE(5129)] = 165271, + [SMALL_STATE(5130)] = 165284, + [SMALL_STATE(5131)] = 165297, + [SMALL_STATE(5132)] = 165310, + [SMALL_STATE(5133)] = 165323, + [SMALL_STATE(5134)] = 165336, + [SMALL_STATE(5135)] = 165349, + [SMALL_STATE(5136)] = 165362, + [SMALL_STATE(5137)] = 165375, + [SMALL_STATE(5138)] = 165386, + [SMALL_STATE(5139)] = 165399, + [SMALL_STATE(5140)] = 165412, + [SMALL_STATE(5141)] = 165425, + [SMALL_STATE(5142)] = 165438, + [SMALL_STATE(5143)] = 165451, + [SMALL_STATE(5144)] = 165464, + [SMALL_STATE(5145)] = 165477, + [SMALL_STATE(5146)] = 165490, + [SMALL_STATE(5147)] = 165503, + [SMALL_STATE(5148)] = 165516, + [SMALL_STATE(5149)] = 165529, + [SMALL_STATE(5150)] = 165542, + [SMALL_STATE(5151)] = 165555, + [SMALL_STATE(5152)] = 165568, + [SMALL_STATE(5153)] = 165581, + [SMALL_STATE(5154)] = 165594, + [SMALL_STATE(5155)] = 165607, + [SMALL_STATE(5156)] = 165620, + [SMALL_STATE(5157)] = 165633, + [SMALL_STATE(5158)] = 165646, + [SMALL_STATE(5159)] = 165659, + [SMALL_STATE(5160)] = 165670, + [SMALL_STATE(5161)] = 165683, + [SMALL_STATE(5162)] = 165696, + [SMALL_STATE(5163)] = 165709, + [SMALL_STATE(5164)] = 165722, + [SMALL_STATE(5165)] = 165735, + [SMALL_STATE(5166)] = 165748, + [SMALL_STATE(5167)] = 165761, + [SMALL_STATE(5168)] = 165774, + [SMALL_STATE(5169)] = 165787, + [SMALL_STATE(5170)] = 165800, + [SMALL_STATE(5171)] = 165813, + [SMALL_STATE(5172)] = 165824, + [SMALL_STATE(5173)] = 165837, + [SMALL_STATE(5174)] = 165850, + [SMALL_STATE(5175)] = 165863, + [SMALL_STATE(5176)] = 165876, + [SMALL_STATE(5177)] = 165889, + [SMALL_STATE(5178)] = 165902, + [SMALL_STATE(5179)] = 165915, + [SMALL_STATE(5180)] = 165926, + [SMALL_STATE(5181)] = 165937, + [SMALL_STATE(5182)] = 165950, + [SMALL_STATE(5183)] = 165963, + [SMALL_STATE(5184)] = 165974, + [SMALL_STATE(5185)] = 165987, + [SMALL_STATE(5186)] = 166000, + [SMALL_STATE(5187)] = 166013, + [SMALL_STATE(5188)] = 166026, + [SMALL_STATE(5189)] = 166037, + [SMALL_STATE(5190)] = 166050, + [SMALL_STATE(5191)] = 166063, + [SMALL_STATE(5192)] = 166076, + [SMALL_STATE(5193)] = 166087, + [SMALL_STATE(5194)] = 166098, + [SMALL_STATE(5195)] = 166111, + [SMALL_STATE(5196)] = 166124, + [SMALL_STATE(5197)] = 166137, + [SMALL_STATE(5198)] = 166148, + [SMALL_STATE(5199)] = 166161, + [SMALL_STATE(5200)] = 166174, + [SMALL_STATE(5201)] = 166187, + [SMALL_STATE(5202)] = 166200, + [SMALL_STATE(5203)] = 166213, + [SMALL_STATE(5204)] = 166226, + [SMALL_STATE(5205)] = 166239, + [SMALL_STATE(5206)] = 166252, + [SMALL_STATE(5207)] = 166265, + [SMALL_STATE(5208)] = 166278, + [SMALL_STATE(5209)] = 166291, + [SMALL_STATE(5210)] = 166304, + [SMALL_STATE(5211)] = 166317, + [SMALL_STATE(5212)] = 166330, + [SMALL_STATE(5213)] = 166341, + [SMALL_STATE(5214)] = 166354, + [SMALL_STATE(5215)] = 166367, + [SMALL_STATE(5216)] = 166380, + [SMALL_STATE(5217)] = 166393, + [SMALL_STATE(5218)] = 166406, + [SMALL_STATE(5219)] = 166419, + [SMALL_STATE(5220)] = 166432, + [SMALL_STATE(5221)] = 166445, + [SMALL_STATE(5222)] = 166458, + [SMALL_STATE(5223)] = 166471, + [SMALL_STATE(5224)] = 166484, + [SMALL_STATE(5225)] = 166497, + [SMALL_STATE(5226)] = 166508, + [SMALL_STATE(5227)] = 166521, + [SMALL_STATE(5228)] = 166534, + [SMALL_STATE(5229)] = 166547, + [SMALL_STATE(5230)] = 166560, + [SMALL_STATE(5231)] = 166573, + [SMALL_STATE(5232)] = 166586, + [SMALL_STATE(5233)] = 166599, + [SMALL_STATE(5234)] = 166612, + [SMALL_STATE(5235)] = 166625, + [SMALL_STATE(5236)] = 166638, + [SMALL_STATE(5237)] = 166651, + [SMALL_STATE(5238)] = 166664, + [SMALL_STATE(5239)] = 166677, + [SMALL_STATE(5240)] = 166690, + [SMALL_STATE(5241)] = 166703, + [SMALL_STATE(5242)] = 166716, + [SMALL_STATE(5243)] = 166729, + [SMALL_STATE(5244)] = 166740, + [SMALL_STATE(5245)] = 166753, + [SMALL_STATE(5246)] = 166764, + [SMALL_STATE(5247)] = 166777, + [SMALL_STATE(5248)] = 166790, + [SMALL_STATE(5249)] = 166803, + [SMALL_STATE(5250)] = 166816, + [SMALL_STATE(5251)] = 166829, + [SMALL_STATE(5252)] = 166842, + [SMALL_STATE(5253)] = 166853, + [SMALL_STATE(5254)] = 166864, + [SMALL_STATE(5255)] = 166877, + [SMALL_STATE(5256)] = 166890, + [SMALL_STATE(5257)] = 166903, + [SMALL_STATE(5258)] = 166916, + [SMALL_STATE(5259)] = 166929, + [SMALL_STATE(5260)] = 166942, + [SMALL_STATE(5261)] = 166955, + [SMALL_STATE(5262)] = 166966, + [SMALL_STATE(5263)] = 166979, + [SMALL_STATE(5264)] = 166992, + [SMALL_STATE(5265)] = 167005, + [SMALL_STATE(5266)] = 167018, + [SMALL_STATE(5267)] = 167031, + [SMALL_STATE(5268)] = 167044, + [SMALL_STATE(5269)] = 167055, + [SMALL_STATE(5270)] = 167065, + [SMALL_STATE(5271)] = 167075, + [SMALL_STATE(5272)] = 167085, + [SMALL_STATE(5273)] = 167095, + [SMALL_STATE(5274)] = 167103, + [SMALL_STATE(5275)] = 167113, + [SMALL_STATE(5276)] = 167121, + [SMALL_STATE(5277)] = 167129, + [SMALL_STATE(5278)] = 167139, + [SMALL_STATE(5279)] = 167149, + [SMALL_STATE(5280)] = 167159, + [SMALL_STATE(5281)] = 167169, + [SMALL_STATE(5282)] = 167179, + [SMALL_STATE(5283)] = 167189, + [SMALL_STATE(5284)] = 167197, + [SMALL_STATE(5285)] = 167207, + [SMALL_STATE(5286)] = 167215, + [SMALL_STATE(5287)] = 167225, + [SMALL_STATE(5288)] = 167235, + [SMALL_STATE(5289)] = 167245, + [SMALL_STATE(5290)] = 167255, + [SMALL_STATE(5291)] = 167265, + [SMALL_STATE(5292)] = 167275, + [SMALL_STATE(5293)] = 167285, + [SMALL_STATE(5294)] = 167295, + [SMALL_STATE(5295)] = 167305, + [SMALL_STATE(5296)] = 167315, + [SMALL_STATE(5297)] = 167325, + [SMALL_STATE(5298)] = 167335, + [SMALL_STATE(5299)] = 167343, + [SMALL_STATE(5300)] = 167353, + [SMALL_STATE(5301)] = 167363, + [SMALL_STATE(5302)] = 167373, + [SMALL_STATE(5303)] = 167383, + [SMALL_STATE(5304)] = 167393, + [SMALL_STATE(5305)] = 167401, + [SMALL_STATE(5306)] = 167411, + [SMALL_STATE(5307)] = 167421, + [SMALL_STATE(5308)] = 167429, + [SMALL_STATE(5309)] = 167439, + [SMALL_STATE(5310)] = 167449, + [SMALL_STATE(5311)] = 167459, + [SMALL_STATE(5312)] = 167469, + [SMALL_STATE(5313)] = 167479, + [SMALL_STATE(5314)] = 167489, + [SMALL_STATE(5315)] = 167499, + [SMALL_STATE(5316)] = 167509, + [SMALL_STATE(5317)] = 167519, + [SMALL_STATE(5318)] = 167529, + [SMALL_STATE(5319)] = 167539, + [SMALL_STATE(5320)] = 167549, + [SMALL_STATE(5321)] = 167559, + [SMALL_STATE(5322)] = 167569, + [SMALL_STATE(5323)] = 167579, + [SMALL_STATE(5324)] = 167589, + [SMALL_STATE(5325)] = 167597, + [SMALL_STATE(5326)] = 167607, + [SMALL_STATE(5327)] = 167617, + [SMALL_STATE(5328)] = 167627, + [SMALL_STATE(5329)] = 167637, + [SMALL_STATE(5330)] = 167647, + [SMALL_STATE(5331)] = 167657, + [SMALL_STATE(5332)] = 167667, + [SMALL_STATE(5333)] = 167677, + [SMALL_STATE(5334)] = 167687, + [SMALL_STATE(5335)] = 167697, + [SMALL_STATE(5336)] = 167707, + [SMALL_STATE(5337)] = 167717, + [SMALL_STATE(5338)] = 167727, + [SMALL_STATE(5339)] = 167737, + [SMALL_STATE(5340)] = 167747, + [SMALL_STATE(5341)] = 167757, + [SMALL_STATE(5342)] = 167767, + [SMALL_STATE(5343)] = 167775, + [SMALL_STATE(5344)] = 167785, + [SMALL_STATE(5345)] = 167795, + [SMALL_STATE(5346)] = 167805, + [SMALL_STATE(5347)] = 167815, + [SMALL_STATE(5348)] = 167825, + [SMALL_STATE(5349)] = 167835, + [SMALL_STATE(5350)] = 167845, + [SMALL_STATE(5351)] = 167853, + [SMALL_STATE(5352)] = 167863, + [SMALL_STATE(5353)] = 167873, + [SMALL_STATE(5354)] = 167883, + [SMALL_STATE(5355)] = 167893, + [SMALL_STATE(5356)] = 167903, + [SMALL_STATE(5357)] = 167913, + [SMALL_STATE(5358)] = 167923, + [SMALL_STATE(5359)] = 167933, + [SMALL_STATE(5360)] = 167943, + [SMALL_STATE(5361)] = 167953, + [SMALL_STATE(5362)] = 167963, + [SMALL_STATE(5363)] = 167973, + [SMALL_STATE(5364)] = 167981, + [SMALL_STATE(5365)] = 167991, + [SMALL_STATE(5366)] = 168001, + [SMALL_STATE(5367)] = 168011, + [SMALL_STATE(5368)] = 168021, + [SMALL_STATE(5369)] = 168031, + [SMALL_STATE(5370)] = 168041, + [SMALL_STATE(5371)] = 168051, + [SMALL_STATE(5372)] = 168061, + [SMALL_STATE(5373)] = 168071, + [SMALL_STATE(5374)] = 168081, + [SMALL_STATE(5375)] = 168091, + [SMALL_STATE(5376)] = 168101, + [SMALL_STATE(5377)] = 168111, + [SMALL_STATE(5378)] = 168121, + [SMALL_STATE(5379)] = 168131, + [SMALL_STATE(5380)] = 168141, + [SMALL_STATE(5381)] = 168149, + [SMALL_STATE(5382)] = 168159, + [SMALL_STATE(5383)] = 168169, + [SMALL_STATE(5384)] = 168179, + [SMALL_STATE(5385)] = 168189, + [SMALL_STATE(5386)] = 168199, + [SMALL_STATE(5387)] = 168209, + [SMALL_STATE(5388)] = 168219, + [SMALL_STATE(5389)] = 168229, + [SMALL_STATE(5390)] = 168239, + [SMALL_STATE(5391)] = 168249, + [SMALL_STATE(5392)] = 168257, + [SMALL_STATE(5393)] = 168267, + [SMALL_STATE(5394)] = 168277, + [SMALL_STATE(5395)] = 168287, + [SMALL_STATE(5396)] = 168297, + [SMALL_STATE(5397)] = 168307, + [SMALL_STATE(5398)] = 168317, + [SMALL_STATE(5399)] = 168327, + [SMALL_STATE(5400)] = 168337, + [SMALL_STATE(5401)] = 168347, + [SMALL_STATE(5402)] = 168357, + [SMALL_STATE(5403)] = 168365, + [SMALL_STATE(5404)] = 168375, + [SMALL_STATE(5405)] = 168385, + [SMALL_STATE(5406)] = 168395, + [SMALL_STATE(5407)] = 168403, + [SMALL_STATE(5408)] = 168413, + [SMALL_STATE(5409)] = 168423, + [SMALL_STATE(5410)] = 168433, + [SMALL_STATE(5411)] = 168443, + [SMALL_STATE(5412)] = 168453, + [SMALL_STATE(5413)] = 168463, + [SMALL_STATE(5414)] = 168471, + [SMALL_STATE(5415)] = 168481, + [SMALL_STATE(5416)] = 168491, + [SMALL_STATE(5417)] = 168501, + [SMALL_STATE(5418)] = 168511, + [SMALL_STATE(5419)] = 168521, + [SMALL_STATE(5420)] = 168531, + [SMALL_STATE(5421)] = 168541, + [SMALL_STATE(5422)] = 168551, + [SMALL_STATE(5423)] = 168561, + [SMALL_STATE(5424)] = 168571, + [SMALL_STATE(5425)] = 168581, + [SMALL_STATE(5426)] = 168591, + [SMALL_STATE(5427)] = 168601, + [SMALL_STATE(5428)] = 168611, + [SMALL_STATE(5429)] = 168621, + [SMALL_STATE(5430)] = 168631, + [SMALL_STATE(5431)] = 168641, + [SMALL_STATE(5432)] = 168651, + [SMALL_STATE(5433)] = 168661, + [SMALL_STATE(5434)] = 168671, + [SMALL_STATE(5435)] = 168681, + [SMALL_STATE(5436)] = 168691, + [SMALL_STATE(5437)] = 168701, + [SMALL_STATE(5438)] = 168711, + [SMALL_STATE(5439)] = 168721, + [SMALL_STATE(5440)] = 168731, + [SMALL_STATE(5441)] = 168741, + [SMALL_STATE(5442)] = 168751, + [SMALL_STATE(5443)] = 168761, + [SMALL_STATE(5444)] = 168771, + [SMALL_STATE(5445)] = 168781, + [SMALL_STATE(5446)] = 168791, + [SMALL_STATE(5447)] = 168801, + [SMALL_STATE(5448)] = 168811, + [SMALL_STATE(5449)] = 168821, + [SMALL_STATE(5450)] = 168831, + [SMALL_STATE(5451)] = 168841, + [SMALL_STATE(5452)] = 168851, + [SMALL_STATE(5453)] = 168859, + [SMALL_STATE(5454)] = 168869, + [SMALL_STATE(5455)] = 168879, + [SMALL_STATE(5456)] = 168889, + [SMALL_STATE(5457)] = 168899, + [SMALL_STATE(5458)] = 168907, + [SMALL_STATE(5459)] = 168917, + [SMALL_STATE(5460)] = 168927, + [SMALL_STATE(5461)] = 168937, + [SMALL_STATE(5462)] = 168945, + [SMALL_STATE(5463)] = 168955, + [SMALL_STATE(5464)] = 168965, + [SMALL_STATE(5465)] = 168975, + [SMALL_STATE(5466)] = 168985, + [SMALL_STATE(5467)] = 168995, + [SMALL_STATE(5468)] = 169005, + [SMALL_STATE(5469)] = 169015, + [SMALL_STATE(5470)] = 169025, + [SMALL_STATE(5471)] = 169035, + [SMALL_STATE(5472)] = 169045, + [SMALL_STATE(5473)] = 169055, + [SMALL_STATE(5474)] = 169065, + [SMALL_STATE(5475)] = 169075, + [SMALL_STATE(5476)] = 169085, + [SMALL_STATE(5477)] = 169095, + [SMALL_STATE(5478)] = 169105, + [SMALL_STATE(5479)] = 169115, + [SMALL_STATE(5480)] = 169125, + [SMALL_STATE(5481)] = 169135, + [SMALL_STATE(5482)] = 169145, + [SMALL_STATE(5483)] = 169155, + [SMALL_STATE(5484)] = 169163, + [SMALL_STATE(5485)] = 169173, + [SMALL_STATE(5486)] = 169183, + [SMALL_STATE(5487)] = 169193, + [SMALL_STATE(5488)] = 169203, + [SMALL_STATE(5489)] = 169213, + [SMALL_STATE(5490)] = 169223, + [SMALL_STATE(5491)] = 169233, + [SMALL_STATE(5492)] = 169243, + [SMALL_STATE(5493)] = 169253, + [SMALL_STATE(5494)] = 169263, + [SMALL_STATE(5495)] = 169273, + [SMALL_STATE(5496)] = 169283, + [SMALL_STATE(5497)] = 169293, + [SMALL_STATE(5498)] = 169303, + [SMALL_STATE(5499)] = 169313, + [SMALL_STATE(5500)] = 169323, + [SMALL_STATE(5501)] = 169331, + [SMALL_STATE(5502)] = 169341, + [SMALL_STATE(5503)] = 169351, + [SMALL_STATE(5504)] = 169361, + [SMALL_STATE(5505)] = 169371, + [SMALL_STATE(5506)] = 169381, + [SMALL_STATE(5507)] = 169391, + [SMALL_STATE(5508)] = 169401, + [SMALL_STATE(5509)] = 169411, + [SMALL_STATE(5510)] = 169421, + [SMALL_STATE(5511)] = 169431, + [SMALL_STATE(5512)] = 169441, + [SMALL_STATE(5513)] = 169451, + [SMALL_STATE(5514)] = 169461, + [SMALL_STATE(5515)] = 169469, + [SMALL_STATE(5516)] = 169479, + [SMALL_STATE(5517)] = 169489, + [SMALL_STATE(5518)] = 169499, + [SMALL_STATE(5519)] = 169509, + [SMALL_STATE(5520)] = 169519, + [SMALL_STATE(5521)] = 169527, + [SMALL_STATE(5522)] = 169537, + [SMALL_STATE(5523)] = 169547, + [SMALL_STATE(5524)] = 169557, + [SMALL_STATE(5525)] = 169567, + [SMALL_STATE(5526)] = 169577, + [SMALL_STATE(5527)] = 169587, + [SMALL_STATE(5528)] = 169597, + [SMALL_STATE(5529)] = 169607, + [SMALL_STATE(5530)] = 169617, + [SMALL_STATE(5531)] = 169625, + [SMALL_STATE(5532)] = 169633, + [SMALL_STATE(5533)] = 169643, + [SMALL_STATE(5534)] = 169653, + [SMALL_STATE(5535)] = 169663, + [SMALL_STATE(5536)] = 169673, + [SMALL_STATE(5537)] = 169683, + [SMALL_STATE(5538)] = 169693, + [SMALL_STATE(5539)] = 169703, + [SMALL_STATE(5540)] = 169713, + [SMALL_STATE(5541)] = 169723, + [SMALL_STATE(5542)] = 169733, + [SMALL_STATE(5543)] = 169743, + [SMALL_STATE(5544)] = 169753, + [SMALL_STATE(5545)] = 169763, + [SMALL_STATE(5546)] = 169773, + [SMALL_STATE(5547)] = 169783, + [SMALL_STATE(5548)] = 169793, + [SMALL_STATE(5549)] = 169803, + [SMALL_STATE(5550)] = 169813, + [SMALL_STATE(5551)] = 169823, + [SMALL_STATE(5552)] = 169833, + [SMALL_STATE(5553)] = 169843, + [SMALL_STATE(5554)] = 169853, + [SMALL_STATE(5555)] = 169863, + [SMALL_STATE(5556)] = 169871, + [SMALL_STATE(5557)] = 169881, + [SMALL_STATE(5558)] = 169889, + [SMALL_STATE(5559)] = 169899, + [SMALL_STATE(5560)] = 169909, + [SMALL_STATE(5561)] = 169919, + [SMALL_STATE(5562)] = 169929, + [SMALL_STATE(5563)] = 169939, + [SMALL_STATE(5564)] = 169949, + [SMALL_STATE(5565)] = 169959, + [SMALL_STATE(5566)] = 169967, + [SMALL_STATE(5567)] = 169977, + [SMALL_STATE(5568)] = 169987, + [SMALL_STATE(5569)] = 169997, + [SMALL_STATE(5570)] = 170007, + [SMALL_STATE(5571)] = 170015, + [SMALL_STATE(5572)] = 170025, + [SMALL_STATE(5573)] = 170035, + [SMALL_STATE(5574)] = 170045, + [SMALL_STATE(5575)] = 170055, + [SMALL_STATE(5576)] = 170065, + [SMALL_STATE(5577)] = 170075, + [SMALL_STATE(5578)] = 170085, + [SMALL_STATE(5579)] = 170095, + [SMALL_STATE(5580)] = 170105, + [SMALL_STATE(5581)] = 170115, + [SMALL_STATE(5582)] = 170125, + [SMALL_STATE(5583)] = 170133, + [SMALL_STATE(5584)] = 170143, + [SMALL_STATE(5585)] = 170153, + [SMALL_STATE(5586)] = 170163, + [SMALL_STATE(5587)] = 170173, + [SMALL_STATE(5588)] = 170183, + [SMALL_STATE(5589)] = 170191, + [SMALL_STATE(5590)] = 170201, + [SMALL_STATE(5591)] = 170211, + [SMALL_STATE(5592)] = 170221, + [SMALL_STATE(5593)] = 170231, + [SMALL_STATE(5594)] = 170241, + [SMALL_STATE(5595)] = 170251, + [SMALL_STATE(5596)] = 170261, + [SMALL_STATE(5597)] = 170271, + [SMALL_STATE(5598)] = 170281, + [SMALL_STATE(5599)] = 170291, + [SMALL_STATE(5600)] = 170301, + [SMALL_STATE(5601)] = 170311, + [SMALL_STATE(5602)] = 170321, + [SMALL_STATE(5603)] = 170331, + [SMALL_STATE(5604)] = 170341, + [SMALL_STATE(5605)] = 170351, + [SMALL_STATE(5606)] = 170359, + [SMALL_STATE(5607)] = 170369, + [SMALL_STATE(5608)] = 170379, + [SMALL_STATE(5609)] = 170389, + [SMALL_STATE(5610)] = 170399, + [SMALL_STATE(5611)] = 170409, + [SMALL_STATE(5612)] = 170419, + [SMALL_STATE(5613)] = 170427, + [SMALL_STATE(5614)] = 170437, + [SMALL_STATE(5615)] = 170447, + [SMALL_STATE(5616)] = 170457, + [SMALL_STATE(5617)] = 170465, + [SMALL_STATE(5618)] = 170475, + [SMALL_STATE(5619)] = 170485, + [SMALL_STATE(5620)] = 170495, + [SMALL_STATE(5621)] = 170505, + [SMALL_STATE(5622)] = 170515, + [SMALL_STATE(5623)] = 170525, + [SMALL_STATE(5624)] = 170533, + [SMALL_STATE(5625)] = 170543, + [SMALL_STATE(5626)] = 170553, + [SMALL_STATE(5627)] = 170563, + [SMALL_STATE(5628)] = 170573, + [SMALL_STATE(5629)] = 170583, + [SMALL_STATE(5630)] = 170593, + [SMALL_STATE(5631)] = 170603, + [SMALL_STATE(5632)] = 170613, + [SMALL_STATE(5633)] = 170623, + [SMALL_STATE(5634)] = 170633, + [SMALL_STATE(5635)] = 170643, + [SMALL_STATE(5636)] = 170653, + [SMALL_STATE(5637)] = 170661, + [SMALL_STATE(5638)] = 170671, + [SMALL_STATE(5639)] = 170681, + [SMALL_STATE(5640)] = 170691, + [SMALL_STATE(5641)] = 170701, + [SMALL_STATE(5642)] = 170711, + [SMALL_STATE(5643)] = 170721, + [SMALL_STATE(5644)] = 170731, + [SMALL_STATE(5645)] = 170741, + [SMALL_STATE(5646)] = 170751, + [SMALL_STATE(5647)] = 170761, + [SMALL_STATE(5648)] = 170771, + [SMALL_STATE(5649)] = 170781, + [SMALL_STATE(5650)] = 170791, + [SMALL_STATE(5651)] = 170801, + [SMALL_STATE(5652)] = 170811, + [SMALL_STATE(5653)] = 170821, + [SMALL_STATE(5654)] = 170831, + [SMALL_STATE(5655)] = 170841, + [SMALL_STATE(5656)] = 170851, + [SMALL_STATE(5657)] = 170861, + [SMALL_STATE(5658)] = 170869, + [SMALL_STATE(5659)] = 170879, + [SMALL_STATE(5660)] = 170887, + [SMALL_STATE(5661)] = 170897, + [SMALL_STATE(5662)] = 170907, + [SMALL_STATE(5663)] = 170917, + [SMALL_STATE(5664)] = 170927, + [SMALL_STATE(5665)] = 170937, + [SMALL_STATE(5666)] = 170945, + [SMALL_STATE(5667)] = 170953, + [SMALL_STATE(5668)] = 170963, + [SMALL_STATE(5669)] = 170973, + [SMALL_STATE(5670)] = 170981, + [SMALL_STATE(5671)] = 170991, + [SMALL_STATE(5672)] = 171001, + [SMALL_STATE(5673)] = 171011, + [SMALL_STATE(5674)] = 171019, + [SMALL_STATE(5675)] = 171027, + [SMALL_STATE(5676)] = 171037, + [SMALL_STATE(5677)] = 171047, + [SMALL_STATE(5678)] = 171057, + [SMALL_STATE(5679)] = 171067, + [SMALL_STATE(5680)] = 171077, + [SMALL_STATE(5681)] = 171087, + [SMALL_STATE(5682)] = 171097, + [SMALL_STATE(5683)] = 171107, + [SMALL_STATE(5684)] = 171117, + [SMALL_STATE(5685)] = 171127, + [SMALL_STATE(5686)] = 171137, + [SMALL_STATE(5687)] = 171147, + [SMALL_STATE(5688)] = 171155, + [SMALL_STATE(5689)] = 171165, + [SMALL_STATE(5690)] = 171175, + [SMALL_STATE(5691)] = 171185, + [SMALL_STATE(5692)] = 171195, + [SMALL_STATE(5693)] = 171205, + [SMALL_STATE(5694)] = 171215, + [SMALL_STATE(5695)] = 171225, + [SMALL_STATE(5696)] = 171235, + [SMALL_STATE(5697)] = 171245, + [SMALL_STATE(5698)] = 171255, + [SMALL_STATE(5699)] = 171265, + [SMALL_STATE(5700)] = 171273, + [SMALL_STATE(5701)] = 171283, + [SMALL_STATE(5702)] = 171293, + [SMALL_STATE(5703)] = 171303, + [SMALL_STATE(5704)] = 171313, + [SMALL_STATE(5705)] = 171323, + [SMALL_STATE(5706)] = 171333, + [SMALL_STATE(5707)] = 171343, + [SMALL_STATE(5708)] = 171353, + [SMALL_STATE(5709)] = 171363, + [SMALL_STATE(5710)] = 171373, + [SMALL_STATE(5711)] = 171383, + [SMALL_STATE(5712)] = 171393, + [SMALL_STATE(5713)] = 171403, + [SMALL_STATE(5714)] = 171413, + [SMALL_STATE(5715)] = 171421, + [SMALL_STATE(5716)] = 171429, + [SMALL_STATE(5717)] = 171439, + [SMALL_STATE(5718)] = 171449, + [SMALL_STATE(5719)] = 171459, + [SMALL_STATE(5720)] = 171469, + [SMALL_STATE(5721)] = 171479, + [SMALL_STATE(5722)] = 171489, + [SMALL_STATE(5723)] = 171499, + [SMALL_STATE(5724)] = 171507, + [SMALL_STATE(5725)] = 171517, + [SMALL_STATE(5726)] = 171527, + [SMALL_STATE(5727)] = 171537, + [SMALL_STATE(5728)] = 171547, + [SMALL_STATE(5729)] = 171557, + [SMALL_STATE(5730)] = 171567, + [SMALL_STATE(5731)] = 171577, + [SMALL_STATE(5732)] = 171587, + [SMALL_STATE(5733)] = 171597, + [SMALL_STATE(5734)] = 171607, + [SMALL_STATE(5735)] = 171617, + [SMALL_STATE(5736)] = 171627, + [SMALL_STATE(5737)] = 171637, + [SMALL_STATE(5738)] = 171647, + [SMALL_STATE(5739)] = 171657, + [SMALL_STATE(5740)] = 171667, + [SMALL_STATE(5741)] = 171677, + [SMALL_STATE(5742)] = 171687, + [SMALL_STATE(5743)] = 171697, + [SMALL_STATE(5744)] = 171707, + [SMALL_STATE(5745)] = 171717, + [SMALL_STATE(5746)] = 171727, + [SMALL_STATE(5747)] = 171735, + [SMALL_STATE(5748)] = 171745, + [SMALL_STATE(5749)] = 171755, + [SMALL_STATE(5750)] = 171765, + [SMALL_STATE(5751)] = 171775, + [SMALL_STATE(5752)] = 171785, + [SMALL_STATE(5753)] = 171795, + [SMALL_STATE(5754)] = 171803, + [SMALL_STATE(5755)] = 171813, + [SMALL_STATE(5756)] = 171823, + [SMALL_STATE(5757)] = 171833, + [SMALL_STATE(5758)] = 171841, + [SMALL_STATE(5759)] = 171851, + [SMALL_STATE(5760)] = 171861, + [SMALL_STATE(5761)] = 171869, + [SMALL_STATE(5762)] = 171879, + [SMALL_STATE(5763)] = 171886, + [SMALL_STATE(5764)] = 171893, + [SMALL_STATE(5765)] = 171900, + [SMALL_STATE(5766)] = 171907, + [SMALL_STATE(5767)] = 171914, + [SMALL_STATE(5768)] = 171921, + [SMALL_STATE(5769)] = 171928, + [SMALL_STATE(5770)] = 171935, + [SMALL_STATE(5771)] = 171942, + [SMALL_STATE(5772)] = 171949, + [SMALL_STATE(5773)] = 171956, + [SMALL_STATE(5774)] = 171963, + [SMALL_STATE(5775)] = 171970, + [SMALL_STATE(5776)] = 171977, + [SMALL_STATE(5777)] = 171984, + [SMALL_STATE(5778)] = 171991, + [SMALL_STATE(5779)] = 171998, + [SMALL_STATE(5780)] = 172005, + [SMALL_STATE(5781)] = 172012, + [SMALL_STATE(5782)] = 172019, + [SMALL_STATE(5783)] = 172026, + [SMALL_STATE(5784)] = 172033, + [SMALL_STATE(5785)] = 172040, + [SMALL_STATE(5786)] = 172047, + [SMALL_STATE(5787)] = 172054, + [SMALL_STATE(5788)] = 172061, + [SMALL_STATE(5789)] = 172068, + [SMALL_STATE(5790)] = 172075, + [SMALL_STATE(5791)] = 172082, + [SMALL_STATE(5792)] = 172089, + [SMALL_STATE(5793)] = 172096, + [SMALL_STATE(5794)] = 172103, + [SMALL_STATE(5795)] = 172110, + [SMALL_STATE(5796)] = 172117, + [SMALL_STATE(5797)] = 172124, + [SMALL_STATE(5798)] = 172131, + [SMALL_STATE(5799)] = 172138, + [SMALL_STATE(5800)] = 172145, + [SMALL_STATE(5801)] = 172152, + [SMALL_STATE(5802)] = 172159, + [SMALL_STATE(5803)] = 172166, + [SMALL_STATE(5804)] = 172173, + [SMALL_STATE(5805)] = 172180, + [SMALL_STATE(5806)] = 172187, + [SMALL_STATE(5807)] = 172194, + [SMALL_STATE(5808)] = 172201, + [SMALL_STATE(5809)] = 172208, + [SMALL_STATE(5810)] = 172215, + [SMALL_STATE(5811)] = 172222, + [SMALL_STATE(5812)] = 172229, + [SMALL_STATE(5813)] = 172236, + [SMALL_STATE(5814)] = 172243, + [SMALL_STATE(5815)] = 172250, + [SMALL_STATE(5816)] = 172257, + [SMALL_STATE(5817)] = 172264, + [SMALL_STATE(5818)] = 172271, + [SMALL_STATE(5819)] = 172278, + [SMALL_STATE(5820)] = 172285, + [SMALL_STATE(5821)] = 172292, + [SMALL_STATE(5822)] = 172299, + [SMALL_STATE(5823)] = 172306, + [SMALL_STATE(5824)] = 172313, + [SMALL_STATE(5825)] = 172320, + [SMALL_STATE(5826)] = 172327, + [SMALL_STATE(5827)] = 172334, + [SMALL_STATE(5828)] = 172341, + [SMALL_STATE(5829)] = 172348, + [SMALL_STATE(5830)] = 172355, + [SMALL_STATE(5831)] = 172362, + [SMALL_STATE(5832)] = 172369, + [SMALL_STATE(5833)] = 172376, + [SMALL_STATE(5834)] = 172383, + [SMALL_STATE(5835)] = 172390, + [SMALL_STATE(5836)] = 172397, + [SMALL_STATE(5837)] = 172404, + [SMALL_STATE(5838)] = 172411, + [SMALL_STATE(5839)] = 172418, + [SMALL_STATE(5840)] = 172425, + [SMALL_STATE(5841)] = 172432, + [SMALL_STATE(5842)] = 172439, + [SMALL_STATE(5843)] = 172446, + [SMALL_STATE(5844)] = 172453, + [SMALL_STATE(5845)] = 172460, + [SMALL_STATE(5846)] = 172467, + [SMALL_STATE(5847)] = 172474, + [SMALL_STATE(5848)] = 172481, + [SMALL_STATE(5849)] = 172488, + [SMALL_STATE(5850)] = 172495, + [SMALL_STATE(5851)] = 172502, + [SMALL_STATE(5852)] = 172509, + [SMALL_STATE(5853)] = 172516, + [SMALL_STATE(5854)] = 172523, + [SMALL_STATE(5855)] = 172530, + [SMALL_STATE(5856)] = 172537, + [SMALL_STATE(5857)] = 172544, + [SMALL_STATE(5858)] = 172551, + [SMALL_STATE(5859)] = 172558, + [SMALL_STATE(5860)] = 172565, + [SMALL_STATE(5861)] = 172572, + [SMALL_STATE(5862)] = 172579, + [SMALL_STATE(5863)] = 172586, + [SMALL_STATE(5864)] = 172593, + [SMALL_STATE(5865)] = 172600, + [SMALL_STATE(5866)] = 172607, + [SMALL_STATE(5867)] = 172614, + [SMALL_STATE(5868)] = 172621, + [SMALL_STATE(5869)] = 172628, + [SMALL_STATE(5870)] = 172635, + [SMALL_STATE(5871)] = 172642, + [SMALL_STATE(5872)] = 172649, + [SMALL_STATE(5873)] = 172656, + [SMALL_STATE(5874)] = 172663, + [SMALL_STATE(5875)] = 172670, + [SMALL_STATE(5876)] = 172677, + [SMALL_STATE(5877)] = 172684, + [SMALL_STATE(5878)] = 172691, + [SMALL_STATE(5879)] = 172698, + [SMALL_STATE(5880)] = 172705, + [SMALL_STATE(5881)] = 172712, + [SMALL_STATE(5882)] = 172719, + [SMALL_STATE(5883)] = 172726, + [SMALL_STATE(5884)] = 172733, + [SMALL_STATE(5885)] = 172740, + [SMALL_STATE(5886)] = 172747, + [SMALL_STATE(5887)] = 172754, + [SMALL_STATE(5888)] = 172761, + [SMALL_STATE(5889)] = 172768, + [SMALL_STATE(5890)] = 172775, + [SMALL_STATE(5891)] = 172782, + [SMALL_STATE(5892)] = 172789, + [SMALL_STATE(5893)] = 172796, + [SMALL_STATE(5894)] = 172803, + [SMALL_STATE(5895)] = 172810, + [SMALL_STATE(5896)] = 172817, + [SMALL_STATE(5897)] = 172824, + [SMALL_STATE(5898)] = 172831, + [SMALL_STATE(5899)] = 172838, + [SMALL_STATE(5900)] = 172845, + [SMALL_STATE(5901)] = 172852, + [SMALL_STATE(5902)] = 172859, + [SMALL_STATE(5903)] = 172866, + [SMALL_STATE(5904)] = 172873, + [SMALL_STATE(5905)] = 172880, + [SMALL_STATE(5906)] = 172887, + [SMALL_STATE(5907)] = 172894, + [SMALL_STATE(5908)] = 172901, + [SMALL_STATE(5909)] = 172908, + [SMALL_STATE(5910)] = 172915, + [SMALL_STATE(5911)] = 172922, + [SMALL_STATE(5912)] = 172929, + [SMALL_STATE(5913)] = 172936, + [SMALL_STATE(5914)] = 172943, + [SMALL_STATE(5915)] = 172950, + [SMALL_STATE(5916)] = 172957, + [SMALL_STATE(5917)] = 172964, + [SMALL_STATE(5918)] = 172971, + [SMALL_STATE(5919)] = 172978, + [SMALL_STATE(5920)] = 172985, + [SMALL_STATE(5921)] = 172992, + [SMALL_STATE(5922)] = 172999, + [SMALL_STATE(5923)] = 173006, + [SMALL_STATE(5924)] = 173013, + [SMALL_STATE(5925)] = 173020, + [SMALL_STATE(5926)] = 173027, + [SMALL_STATE(5927)] = 173034, + [SMALL_STATE(5928)] = 173041, + [SMALL_STATE(5929)] = 173048, + [SMALL_STATE(5930)] = 173055, + [SMALL_STATE(5931)] = 173062, + [SMALL_STATE(5932)] = 173069, + [SMALL_STATE(5933)] = 173076, + [SMALL_STATE(5934)] = 173083, + [SMALL_STATE(5935)] = 173090, + [SMALL_STATE(5936)] = 173097, + [SMALL_STATE(5937)] = 173104, + [SMALL_STATE(5938)] = 173111, + [SMALL_STATE(5939)] = 173118, + [SMALL_STATE(5940)] = 173125, + [SMALL_STATE(5941)] = 173132, + [SMALL_STATE(5942)] = 173139, + [SMALL_STATE(5943)] = 173146, + [SMALL_STATE(5944)] = 173153, + [SMALL_STATE(5945)] = 173160, + [SMALL_STATE(5946)] = 173167, + [SMALL_STATE(5947)] = 173174, + [SMALL_STATE(5948)] = 173181, + [SMALL_STATE(5949)] = 173188, + [SMALL_STATE(5950)] = 173195, + [SMALL_STATE(5951)] = 173202, + [SMALL_STATE(5952)] = 173209, + [SMALL_STATE(5953)] = 173216, + [SMALL_STATE(5954)] = 173223, + [SMALL_STATE(5955)] = 173230, + [SMALL_STATE(5956)] = 173237, + [SMALL_STATE(5957)] = 173244, + [SMALL_STATE(5958)] = 173251, + [SMALL_STATE(5959)] = 173258, + [SMALL_STATE(5960)] = 173265, + [SMALL_STATE(5961)] = 173272, + [SMALL_STATE(5962)] = 173279, + [SMALL_STATE(5963)] = 173286, + [SMALL_STATE(5964)] = 173293, + [SMALL_STATE(5965)] = 173300, + [SMALL_STATE(5966)] = 173307, + [SMALL_STATE(5967)] = 173314, + [SMALL_STATE(5968)] = 173321, + [SMALL_STATE(5969)] = 173328, + [SMALL_STATE(5970)] = 173335, + [SMALL_STATE(5971)] = 173342, + [SMALL_STATE(5972)] = 173349, + [SMALL_STATE(5973)] = 173356, + [SMALL_STATE(5974)] = 173363, + [SMALL_STATE(5975)] = 173370, + [SMALL_STATE(5976)] = 173377, + [SMALL_STATE(5977)] = 173384, + [SMALL_STATE(5978)] = 173391, + [SMALL_STATE(5979)] = 173398, + [SMALL_STATE(5980)] = 173405, + [SMALL_STATE(5981)] = 173412, + [SMALL_STATE(5982)] = 173419, + [SMALL_STATE(5983)] = 173426, + [SMALL_STATE(5984)] = 173433, + [SMALL_STATE(5985)] = 173440, + [SMALL_STATE(5986)] = 173447, + [SMALL_STATE(5987)] = 173454, + [SMALL_STATE(5988)] = 173461, + [SMALL_STATE(5989)] = 173468, + [SMALL_STATE(5990)] = 173475, + [SMALL_STATE(5991)] = 173482, + [SMALL_STATE(5992)] = 173489, + [SMALL_STATE(5993)] = 173496, + [SMALL_STATE(5994)] = 173503, + [SMALL_STATE(5995)] = 173510, + [SMALL_STATE(5996)] = 173517, + [SMALL_STATE(5997)] = 173524, + [SMALL_STATE(5998)] = 173531, + [SMALL_STATE(5999)] = 173538, + [SMALL_STATE(6000)] = 173545, + [SMALL_STATE(6001)] = 173552, + [SMALL_STATE(6002)] = 173559, + [SMALL_STATE(6003)] = 173566, + [SMALL_STATE(6004)] = 173573, + [SMALL_STATE(6005)] = 173580, + [SMALL_STATE(6006)] = 173587, + [SMALL_STATE(6007)] = 173594, + [SMALL_STATE(6008)] = 173601, + [SMALL_STATE(6009)] = 173608, + [SMALL_STATE(6010)] = 173615, + [SMALL_STATE(6011)] = 173622, + [SMALL_STATE(6012)] = 173629, + [SMALL_STATE(6013)] = 173636, + [SMALL_STATE(6014)] = 173643, + [SMALL_STATE(6015)] = 173650, + [SMALL_STATE(6016)] = 173657, + [SMALL_STATE(6017)] = 173664, + [SMALL_STATE(6018)] = 173671, + [SMALL_STATE(6019)] = 173678, + [SMALL_STATE(6020)] = 173685, + [SMALL_STATE(6021)] = 173692, + [SMALL_STATE(6022)] = 173699, + [SMALL_STATE(6023)] = 173706, + [SMALL_STATE(6024)] = 173713, + [SMALL_STATE(6025)] = 173720, + [SMALL_STATE(6026)] = 173727, + [SMALL_STATE(6027)] = 173734, + [SMALL_STATE(6028)] = 173741, + [SMALL_STATE(6029)] = 173748, + [SMALL_STATE(6030)] = 173755, + [SMALL_STATE(6031)] = 173762, + [SMALL_STATE(6032)] = 173769, + [SMALL_STATE(6033)] = 173776, + [SMALL_STATE(6034)] = 173783, + [SMALL_STATE(6035)] = 173790, + [SMALL_STATE(6036)] = 173797, + [SMALL_STATE(6037)] = 173804, + [SMALL_STATE(6038)] = 173811, + [SMALL_STATE(6039)] = 173818, + [SMALL_STATE(6040)] = 173825, + [SMALL_STATE(6041)] = 173832, + [SMALL_STATE(6042)] = 173839, + [SMALL_STATE(6043)] = 173846, + [SMALL_STATE(6044)] = 173853, + [SMALL_STATE(6045)] = 173860, + [SMALL_STATE(6046)] = 173867, + [SMALL_STATE(6047)] = 173874, + [SMALL_STATE(6048)] = 173881, + [SMALL_STATE(6049)] = 173888, + [SMALL_STATE(6050)] = 173895, + [SMALL_STATE(6051)] = 173902, + [SMALL_STATE(6052)] = 173909, + [SMALL_STATE(6053)] = 173916, + [SMALL_STATE(6054)] = 173923, + [SMALL_STATE(6055)] = 173930, + [SMALL_STATE(6056)] = 173937, + [SMALL_STATE(6057)] = 173944, + [SMALL_STATE(6058)] = 173951, + [SMALL_STATE(6059)] = 173958, + [SMALL_STATE(6060)] = 173965, + [SMALL_STATE(6061)] = 173972, + [SMALL_STATE(6062)] = 173979, + [SMALL_STATE(6063)] = 173986, + [SMALL_STATE(6064)] = 173993, + [SMALL_STATE(6065)] = 174000, + [SMALL_STATE(6066)] = 174007, + [SMALL_STATE(6067)] = 174014, + [SMALL_STATE(6068)] = 174021, + [SMALL_STATE(6069)] = 174028, + [SMALL_STATE(6070)] = 174035, + [SMALL_STATE(6071)] = 174042, + [SMALL_STATE(6072)] = 174049, + [SMALL_STATE(6073)] = 174056, + [SMALL_STATE(6074)] = 174063, + [SMALL_STATE(6075)] = 174070, + [SMALL_STATE(6076)] = 174077, + [SMALL_STATE(6077)] = 174084, + [SMALL_STATE(6078)] = 174091, + [SMALL_STATE(6079)] = 174098, + [SMALL_STATE(6080)] = 174105, + [SMALL_STATE(6081)] = 174112, + [SMALL_STATE(6082)] = 174119, + [SMALL_STATE(6083)] = 174126, + [SMALL_STATE(6084)] = 174133, + [SMALL_STATE(6085)] = 174140, + [SMALL_STATE(6086)] = 174147, + [SMALL_STATE(6087)] = 174154, + [SMALL_STATE(6088)] = 174161, + [SMALL_STATE(6089)] = 174168, + [SMALL_STATE(6090)] = 174175, + [SMALL_STATE(6091)] = 174182, + [SMALL_STATE(6092)] = 174189, + [SMALL_STATE(6093)] = 174196, + [SMALL_STATE(6094)] = 174203, + [SMALL_STATE(6095)] = 174210, + [SMALL_STATE(6096)] = 174217, + [SMALL_STATE(6097)] = 174224, + [SMALL_STATE(6098)] = 174231, + [SMALL_STATE(6099)] = 174238, + [SMALL_STATE(6100)] = 174245, + [SMALL_STATE(6101)] = 174252, + [SMALL_STATE(6102)] = 174259, + [SMALL_STATE(6103)] = 174266, + [SMALL_STATE(6104)] = 174273, + [SMALL_STATE(6105)] = 174280, + [SMALL_STATE(6106)] = 174287, + [SMALL_STATE(6107)] = 174294, + [SMALL_STATE(6108)] = 174301, + [SMALL_STATE(6109)] = 174308, + [SMALL_STATE(6110)] = 174315, + [SMALL_STATE(6111)] = 174322, + [SMALL_STATE(6112)] = 174329, + [SMALL_STATE(6113)] = 174336, + [SMALL_STATE(6114)] = 174343, + [SMALL_STATE(6115)] = 174350, + [SMALL_STATE(6116)] = 174357, + [SMALL_STATE(6117)] = 174364, + [SMALL_STATE(6118)] = 174371, + [SMALL_STATE(6119)] = 174378, + [SMALL_STATE(6120)] = 174385, + [SMALL_STATE(6121)] = 174392, + [SMALL_STATE(6122)] = 174399, + [SMALL_STATE(6123)] = 174406, + [SMALL_STATE(6124)] = 174413, + [SMALL_STATE(6125)] = 174420, + [SMALL_STATE(6126)] = 174427, + [SMALL_STATE(6127)] = 174434, + [SMALL_STATE(6128)] = 174441, + [SMALL_STATE(6129)] = 174448, + [SMALL_STATE(6130)] = 174455, + [SMALL_STATE(6131)] = 174462, + [SMALL_STATE(6132)] = 174469, + [SMALL_STATE(6133)] = 174476, + [SMALL_STATE(6134)] = 174483, + [SMALL_STATE(6135)] = 174490, + [SMALL_STATE(6136)] = 174497, + [SMALL_STATE(6137)] = 174504, + [SMALL_STATE(6138)] = 174511, + [SMALL_STATE(6139)] = 174518, + [SMALL_STATE(6140)] = 174525, + [SMALL_STATE(6141)] = 174532, + [SMALL_STATE(6142)] = 174539, + [SMALL_STATE(6143)] = 174546, + [SMALL_STATE(6144)] = 174553, + [SMALL_STATE(6145)] = 174560, + [SMALL_STATE(6146)] = 174567, + [SMALL_STATE(6147)] = 174574, + [SMALL_STATE(6148)] = 174581, + [SMALL_STATE(6149)] = 174588, + [SMALL_STATE(6150)] = 174595, + [SMALL_STATE(6151)] = 174602, + [SMALL_STATE(6152)] = 174609, + [SMALL_STATE(6153)] = 174616, + [SMALL_STATE(6154)] = 174623, + [SMALL_STATE(6155)] = 174630, + [SMALL_STATE(6156)] = 174637, + [SMALL_STATE(6157)] = 174644, + [SMALL_STATE(6158)] = 174651, + [SMALL_STATE(6159)] = 174658, + [SMALL_STATE(6160)] = 174665, + [SMALL_STATE(6161)] = 174672, + [SMALL_STATE(6162)] = 174679, + [SMALL_STATE(6163)] = 174686, + [SMALL_STATE(6164)] = 174693, + [SMALL_STATE(6165)] = 174700, + [SMALL_STATE(6166)] = 174707, + [SMALL_STATE(6167)] = 174714, + [SMALL_STATE(6168)] = 174721, + [SMALL_STATE(6169)] = 174728, + [SMALL_STATE(6170)] = 174735, + [SMALL_STATE(6171)] = 174742, + [SMALL_STATE(6172)] = 174749, + [SMALL_STATE(6173)] = 174756, + [SMALL_STATE(6174)] = 174763, + [SMALL_STATE(6175)] = 174770, + [SMALL_STATE(6176)] = 174777, + [SMALL_STATE(6177)] = 174784, + [SMALL_STATE(6178)] = 174791, + [SMALL_STATE(6179)] = 174798, + [SMALL_STATE(6180)] = 174805, + [SMALL_STATE(6181)] = 174812, + [SMALL_STATE(6182)] = 174819, + [SMALL_STATE(6183)] = 174826, + [SMALL_STATE(6184)] = 174833, + [SMALL_STATE(6185)] = 174840, + [SMALL_STATE(6186)] = 174847, + [SMALL_STATE(6187)] = 174854, + [SMALL_STATE(6188)] = 174861, + [SMALL_STATE(6189)] = 174868, + [SMALL_STATE(6190)] = 174875, + [SMALL_STATE(6191)] = 174882, + [SMALL_STATE(6192)] = 174889, + [SMALL_STATE(6193)] = 174896, + [SMALL_STATE(6194)] = 174903, + [SMALL_STATE(6195)] = 174910, + [SMALL_STATE(6196)] = 174917, + [SMALL_STATE(6197)] = 174924, + [SMALL_STATE(6198)] = 174931, + [SMALL_STATE(6199)] = 174938, + [SMALL_STATE(6200)] = 174945, + [SMALL_STATE(6201)] = 174952, + [SMALL_STATE(6202)] = 174959, + [SMALL_STATE(6203)] = 174966, + [SMALL_STATE(6204)] = 174973, + [SMALL_STATE(6205)] = 174980, + [SMALL_STATE(6206)] = 174987, + [SMALL_STATE(6207)] = 174994, + [SMALL_STATE(6208)] = 175001, + [SMALL_STATE(6209)] = 175008, + [SMALL_STATE(6210)] = 175015, + [SMALL_STATE(6211)] = 175022, + [SMALL_STATE(6212)] = 175029, + [SMALL_STATE(6213)] = 175036, + [SMALL_STATE(6214)] = 175043, + [SMALL_STATE(6215)] = 175050, + [SMALL_STATE(6216)] = 175057, + [SMALL_STATE(6217)] = 175064, + [SMALL_STATE(6218)] = 175071, + [SMALL_STATE(6219)] = 175078, + [SMALL_STATE(6220)] = 175085, + [SMALL_STATE(6221)] = 175092, + [SMALL_STATE(6222)] = 175099, + [SMALL_STATE(6223)] = 175106, + [SMALL_STATE(6224)] = 175113, + [SMALL_STATE(6225)] = 175120, + [SMALL_STATE(6226)] = 175127, + [SMALL_STATE(6227)] = 175134, + [SMALL_STATE(6228)] = 175141, + [SMALL_STATE(6229)] = 175148, + [SMALL_STATE(6230)] = 175155, + [SMALL_STATE(6231)] = 175162, + [SMALL_STATE(6232)] = 175169, + [SMALL_STATE(6233)] = 175176, + [SMALL_STATE(6234)] = 175183, + [SMALL_STATE(6235)] = 175190, + [SMALL_STATE(6236)] = 175197, + [SMALL_STATE(6237)] = 175204, + [SMALL_STATE(6238)] = 175211, + [SMALL_STATE(6239)] = 175218, + [SMALL_STATE(6240)] = 175225, + [SMALL_STATE(6241)] = 175232, + [SMALL_STATE(6242)] = 175239, + [SMALL_STATE(6243)] = 175246, + [SMALL_STATE(6244)] = 175253, + [SMALL_STATE(6245)] = 175260, + [SMALL_STATE(6246)] = 175267, + [SMALL_STATE(6247)] = 175274, + [SMALL_STATE(6248)] = 175281, + [SMALL_STATE(6249)] = 175288, + [SMALL_STATE(6250)] = 175295, + [SMALL_STATE(6251)] = 175302, + [SMALL_STATE(6252)] = 175309, + [SMALL_STATE(6253)] = 175316, + [SMALL_STATE(6254)] = 175323, + [SMALL_STATE(6255)] = 175330, + [SMALL_STATE(6256)] = 175337, + [SMALL_STATE(6257)] = 175344, + [SMALL_STATE(6258)] = 175351, + [SMALL_STATE(6259)] = 175358, + [SMALL_STATE(6260)] = 175365, + [SMALL_STATE(6261)] = 175372, + [SMALL_STATE(6262)] = 175379, + [SMALL_STATE(6263)] = 175386, + [SMALL_STATE(6264)] = 175393, + [SMALL_STATE(6265)] = 175400, + [SMALL_STATE(6266)] = 175407, + [SMALL_STATE(6267)] = 175414, + [SMALL_STATE(6268)] = 175421, + [SMALL_STATE(6269)] = 175428, + [SMALL_STATE(6270)] = 175435, + [SMALL_STATE(6271)] = 175442, + [SMALL_STATE(6272)] = 175449, + [SMALL_STATE(6273)] = 175456, + [SMALL_STATE(6274)] = 175463, + [SMALL_STATE(6275)] = 175470, + [SMALL_STATE(6276)] = 175477, + [SMALL_STATE(6277)] = 175484, + [SMALL_STATE(6278)] = 175491, + [SMALL_STATE(6279)] = 175498, + [SMALL_STATE(6280)] = 175505, + [SMALL_STATE(6281)] = 175512, + [SMALL_STATE(6282)] = 175519, + [SMALL_STATE(6283)] = 175526, + [SMALL_STATE(6284)] = 175533, + [SMALL_STATE(6285)] = 175540, + [SMALL_STATE(6286)] = 175547, + [SMALL_STATE(6287)] = 175554, + [SMALL_STATE(6288)] = 175561, + [SMALL_STATE(6289)] = 175568, + [SMALL_STATE(6290)] = 175575, + [SMALL_STATE(6291)] = 175582, + [SMALL_STATE(6292)] = 175589, + [SMALL_STATE(6293)] = 175596, + [SMALL_STATE(6294)] = 175603, + [SMALL_STATE(6295)] = 175610, + [SMALL_STATE(6296)] = 175617, + [SMALL_STATE(6297)] = 175624, + [SMALL_STATE(6298)] = 175631, + [SMALL_STATE(6299)] = 175638, + [SMALL_STATE(6300)] = 175645, + [SMALL_STATE(6301)] = 175652, + [SMALL_STATE(6302)] = 175659, + [SMALL_STATE(6303)] = 175666, + [SMALL_STATE(6304)] = 175673, + [SMALL_STATE(6305)] = 175680, + [SMALL_STATE(6306)] = 175687, + [SMALL_STATE(6307)] = 175694, + [SMALL_STATE(6308)] = 175701, + [SMALL_STATE(6309)] = 175708, + [SMALL_STATE(6310)] = 175715, + [SMALL_STATE(6311)] = 175722, + [SMALL_STATE(6312)] = 175729, + [SMALL_STATE(6313)] = 175736, + [SMALL_STATE(6314)] = 175743, + [SMALL_STATE(6315)] = 175750, + [SMALL_STATE(6316)] = 175757, + [SMALL_STATE(6317)] = 175764, + [SMALL_STATE(6318)] = 175771, + [SMALL_STATE(6319)] = 175778, + [SMALL_STATE(6320)] = 175785, + [SMALL_STATE(6321)] = 175792, + [SMALL_STATE(6322)] = 175799, + [SMALL_STATE(6323)] = 175806, + [SMALL_STATE(6324)] = 175813, + [SMALL_STATE(6325)] = 175820, + [SMALL_STATE(6326)] = 175827, + [SMALL_STATE(6327)] = 175834, + [SMALL_STATE(6328)] = 175841, + [SMALL_STATE(6329)] = 175848, + [SMALL_STATE(6330)] = 175855, + [SMALL_STATE(6331)] = 175862, + [SMALL_STATE(6332)] = 175869, + [SMALL_STATE(6333)] = 175876, + [SMALL_STATE(6334)] = 175883, + [SMALL_STATE(6335)] = 175890, + [SMALL_STATE(6336)] = 175897, + [SMALL_STATE(6337)] = 175904, + [SMALL_STATE(6338)] = 175911, + [SMALL_STATE(6339)] = 175918, + [SMALL_STATE(6340)] = 175925, + [SMALL_STATE(6341)] = 175932, + [SMALL_STATE(6342)] = 175939, + [SMALL_STATE(6343)] = 175946, + [SMALL_STATE(6344)] = 175953, + [SMALL_STATE(6345)] = 175960, + [SMALL_STATE(6346)] = 175967, + [SMALL_STATE(6347)] = 175974, + [SMALL_STATE(6348)] = 175981, + [SMALL_STATE(6349)] = 175988, + [SMALL_STATE(6350)] = 175995, + [SMALL_STATE(6351)] = 176002, + [SMALL_STATE(6352)] = 176009, + [SMALL_STATE(6353)] = 176016, + [SMALL_STATE(6354)] = 176023, + [SMALL_STATE(6355)] = 176030, + [SMALL_STATE(6356)] = 176037, + [SMALL_STATE(6357)] = 176044, + [SMALL_STATE(6358)] = 176051, + [SMALL_STATE(6359)] = 176058, + [SMALL_STATE(6360)] = 176065, + [SMALL_STATE(6361)] = 176072, + [SMALL_STATE(6362)] = 176079, + [SMALL_STATE(6363)] = 176086, + [SMALL_STATE(6364)] = 176093, + [SMALL_STATE(6365)] = 176100, + [SMALL_STATE(6366)] = 176107, + [SMALL_STATE(6367)] = 176114, + [SMALL_STATE(6368)] = 176121, + [SMALL_STATE(6369)] = 176128, + [SMALL_STATE(6370)] = 176135, + [SMALL_STATE(6371)] = 176142, + [SMALL_STATE(6372)] = 176149, + [SMALL_STATE(6373)] = 176156, + [SMALL_STATE(6374)] = 176163, + [SMALL_STATE(6375)] = 176170, + [SMALL_STATE(6376)] = 176177, + [SMALL_STATE(6377)] = 176184, + [SMALL_STATE(6378)] = 176191, + [SMALL_STATE(6379)] = 176198, + [SMALL_STATE(6380)] = 176205, + [SMALL_STATE(6381)] = 176212, + [SMALL_STATE(6382)] = 176219, + [SMALL_STATE(6383)] = 176226, + [SMALL_STATE(6384)] = 176233, + [SMALL_STATE(6385)] = 176240, + [SMALL_STATE(6386)] = 176247, + [SMALL_STATE(6387)] = 176254, + [SMALL_STATE(6388)] = 176261, + [SMALL_STATE(6389)] = 176268, + [SMALL_STATE(6390)] = 176275, + [SMALL_STATE(6391)] = 176282, + [SMALL_STATE(6392)] = 176289, + [SMALL_STATE(6393)] = 176296, + [SMALL_STATE(6394)] = 176303, + [SMALL_STATE(6395)] = 176310, + [SMALL_STATE(6396)] = 176317, + [SMALL_STATE(6397)] = 176324, + [SMALL_STATE(6398)] = 176331, + [SMALL_STATE(6399)] = 176338, + [SMALL_STATE(6400)] = 176345, + [SMALL_STATE(6401)] = 176352, + [SMALL_STATE(6402)] = 176359, + [SMALL_STATE(6403)] = 176366, + [SMALL_STATE(6404)] = 176373, + [SMALL_STATE(6405)] = 176380, + [SMALL_STATE(6406)] = 176387, + [SMALL_STATE(6407)] = 176394, + [SMALL_STATE(6408)] = 176401, + [SMALL_STATE(6409)] = 176408, + [SMALL_STATE(6410)] = 176415, + [SMALL_STATE(6411)] = 176422, + [SMALL_STATE(6412)] = 176429, + [SMALL_STATE(6413)] = 176436, + [SMALL_STATE(6414)] = 176443, + [SMALL_STATE(6415)] = 176450, + [SMALL_STATE(6416)] = 176457, + [SMALL_STATE(6417)] = 176464, + [SMALL_STATE(6418)] = 176471, + [SMALL_STATE(6419)] = 176478, + [SMALL_STATE(6420)] = 176485, + [SMALL_STATE(6421)] = 176492, + [SMALL_STATE(6422)] = 176499, + [SMALL_STATE(6423)] = 176506, + [SMALL_STATE(6424)] = 176513, + [SMALL_STATE(6425)] = 176520, + [SMALL_STATE(6426)] = 176527, + [SMALL_STATE(6427)] = 176534, + [SMALL_STATE(6428)] = 176541, + [SMALL_STATE(6429)] = 176548, + [SMALL_STATE(6430)] = 176555, + [SMALL_STATE(6431)] = 176562, + [SMALL_STATE(6432)] = 176569, + [SMALL_STATE(6433)] = 176576, + [SMALL_STATE(6434)] = 176583, + [SMALL_STATE(6435)] = 176590, + [SMALL_STATE(6436)] = 176597, + [SMALL_STATE(6437)] = 176604, + [SMALL_STATE(6438)] = 176611, + [SMALL_STATE(6439)] = 176618, + [SMALL_STATE(6440)] = 176625, + [SMALL_STATE(6441)] = 176632, + [SMALL_STATE(6442)] = 176639, + [SMALL_STATE(6443)] = 176646, + [SMALL_STATE(6444)] = 176653, + [SMALL_STATE(6445)] = 176660, + [SMALL_STATE(6446)] = 176667, + [SMALL_STATE(6447)] = 176674, + [SMALL_STATE(6448)] = 176681, + [SMALL_STATE(6449)] = 176688, + [SMALL_STATE(6450)] = 176695, + [SMALL_STATE(6451)] = 176702, + [SMALL_STATE(6452)] = 176709, + [SMALL_STATE(6453)] = 176716, + [SMALL_STATE(6454)] = 176723, + [SMALL_STATE(6455)] = 176730, + [SMALL_STATE(6456)] = 176737, + [SMALL_STATE(6457)] = 176744, + [SMALL_STATE(6458)] = 176751, + [SMALL_STATE(6459)] = 176758, + [SMALL_STATE(6460)] = 176765, + [SMALL_STATE(6461)] = 176772, + [SMALL_STATE(6462)] = 176779, + [SMALL_STATE(6463)] = 176786, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -344584,158 +338285,158 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 0), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1770), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1826), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1878), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1812), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1889), [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6272), [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6343), [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6312), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(516), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(522), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(523), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(714), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(527), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(528), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(524), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(534), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(542), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(722), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(576), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(587), [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6309), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1807), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4088), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1799), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4017), [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6274), [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(20), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(925), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(410), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(409), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(407), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(538), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(559), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(960), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(436), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(437), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(438), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(553), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(564), [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5999), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(207), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5328), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3608), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4703), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2233), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(204), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5343), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3596), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4687), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2232), [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5559), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5571), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5579), [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6410), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5501), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(93), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5502), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(89), [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6310), [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5560), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(402), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1929), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1929), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1908), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1922), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1920), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(549), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(550), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4153), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5505), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(550), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(440), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1942), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1942), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1970), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1973), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1993), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(651), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(580), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4143), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5500), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(580), [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6117), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(466), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4154), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(459), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6025), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6023), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5084), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5298), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4018), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(489), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4153), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(496), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6026), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6025), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5074), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5308), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4134), [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6067), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4022), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4018), [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6002), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1878), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1889), [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 37), [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 37), [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), @@ -344744,4441 +338445,4441 @@ static const TSParseActionEntry ts_parse_actions[] = { [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 1), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 1), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6239), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(910), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4083), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(917), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4033), [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(19), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1562), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(493), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(487), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(484), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(534), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(536), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1570), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(498), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(385), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(507), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(690), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(591), [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6242), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5511), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3594), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2210), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5464), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5467), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5504), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3608), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2171), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5465), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5466), [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6164), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5471), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(158), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5467), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(160), [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6159), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5503), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(474), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5498), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(504), [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6112), [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6107), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4797), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5600), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4124), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4053), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4783), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5599), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4148), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4142), [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6060), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6110), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(919), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4158), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(36), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1652), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(456), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(455), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(454), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(561), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(560), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5792), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5729), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3601), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2169), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5540), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5742), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6344), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5731), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(54), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6114), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5539), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(452), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6087), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6089), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5105), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5322), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4033), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4038), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5788), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 2), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 2), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6110), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(914), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4154), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(36), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(1652), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(461), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(457), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(456), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(555), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(554), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5766), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5683), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(3585), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2234), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5540), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5742), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6344), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5681), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(54), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6114), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5539), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(455), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6092), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(6093), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5105), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5334), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4112), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(4106), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(5767), [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selection_expression, 3, .production_id = 14), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selection_expression, 3, .production_id = 14), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selection_expression, 3, .production_id = 14), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selection_expression, 3, .production_id = 14), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 9), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 9), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 7), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 7), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 9), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 9), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 7), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 7), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2449), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2394), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2504), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1824), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1872), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1825), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2523), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2430), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1867), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(2330), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1853), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 1), SHIFT(1848), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_modifier, 1), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_modifier, 1), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 1), [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 1), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 6), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 6), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 6), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 6), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 126), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 126), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 126), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 126), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 6), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 6), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 6), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 6), [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4, .production_id = 103), [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 4, .production_id = 103), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5418), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5927), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 36), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 36), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 114), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 114), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 7, .production_id = 113), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 7, .production_id = 113), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 4), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 4), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 3, .production_id = 15), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 3, .production_id = 15), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 25), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 25), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 24), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 24), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 16), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 16), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 165), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 165), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 16), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 16), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 16), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 16), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 87), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 87), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 40), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 40), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 59), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 59), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 167), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 167), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 59), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 59), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 4, .production_id = 39), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 4, .production_id = 39), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_declarations, 2), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_declarations, 2), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 19), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 19), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 60), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 60), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 11, .production_id = 164), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 11, .production_id = 164), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 3), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 176), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 176), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 178), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 178), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 146), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 146), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 151), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 151), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 8, .production_id = 112), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 8, .production_id = 112), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 88), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 88), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 155), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 155), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 152), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 152), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 151), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 151), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 131), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 131), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 9, .production_id = 150), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 9, .production_id = 150), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 9, .production_id = 149), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 9, .production_id = 149), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 148), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 148), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 147), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 147), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 5), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 146), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 146), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 131), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 131), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 112), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 112), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 35), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 35), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 9, .production_id = 130), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 9, .production_id = 130), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 141), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 141), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 140), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 140), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 9), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 9), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 135), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 135), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 131), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 131), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 8, .production_id = 130), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 8, .production_id = 130), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 134), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 134), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 61), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 61), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 54), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 54), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 133), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 133), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 132), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 132), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 8, .production_id = 131), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 8, .production_id = 131), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 112), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 112), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 5, .production_id = 59), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 5, .production_id = 59), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 125), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 125), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 124), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 124), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 8), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 8), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 5, .production_id = 60), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 5, .production_id = 60), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 8), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 8), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 8, .production_id = 119), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 8, .production_id = 119), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 60), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 60), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 7), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 7), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 6), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 6), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 164), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 164), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 116), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 116), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 112), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 112), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 35), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 35), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 113), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 113), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 3, .production_id = 16), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 3, .production_id = 16), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 7), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 115), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 115), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 10, .production_id = 150), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 10, .production_id = 150), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 163), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 163), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 113), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 113), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 7, .production_id = 112), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 7, .production_id = 112), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 10, .production_id = 131), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 10, .production_id = 131), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 4), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 4), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 4), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 37), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 37), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 12), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 12), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 6), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 6), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 111), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 111), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 11), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 11), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 105), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 105), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 104), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 104), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 7), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 7), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 7), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 7), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 7, .production_id = 92), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7, .production_id = 92), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 156), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 156), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 56), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 56), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 2), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 2), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 6, .production_id = 88), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 6, .production_id = 88), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_statement, 2), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_statement, 2), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 90), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 90), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 82), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 82), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 88), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 88), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 87), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 87), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 86), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 86), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 86), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 86), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 2, .production_id = 6), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 2, .production_id = 6), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 6, .production_id = 86), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 6, .production_id = 86), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 83), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 83), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 40), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 40), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 4, .production_id = 40), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 4, .production_id = 40), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 3, .production_id = 19), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 3, .production_id = 19), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, .production_id = 37), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, .production_id = 37), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_declarations, 3), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_declarations, 3), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 5), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 5), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 36), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 36), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5418), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5927), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 16), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 16), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 87), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 87), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 88), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 88), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 90), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 90), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 6, .production_id = 88), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 6, .production_id = 88), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 88), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 88), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 7, .production_id = 92), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7, .production_id = 92), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 7), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 7), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 7), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 7), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 104), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 104), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 105), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 105), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 111), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 111), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 87), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 87), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 7, .production_id = 112), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 7, .production_id = 112), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 113), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 113), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 114), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 114), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 115), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 115), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 7), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 7), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 7, .production_id = 113), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 7, .production_id = 113), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 113), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 113), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 112), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 112), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 116), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 116), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 7), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 7), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 8, .production_id = 119), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 8, .production_id = 119), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 8), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 8), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 8), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 8), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 124), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 124), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 125), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 125), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 8, .production_id = 130), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 8, .production_id = 130), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 112), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 112), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 8, .production_id = 131), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 8, .production_id = 131), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 132), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 132), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 133), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 133), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 134), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 134), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 8, .production_id = 112), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 8, .production_id = 112), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 131), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 8, .production_id = 131), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 135), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 135), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 9), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 9), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 140), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 140), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 141), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 141), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 9, .production_id = 130), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 9, .production_id = 130), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 112), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 112), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 131), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 131), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 146), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 146), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 147), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 147), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 148), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 148), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 9, .production_id = 149), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 9, .production_id = 149), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 9, .production_id = 150), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 9, .production_id = 150), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 131), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 9, .production_id = 131), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 86), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 86), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 151), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 9, .production_id = 151), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 152), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 152), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 155), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 155), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 156), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 156), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 6, .production_id = 86), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 6, .production_id = 86), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 146), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 146), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 163), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 163), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 10, .production_id = 150), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 10, .production_id = 150), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_declaration, 10, .production_id = 131), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_declaration, 10, .production_id = 131), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 83), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 83), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 151), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 151), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 164), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 10, .production_id = 164), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 165), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 165), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 167), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 167), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_enum_class_declaration, 11, .production_id = 164), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_enum_class_declaration, 11, .production_id = 164), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 176), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 176), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 178), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 178), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 86), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 86), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 6), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 6), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 6), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 6), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 60), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 60), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 5, .production_id = 60), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 5, .production_id = 60), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 61), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 61), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 60), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 60), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 59), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 59), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 59), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 59), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 5, .production_id = 59), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 5, .production_id = 59), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_declarations, 3), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_declarations, 3), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 56), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 56), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 37), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 37), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 54), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 54), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 35), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 35), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 2, .production_id = 6), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 2, .production_id = 6), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 5), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attribute, 5), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attribute, 5), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 40), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 40), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 4, .production_id = 40), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 4, .production_id = 40), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concurrent_statement, 2), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concurrent_statement, 2), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 4, .production_id = 39), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 4, .production_id = 39), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_declarations, 2), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_declarations, 2), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, .production_id = 37), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, .production_id = 37), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 35), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 35), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 4), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 4), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 4), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 4), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 4), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 2), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 2), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 25), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 25), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 24), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 24), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 16), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 16), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 16), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 16), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 19), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 19), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 3, .production_id = 19), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 3, .production_id = 19), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 3), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 3, .production_id = 16), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 3, .production_id = 16), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 3, .production_id = 15), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 3, .production_id = 15), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 12), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 12), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 11), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 11), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5424), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5799), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5586), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5962), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2405), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5049), - [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(6232), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5277), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5602), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(6422), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3422), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(4042), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3117), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3297), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5983), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2096), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2749), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3523), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3520), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3521), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3546), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5074), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3425), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(1787), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3426), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3546), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2994), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3752), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5960), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5586), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(6245), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5412), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5799), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2408), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5042), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(6253), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5736), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5606), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5819), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3210), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(4014), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3147), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3207), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(6008), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2126), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(2687), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3517), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3522), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3519), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3547), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5070), + [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3330), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(1784), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3344), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3547), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3000), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(3788), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 2), SHIFT_REPEAT(5881), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6309), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6309), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selection_expression, 3, .production_id = 13), [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selection_expression, 3, .production_id = 13), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 2), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 2), - [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3103), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3104), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_type_specifier, 1), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1), - [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3103), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_parameter, 1, .production_id = 1), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_type_specifier, 1), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6226), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constant, 2), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constant, 2), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 3), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_constant, 3), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constant, 1), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constant, 1), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_identifier, 1), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_identifier, 1), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 4, .production_id = 44), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 4, .production_id = 44), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3108), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 4), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 4), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 44), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 44), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 6), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 6), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 5), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 5), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 4), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 4), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 5), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 5), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 78), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 78), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5826), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 3), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 3), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 23), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 23), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 3), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 3), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 10), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 10), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3104), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 44), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 44), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 78), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 78), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 6), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 6), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym__type_constant, 3), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym__type_constant, 3), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 7, .production_id = 78), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 7, .production_id = 78), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5769), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 7), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 7), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 3), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 3), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 3), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 3), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 8, .production_id = 138), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 8, .production_id = 138), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3104), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 15, .production_id = 194), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 15, .production_id = 194), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 10, .production_id = 166), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 10, .production_id = 166), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 13, .production_id = 190), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 13, .production_id = 190), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 14, .production_id = 193), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 14, .production_id = 193), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 11, .production_id = 177), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 11, .production_id = 177), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 4), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 4), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 12, .production_id = 186), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 12, .production_id = 186), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 9, .production_id = 154), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 9, .production_id = 154), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3137), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3091), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 18), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 18), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, .production_id = 20), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, .production_id = 20), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3098), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_parameter, 1, .production_id = 1), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 2), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 2), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3134), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3134), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_type_specifier, 1), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constant, 1), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constant, 1), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_identifier, 1), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_identifier, 1), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 3), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_constant, 3), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_type_specifier, 1), + [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6454), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constant, 2), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constant, 2), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 23), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 23), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 3), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 3), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5834), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3097), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6228), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 10), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 10), + [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym__type_constant, 3), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym__type_constant, 3), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 44), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 44), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 15, .production_id = 194), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 15, .production_id = 194), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 14, .production_id = 193), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 14, .production_id = 193), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 4, .production_id = 44), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 4, .production_id = 44), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 13, .production_id = 190), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 13, .production_id = 190), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 12, .production_id = 186), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 12, .production_id = 186), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 6), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 6), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 11, .production_id = 177), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 11, .production_id = 177), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 78), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 78), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 44), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 6, .production_id = 44), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 3), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 3), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 3), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 3), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 5), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 5), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3098), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 10, .production_id = 166), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 10, .production_id = 166), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 4), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 4), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 9, .production_id = 154), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 9, .production_id = 154), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braced_expression, 3), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braced_expression, 3), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 5), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 5), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type_specifier, 4), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_specifier, 4), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 4), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 4), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 6), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 6), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 78), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 5, .production_id = 78), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 7, .production_id = 78), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 7, .production_id = 78), + [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3098), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_specifier, 8, .production_id = 138), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_specifier, 8, .production_id = 138), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_type_specifier, 7), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_type_specifier, 7), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3131), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3104), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 52), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 52), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 6, .production_id = 20), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 6, .production_id = 20), [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 3, .production_id = 18), [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 3, .production_id = 18), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 8, .production_id = 136), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 8, .production_id = 136), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 8, .production_id = 136), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 8, .production_id = 136), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 7, .production_id = 102), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 7, .production_id = 102), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 2), REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_string, 2, .production_id = 3), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_string, 2, .production_id = 3), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_close, 3), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_close, 3), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 4, .production_id = 32), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 4, .production_id = 32), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, .production_id = 20), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, .production_id = 20), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 5), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 5), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 118), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 118), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 7), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 7), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 52), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 52), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 7, .production_id = 20), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 7, .production_id = 20), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 53), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 53), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 102), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 102), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 4), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 4), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 1), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 1), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 3), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 3), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .production_id = 23), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .production_id = 23), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open_close, 4), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open_close, 4), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 83), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 83), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 4), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 4), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6, .production_id = 83), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6, .production_id = 83), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6, .production_id = 80), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6, .production_id = 80), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 6), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 6), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 3), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 3), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_awaitable_expression, 2), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_awaitable_expression, 2), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 4), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 4), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 7), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 7), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_label, 2), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_label, 2), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 32), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 32), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 2), REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), REDUCE(sym_function_pointer, 2, .dynamic_precedence = -1), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 3), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 3), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 7, .production_id = 102), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 7, .production_id = 102), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, .production_id = 20), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, .production_id = 20), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 118), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 118), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 102), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 7, .production_id = 102), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_close, 3), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_close, 3), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 5), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 5), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_awaitable_expression, 2), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_awaitable_expression, 2), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_tree, 2, .production_id = 4), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_tree, 2, .production_id = 4), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 7, .production_id = 20), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 7, .production_id = 20), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 18), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 18), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 2), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 2), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .production_id = 23), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .production_id = 23), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 6), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 6), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open_close, 3), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open_close, 3), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_string, 2, .production_id = 3), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_string, 2, .production_id = 3), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 6), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 6), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 53), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 53), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 1), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 1), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 83), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 83), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 63), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 63), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 53), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 5, .production_id = 53), [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 6, .production_id = 20), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 6, .production_id = 20), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_label, 3, .production_id = 21), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_label, 3, .production_id = 21), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_label, 2), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_label, 2), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 81), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 81), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 3), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 3), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 80), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 80), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 32), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 32), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_expression, 2), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_expression, 2), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open_close, 3), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open_close, 3), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 5), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 5), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 6), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 6), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_tree, 2, .production_id = 4), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_tree, 2, .production_id = 4), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, .production_id = 20), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, .production_id = 20), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 63), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 63), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 53), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 53), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 62), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 62), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_initializer, 3), - [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(225), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 27), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(223), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(223), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(225), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), REDUCE(sym_qualified_identifier, 2), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shape_type_specifier, 3), REDUCE(sym_shape, 3), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_shape_type_specifier, 3), REDUCE(sym_shape, 3), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(223), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(225), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variadic_modifier, 1), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_modifier, 1), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(224), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6422), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(224), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3134), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3134), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(224), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 4, .production_id = 127), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 3, .production_id = 107), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6338), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_parameter, 1, .production_id = 1), - [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(575), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 1), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 5), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 5), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 80), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 80), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 3), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 3), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 81), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 6, .production_id = 81), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 4), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 4), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 8, .production_id = 136), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 8, .production_id = 136), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 8, .production_id = 136), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 8, .production_id = 136), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open_close, 4), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open_close, 4), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, .production_id = 20), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, .production_id = 20), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6, .production_id = 80), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6, .production_id = 80), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6, .production_id = 83), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6, .production_id = 83), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, .production_id = 20), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, .production_id = 20), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection, 3), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection, 3), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_label, 3, .production_id = 21), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_label, 3, .production_id = 21), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_expression, 4, .production_id = 32), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_expression, 4, .production_id = 32), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 22), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(226), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variadic_modifier, 1), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_modifier, 1), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), REDUCE(sym_qualified_identifier, 2), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 62), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 62), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_initializer, 3), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(226), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 27), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(223), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(223), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(223), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shape_type_specifier, 3), REDUCE(sym_shape, 3), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_shape_type_specifier, 3), REDUCE(sym_shape, 3), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(226), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(224), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(224), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5819), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(224), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3103), + [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3103), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_parameter, 1, .production_id = 1), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(654), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 1), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 3, .production_id = 107), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 4, .production_id = 127), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6269), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_echo_statement_repeat1, 2), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_echo_statement_repeat1, 2), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(226), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3091), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3091), - [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(226), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(226), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 3, .production_id = 34), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 47), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 45), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 3, .production_id = 33), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 72), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 73), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 74), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declarator, 3, .production_id = 33), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 26), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(622), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 3, .production_id = 33), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 120), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 3, .production_id = 34), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 121), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 99), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 122), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 98), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 97), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 8, .production_id = 139), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 27), SHIFT(225), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), SHIFT(225), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1), SHIFT(3131), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 2), SHIFT(3131), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, .production_id = 5), SHIFT(225), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 26), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 97), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 98), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 99), + [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(639), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declarator, 3, .production_id = 33), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 3, .production_id = 33), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 3, .production_id = 34), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 3, .production_id = 33), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 47), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 3, .production_id = 34), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 45), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 74), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 73), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 72), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 120), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 121), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 122), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 8, .production_id = 139), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 182), [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 182), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 179), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 179), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 25), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 25), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 5, .production_id = 49), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 5, .production_id = 49), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 35), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 35), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 5, .production_id = 49), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 5, .production_id = 49), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 11), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 11), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 12), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 12), - [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 128), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 128), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 106), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 106), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 24), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 24), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 5, .production_id = 29), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 5, .production_id = 29), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 129), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 129), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 4, .production_id = 29), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 4, .production_id = 29), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 110), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 110), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 5), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 5), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_implements_clause, 5), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_implements_clause, 5), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_extends_clause, 5), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_extends_clause, 5), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 106), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 106), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 84), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 84), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, .production_id = 58), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, .production_id = 58), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 1, .production_id = 38), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 1, .production_id = 38), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_attribute_declaration, 4), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute_declaration, 4), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_category_declaration, 3), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_category_declaration, 3), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 4, .production_id = 29), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 4, .production_id = 29), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_children_declaration, 4), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_children_declaration, 4), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 168), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 168), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_children_declaration, 3), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_children_declaration, 3), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 4), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 4), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_attribute_declaration, 3), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute_declaration, 3), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 158), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 158), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 6), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 6), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 142), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 142), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 143), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 143), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 142), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 142), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 144), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 144), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 169), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 169), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 170), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 170), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 145), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 145), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_category_declaration, 4), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_category_declaration, 4), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 171), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 171), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 11, .production_id = 192), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 11, .production_id = 192), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 3, .production_id = 84), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 84), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 159), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 159), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 11, .production_id = 191), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 11, .production_id = 191), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 10, .production_id = 189), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 10, .production_id = 189), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 10, .production_id = 188), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 10, .production_id = 188), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 58), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 58), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 160), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 160), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 172), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 172), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 35), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 35), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 3), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 3), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 173), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 173), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 174), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 174), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 49), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 49), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 108), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 108), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_implements_clause, 4), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_implements_clause, 4), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 175), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 175), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 161), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 161), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 77), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 77), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 128), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 128), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 159), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 159), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 162), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 162), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 6, .production_id = 129), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 6, .production_id = 129), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 10, .production_id = 187), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 10, .production_id = 187), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 180), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 180), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 109), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 109), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 183), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 183), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_extends_clause, 4), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_extends_clause, 4), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 77), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 77), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 185), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 185), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 184), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 184), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 181), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 181), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 157), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 157), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 110), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 110), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2405), - [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6232), - [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5277), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6422), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), - [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3117), - [4525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2749), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3523), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3520), - [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3521), - [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3346), - [4540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3292), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3346), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 2), - [4618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3422), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3425), - [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(2951), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3426), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(2405), - [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(6232), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(5277), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(6422), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3117), - [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(2749), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3523), - [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3520), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3521), - [4669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3346), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3346), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2405), - [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6232), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5277), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6422), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), - [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3117), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2749), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3523), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3520), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3521), - [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3346), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3346), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 1, .production_id = 1), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_modifier, 1), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_modifier, 1), - [5132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__member_modifier, 1), SHIFT(6395), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 3), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 3), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 5), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 5), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 4), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 4), - [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 6), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 6), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, .production_id = 58), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, .production_id = 58), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 157), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 157), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 159), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 159), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 160), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 160), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 158), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 158), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_extends_clause, 4), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_extends_clause, 4), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 7, .production_id = 161), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 7, .production_id = 161), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 159), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 159), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 84), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 84), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 4, .production_id = 29), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 4, .production_id = 29), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_declarations_repeat1, 1, .production_id = 38), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_declarations_repeat1, 1, .production_id = 38), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 4, .production_id = 29), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 4, .production_id = 29), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 25), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 25), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 24), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 24), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 106), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 106), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 162), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 162), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 6, .production_id = 129), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 6, .production_id = 129), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 128), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 128), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 77), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 77), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 49), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 49), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 7, .production_id = 77), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 7, .production_id = 77), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 145), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 145), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 4), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 4), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 144), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 144), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 6, .production_id = 142), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 6, .production_id = 142), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 143), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 143), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 6, .production_id = 142), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 6, .production_id = 142), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 6), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 6), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_implements_clause, 4), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_implements_clause, 4), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 168), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 168), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 169), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 169), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 12), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 12), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 11), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 11), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 170), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 170), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 8, .production_id = 171), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 8, .production_id = 171), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_attribute_declaration, 4), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute_declaration, 4), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 172), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 172), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 173), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 173), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 174), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 174), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 110), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 110), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 8, .production_id = 175), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 8, .production_id = 175), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 129), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 129), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 128), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 128), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_category_declaration, 3), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_category_declaration, 3), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 35), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 35), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 5, .production_id = 49), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 5, .production_id = 49), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_children_declaration, 4), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_children_declaration, 4), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_category_declaration, 4), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_category_declaration, 4), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 5, .production_id = 49), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 5, .production_id = 49), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 5, .production_id = 106), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 5, .production_id = 106), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 58), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 58), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 5, .production_id = 29), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 5, .production_id = 29), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 5), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 5), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_implements_clause, 5), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_implements_clause, 5), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_require_extends_clause, 5), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_extends_clause, 5), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 179), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 179), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_children_declaration, 3), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_children_declaration, 3), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 180), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 180), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 9, .production_id = 181), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 9, .production_id = 181), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 35), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 35), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 183), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 183), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 108), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 108), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 184), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 184), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 9, .production_id = 185), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 9, .production_id = 185), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 11, .production_id = 192), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 11, .production_id = 192), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 10, .production_id = 187), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 10, .production_id = 187), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_use_clause, 3), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_use_clause, 3), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_context_const_declaration, 11, .production_id = 191), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_context_const_declaration, 11, .production_id = 191), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_attribute_declaration, 3), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute_declaration, 3), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 3, .production_id = 84), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 84), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 10, .production_id = 188), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 10, .production_id = 188), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_const_declaration, 10, .production_id = 189), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_const_declaration, 10, .production_id = 189), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_const_declaration, 4, .production_id = 110), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 4, .production_id = 110), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 109), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 109), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_declaration_repeat1, 2), + [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3210), + [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3330), + [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(2896), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_declaration_repeat1, 2), SHIFT_REPEAT(3344), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2408), + [4579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6253), + [4582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5736), + [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5819), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), + [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3147), + [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2687), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3517), + [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3522), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3519), + [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3241), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3254), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3241), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(2408), + [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(6253), + [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(5736), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(5819), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3147), + [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(2687), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3517), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3522), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3519), + [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3241), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(3241), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2408), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(6253), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5736), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(5819), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3147), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(2687), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3517), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3522), + [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3519), + [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3241), + [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_declaration_repeat1, 2), SHIFT_REPEAT(3241), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_modifier, 1), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_modifier, 1), + [5068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__member_modifier, 1), SHIFT(6219), + [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 6), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 6), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 5), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 5), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 4), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 4), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_modifier, 3), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_modifier, 3), + [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 1, .production_id = 1), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declarator, 1, .production_id = 57), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), SHIFT(5918), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5918), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), SHIFT(5918), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_constraint, 3, .production_id = 85), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_constraint, 3, .production_id = 85), - [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 1), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 1), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [5189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), SHIFT(5918), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(5918), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), SHIFT(5918), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 1), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 1), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_constraint, 3, .production_id = 85), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_constraint, 3, .production_id = 85), [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_where_clause_repeat1, 2), [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), - [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3319), + [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3211), [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_enumerator, 2), [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_enumerator, 2), [5275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_specifier_repeat1, 2), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), - [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3523), - [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3520), - [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3521), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 4), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 4), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 4), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 4), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 4), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_enum_class_declaration_repeat1, 4), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_specifier_repeat1, 2), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), + [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3517), + [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3522), + [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_specifier_repeat1, 2), SHIFT_REPEAT(3519), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 4), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 4), [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, .production_id = 8), [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, .production_id = 8), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(521), - [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(5532), - [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(3613), - [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(3613), - [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6129), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(4372), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(5642), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(6309), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 4), - [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 4), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 2), - [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 2), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 3), - [5690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 3), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), SHIFT_REPEAT(395), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), SHIFT_REPEAT(6412), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_binary_expression, 3), - [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_postfix_unary_expression, 2), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 4, .production_id = 15), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability, 1), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_parenthesized_expression, 4), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_children_declaration_repeat1, 2), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 4, .production_id = 29), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(3778), - [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), - [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(569), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_parenthesized_expression, 3), - [5790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), SHIFT(6422), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), SHIFT(6422), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 3, .production_id = 15), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 29), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [5818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3243), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 1, .production_id = 58), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_identifier, 1), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__namespace_identifier, 1), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), - [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(585), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(5970), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 4), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(511), + [5585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(5531), + [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(3621), + [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), SHIFT_REPEAT(3621), + [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_xhp_expression_repeat1, 2), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_identifier_repeat1, 2), SHIFT_REPEAT(6120), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(4288), + [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(5640), + [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), SHIFT_REPEAT(6309), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), SHIFT_REPEAT(395), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_open_repeat1, 2), SHIFT_REPEAT(6422), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 4), + [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 4), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 3), + [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 3), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability_list, 2), + [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capability_list, 2), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_children_declaration_repeat1, 2), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_binary_expression, 3), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_parenthesized_expression, 3), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 3, .production_id = 15), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_postfix_unary_expression, 2), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 1), SHIFT(5819), + [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__xhp_parenthesized_expression, 4), + [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3353), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(3783), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(661), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 29), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability, 1), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 4, .production_id = 15), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2), SHIFT(5819), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 4, .production_id = 29), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 5), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_identifier, 1), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__namespace_identifier, 1), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 6), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 4), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 5), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_enum_type, 6), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 95), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open, 3), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open, 3), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 15), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_identifier, 2), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 15), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_modifier, 1), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open, 4), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open, 4), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 41), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 2, .production_id = 17), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 42), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_embedded_braced_expression, 3), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 29), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 43), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 65), - [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 65), SHIFT_REPEAT(3289), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 66), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 67), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 68), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 69), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 70), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 29), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 93), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 94), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 51), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5321), - [6313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5871), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 137), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 1), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 2), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 3), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 64), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6426), - [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 153), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 117), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [6463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2), SHIFT_REPEAT(3597), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 91), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 101), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 2), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2), SHIFT_REPEAT(6126), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute, 1), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_echo_statement_repeat1, 2), SHIFT_REPEAT(572), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_attribute_repeat1, 2), - [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_children_declaration_repeat1, 2), SHIFT_REPEAT(3769), - [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 79), - [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 15), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(435), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute, 3), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 123), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_spread_expression, 4), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_type, 1), - [6644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_use_type, 1), SHIFT(6422), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(309), - [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capability_list_repeat1, 2), SHIFT_REPEAT(3543), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capability_list_repeat1, 2), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 50), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 49), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 48), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 46), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(518), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3763), - [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2), SHIFT_REPEAT(3542), - [6946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2), SHIFT_REPEAT(321), - [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 75), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 76), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [7029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_select_clause_repeat1, 2), SHIFT_REPEAT(4036), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_select_clause_repeat1, 2), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_select_clause, 6), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_select_clause, 5), - [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 77), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [7174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_enum_type_repeat1, 2), SHIFT_REPEAT(5597), - [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_enum_type_repeat1, 2), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 2), SHIFT_REPEAT(3110), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_type, 1), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declarator, 1, .production_id = 1), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), SHIFT_REPEAT(352), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(5279), - [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [7514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(3465), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3, .production_id = 31), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3275), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(2176), - [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 30), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [7615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 29), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_category_declaration_repeat1, 2), SHIFT_REPEAT(5951), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_category_declaration_repeat1, 2), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 28), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_attribute_repeat1, 2), SHIFT_REPEAT(4142), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [7695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_attribute_declaration_repeat1, 2), SHIFT_REPEAT(2960), - [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_attribute_declaration_repeat1, 2), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2), SHIFT_REPEAT(3458), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 17), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(5766), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__anonymous_function_use_clause_repeat1, 2), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 100), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_specifier, 4, .production_id = 96), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 79), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2, .production_id = 84), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 3, .production_id = 17), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_attribute_repeat1, 3), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability, 2), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2, .production_id = 71), - [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_specifier, 3), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 10, .production_id = 153), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 4), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 5, .production_id = 127), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_alias_clause, 3), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 123), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 2, .production_id = 58), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 29), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 91), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 51), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 117), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 137), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 15), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 101), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 4, .production_id = 107), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 6), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), + [5947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(586), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(5990), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 1, .production_id = 58), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 93), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 15), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_identifier, 2), + [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 2, .production_id = 17), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_modifier, 1), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_embedded_braced_expression, 3), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 1), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 15), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 43), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 42), + [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 41), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open, 3), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open, 3), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xhp_open, 4), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_open, 4), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 29), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 70), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 69), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 95), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 94), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 67), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 66), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 29), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 68), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 65), + [6299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 65), SHIFT_REPEAT(3231), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 2), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 1), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, .production_id = 64), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5321), + [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 55), SHIFT_REPEAT(5871), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 153), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 3), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 137), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_type, 1), + [6452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_use_type, 1), SHIFT(5819), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [6461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_trait_use_clause_repeat1, 2), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 123), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 2), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 117), + [6477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2), SHIFT_REPEAT(6070), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_children_declaration_repeat1, 2), SHIFT_REPEAT(3792), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 15), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute, 1), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_attribute_repeat1, 2), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 101), + [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_echo_statement_repeat1, 2), SHIFT_REPEAT(659), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2), SHIFT_REPEAT(3602), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_statement_repeat1, 2), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6426), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 91), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 79), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 5, .production_id = 51), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_attribute, 3), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_spread_expression, 4), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(394), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_attribute_declaration_repeat1, 2), SHIFT_REPEAT(3016), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_attribute_declaration_repeat1, 2), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(264), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 50), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 49), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 48), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 46), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(518), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(5414), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2), SHIFT_REPEAT(3542), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 77), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 76), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 75), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [7084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_select_clause_repeat1, 2), SHIFT_REPEAT(4069), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_select_clause_repeat1, 2), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_select_clause, 6), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_select_clause, 5), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3753), + [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_enum_type_repeat1, 2), SHIFT_REPEAT(5659), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_enum_type_repeat1, 2), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_type, 1), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 2), SHIFT_REPEAT(3119), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declarator, 1, .production_id = 1), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [7456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), SHIFT_REPEAT(329), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(3462), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3, .production_id = 31), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 100), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [7564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capability_list_repeat1, 2), SHIFT_REPEAT(3543), + [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capability_list_repeat1, 2), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(2154), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 30), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 29), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 28), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_attribute_repeat1, 2), SHIFT_REPEAT(4094), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(5880), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__anonymous_function_use_clause_repeat1, 2), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 17), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_xhp_category_declaration_repeat1, 2), SHIFT_REPEAT(6223), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_xhp_category_declaration_repeat1, 2), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_specifier_repeat1, 2), SHIFT_REPEAT(3272), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2), SHIFT_REPEAT(3459), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2), SHIFT_REPEAT(319), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 15), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 6, .production_id = 51), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_const_declaration_repeat1, 2, .production_id = 84), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_type_specifier_repeat1, 2, .production_id = 71), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 2, .production_id = 58), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 3, .production_id = 17), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 79), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_attribute_repeat1, 3), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_specifier, 3), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 29), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 7, .production_id = 91), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 10, .production_id = 153), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 101), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_specifier_repeat1, 4), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 137), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capability, 2), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_specifier, 4, .production_id = 96), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 5, .production_id = 127), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xhp_class_attribute, 4, .production_id = 107), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 8, .production_id = 117), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_alias_clause, 3), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_header, 9, .production_id = 123), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 4), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 6), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_alias_clause, 4), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_alias_clause, 4), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_modifier, 1), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_parameter_parameters, 1, .production_id = 2), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [8722] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 5), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_modifier, 1), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_parameter_parameters, 1, .production_id = 2), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [8726] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 5), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_function_use_clause, 4), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), }; #ifdef __cplusplus @@ -349231,7 +342932,6 @@ extern const TSLanguage *tree_sitter_hack(void) { tree_sitter_hack_external_scanner_serialize, tree_sitter_hack_external_scanner_deserialize, }, - .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index c958cdd..5ab719d 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -3943,6 +3943,7 @@ abstract class C { function method3(): void {} abstract public static function method4(); final public static function method5(): void {} + internal function method6(): void {} } --- @@ -3982,6 +3983,12 @@ abstract class C { name: (identifier) (parameters) return_type: (type_specifier) + body: (compound_statement)) + (method_declaration + (visibility_modifier) + name: (identifier) + (parameters) + return_type: (type_specifier) body: (compound_statement))))) ==========================